I have the following array in php
$arr = array ('five minutes', 'ten minutes', '15 minutes');
Also, at one point in my code, I am doing the following:
_e($arr[1]); // This is a WordPress function to display the translated output.
Now, how do I make sure that Poedit picks up the array entries for translation and eventually echo the translated output.
Build the array like this:
Then simply
echo $arr[1];
.If there is no translation, or the domain isn’t loaded the original text is returned. So you can check this way: