In our Freifunk project gluon, we use i18n GNU gettext internationalisation in our Lua code (for example for the package gluon-config-mode-hostname
) we create separate files in a subfolder i18n
. I want to use this .po
files to add them in our status-page javascript code:
https://github.com/rubo77/gluon/tree/status-i18n/package/gluon-status-page/i18n
Those contain the translations created by the msginit program.
How can I use the same i18n files for the javascript based status-page (without jQuery) to translate those strings?
Here's a dirty but verbose way of accomplishing it. Is this what you're looking for?
NB: Above example likely only works in Chrome. Here's a JSBin that should work in FF.