xmpp.chapril.org-conversejs/Libraries/locales.js
JC Brand 62e701f3fb Add locales.js
It will pull in all languages and put them in the locales root object, from
which the specific language translations can be chosen during runtime.
2013-06-02 00:18:46 +02:00

12 lines
251 B
JavaScript

(function (root, factory) {
define("locales", [
'jed',
'af',
'en'
], function (jed, af, en) {
root.locales = {};
root.locales.af = af;
root.locales.en = en;
});
})(this);