Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pendulum/locales/en/custom.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-07 06:35 +0000

1# -*- coding: utf-8 -*- 

2from __future__ import unicode_literals 

3 

4 

5""" 

6en custom locale file. 

7""" 

8 

9translations = { 

10 "units": {"few_second": "a few seconds"}, 

11 # Relative time 

12 "ago": "{} ago", 

13 "from_now": "in {}", 

14 "after": "{0} after", 

15 "before": "{0} before", 

16 # Ordinals 

17 "ordinal": {"one": "st", "two": "nd", "few": "rd", "other": "th"}, 

18 # Date formats 

19 "date_formats": { 

20 "LTS": "h:mm:ss A", 

21 "LT": "h:mm A", 

22 "L": "MM/DD/YYYY", 

23 "LL": "MMMM D, YYYY", 

24 "LLL": "MMMM D, YYYY h:mm A", 

25 "LLLL": "dddd, MMMM D, YYYY h:mm A", 

26 }, 

27}