summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/nl/custom.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pendulum/locales/nl/custom.py')
-rw-r--r--src/pendulum/locales/nl/custom.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/pendulum/locales/nl/custom.py b/src/pendulum/locales/nl/custom.py
new file mode 100644
index 0000000..ca90673
--- /dev/null
+++ b/src/pendulum/locales/nl/custom.py
@@ -0,0 +1,25 @@
+"""
+nl custom locale file.
+"""
+from __future__ import annotations
+
+
+translations = {
+ "units": {"few_second": "enkele seconden"},
+ # Relative time
+ "ago": "{} geleden",
+ "from_now": "over {}",
+ "after": "{0} later",
+ "before": "{0} eerder",
+ # Ordinals
+ "ordinal": {"other": "e"},
+ # Date formats
+ "date_formats": {
+ "L": "DD-MM-YYYY",
+ "LL": "D MMMM YYYY",
+ "LLL": "D MMMM YYYY HH:mm",
+ "LLLL": "dddd D MMMM YYYY HH:mm",
+ "LT": "HH:mm",
+ "LTS": "HH:mm:ss",
+ },
+}