For my CakePHP 2.3 application, I created pot file and created po files with Poedit. But I have nearly 100 strings and 12 languages. So in every change/add I don't want to recreate pot files and add po files with Poedit.
So I need another solution that fits good to CakePHP.
- Is it possible to use i18n without po files, just using csv files ? (It seems Zend Translate have similar solution)
- Is it possible to use one po file for all of the translations or will it makes performance too bad for this amount of strings ?
- I don't prefer to write translations to database. What would be the better alternative to gettext for small projects ?
Related: CakePHP translations in one or multiple po files and performance