I have some strings in my theme/template and I was hoping to translate them with t(), but they don't appear in /admin/build/translate/search. I could do it in PHP code and make my own function, but is this "the right way"?

link|improve this question
did you view page with t() of these strings in browser? – Nikit May 2 '10 at 13:17
1  
Like Nikit suggested, you first have to view the page at least once. That way the template file gets processed and drupal recognizes translateable strings. These should then appear in the locale_source table and you should be able to translate them via translate interface. – Paul May 4 '10 at 7:41
feedback

1 Answer

Like Nikit and Paul pointed out, opening the page in order for the strings to be processed and added to the translation table is an option, but if you have many theme files there is a module that precisely scans a folder for translatable strings and builds a POT file so you can translate all those strings easier and faster. I'd highly recommend you http://drupal.org/project/potx and http://www.poedit.net/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.