2013-08-26 14:37:35 +02:00
|
|
|
/*
|
|
|
|
* This file can be used if no locale support is required.
|
|
|
|
*/
|
|
|
|
(function (root, factory) {
|
2013-08-27 10:19:14 +02:00
|
|
|
define("locales", ['jed'], function (Jed) {
|
2013-08-27 09:59:14 +02:00
|
|
|
var translations = {
|
|
|
|
"domain": "converse",
|
|
|
|
"locale_data": {
|
|
|
|
"converse": {
|
|
|
|
"": {
|
|
|
|
"domain": "converse",
|
|
|
|
"lang": "en",
|
|
|
|
"plural_forms": "nplurals=2; plural=(n != 1);"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2013-08-27 10:19:14 +02:00
|
|
|
root.locales = { 'en': new Jed(translations) };
|
2013-08-26 14:37:35 +02:00
|
|
|
});
|
|
|
|
})(this);
|