2013-07-24 23:56:03 +02:00
|
|
|
/*
|
|
|
|
* This file specifies the language dependencies.
|
|
|
|
*
|
|
|
|
* Translations take up a lot of space and you are therefore advised to remove
|
|
|
|
* from here any languages that you don't need.
|
|
|
|
*/
|
|
|
|
|
2013-06-02 00:18:46 +02:00
|
|
|
(function (root, factory) {
|
2013-06-02 19:38:11 +02:00
|
|
|
require.config({
|
|
|
|
paths: {
|
2013-07-29 22:39:41 +02:00
|
|
|
"jed": "components/jed/jed",
|
2013-06-02 19:38:11 +02:00
|
|
|
"af": "locale/af/LC_MESSAGES/af",
|
2013-09-02 12:31:35 +02:00
|
|
|
"de": "locale/de/LC_MESSAGES/de",
|
2013-06-02 19:38:11 +02:00
|
|
|
"en": "locale/en/LC_MESSAGES/en",
|
2013-07-23 22:17:19 +02:00
|
|
|
"es": "locale/es/LC_MESSAGES/es",
|
2013-09-02 12:31:35 +02:00
|
|
|
"fr": "locale/fr/LC_MESSAGES/fr",
|
2014-01-28 08:41:07 +01:00
|
|
|
"he": "locale/he/LC_MESSAGES/he",
|
2013-10-03 08:58:05 +02:00
|
|
|
"hu": "locale/hu/LC_MESSAGES/hu",
|
2014-01-25 15:51:51 +01:00
|
|
|
"id": "locale/id/LC_MESSAGES/id",
|
2013-07-24 22:12:17 +02:00
|
|
|
"it": "locale/it/LC_MESSAGES/it",
|
2014-01-08 14:43:55 +01:00
|
|
|
"ja": "locale/ja/LC_MESSAGES/ja",
|
2013-10-15 19:15:06 +02:00
|
|
|
"nl": "locale/nl/LC_MESSAGES/nl",
|
2013-09-26 15:19:14 +02:00
|
|
|
"pt_BR": "locale/pt_BR/LC_MESSAGES/pt_BR",
|
2014-07-06 17:56:42 +02:00
|
|
|
"ru": "locale/ru/LC_MESSAGES/ru",
|
|
|
|
"zh": "locale/zh/LC_MESSAGES/zh"
|
2013-06-02 19:38:11 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-06-02 00:18:46 +02:00
|
|
|
define("locales", [
|
|
|
|
'jed',
|
|
|
|
'af',
|
2013-09-02 12:31:35 +02:00
|
|
|
'de',
|
2013-06-02 18:48:25 +02:00
|
|
|
'en',
|
2013-07-23 00:50:58 +02:00
|
|
|
'es',
|
2013-09-02 12:31:35 +02:00
|
|
|
'fr',
|
2014-01-28 08:41:07 +01:00
|
|
|
'he',
|
2013-10-03 08:58:05 +02:00
|
|
|
'hu',
|
2014-01-25 15:51:51 +01:00
|
|
|
'id',
|
2013-09-02 12:31:35 +02:00
|
|
|
'it',
|
2014-01-08 14:43:55 +01:00
|
|
|
'ja',
|
2013-10-15 19:15:06 +02:00
|
|
|
'nl',
|
2013-09-26 15:19:14 +02:00
|
|
|
'pt_BR',
|
2014-07-06 17:56:42 +02:00
|
|
|
'ru',
|
|
|
|
'zh'
|
|
|
|
], function (jed, af, de, en, es, fr, he, hu, id, it, ja, nl, pt_BR, ru, zh) {
|
2013-08-25 22:45:41 +02:00
|
|
|
root.locales = {
|
|
|
|
'af': af,
|
2013-09-02 12:31:35 +02:00
|
|
|
'de': de,
|
2013-08-25 22:45:41 +02:00
|
|
|
'en': en,
|
|
|
|
'es': es,
|
2013-09-02 12:31:35 +02:00
|
|
|
'fr': fr,
|
2014-01-28 08:41:07 +01:00
|
|
|
'he': he,
|
2013-10-03 08:58:05 +02:00
|
|
|
'hu': hu,
|
2014-01-25 15:51:51 +01:00
|
|
|
'id': id,
|
2013-08-25 22:45:41 +02:00
|
|
|
'it': it,
|
2014-01-08 14:43:55 +01:00
|
|
|
'ja': ja,
|
2013-10-15 19:15:06 +02:00
|
|
|
'nl': nl,
|
2013-09-26 15:19:14 +02:00
|
|
|
'pt-br': pt_BR,
|
2014-07-06 17:56:42 +02:00
|
|
|
'ru': ru,
|
|
|
|
'zh':zh
|
2013-08-25 22:45:41 +02:00
|
|
|
};
|
2013-06-02 00:18:46 +02:00
|
|
|
});
|
|
|
|
})(this);
|