twitter_cldr 1.5.0 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. data/Gemfile +32 -0
  2. data/History.txt +78 -0
  3. data/README.md +72 -62
  4. data/Rakefile +22 -0
  5. data/js/lib/compiler.rb +40 -0
  6. data/js/lib/mustache/bundle.coffee +14 -0
  7. data/js/lib/mustache/calendars/datetime.coffee +240 -0
  8. data/js/lib/mustache/calendars/timespan.coffee +52 -0
  9. data/js/lib/mustache/plurals/rules.coffee +14 -0
  10. data/js/lib/renderers/base.rb +18 -0
  11. data/js/lib/renderers/bundle.rb +18 -0
  12. data/js/lib/renderers/calendars/datetime_renderer.rb +34 -0
  13. data/js/lib/renderers/calendars/timespan_renderer.rb +39 -0
  14. data/js/lib/renderers/plurals/rules/plural_rules_compiler.rb +89 -0
  15. data/js/lib/renderers/plurals/rules/plural_rules_renderer.rb +26 -0
  16. data/js/lib/twitter_cldr_js.rb +85 -0
  17. data/js/spec/js/calendars/datetime_spec.js +418 -0
  18. data/js/spec/js/calendars/timespan_spec.js +91 -0
  19. data/js/spec/js/plurals/plural_rules_spec.js +28 -0
  20. data/js/spec/js/support/jasmine.yml +8 -0
  21. data/js/spec/rb/renderers/plurals/plural_rules_compiler_spec.rb +52 -0
  22. data/js/spec/rb/spec_helper.rb +13 -0
  23. data/lib/twitter_cldr.rb +2 -1
  24. data/lib/twitter_cldr/collation.rb +2 -1
  25. data/lib/twitter_cldr/collation/collator.rb +49 -31
  26. data/lib/twitter_cldr/collation/{sort_key.rb → sort_key_builder.rb} +31 -8
  27. data/lib/twitter_cldr/collation/trie.rb +116 -24
  28. data/lib/twitter_cldr/collation/trie_builder.rb +54 -28
  29. data/lib/twitter_cldr/collation/trie_with_fallback.rb +55 -0
  30. data/lib/twitter_cldr/core_ext/array.rb +14 -1
  31. data/lib/twitter_cldr/core_ext/calendars/datetime.rb +8 -2
  32. data/lib/twitter_cldr/core_ext/calendars/timespan.rb +5 -5
  33. data/lib/twitter_cldr/formatters/calendars/timespan_formatter.rb +10 -10
  34. data/lib/twitter_cldr/formatters/plurals/rules.rb +3 -5
  35. data/lib/twitter_cldr/resources.rb +11 -0
  36. data/lib/twitter_cldr/resources/import.rb +12 -0
  37. data/lib/twitter_cldr/resources/import/tailoring.rb +193 -0
  38. data/lib/twitter_cldr/{shared/resources.rb → resources/loader.rb} +17 -4
  39. data/lib/twitter_cldr/shared.rb +0 -1
  40. data/lib/twitter_cldr/tokenizers/base.rb +9 -9
  41. data/lib/twitter_cldr/tokenizers/calendars/datetime_tokenizer.rb +0 -4
  42. data/lib/twitter_cldr/tokenizers/calendars/timespan_tokenizer.rb +21 -7
  43. data/lib/twitter_cldr/utils.rb +11 -0
  44. data/lib/twitter_cldr/version.rb +1 -1
  45. data/resources/collation/tailoring/af.yml +3 -0
  46. data/resources/collation/tailoring/ar.yml +21 -0
  47. data/resources/collation/tailoring/ca.yml +9 -0
  48. data/resources/collation/tailoring/cs.yml +25 -0
  49. data/resources/collation/tailoring/da.yml +59 -0
  50. data/resources/collation/tailoring/de.yml +3 -0
  51. data/resources/collation/tailoring/el.yml +3 -0
  52. data/resources/collation/tailoring/en.yml +3 -0
  53. data/resources/collation/tailoring/es.yml +5 -0
  54. data/resources/collation/tailoring/eu.yml +3 -0
  55. data/resources/collation/tailoring/fa.yml +73 -0
  56. data/resources/collation/tailoring/fi.yml +61 -0
  57. data/resources/collation/tailoring/fil.yml +11 -0
  58. data/resources/collation/tailoring/fr.yml +3 -0
  59. data/resources/collation/tailoring/he.yml +3 -0
  60. data/resources/collation/tailoring/hi.yml +7 -0
  61. data/resources/collation/tailoring/hu.yml +125 -0
  62. data/resources/collation/tailoring/id.yml +3 -0
  63. data/resources/collation/tailoring/it.yml +3 -0
  64. data/resources/collation/tailoring/ja.yml +14647 -0
  65. data/resources/collation/tailoring/ko.yml +14953 -0
  66. data/resources/collation/tailoring/ms.yml +3 -0
  67. data/resources/collation/tailoring/nb.yml +59 -0
  68. data/resources/collation/tailoring/nl.yml +3 -0
  69. data/resources/collation/tailoring/pl.yml +37 -0
  70. data/resources/collation/tailoring/pt.yml +3 -0
  71. data/resources/collation/tailoring/ru.yml +3 -0
  72. data/resources/collation/tailoring/sv.yml +63 -0
  73. data/resources/collation/tailoring/th.yml +19 -0
  74. data/resources/collation/tailoring/tr.yml +27 -0
  75. data/resources/collation/tailoring/uk.yml +5 -0
  76. data/resources/collation/tailoring/ur.yml +163 -0
  77. data/resources/collation/tailoring/zh-Hant.yml +3 -0
  78. data/resources/collation/tailoring/zh.yml +149 -0
  79. data/resources/custom/locales/af/units.yml +19 -0
  80. data/resources/custom/locales/ar/units.yml +35 -0
  81. data/resources/custom/locales/ca/units.yml +19 -0
  82. data/resources/custom/locales/cs/units.yml +23 -0
  83. data/resources/custom/locales/da/units.yml +19 -0
  84. data/resources/custom/locales/de/units.yml +19 -0
  85. data/resources/custom/locales/el/units.yml +19 -0
  86. data/resources/custom/locales/en/units.yml +18 -0
  87. data/resources/custom/locales/es/units.yml +19 -0
  88. data/resources/custom/locales/eu/units.yml +19 -0
  89. data/resources/custom/locales/fa/units.yml +15 -0
  90. data/resources/custom/locales/fi/units.yml +19 -0
  91. data/resources/custom/locales/fil/units.yml +19 -0
  92. data/resources/custom/locales/fr/units.yml +19 -0
  93. data/resources/custom/locales/he/units.yml +19 -0
  94. data/resources/custom/locales/hi/units.yml +19 -0
  95. data/resources/custom/locales/hu/units.yml +15 -0
  96. data/resources/custom/locales/id/units.yml +15 -0
  97. data/resources/custom/locales/it/units.yml +19 -0
  98. data/resources/custom/locales/ja/units.yml +15 -0
  99. data/resources/custom/locales/ko/units.yml +15 -0
  100. data/resources/custom/locales/ms/units.yml +15 -0
  101. data/resources/custom/locales/nb/units.yml +19 -0
  102. data/resources/custom/locales/nl/units.yml +19 -0
  103. data/resources/custom/locales/pl/units.yml +23 -0
  104. data/resources/custom/locales/pt/units.yml +19 -0
  105. data/resources/custom/locales/ru/units.yml +27 -0
  106. data/resources/custom/locales/sv/units.yml +19 -0
  107. data/resources/custom/locales/th/units.yml +15 -0
  108. data/resources/custom/locales/tr/units.yml +15 -0
  109. data/resources/custom/locales/uk/units.yml +27 -0
  110. data/resources/custom/locales/ur/units.yml +19 -0
  111. data/resources/custom/locales/zh-Hant/units.yml +15 -0
  112. data/resources/custom/locales/zh/units.yml +15 -0
  113. data/resources/locales/af/units.yml +112 -65
  114. data/resources/locales/ar/units.yml +196 -126
  115. data/resources/locales/ca/units.yml +112 -70
  116. data/resources/locales/cs/units.yml +140 -91
  117. data/resources/locales/da/units.yml +98 -56
  118. data/resources/locales/de/units.yml +112 -70
  119. data/resources/locales/el/units.yml +119 -84
  120. data/resources/locales/en/units.yml +84 -42
  121. data/resources/locales/es/units.yml +112 -70
  122. data/resources/locales/eu/units.yml +105 -68
  123. data/resources/locales/fa/units.yml +98 -63
  124. data/resources/locales/fi/units.yml +112 -70
  125. data/resources/locales/fil/units.yml +98 -56
  126. data/resources/locales/fr/units.yml +112 -70
  127. data/resources/locales/he/units.yml +98 -56
  128. data/resources/locales/hi/units.yml +98 -56
  129. data/resources/locales/hu/units.yml +84 -49
  130. data/resources/locales/id/units.yml +84 -49
  131. data/resources/locales/it/units.yml +98 -56
  132. data/resources/locales/ja/units.yml +84 -49
  133. data/resources/locales/ko/units.yml +84 -49
  134. data/resources/locales/ms/units.yml +112 -63
  135. data/resources/locales/nb/units.yml +106 -64
  136. data/resources/locales/nl/units.yml +98 -56
  137. data/resources/locales/pl/units.yml +181 -112
  138. data/resources/locales/pt/units.yml +112 -70
  139. data/resources/locales/ru/units.yml +168 -112
  140. data/resources/locales/sv/units.yml +112 -70
  141. data/resources/locales/th/units.yml +84 -49
  142. data/resources/locales/tr/units.yml +84 -49
  143. data/resources/locales/uk/units.yml +168 -112
  144. data/resources/locales/ur/units.yml +112 -63
  145. data/resources/locales/zh-Hant/units.yml +84 -49
  146. data/resources/locales/zh/units.yml +84 -49
  147. data/spec/collation/collation_spec.rb +1 -1
  148. data/spec/collation/collator_spec.rb +120 -48
  149. data/spec/collation/sort_key_builder_spec.rb +80 -0
  150. data/spec/collation/tailoring_spec.rb +137 -0
  151. data/spec/collation/tailoring_tests/af.txt +321 -0
  152. data/spec/collation/tailoring_tests/ar.txt +188 -0
  153. data/spec/collation/tailoring_tests/ca.txt +446 -0
  154. data/spec/collation/tailoring_tests/cs.txt +273 -0
  155. data/spec/collation/tailoring_tests/da.txt +293 -0
  156. data/spec/collation/tailoring_tests/de.txt +414 -0
  157. data/spec/collation/tailoring_tests/el.txt +228 -0
  158. data/spec/collation/tailoring_tests/en.txt +399 -0
  159. data/spec/collation/tailoring_tests/es.txt +402 -0
  160. data/spec/collation/tailoring_tests/eu.txt +183 -0
  161. data/spec/collation/tailoring_tests/fa.txt +263 -0
  162. data/spec/collation/tailoring_tests/fi.txt +389 -0
  163. data/spec/collation/tailoring_tests/fil.txt +279 -0
  164. data/spec/collation/tailoring_tests/fr.txt +363 -0
  165. data/spec/collation/tailoring_tests/he.txt +167 -0
  166. data/spec/collation/tailoring_tests/hi.txt +230 -0
  167. data/spec/collation/tailoring_tests/hu.txt +773 -0
  168. data/spec/collation/tailoring_tests/id.txt +171 -0
  169. data/spec/collation/tailoring_tests/it.txt +231 -0
  170. data/spec/collation/tailoring_tests/ja.txt +4287 -0
  171. data/spec/collation/tailoring_tests/ko.txt +1761 -0
  172. data/spec/collation/tailoring_tests/ms.txt +531 -0
  173. data/spec/collation/tailoring_tests/nb.txt +375 -0
  174. data/spec/collation/tailoring_tests/nl.txt +273 -0
  175. data/spec/collation/tailoring_tests/pl.txt +225 -0
  176. data/spec/collation/tailoring_tests/pt.txt +405 -0
  177. data/spec/collation/tailoring_tests/ru.txt +213 -0
  178. data/spec/collation/tailoring_tests/sv.txt +353 -0
  179. data/spec/collation/tailoring_tests/th.txt +239 -0
  180. data/spec/collation/tailoring_tests/tr.txt +414 -0
  181. data/spec/collation/tailoring_tests/uk.txt +218 -0
  182. data/spec/collation/tailoring_tests/ur.txt +284 -0
  183. data/spec/collation/tailoring_tests/zh-Hant.txt +626 -0
  184. data/spec/collation/tailoring_tests/zh.txt +717 -0
  185. data/spec/collation/trie_builder_spec.rb +131 -51
  186. data/spec/collation/trie_spec.rb +301 -26
  187. data/spec/collation/trie_with_fallback_spec.rb +41 -0
  188. data/spec/core_ext/array_spec.rb +46 -3
  189. data/spec/core_ext/calendars/date_spec.rb +24 -24
  190. data/spec/core_ext/calendars/datetime_spec.rb +7 -0
  191. data/spec/core_ext/calendars/time_spec.rb +2 -2
  192. data/spec/formatters/calendars/timespan_formatter_spec.rb +47 -18
  193. data/spec/formatters/plurals/rules_spec.rb +3 -11
  194. data/spec/readme_spec.rb +15 -15
  195. data/spec/resources/loader_spec.rb +94 -0
  196. data/spec/spec_helper.rb +6 -0
  197. data/spec/tokenizers/calendars/timespan_tokenizer_spec.rb +1 -1
  198. data/spec/twitter_cldr_spec.rb +3 -3
  199. data/spec/utils_spec.rb +38 -0
  200. data/twitter_cldr.gemspec +25 -0
  201. metadata +156 -110
  202. data/spec/collation/sort_key_spec.rb +0 -56
  203. data/spec/shared/resources_spec.rb +0 -75
