summaryrefslogtreecommitdiffstats
path: root/pendulum/locales/ru/custom.py
blob: ed770c371cea4feb3c1c85aace57272dbe9cc0a5 (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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals


"""
ru custom locale file.
"""

translations = {
    # Relative time
    "ago": "{} назад",
    "from_now": "через {}",
    "after": "{0} после",
    "before": "{0} до",
    # Date formats
    "date_formats": {
        "LTS": "HH:mm:ss",
        "LT": "HH:mm",
        "L": "DD.MM.YYYY",
        "LL": "D MMMM YYYY г.",
        "LLL": "D MMMM YYYY г., HH:mm",
        "LLLL": "dddd, D MMMM YYYY г., HH:mm",
    },
}