summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/tr/custom.py
diff options
context:
space:
mode:
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",
+ },
+}