@@ -1,114 +1,163 @@
1
1
  cs:
2
2
  units:
3
3
  day:
4
- few: "{0} dny"
5
- one: "{0} den"
6
- other: "{0} dní"
4
+ default:
5
+ few: "{0} dny"
6
+ one: "{0} den"
7
+ other: "{0} dní"
8
+ short:
9
+ few: "{0} dny"
10
+ one: "{0} den"
11
+ other: "{0} dní"
7
12
  day-future:
8
- 0: "za 0 dní"
9
- 1: "za 1 den"
10
- few: "za {0} dny"
11
- one: "za {0} den"
12
- other: "za {0} dní"
13
+ default:
14
+ 0: "za 0 dní"
15
+ 1: "za 1 den"
16
+ few: "za {0} dny"
17
+ one: "za {0} den"
18
+ other: "za {0} dní"
13
19
  day-past:
14
- 0: "před 0 dny"
15
- 1: "před 1 dnem"
16
- few: "před {0} dny"
17
- one: "před {0} dnem"
18
- other: "před {0} dny"
20
+ default:
21
+ 0: "před 0 dny"
22
+ 1: "před 1 dnem"
23
+ few: "před {0} dny"
24
+ one: "před {0} dnem"
25
+ other: "před {0} dny"
19
26
  hour:
