summaryrefslogtreecommitdiffstats
path: root/js/vendor/momentjs/lang/da.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/momentjs/lang/da.js')
-rw-r--r--js/vendor/momentjs/lang/da.js46
1 files changed, 46 insertions, 0 deletions
diff --git a/js/vendor/momentjs/lang/da.js b/js/vendor/momentjs/lang/da.js
new file mode 100644
index 000000000..3f4c459ab
--- /dev/null
+++ b/js/vendor/momentjs/lang/da.js
@@ -0,0 +1,46 @@
+// moment.js language configuration
+// language : danish (da)
+// author : Ulrik Nielsen : https://github.com/mrbase
+
+require('../moment').lang('da', {
+ months : "Januar_Februar_Marts_April_Maj_Juni_Juli_August_September_Oktober_November_December".split("_"),
+ monthsShort : "Jan_Feb_Mar_Apr_Maj_Jun_Jul_Aug_Sep_Okt_Nov_Dec".split("_"),
+ weekdays : "Søndag_Mandag_Tirsdag_Onsdag_Torsdag_Fredag_Lørdag".split("_"),
+ weekdaysShort : "Søn_Man_Tir_Ons_Tor_Fre_Lør".split("_"),
+ weekdaysMin : "Sø_Ma_Ti_On_To_Fr_Lø".split("_"),
+ longDateFormat : {
+ LT : "HH:mm",
+ L : "DD/MM/YYYY",
+ LL : "D MMMM YYYY",
+ LLL : "D MMMM YYYY LT",
+ LLLL : "dddd D. MMMM, YYYY LT"
+ },
+ calendar : {
+ sameDay : '[I dag kl.] LT',
+ nextDay : '[I morgen kl.] LT',
+ nextWeek : 'dddd [kl.] LT',
+ lastDay : '[I går kl.] LT',
+ lastWeek : '[sidste] dddd [kl] LT',
+ sameElse : 'L'
+ },
+ relativeTime : {
+ future : "om %s",
+ past : "%s siden",
+ s : "få sekunder",
+ m : "et minut",
+ mm : "%d minutter",
+ h : "en time",
+ hh : "%d timer",
+ d : "en dag",
+ dd : "%d dage",
+ M : "en måned",
+ MM : "%d måneder",
+ y : "et år",
+ yy : "%d år"
+ },
+ ordinal : '%d.',
+ week : {
+ dow : 1, // Monday is the first day of the week.
+ doy : 4 // The week that contains Jan 4th is the first week of the year.
+ }
+});