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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
| function buildDistanceInWordsLocale () {
| var distanceInWordsLocale = {
| lessThanXSeconds: {
| standalone: {
| one: 'weniger als eine Sekunde',
| other: 'weniger als {{count}} Sekunden'
| },
| withPreposition: {
| one: 'weniger als einer Sekunde',
| other: 'weniger als {{count}} Sekunden'
| }
| },
|
| xSeconds: {
| standalone: {
| one: 'eine Sekunde',
| other: '{{count}} Sekunden'
| },
| withPreposition: {
| one: 'einer Sekunde',
| other: '{{count}} Sekunden'
| }
| },
|
| halfAMinute: {
| standalone: 'eine halbe Minute',
| withPreposition: 'einer halben Minute'
| },
|
| lessThanXMinutes: {
| standalone: {
| one: 'weniger als eine Minute',
| other: 'weniger als {{count}} Minuten'
| },
| withPreposition: {
| one: 'weniger als einer Minute',
| other: 'weniger als {{count}} Minuten'
| }
| },
|
| xMinutes: {
| standalone: {
| one: 'eine Minute',
| other: '{{count}} Minuten'
| },
| withPreposition: {
| one: 'einer Minute',
| other: '{{count}} Minuten'
| }
| },
|
| aboutXHours: {
| standalone: {
| one: 'etwa eine Stunde',
| other: 'etwa {{count}} Stunden'
| },
| withPreposition: {
| one: 'etwa einer Stunde',
| other: 'etwa {{count}} Stunden'
| }
| },
|
| xHours: {
| standalone: {
| one: 'eine Stunde',
| other: '{{count}} Stunden'
| },
| withPreposition: {
| one: 'einer Stunde',
| other: '{{count}} Stunden'
| }
| },
|
| xDays: {
| standalone: {
| one: 'ein Tag',
| other: '{{count}} Tage'
| },
| withPreposition: {
| one: 'einem Tag',
| other: '{{count}} Tagen'
| }
|
| },
|
| aboutXMonths: {
| standalone: {
| one: 'etwa ein Monat',
| other: 'etwa {{count}} Monate'
| },
| withPreposition: {
| one: 'etwa einem Monat',
| other: 'etwa {{count}} Monaten'
| }
| },
|
| xMonths: {
| standalone: {
| one: 'ein Monat',
| other: '{{count}} Monate'
| },
| withPreposition: {
| one: 'einem Monat',
| other: '{{count}} Monaten'
| }
| },
|
| aboutXYears: {
| standalone: {
| one: 'etwa ein Jahr',
| other: 'etwa {{count}} Jahre'
| },
| withPreposition: {
| one: 'etwa einem Jahr',
| other: 'etwa {{count}} Jahren'
| }
| },
|
| xYears: {
| standalone: {
| one: 'ein Jahr',
| other: '{{count}} Jahre'
| },
| withPreposition: {
| one: 'einem Jahr',
| other: '{{count}} Jahren'
| }
| },
|
| overXYears: {
| standalone: {
| one: 'mehr als ein Jahr',
| other: 'mehr als {{count}} Jahre'
| },
| withPreposition: {
| one: 'mehr als einem Jahr',
| other: 'mehr als {{count}} Jahren'
| }
| },
|
| almostXYears: {
| standalone: {
| one: 'fast ein Jahr',
| other: 'fast {{count}} Jahre'
| },
| withPreposition: {
| one: 'fast einem Jahr',
| other: 'fast {{count}} Jahren'
| }
| }
| }
|
| function localize (token, count, options) {
| options = options || {}
|
| var usageGroup = options.addSuffix
| ? distanceInWordsLocale[token].withPreposition
| : distanceInWordsLocale[token].standalone
|
| var result
| if (typeof usageGroup === 'string') {
| result = usageGroup
| } else if (count === 1) {
| result = usageGroup.one
| } else {
| result = usageGroup.other.replace('{{count}}', count)
| }
|
| if (options.addSuffix) {
| if (options.comparison > 0) {
| return 'in ' + result
| } else {
| return 'vor ' + result
| }
| }
|
| return result
| }
|
| return {
| localize: localize
| }
| }
|
| module.exports = buildDistanceInWordsLocale
|
|