20
- few: "{0} hod."
21
- one: "{0} hod."
22
- other: "{0} hod."
27
+ default:
28
+ few: "{0} hodiny"
29
+ one: "{0} hodina"
30
+ other: "{0} hodin"
31
+ short:
32
+ few: "{0} hod."
33
+ one: "{0} hod."
34
+ other: "{0} hod."
23
35
  hour-future:
24
- 0: "za 0 hodin"
25
- 1: "za 1 hodinu"
26
- few: "za {0} hodiny"
27
- one: "za {0} hodinu"
28
- other: "za {0} hodin"
36
+ default:
37
+ 0: "za 0 hodin"
38
+ 1: "za 1 hodinu"
39
+ few: "za {0} hodiny"
40
+ one: "za {0} hodinu"
41
+ other: "za {0} hodin"
29
42
  hour-past:
30
- 0: "před 0 hodinami"
31
- 1: "před 1 hodinou"
32
- few: "před {0} hodinami"
33
- one: "před {0} hodinou"
34
- other: "před {0} hodinami"
43
+ default:
44
+ 0: "před 0 hodinami"
45
+ 1: "před 1 hodinou"
46
+ few: "před {0} hodinami"
47
+ one: "před {0} hodinou"
48
+ other: "před {0} hodinami"
35
49
  minute:
