2013-06-02 00:18:06 +02:00
|
|
|
(function (root, factory) {
|
2013-07-28 23:12:21 +02:00
|
|
|
var translations = {
|
2013-07-27 01:07:57 +02:00
|
|
|
"domain": "converse",
|
|
|
|
"locale_data": {
|
|
|
|
"converse": {
|
|
|
|
"": {
|
|
|
|
"domain": "converse",
|
|
|
|
"lang": "en",
|
|
|
|
"plural_forms": "nplurals=2; plural=(n != 1);"
|
2013-06-02 00:18:06 +02:00
|
|
|
}
|
|
|
|
}
|
2013-07-27 01:07:57 +02:00
|
|
|
}
|
2013-07-28 23:12:21 +02:00
|
|
|
};
|
2013-07-27 01:07:57 +02:00
|
|
|
if (typeof define === 'function' && define.amd) {
|
|
|
|
define("en", ['jed'], function () {
|
2013-07-28 23:12:21 +02:00
|
|
|
return factory(new Jed(translations));
|
2013-07-27 01:07:57 +02:00
|
|
|
});
|
|
|
|
} else {
|
|
|
|
if (!window.locales) {
|
|
|
|
window.locales = {};
|
|
|
|
}
|
2013-07-28 23:12:21 +02:00
|
|
|
window.locales.en = factory(new Jed(translations));
|
2013-07-27 01:07:57 +02:00
|
|
|
}
|
2013-06-02 00:18:06 +02:00
|
|
|
}(this, function (en) {
|
|
|
|
return en;
|
|
|
|
}));
|