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",
|
|
|
|
"en": "locale/en/LC_MESSAGES/en",
|
2013-07-23 22:17:19 +02:00
|
|
|
"es": "locale/es/LC_MESSAGES/es",
|
2013-06-02 19:54:16 +02:00
|
|
|
"de": "locale/de/LC_MESSAGES/de",
|
2013-07-24 22:12:17 +02:00
|
|
|
"it": "locale/it/LC_MESSAGES/it",
|
2013-07-27 02:05:55 +02:00
|
|
|
"pt_BR": "locale/pt_BR/LC_MESSAGES/pt_BR"
|
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-24 22:12:17 +02:00
|
|
|
"it",
|
2013-07-27 02:05:55 +02:00
|
|
|
"pt_BR"
|
2013-07-28 23:12:21 +02:00
|
|
|
], function (jed, af, en, es, de, it, pt_BR) {
|
2013-08-25 22:45:41 +02:00
|
|
|
root.locales = {
|
|
|
|
'af': af,
|
|
|
|
'en': en,
|
|
|
|
'es': es,
|
|
|
|
'de': de,
|
|
|
|
'it': it,
|
|
|
|
'pt-br': pt_BR
|
|
|
|
};
|
2013-06-02 00:18:46 +02:00
|
|
|
});
|
|
|
|
})(this);
|