36
- few: "{0} min."
37
- one: "{0} min."
38
- other: "{0} min."
50
+ default:
51
+ few: "{0} minuty"
52
+ one: "{0} minuta"
53
+ other: "{0} minut"
54
+ short:
55
+ few: "{0} min."
56
+ one: "{0} min."
57
+ other: "{0} min."
39
58
  minute-future:
40
- 0: "za 0 minut"
41
- 1: "za 1 minutu"
42
- few: "za {0} minuty"
43
- one: "za {0} minutu"
44
- other: "za {0} minut"
59
+ default:
60
+ 0: "za 0 minut"
61
+ 1: "za 1 minutu"
62
+ few: "za {0} minuty"
63
+ one: "za {0} minutu"
64
+ other: "za {0} minut"
45
65
  minute-past:
46
- 0: "před 0 minutami"
47
- 1: "před 1 minutou"
48
- few: "před {0} minutami"
49
- one: "před {0} minutou"
50
- other: "před {0} minutami"
66
+ default:
67
+ 0: "před 0 minutami"
68
+ 1: "před 1 minutou"
69
+ few: "před {0} minutami"
70
+ one: "před {0} minutou"
71
+ other: "před {0} minutami"
51
72
  month:
52
- few: "{0} měs."
53
- one: "{0} měs."
54
- other: "{0} měs."
73
+ default:
74
+ few: "{0} měsíce"
75
+ one: "{0} měsíc"
76
+ other: "{0} měsíců"
77
+ short:
78
+ few: "{0} měs."
79
+ one: "{0} měs."
80
+ other: "{0} měs."
55
81
  month-future:
