summaryrefslogtreecommitdiff
path: root/locales/jquery.timeago.da.js
diff options
context:
space:
mode:
Diffstat (limited to 'locales/jquery.timeago.da.js')
-rw-r--r--locales/jquery.timeago.da.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/locales/jquery.timeago.da.js b/locales/jquery.timeago.da.js
new file mode 100644
index 0000000..236c34c
--- /dev/null
+++ b/locales/jquery.timeago.da.js
@@ -0,0 +1,28 @@
+(function (factory) {
+ if (typeof define === 'function' && define.amd) {
+ define(['jquery'], factory);
+ } else if (typeof module === 'object' && typeof module.exports === 'object') {
+ factory(require('jquery'));
+ } else {
+ factory(jQuery);
+ }
+}(function (jQuery) {
+ // Danish
+ jQuery.timeago.settings.strings = {
+ prefixAgo: "for",
+ prefixFromNow: "om",
+ suffixAgo: "siden",
+ suffixFromNow: "",
+ seconds: "mindre end et minut",
+ minute: "ca. et minut",
+ minutes: "%d minutter",
+ hour: "ca. en time",
+ hours: "ca. %d timer",
+ day: "en dag",
+ days: "%d dage",
+ month: "ca. en måned",
+ months: "%d måneder",
+ year: "ca. et år",
+ years: "%d år"
+ };
+}));