I am using gettext in my PHP code, but I have a big problem. All my JavaScript files are not affected by the translation, can somebody tell me an easy way to get the translations in the chosen language into JavaScript as well.
|
|
||||
|
|
|
The easiest way is having a PHP file write the translations from js_lang.php:
and then include it:
I would also recommend this method in conjunction with the translation plugins S.Mark mentions (which are very interesting!). You can define the dictionary in the current page's header, too, without including an external file, but that way, you would have to look up and send the data on every page load - quite unnecessary, as a dictionary tends to change very rarely. |
|||||||||||||||
|
|
Try, jQuery i18n or jQuery localisation An example for jQuery i18n, and of course you need to generate JSON based dictionary from language file from php
|
|||||
|
|
I generally export the translations in a JavaScript structure:
The current language of the page texts can be defined using: This can be read in JavaScript:
And then you can write code like this:
Optionally, a
|
|||
|
|
|
Just for your reference, here is a very simple (but it does the job) solution: http://www.zomeoff.com/jsin/ |
|||
|
|
|
You can make your life much easier if you get rid of bad habit to use string literals in your code. That is, instead of
use
where "#some_message_id" is a hidden div or span generated on the server side. |
|||
|
|
|
As a further hint there's a perl script called po2json which will generate json from a .po file. |
|||
|
|
|
The one I use is http://jsgettext.berlios.de/ and it seems to do the job. But then I'm using a combination of GWT and JavaScript. |
|||
|
|
|
WordPress has a nice solution for this, using PHP and JS: http://codex.wordpress.org/I18n_for_WordPress_Developers#Handling_JavaScript_files |
|||
|
|