Don't reference LC_MESSAGES/en Bungle doesn't seem to find it.
This commit is contained in:
parent
563987cf29
commit
b61c936790
@ -2,10 +2,19 @@
|
|||||||
* This file can be used if no locale support is required.
|
* This file can be used if no locale support is required.
|
||||||
*/
|
*/
|
||||||
(function (root, factory) {
|
(function (root, factory) {
|
||||||
define("locales", [
|
define("locales", ['jed'], function (jed) {
|
||||||
'jed',
|
var translations = {
|
||||||
"locale/en/LC_MESSAGES/en"
|
"domain": "converse",
|
||||||
], function (jed, en) {
|
"locale_data": {
|
||||||
root.locales = { 'en': en };
|
"converse": {
|
||||||
|
"": {
|
||||||
|
"domain": "converse",
|
||||||
|
"lang": "en",
|
||||||
|
"plural_forms": "nplurals=2; plural=(n != 1);"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
root.locales = { 'en': factory(new Jed(translations)) };
|
||||||
});
|
});
|
||||||
})(this);
|
})(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user