summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/it/custom.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pendulum/locales/it/custom.py')
-rw-r--r--src/pendulum/locales/it/custom.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/pendulum/locales/it/custom.py b/src/pendulum/locales/it/custom.py
new file mode 100644
index 0000000..b1a77a0
--- /dev/null
+++ b/src/pendulum/locales/it/custom.py
@@ -0,0 +1,25 @@
+"""
+it custom locale file.
+"""
+from __future__ import annotations
+
+
+translations = {
+ "units": {"few_second": "alcuni secondi"},
+ # Relative Time
+ "ago": "{0} fa",
+ "from_now": "in {0}",
+ "after": "{0} dopo",
+ "before": "{0} prima",
+ # Ordinals
+ "ordinal": {"other": "°"},
+ # Date formats
+ "date_formats": {
+ "LTS": "H:mm:ss",
+ "LT": "H:mm",
+ "L": "DD/MM/YYYY",
+ "LL": "D MMMM YYYY",
+ "LLL": "D MMMM YYYY [alle] H:mm",
+ "LLLL": "dddd, D MMMM YYYY [alle] H:mm",
+ },
+}