How can I modify text in admin bar?

Are you referring to the meta bar where people can login or register? I’d recommend using jQuery, because if you make the change to the core, it’ll be overwritten once you update it.

$('a[href*="register"]').text('join');

This basically states find an anchor tag where the href contains the word register. Once it finds it, it changes the inner text to ‘join’.