56
- 0: "za 0 měsíců"
57
- 1: "za 1 měsíc"
58
- few: "za {0} měsíce"
59
- one: "za {0} měsíc"
60
- other: "za {0} měsíců"
82
+ default:
83
+ 0: "za 0 měsíců"
84
+ 1: "za 1 měsíc"
85
+ few: "za {0} měsíce"
86
+ one: "za {0} měsíc"
87
+ other: "za {0} měsíců"
61
88
  month-past:
62
- 0: "před 0 měsíci"
63
- 1: "před 1 měsícem"
64
- few: "před {0} měsíci"
65
- one: "před {0} měsícem"
66
- other: "před {0} měsíci"
89
+ default:
90
+ 0: "před 0 měsíci"
91
+ 1: "před 1 měsícem"
92
+ few: "před {0} měsíci"
93
+ one: "před {0} měsícem"
94
+ other: "před {0} měsíci"
67
95
  second:
68
- few: "{0} sek."
69
- one: "{0} sek."
70
- other: "{0} sek."
96
+ default:
97
+ few: "{0} sekundy"
98
+ one: "{0} sekunda"
99
+ other: "{0} sekund"
100
+ short:
101
+ few: "{0} sek."
102
+ one: "{0} sek."
103
+ other: "{0} sek."
71
104
  second-future:
72
- 0: "za 0 sekund"
73
- 1: "za 1 sekundu"
74
- few: "za {0} sekundy"
75
- one: "za {0} sekundu"
76
- other: "za {0} sekund"
105
+ default:
106
+ 0: "za 0 sekund"
107
+ 1: "za 1 sekundu"
108
+ few: "za {0} sekundy"
109
+ one: "za {0} sekundu"
110
+ other: "za {0} sekund"
77
111
  second-past:
78
- 0: "před 0 sekundami"
79
- 1: "před 1 sekundou"
80
- few: "před {0} sekundami"
81
- one: "před {0} sekundou"
82
- other: "před {0} sekundami"
112
+ default:
113
+ 0: "před 0 sekundami"
114
+ 1: "před 1 sekundou"
115
+ few: "před {0} sekundami"
116
+ one: "před {0} sekundou"
117
+ other: "před {0} sekundami"
83
118
  week:
84
- few: "{0} týd."
85
- one: "{0} týd."
86
- other: "{0} týd."
119
+ default:
120
+ few: "{0} týdny"
121
+ one: "{0} týden"
122
+ other: "{0} týdnů"
123
+ short:
124
+ few: "{0} týd."
125
+ one: "{0} týd."
126
+ other: "{0} týd."
87
127
  week-future:
88
- 0: "za 0 týdnů"
89
- 1: "za 1 týden"
90
- few: "za {0} týdny"
91
- one: "za {0} týden"
92
- other: "za {0} týdnů"
128
+ default:
129
+ 0: "za 0 týdnů"
130
+ 1: "za 1 týden"
131
+ few: "za {0} týdny"
132
+ one: "za {0} týden"
133
+ other: "za {0} týdnů"
93
134
  week-past:
94
- 0: "před 0 týdny"
95
- 1: "před 1 týdnem"
96
- few: "před {0} týdny"
97
- one: "před {0} týdnem"
98
- other: "před {0} týdny"
135
+ default:
136
+ 0: "před 0 týdny"
137
+ 1: "před 1 týdnem"
138
+ few: "před {0} týdny"
139
+ one: "před {0} týdnem"
140
+ other: "před {0} týdny"
99
141
  year:
100
- few: "{0} roky"
101
- one: "{0} rok"
102
- other: "{0} let"
142
+ default:
143
+ few: "{0} roky"
144
+ one: "{0} rok"
145
+ other: "{0} let"
146
+ short:
147
+ few: "{0} roky"
148
+ one: "{0} rok"
149
+ other: "{0} let"
103
150
  year-future:
104
- 0: "za 0 roků"
105
- 1: "za 1 rok"
106
- few: "za {0} roky"
107
- one: "za {0} rok"
108
- other: "za {0} let"
151
+ default:
152
+ 0: "za 0 roků"
153
+ 1: "za 1 rok"
154
+ few: "za {0} roky"
155
+ one: "za {0} rok"
156
+ other: "za {0} let"
109
157
  year-past:
