Hello guys, my site is configured to brazilian portuguese, I saw inside wp-content/themes/wplms/languages that there are the files called pt_BR (.mo and .po), ok.
So, using the site, we have at footer a top button, that I think is generated with a code like that (footer-single.php):
<div id="scrolltop">
<i class="icon-arrow-1-up"></i><span><?php _e('top','vibe'); ?></span>
So, I see that the word "top" is getting translated by _e, ok.
Inside the brazilian portuguese file I saw that we have (vibe-pt_BR.po):
@ vibe
#: footer-bottom.php:7 footer-copyright.php:6 footer-single.php:15
#: footer.php:22
msgid "top"
msgstr "topo"
But using the site, the message still showing "TOP", not "TOPO".
What I need to do to truly use the translation file?
Thank you so much.