2015-01-16 22:33:18 +01: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.
|
2015-06-22 22:05:33 +02:00
|
|
|
*
|
|
|
|
* See also src/moment_locales.js
|
2015-01-16 22:33:18 +01:00
|
|
|
*/
|
2017-01-26 15:49:02 +01:00
|
|
|
/*global define */
|
2015-01-16 22:33:18 +01:00
|
|
|
(function (root, factory) {
|
2017-06-14 15:42:48 +02:00
|
|
|
define(['jed',
|
2015-01-16 22:33:18 +01:00
|
|
|
'text!af',
|
2016-04-14 11:05:22 +02:00
|
|
|
'text!ca',
|
2015-01-16 22:33:18 +01:00
|
|
|
'text!de',
|
|
|
|
'text!es',
|
|
|
|
'text!fr',
|
|
|
|
'text!he',
|
|
|
|
'text!hu',
|
|
|
|
'text!id',
|
|
|
|
'text!it',
|
|
|
|
'text!ja',
|
|
|
|
'text!nb',
|
|
|
|
'text!nl',
|
|
|
|
'text!pl',
|
|
|
|
'text!pt_BR',
|
|
|
|
'text!ru',
|
2015-05-01 11:16:23 +02:00
|
|
|
'text!uk',
|
2015-01-16 22:33:18 +01:00
|
|
|
'text!zh'
|
|
|
|
], function ($, Jed) {
|
|
|
|
root.locales = {
|
2017-03-31 22:45:41 +02:00
|
|
|
'en': {},
|
2016-02-28 09:30:07 +01:00
|
|
|
'af': arguments[1],
|
2016-04-14 11:05:22 +02:00
|
|
|
'ca': arguments[2],
|
|
|
|
'de': arguments[3],
|
2017-03-31 04:06:00 +02:00
|
|
|
'es': arguments[4],
|
|
|
|
'fr': arguments[5],
|
|
|
|
'he': arguments[6],
|
|
|
|
'hu': arguments[7],
|
|
|
|
'id': arguments[8],
|
|
|
|
'it': arguments[9],
|
|
|
|
'ja': arguments[10],
|
|
|
|
'nb': arguments[11],
|
|
|
|
'nl': arguments[12],
|
|
|
|
'pl': arguments[13],
|
|
|
|
'pt-br': arguments[14],
|
|
|
|
'ru': arguments[15],
|
|
|
|
'uk': arguments[16],
|
|
|
|
'zh': arguments[17]
|
2015-01-16 22:33:18 +01:00
|
|
|
};
|
|
|
|
return root.locales;
|
|
|
|
});
|
|
|
|
})(this);
|