You’ll have to edit Buddypress Default for that.
Log in your Admin Dashboard.
Go to Appearance – > Editor -> Buddypress Default
Open Single Post (single.php)
Look for,
<div class="alignleft"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'buddypress' ) . '</span> %title' ); ?></div>
<div class="alignright"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( '→', 'Next post link', 'buddypress' ) . '</span>' ); ?></div>
</div>
and replace it with,
<div class="alignleft"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'buddypress' ) . '</span> Previous' ); ?></div>
<div class="alignright"><?php next_post_link( '%link', 'Next <span class="meta-nav">' . _x( '→', 'Next post link', 'buddypress' ) . '</span>' ); ?></div>
</div>