summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/fa/custom.py
blob: e4b4a60ae353d20e8dcd287817944e26adf0884d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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",
    },
}