summaryrefslogtreecommitdiffstats
path: root/pendulum/locales/da/custom.py
diff options
context:
space:
mode:
Diffstat (limited to 'pendulum/locales/da/custom.py')
-rw-r--r--pendulum/locales/da/custom.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/pendulum/locales/da/custom.py b/pendulum/locales/da/custom.py
new file mode 100644
index 0000000..258e47b
--- /dev/null
+++ b/pendulum/locales/da/custom.py
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+
+"""
+da custom locale file.
+"""
+
+translations = {
+ # Relative time
+ "after": "{0} efter",
+ "before": "{0} før",
+ # Date formats
+ "date_formats": {
+ "LTS": "HH:mm:ss",
+ "LT": "HH:mm",
+ "LLLL": "dddd [d.] D. MMMM YYYY HH:mm",
+ "LLL": "D. MMMM YYYY HH:mm",
+ "LL": "D. MMMM YYYY",
+ "L": "DD/MM/YYYY",
+ },
+}