summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/fa/custom.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pendulum/locales/fa/custom.py')
-rw-r--r--src/pendulum/locales/fa/custom.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/pendulum/locales/fa/custom.py b/src/pendulum/locales/fa/custom.py
new file mode 100644
index 0000000..e4b4a60
--- /dev/null
+++ b/src/pendulum/locales/fa/custom.py
@@ -0,0 +1,20 @@
+"""
+fa custom locale file.
+"""
+from __future__ import annotations
+
+
+translations = {
+ # Relative time
+ "after": "{0} پس از",
+ "before": "{0} پیش از",
+ # Date formats
+ "date_formats": {
+ "LTS": "HH:mm:ss",
+ "LT": "HH:mm",
+ "LLLL": "dddd, D MMMM YYYY HH:mm",
+ "LLL": "D MMMM YYYY HH:mm",
+ "LL": "D MMMM YYYY",
+ "L": "DD/MM/YYYY",
+ },
+}