2013-06-02 00:18:46 +02:00
|
|
|
(function (root, factory) {
|
2013-06-02 19:38:11 +02:00
|
|
|
require.config({
|
|
|
|
paths: {
|
|
|
|
"jed": "Libraries/jed",
|
|
|
|
"af": "locale/af/LC_MESSAGES/af",
|
|
|
|
"en": "locale/en/LC_MESSAGES/en",
|
2013-07-23 00:50:58 +02:00
|
|
|
"es": "locale/en/LC_MESSAGES/es",
|
2013-06-02 19:54:16 +02:00
|
|
|
"de": "locale/de/LC_MESSAGES/de",
|
2013-07-20 19:08:21 +02:00
|
|
|
"hu": "locale/hu/LC_MESSAGES/hu",
|
|
|
|
"it": "locale/it/LC_MESSAGES/it"
|
2013-06-02 19:38:11 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-06-02 00:18:46 +02:00
|
|
|
define("locales", [
|
|
|
|
'jed',
|
|
|
|
'af',
|
2013-06-02 18:48:25 +02:00
|
|
|
'en',
|
2013-07-23 00:50:58 +02:00
|
|
|
'es',
|
2013-06-02 19:54:16 +02:00
|
|
|
'de',
|
2013-07-20 19:08:21 +02:00
|
|
|
'hu',
|
|
|
|
"it"
|
2013-07-23 00:50:58 +02:00
|
|
|
], function (jed, af, en, es, de, hu, it) {
|
2013-06-02 00:18:46 +02:00
|
|
|
root.locales = {};
|
|
|
|
root.locales.af = af;
|
|
|
|
root.locales.en = en;
|
2013-07-23 00:50:58 +02:00
|
|
|
root.locales.es = es;
|
2013-06-02 18:48:25 +02:00
|
|
|
root.locales.de = de;
|
2013-07-22 09:01:11 +02:00
|
|
|
root.locales.hu = hu;
|
2013-07-20 19:08:21 +02:00
|
|
|
root.locales.it = it;
|
2013-06-02 00:18:46 +02:00
|
|
|
});
|
|
|
|
})(this);
|