xmpp.chapril.org-conversejs/locale/locales.js

55 lines
1.4 KiB
JavaScript
Raw Normal View History

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.
*/
(function (root, factory) {
require.config({
paths: {
2013-07-29 22:39:41 +02:00
"jed": "components/jed/jed",
"af": "locale/af/LC_MESSAGES/af",
"de": "locale/de/LC_MESSAGES/de",
"en": "locale/en/LC_MESSAGES/en",
2013-07-23 22:17:19 +02:00
"es": "locale/es/LC_MESSAGES/es",
"fr": "locale/fr/LC_MESSAGES/fr",
"hu": "locale/hu/LC_MESSAGES/hu",
"it": "locale/it/LC_MESSAGES/it",
2014-01-08 14:43:55 +01:00
"ja": "locale/ja/LC_MESSAGES/ja",
"nl": "locale/nl/LC_MESSAGES/nl",
2013-09-26 15:19:14 +02:00
"pt_BR": "locale/pt_BR/LC_MESSAGES/pt_BR",
"ru": "locale/ru/LC_MESSAGES/ru"
}
});
define("locales", [
'jed',
'af',
'de',
2013-06-02 18:48:25 +02:00
'en',
2013-07-23 00:50:58 +02:00
'es',
'fr',
'hu',
'it',
2014-01-08 14:43:55 +01:00
'ja',
'nl',
2013-09-26 15:19:14 +02:00
'pt_BR',
'ru'
2014-01-08 14:43:55 +01:00
], function (jed, af, de, en, es, fr, hu, it, ja, nl, pt_BR, ru) {
root.locales = {
'af': af,
'de': de,
'en': en,
'es': es,
'fr': fr,
'hu': hu,
'it': it,
2014-01-08 14:43:55 +01:00
'ja': ja,
'nl': nl,
2013-09-26 15:19:14 +02:00
'pt-br': pt_BR,
'ru': ru
};
});
})(this);