Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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}