-
Notifications
You must be signed in to change notification settings - Fork 0
/
ordinal2number.map
67 lines (67 loc) · 1.16 KB
/
ordinal2number.map
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[
["32nd", "32"],
["31st", "31"],
["30th", "30"],
["29th", "29"],
["28th", "28"],
["27th", "27"],
["26th", "26"],
["25th", "25"],
["24th", "24"],
["23rd", "23"],
["22nd", "22"],
["21st", "21"],
["20th", "20"],
["19th", "19"],
["18th", "18"],
["17th", "17"],
["16th", "16"],
["15th", "15"],
["14th", "14"],
["13th", "13"],
["12th", "12"],
["11th", "11"],
["10th", "10"],
["9th", "9"],
["8th", "8"],
["7th", "7"],
["6th", "6"],
["5th", "5"],
["4th", "4"],
["3rd", "3"],
["2nd", "2"],
["1st", "1"],
["Thirty second", "32"],
["Thirty first", "31"],
["Thirtieth", "30"],
["Twenty ninth", "29"],
["Twenty eighth", "28"],
["Twenty seventh", "27"],
["Twenty sixth", "26"],
["Twenty fifth", "25"],
["Twenty fourth", "24"],
["Twenty third", "23"],
["Twenty second", "22"],
["Twenty first", "21"],
["Twentieth", "20"],
["Nineteenth", "19"],
["Eighteenth", "18"],
["Seventeenth", "17"],
["Sixteenth", "16"],
["Fifteenth", "15"],
["Fourteenth", "14"],
["Thirteenth", "13"],
["Twelfth", "12"],
["Eleventh", "11"],
["Tenth", "10"],
["Ninth", "9"],
["Eighth", "8"],
["Seventh", "7"],
["Sixth", "6"],
["Fifth", "5"],
["Fourth", "4"],
["Third", "3"],
["Second", "2"],
["First", "1"],
["fooz", "barz"]
]