The following methods allow for getting and displaying translated text in your theme.
#wordpress#php
// Get text__('Your text','text_domain');// Get text with a specified context_x('Your text','Form label','text_domain');// Echo out text_e('Your text','text_domain');// Use translated text inside of sprintf methodechosprintf('This is %s in a paragraph',__('your text','text_domain'));