summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/tr/custom.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-17 14:36:26 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-12-17 14:36:33 +0000
commit665666d6f4213da8db57ebb480947b7caf1fe382 (patch)
tree0cac5d322dfe861a6de62b04fb916cef6dbe4510 /src/pendulum/locales/tr/custom.py
parentReleasing debian version 3.0.0~a1-2. (diff)
downloadpendulum-665666d6f4213da8db57ebb480947b7caf1fe382.tar.xz
pendulum-665666d6f4213da8db57ebb480947b7caf1fe382.zip
Merging upstream version 3.0.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/pendulum/locales/tr/custom.py')
-rw-r--r--src/pendulum/locales/tr/custom.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/pendulum/locales/tr/custom.py b/src/pendulum/locales/tr/custom.py
new file mode 100644
index 0000000..b7fd3c7
--- /dev/null
+++ b/src/pendulum/locales/tr/custom.py
@@ -0,0 +1,24 @@
+"""
+tr custom locale file.
+"""
+from __future__ import annotations
+
+
+translations = {
+ # Relative time
+ "ago": "{} önce",
+ "from_now": "{} içinde",
+ "after": "{0} sonra",
+ "before": "{0} önce",
+ # Ordinals
+ "ordinal": {"one": ".", "two": ".", "few": ".", "other": "."},
+ # Date formats
+ "date_formats": {
+ "LTS": "h:mm:ss A",
+ "LT": "h:mm A",
+ "L": "MM/DD/YYYY",
+ "LL": "MMMM D, YYYY",
+ "LLL": "MMMM D, YYYY h:mm A",
+ "LLLL": "dddd, MMMM D, YYYY h:mm A",
+ },
+}