110
- 0: "před 0 roky"
111
- 1: "před 1 rokem"
112
- few: "před {0} lety"
113
- one: "před {0} rokem"
114
- other: "před {0} lety"
158
+ default:
159
+ 0: "před 0 roky"
160
+ 1: "před 1 rokem"
161
+ few: "před {0} lety"
162
+ one: "před {0} rokem"
163
+ other: "před {0} lety"
@@ -1,79 +1,121 @@
1
1
  da:
2
2
  units:
3
3
  day:
4
- one: "{0} dag"
5
- other: "{0} dage"
4
+ default:
5
+ one: "{0} dag"
6
+ other: "{0} dage"
7
+ short:
8
+ one: "{0} dag"
9
+ other: "{0} dage"
6
10
  day-future:
7
- 0: "Om 0 dage"
8
- 1: "Om 1 dag"
9
- other: "Om {0} dage"
11
+ default:
12
+ 0: "Om 0 dage"
13
+ 1: "Om 1 dag"
14
+ other: "Om {0} dage"
10
15
  day-past:
11
- 0: "0 dage siden"
12
- 1: "1 dag siden"
13
- other: "{0} dage siden"
16
+ default:
17
+ 0: "0 dage siden"
18
+ 1: "1 dag siden"
19
+ other: "{0} dage siden"
14
20
  hour:
15
- one: "{0} t."
16
- other: "{0} t."
21
+ default:
22
+ one: "{0} time"
23
+ other: "{0} timer"
24
+ short:
25
+ one: "{0} t."
26
+ other: "{0} t."
17
27
  hour-future:
18
- 0: "Om 0 timer"
19
- 1: "Om 1 time"
20
- other: "Om {0} timer"
28
+ default:
29
+ 0: "Om 0 timer"
30
+ 1: "Om 1 time"
31
+ other: "Om {0} timer"
21
32
  hour-past:
22
- 0: "0 timer siden"
23
- 1: "1 time siden"
24
- other: "{0} timer siden"
33
+ default:
34
+ 0: "0 timer siden"
35
+ 1: "1 time siden"
36
+ other: "{0} timer siden"
25
37
  minute:
26
- one: "{0} min."
27
- other: "{0} min."
38
+ default:
39
+ one: "{0} minut"
40
+ other: "{0} minutter"
41
+ short:
42
+ one: "{0} min."
43
+ other: "{0} min."
28
44
  minute-future:
29
- 0: "Om 0 minutter"
30
- 1: "Om 1 minut"
31
- other: "Om {0} minutter"
45
+ default:
46
+ 0: "Om 0 minutter"
47
+ 1: "Om 1 minut"
48
+ other: "Om {0} minutter"
32
49
  minute-past:
33
- 0: "0 minutter siden"
34
- 1: "1 minut siden"
35
- other: "{0} minutter siden"
50
+ default:
51
+ 0: "0 minutter siden"
52
+ 1: "1 minut siden"
53
+ other: "{0} minutter siden"
36
54
  month:
37
- one: "{0} mdr."
38
- other: "{0} mdr."
55
+ default:
56
+ one: "{0} måned"
57
+ other: "{0} måneder"
58
+ short:
59
+ one: "{0} mdr."
60
+ other: "{0} mdr."
39
61
  month-future:
40
- 0: "Om 0 måneder"
41
- 1: "Om 1 måned"
42
- other: "Om {0} måneder"
62
+ default:
63
+ 0: "Om 0 måneder"
64
+ 1: "Om 1 måned"
65
+ other: "Om {0} måneder"
43
66
  month-past:
44
- 0: "0 måneder siden"
45
- 1: "1 måned siden"
46
- other: "{0} måneder siden"
67
+ default:
68
+ 0: "0 måneder siden"
69
+ 1: "1 måned siden"
70
+ other: "{0} måneder siden"
47
71
  second:
48
- one: "{0} sek."
49
- other: "{0} sek."
72
+ default:
73
+ one: "{0} sekund"
74
+ other: "{0} sekunder"
75
+ short:
76
+ one: "{0} sek."
77
+ other: "{0} sek."
50
78
  second-future:
51
- 0: "Om 0 sekunder"
52
- 1: "Om 1 sekund"
53
- other: "Om {0} sekunder"
79
+ default:
80
+ 0: "Om 0 sekunder"
81
+ 1: "Om 1 sekund"
82
+ other: "Om {0} sekunder"
54
83
  second-past:
55
- 0: "0 sekunder siden"
56
- 1: "1 sekund siden"
57
- other: "{0} sekunder siden"
84
+ default:
85
+ 0: "0 sekunder siden"
86
+ 1: "1 sekund siden"
87
+ other: "{0} sekunder siden"
58
88
  week:
