summaryrefslogtreecommitdiffstats
path: root/js/vendor/momentjs/locale/is.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/momentjs/locale/is.js')
-rw-r--r--js/vendor/momentjs/locale/is.js37
1 files changed, 19 insertions, 18 deletions
diff --git a/js/vendor/momentjs/locale/is.js b/js/vendor/momentjs/locale/is.js
index 21888aa2c..f1ed257a4 100644
--- a/js/vendor/momentjs/locale/is.js
+++ b/js/vendor/momentjs/locale/is.js
@@ -1,16 +1,15 @@
-// moment.js locale configuration
-// locale : icelandic (is)
-// author : Hinrik Örn Sigurðsson : https://github.com/hinrik
+//! moment.js locale configuration
+//! locale : icelandic (is)
+//! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
+
+;(function (global, factory) {
+ typeof exports === 'object' && typeof module !== 'undefined'
+ && typeof require === 'function' ? factory(require('../moment')) :
+ typeof define === 'function' && define.amd ? define(['moment'], factory) :
+ factory(global.moment)
+}(this, function (moment) { 'use strict';
+
-(function (factory) {
- if (typeof define === 'function' && define.amd) {
- define(['moment'], factory); // AMD
- } else if (typeof exports === 'object') {
- module.exports = factory(require('../moment')); // Node
- } else {
- factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
- }
-}(function (moment) {
function plural(n) {
if (n % 100 === 11) {
return true;
@@ -19,7 +18,6 @@
}
return true;
}
-
function translate(number, withoutSuffix, key, isFuture) {
var result = number + ' ';
switch (key) {
@@ -79,7 +77,7 @@
}
}
- return moment.defineLocale('is', {
+ var is = moment.defineLocale('is', {
months : 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split('_'),
monthsShort : 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),
weekdays : 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split('_'),
@@ -87,11 +85,11 @@
weekdaysMin : 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),
longDateFormat : {
LT : 'H:mm',
- LTS : 'LT:ss',
+ LTS : 'H:mm:ss',
L : 'DD/MM/YYYY',
LL : 'D. MMMM YYYY',
- LLL : 'D. MMMM YYYY [kl.] LT',
- LLLL : 'dddd, D. MMMM YYYY [kl.] LT'
+ LLL : 'D. MMMM YYYY [kl.] H:mm',
+ LLLL : 'dddd, D. MMMM YYYY [kl.] H:mm'
},
calendar : {
sameDay : '[í dag kl.] LT',
@@ -123,4 +121,7 @@
doy : 4 // The week that contains Jan 4th is the first week of the year.
}
});
-}));
+
+ return is;
+
+})); \ No newline at end of file