I try to put the *.mo and *.po files somewhere that the root directory where the executable is.
As some many examples are this is the "default" or most seen architecture:
Code: Select all
/A/B/C/../
+-> wxApp.exe
|
+-> fr_FR/ (directory containing French translation)
| +->wxApp.po
| +->wxApp.mo
+-> en_US/ (directory containing English translation)
| +->wxApp.po
| +->wxApp.mo
+-> other translation directory
|
+-> plugins (directory containing different types of plugins)
|
+-> libs (example directory)
Is there a meaning to put all "translation" directory (fr_FR, en_US, de_DE, etc..) in one directory called "locales" for exampl... As the following directory architecture:
Code: Select all
/A/B/C/../
+-> wxApp.exe
|
+-> locales/ (directory containing ALL translations)
+-> fr_FR/ (directory containing French translation)
| | +->wxApp.po
| | +->wxApp.mo
| +-> en_US/ (directory containing English translation)
| | +->wxApp.po
| | +->wxApp.mo
| +-> other translation directory
|
+-> plugins (directory containing different types of plugins)
|
+-> libs (example directory)