Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP Gettext: how to change the default MO path after setting the path of the domain?

I use PHP Gettext extension for localizing a Web app. When you do:

bindtextdomain("example", "/locales");

If you're setting the locale to fr_FR, it will look for the MO in:

/locales/fr_FR/LC_MESSAGES/example.mo

Is there a way to customize that path? For instance I would like to use the following structure:

/locales/example.fr_FR.mo
like image 877
gou1 Avatar asked Mar 01 '12 12:03

gou1


1 Answers

The directory structure is fixed by gettext.

Because many different languages for many different packages have to be stored we need some way to add these information to file message catalog files. The way usually used in Unix environments is have this encoding in the file name. This is also done here. The directory name given in bindtextdomains second argument (or the default directory), followed by the name of the locale, the locale category, and the domain name are concatenated:

dir_name/locale/LC_category/domain_name.mo

like image 194
Tim Avatar answered Oct 02 '22 22:10

Tim