summaryrefslogtreecommitdiffstats
path: root/src/pendulum/locales/he/custom.py
blob: c8e1f70a192b7a61c699cabfef103d16730d7f0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
he custom locale file.
"""
from __future__ import annotations


translations = {
    "units": {"few_second": "כמה שניות"},
    # Relative time
    "ago": "לפני {0}",
    "from_now": "תוך {0}",
    "after": "בעוד {0}",
    "before": "{0} קודם",
    # Ordinals
    "ordinal": {"other": "º"},
    # Date formats
    "date_formats": {
        "LTS": "H:mm:ss",
        "LT": "H:mm",
        "LLLL": "dddd, D [ב] MMMM [ב] YYYY H:mm",
        "LLL": "D [ב] MMMM [ב] YYYY H:mm",
        "LL": "D [ב] MMMM [ב] YYYY",
        "L": "DD/MM/YYYY",
    },
}