1/*
2If you want to echo the translated string, then you will be using _e and when you just want to have the translated string, then you will be using __.
3*/
4
5_e('this is a message', 'twentyfourteen');
6
7echo __('this is a message', 'twentyfourteen');
8