Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pendulum/locales/en/custom.py: 100%
1 statements
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-30 06:11 +0000
« prev ^ index » next coverage.py v7.3.1, created at 2023-09-30 06:11 +0000
1"""
2en custom locale file.
3"""
5translations = {
6 "units": {"few_second": "a few seconds"},
7 # Relative time
8 "ago": "{} ago",
9 "from_now": "in {}",
10 "after": "{0} after",
11 "before": "{0} before",
12 # Ordinals
13 "ordinal": {"one": "st", "two": "nd", "few": "rd", "other": "th"},
14 # Date formats
15 "date_formats": {
16 "LTS": "h:mm:ss A",
17 "LT": "h:mm A",
18 "L": "MM/DD/YYYY",
19 "LL": "MMMM D, YYYY",
20 "LLL": "MMMM D, YYYY h:mm A",
21 "LLLL": "dddd, MMMM D, YYYY h:mm A",
22 },
23}