views:

31

answers:

2

Hi,

I used gettext as adapter for Zend_Translate in the past and poedit has such utility that parses a project for translate() methods.

But I'm not using gettext anymore (it's a requirement) and I use CSV instead.

I'd like to know if there are any utilities to parse my project and help me to gather all my translated string.

I know some such as Navigation, Form, and Routes won't included as it is done slightly differently but if it could be a least in views script, It would help me a lot !

Thank you

+1  A: 

No experience with this in particular, but it looks like it might be of use to you: http://translate.sourceforge.net/wiki/toolkit/csv2po

Mark
+1  A: 

I would recommend Poedit, which produces .po file, which is a regular text file, which you can easily parse to generate CSV.

The other way is to log untranslated messages directly to CSV, like described here:

takeshin