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


translations = {
    # Relative time
    "ago": "{} sedan",
    "from_now": "från nu {}",
    "after": "{0} efter",
    "before": "{0} innan",
    # Date formats
    "date_formats": {
        "LTS": "HH:mm:ss",
        "LT": "HH:mm",
        "L": "YYYY-MM-DD",
        "LL": "D MMMM YYYY",
        "LLL": "D MMMM YYYY, HH:mm",
        "LLLL": "dddd, D MMMM YYYY, HH:mm",
    },
}