59
- one: "{0} uge"
60
- other: "{0} uger"
89
+ default:
90
+ one: "{0} uge"
91
+ other: "{0} uger"
92
+ short:
93
+ one: "{0} uge"
94
+ other: "{0} uger"
61
95
  week-future:
62
- 0: "Om 0 uger"
63
- 1: "om 1 uge"
64
- other: "Om {0} uger"
96
+ default:
97
+ 0: "Om 0 uger"
98
+ 1: "om 1 uge"
99
+ other: "Om {0} uger"
65
100
  week-past:
66
- 0: "0 uger siden"
67
- 1: "1 uge siden"
68
- other: "{0} uger siden"
101
+ default:
102
+ 0: "0 uger siden"
103
+ 1: "1 uge siden"
104
+ other: "{0} uger siden"
69
105
  year:
70
- one: "{0} år"
71
- other: "{0} år"
106
+ default:
107
+ one: "{0} år"
108
+ other: "{0} år"
109
+ short:
110
+ one: "{0} år"
111
+ other: "{0} år"
72
112
  year-future:
73
- 0: "Om 0 år"
74
- 1: "Om 1 år"
75
- other: "Om {0} år"
113
+ default:
114
+ 0: "Om 0 år"
115
+ 1: "Om 1 år"
116
+ other: "Om {0} år"
76
117
  year-past:
77
- 0: "0 år siden"
78
- 1: "1 år siden"
79
- other: "{0} år siden"
118
+ default:
119
+ 0: "0 år siden"
120
+ 1: "1 år siden"
121
+ other: "{0} år siden"
@@ -1,93 +1,135 @@
1
1
  de:
2
2
  units:
3
3
  day:
4
- one: "{0} Tag"
5
- other: "{0} Tage"
4
+ default:
5
+ one: "{0} Tag"
6
+ other: "{0} Tage"
7
+ short:
8
+ one: "{0} Tag"
9
+ other: "{0} Tage"
6
10
  day-future:
7
- 0: "In 0 Tagen"
8
- 1: "In 1 Tag"
9
- one: "In {0} Tag"
10
- other: "In {0} Tagen"
11
+ default:
12
+ 0: "In 0 Tagen"
13
+ 1: "In Tag"
14
+ one: "In {0} Tag"
15
+ other: "In {0} Tagen"
11
16
  day-past:
12
- 0: "Vor 0 Tagen"
13
- 1: "Vor 1 Tag"
14
- one: "Vor {0} Tag"
15
- other: "Vor {0} Tagen"
17
+ default:
18
+ 0: "Vor 0 Tagen"
19
+ 1: "Vor Tag"
20
+ one: "Vor {0} Tag"
21
+ other: "Vor {0} Tagen"
16
22
  hour:
17
- one: "{0} Std."
18
- other: "{0} Std."
23
+ default:
24
+ one: "{0} Stunde"
25
+ other: "{0} Stunden"
26
+ short:
27
+ one: "{0} Std."
28
+ other: "{0} Std."
19
29
  hour-future:
20
- 0: "In 0 Stunden"
21
- 1: "In 1 Stunde"
22
- one: "In {0} Stunde"
23
- other: "In {0} Stunden"
30
+ default:
31
+ 0: "In 0 Stunden"
32
+ 1: "In Stunde"
33
+ one: "In {0} Stunde"
34
+ other: "In {0} Stunden"
24
35
  hour-past:
25
- 0: "Vor 0 Stunden"
26
- 1: "Vor 1 Stunde"
27
- one: "Vor {0} Stunde"
28
- other: "Vor {0} Stunden"
36
+ default:
37
+ 0: "Vor 0 Stunden"
38
+ 1: "Vor Stunde"
39
+ one: "Vor {0} Stunde"
40
+ other: "Vor {0} Stunden"
29
41
  minute:
30
- one: "{0} Min."
31
- other: "{0} Min."
42
+ default:
43
+ one: "{0} Minute"
44
+ other: "{0} Minuten"
45
+ short:
46
+ one: "{0} Min."
47
+ other: "{0} Min."
32
48
  minute-future:
33
- 0: "In 0 Minuten"
34
- 1: "In 1 Minute"
35
- one: "In {0} Minute"
36
- other: "In {0} Minuten"
49
+ default:
50
+ 0: "In 0 Minuten"
51
+ 1: "In Minute"
52
+ one: "In {0} Minute"
53
+ other: "In {0} Minuten"
37
54
  minute-past:
38
- 0: "Vor 0 Minuten"
39
- 1: "Vor 1 Minute"
40
- one: "Vor {0} Minute"
41
- other: "Vor {0} Minuten"
55
+ default:
56
+ 0: "Vor 0 Minuten"
57
+ 1: "Vor Minute"
58
+ one: "Vor {0} Minute"
59
+ other: "Vor {0} Minuten"
42
60
  month:
43
- one: "{0} Monat"
44
- other: "{0} Monate"
61
+ default:
62
+ one: "{0} Monat"
63
+ other: "{0} Monate"
64
+ short:
65
+ one: "{0} Monat"
66
+ other: "{0} Monate"
45
67
  month-future:
46
- 0: "In 0 Monaten"
47
- 1: "In 1 Monat"
48
- one: "In {0} Monat"
49
- other: "In {0} Monaten"
68
+ default:
69
+ 0: "In 0 Monaten"
70
+ 1: "In Monat"
71
+ one: "In {0} Monat"
72
+ other: "In {0} Monaten"
50
73
  month-past:
51
- 0: "Vor 0 Monaten"
52
- 1: "Vor 1 Monat"
53
- one: "Vor {0} Monat"
54
- other: "Vor {0} Monaten"
74
+ default:
75
+ 0: "Vor 0 Monaten"
76
+ 1: "Vor Monat"
77
+ one: "Vor {0} Monat"
78
+ other: "Vor {0} Monaten"
55
79
  second:
56
- one: "{0} Sek."
57
- other: "{0} Sek."
80
+ default:
81
+ one: "{0} Sekunde"
82
+ other: "{0} Sekunden"
83
+ short:
84
+ one: "{0} Sek."
85
+ other: "{0} Sek."
58
86
  second-future:
59
- 0: "In 0 Sekunden"
60
- 1: "In 1 Sekunde"
61
- one: "In {0} Sekunde"
62
- other: "In {0} Sekunden"
87
+ default:
88
+ 0: "In 0 Sekunden"
89
+ 1: "In Sekunde"
90
+ one: "In {0} Sekunde"
91
+ other: "In {0} Sekunden"
63
92
  second-past:
64
- 0: "Vor 0 Sekunden"
65
- 1: "Vor 1 Sekunde"
66
- one: "Vor {0} Sekunde"
67
- other: "Vor {0} Sekunden"
93
+ default:
94
+ 0: "Vor 0 Sekunden"
95
+ 1: "Vor Sekunde"
96
+ one: "Vor {0} Sekunde"
97
+ other: "Vor {0} Sekunden"
68
98
  week:
69
- one: "{0} Woche"
70
- other: "{0} Wochen"
99
+ default:
100
+ one: "{0} Woche"
101
+ other: "{0} Wochen"
102
+ short:
103
+ one: "{0} Woche"
104
+ other: "{0} Wochen"
71
105
  week-future:
72
- 0: "In 0 Wochen"
73
- 1: "In 1 Woche"
74
- one: "In {0} Woche"
75
- other: "In {0} Wochen"
106
+ default:
107
+ 0: "In 0 Wochen"
108
+ 1: "In Woche"
109
+ one: "In {0} Woche"
110
+ other: "In {0} Wochen"
76
111
  week-past:
77
- 0: "Vor 0 Wochen"
78
- 1: "Vor 1 Woche"
79
- one: "Vor {0} Woche"
80
- other: "Vor {0} Wochen"
112
+ default:
113
+ 0: "Vor 0 Wochen"
114
+ 1: "Vor Woche"
115
+ one: "Vor {0} Woche"
116
+ other: "Vor {0} Wochen"
81
117
  year:
82
- one: "{0} Jahr"
83
- other: "{0} Jahre"
118
+ default:
119
+ one: "{0} Jahr"
120
+ other: "{0} Jahre"
121
+ short:
122
+ one: "{0} Jahr"
123
+ other: "{0} Jahre"
84
124
  year-future:
85
- 0: "In 0 Jahren"
86
- 1: "In 1 Jahr"
87
- one: "In {0} Jahr"
88
- other: "In {0} Jahren"
125
+ default:
126
+ 0: "In 0 Jahren"
127
+ 1: "In Jahr"
128
+ one: "In {0} Jahr"
129
+ other: "In {0} Jahren"
89
130
  year-past:
90
- 0: "Vor 0 Jahren"
91
- 1: "Vor 1 Jahr"
92
- one: "Vor {0} Jahr"
93
- other: "Vor {0} Jahren"
131
+ default:
132
+ 0: "Vor 0 Jahren"
133
+ 1: "Vor Jahr"
134
+ one: "Vor {0} Jahr"
135
+ other: "Vor {0} Jahren"