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,79 +1,121 @@
1
1
  fil:
2
2
  units:
3
3
  day:
4
- one: "{0} arw"
5
- other: "{0} arw"
4
+ default:
5
+ one: "{0} araw"
6
+ other: "{0} araw"
7
+ short:
8
+ one: "{0} arw"
9
+ other: "{0} arw"
6
10
  day-future:
7
- 0: "Sa 0 na araw"
8
- 1: "Sa 1 araw"
9
- other: "Sa {0} (na) araw"
11
+ default:
12
+ 0: "Sa 0 na araw"
13
+ 1: "Sa 1 araw"
14
+ other: "Sa {0} (na) araw"
10
15
  day-past:
11
- 0: "Nakalipas na 0 araw"
12
- 1: "Nakalipas na 1 araw"
13
- other: "Nakalipas na {0} (na) araw"
16
+ default:
17
+ 0: "Nakalipas na 0 araw"
18
+ 1: "Nakalipas na 1 araw"
19
+ other: "Nakalipas na {0} (na) araw"
14
20
  hour:
15
- one: "{0} or"
16
- other: "{0} or"
21
+ default:
22
+ one: "{0} oras"
23
+ other: "{0} oras"
24
+ short:
25
+ one: "{0} or"
26
+ other: "{0} or"
17
27
  hour-future:
18
- 0: "Sa 0 oras"
19
- 1: "Sa 1 oras"
20
- other: "Sa {0} (na) oras"
28
+ default:
29
+ 0: "Sa 0 oras"
30
+ 1: "Sa 1 oras"
31
+ other: "Sa {0} (na) oras"
21
32
  hour-past:
22
- 0: "Nakalipas na 0 oras"
23
- 1: "Nakalipas na 1 oras"
24
- other: "Nakalipas na {0} (na) oras"
33
+ default:
34
+ 0: "Nakalipas na 0 oras"
35
+ 1: "Nakalipas na 1 oras"
36
+ other: "Nakalipas na {0} (na) oras"
25
37
  minute:
26
- one: "{0} min"
27
- other: "{0} min"
38
+ default:
39
+ one: "{0} minuto"
40
+ other: "{0} minuto"
41
+ short:
42
+ one: "{0} min"
43
+ other: "{0} min"
28
44
  minute-future:
29
- 0: "Sa 0 minuto"
30
- 1: "Sa 1 minuto"
31
- other: "Sa {0} (na) minuto"
45
+ default:
46
+ 0: "Sa 0 minuto"
47
+ 1: "Sa 1 minuto"
48
+ other: "Sa {0} (na) minuto"
32
49
  minute-past:
33
- 0: "Nakalipas na 0 na minuto"
34
- 1: "Nakalipas na 1 minuto"
35
- other: "Nakalipas na {0} (na) minuto"
50
+ default:
51
+ 0: "Nakalipas na 0 na minuto"
52
+ 1: "Nakalipas na 1 minuto"
53
+ other: "Nakalipas na {0} (na) minuto"
36
54
  month:
37
- one: "{0} buw"
38
- other: "{0} buw"
55
+ default:
56
+ one: "{0} buwan"
57
+ other: "{0} buwan"
58
+ short:
59
+ one: "{0} buw"
60
+ other: "{0} buw"
39
61
  month-future:
40
- 0: "Sa 0 na buwan"
41
- 1: "Sa 1 buwan"
42
- other: "Sa {0} (na) buwan"
62
+ default:
63
+ 0: "Sa 0 na buwan"
64
+ 1: "Sa 1 buwan"
65
+ other: "Sa {0} (na) buwan"
43
66
  month-past:
44
- 0: "Nakalipas na 0 buwan"
45
- 1: "Nakalipas na 1 buwan"
46
- other: "Nakalipas na {0} (na) buwan"
67
+ default:
68
+ 0: "Nakalipas na 0 buwan"
69
+ 1: "Nakalipas na 1 buwan"
70
+ other: "Nakalipas na {0} (na) buwan"
47
71
  second:
48
- one: "{0} seg"
49
- other: "{0} seg"
72
+ default:
73
+ one: "{0} segundo"
74
+ other: "{0} segundo"
75
+ short:
76
+ one: "{0} seg"
77
+ other: "{0} seg"
50
78
  second-future:
51
- 0: "Sa 0 segundo"
52
- 1: "Sa 1 segundo"
53
- other: "Sa {0} (na) segundo"
79
+ default:
80
+ 0: "Sa 0 segundo"
81
+ 1: "Sa 1 segundo"
82
+ other: "Sa {0} (na) segundo"
54
83
  second-past:
55
- 0: "Nakalipas na 0 segundo"
56
- 1: "Nakalipas na 1 segundo"
57
- other: "Nakalipas na {0} (na) segundo"
84
+ default:
85
+ 0: "Nakalipas na 0 segundo"
86
+ 1: "Nakalipas na 1 segundo"
87
+ other: "Nakalipas na {0} (na) segundo"
58
88
  week:
59
- one: "{0} ling"
60
- other: "{0} ling"
89
+ default:
90
+ one: "{0} linggo"
91
+ other: "{0} linggo"
92
+ short:
93
+ one: "{0} ling"
94
+ other: "{0} ling"
61
95
  week-future:
62
- 0: "Sa 0 linggo"
63
- 1: "Sa 1 linggo"
64
- other: "Sa {0} (na) linggo"
96
+ default:
97
+ 0: "Sa 0 linggo"
98
+ 1: "Sa 1 linggo"
99
+ other: "Sa {0} (na) linggo"
65
100
  week-past:
66
- 0: "Nakalipas na 0 na linggo"
67
- 1: "Nakalipas na 1 linggo"
68
- other: "Nakalipas na {0} (na) linggo"
101
+ default:
102
+ 0: "Nakalipas na 0 na linggo"
103
+ 1: "Nakalipas na 1 linggo"
104
+ other: "Nakalipas na {0} (na) linggo"
69
105
  year:
70
- one: "{0} ta"
71
- other: "{0} ta"
106
+ default:
107
+ one: "{0} taon"
108
+ other: "{0} taon"
109
+ short:
110
+ one: "{0} ta"
111
+ other: "{0} ta"
72
112
  year-future:
73
- 0: "Sa 0 na taon"
74
- 1: "Sa 1 taon"
75
- other: "Sa {0} (na) taon"
113
+ default:
114
+ 0: "Sa 0 na taon"
115
+ 1: "Sa 1 taon"
116
+ other: "Sa {0} (na) taon"
76
117
  year-past:
77
- 0: "Nakalipas na 0 taon"
78
- 1: "Nakalipas na 1 taon"
79
- other: "Nakalipas na {0} (na) taon"
118
+ default:
119
+ 0: "Nakalipas na 0 taon"
120
+ 1: "Nakalipas na 1 taon"
121
+ other: "Nakalipas na {0} (na) taon"
@@ -1,93 +1,135 @@
1
1
  fr:
2
2
  units:
3
3
  day:
4
- one: "{0} j"
5
- other: "{0} j"
4
+ default:
5
+ one: "{0} jour"
6
+ other: "{0} jours"
7
+ short:
8
+ one: "{0} j"
9
+ other: "{0} j"
6
10
  day-future:
7
- 0: "dans 0 jour"
8
- 1: "dans 1 jour"
9
- one: "dans {0} jour"
10
- other: "dans {0} jours"
11
+ default:
12
+ 0: "dans 0 jour"
13
+ 1: "dans 1 jour"
14
+ one: "dans {0} jour"
15
+ other: "dans {0} jours"
11
16
  day-past:
12
- 0: "il y a 0 jour"
13
- 1: "il y a 1 jour"
14
- one: "il y a {0} jour"
15
- other: "il y a {0} jours"
17
+ default:
18
+ 0: "il y a 0 jour"
19
+ 1: "il y a 1 jour"
20
+ one: "il y a {0} jour"
21
+ other: "il y a {0} jours"
16
22
  hour:
17
- one: "{0} h"
18
- other: "{0} h"
23
+ default:
24
+ one: "{0} heure"
25
+ other: "{0} heures"
26
+ short:
27
+ one: "{0} h"
28
+ other: "{0} h"
19
29
  hour-future:
20
- 0: "dans 0 heure"
21
- 1: "dans 1 heure"
22
- one: "dans {0} heure"
23
- other: "dans {0} heures"
30
+ default:
31
+ 0: "dans 0 heure"
32
+ 1: "dans 1 heure"
33
+ one: "dans {0} heure"
34
+ other: "dans {0} heures"
24
35
  hour-past:
25
- 0: "il y a 0 heure"
26
- 1: "il y a 1 heure"
27
- one: "il y a {0} heure"
28
- other: "il y a {0} heures"
36
+ default:
37
+ 0: "il y a 0 heure"
38
+ 1: "il y a 1 heure"
39
+ one: "il y a {0} heure"
40
+ other: "il y a {0} heures"
29
41
  minute:
30
- one: "{0} mn"
31
- other: "{0} mn"
42
+ default:
43
+ one: "{0} minute"
44
+ other: "{0} minutes"
45
+ short:
46
+ one: "{0} mn"
47
+ other: "{0} mn"
32
48
  minute-future:
33
- 0: "dans 0 minute"
34
- 1: "dans 1 minute"
35
- one: "dans {0} minute"
36
- other: "dans {0} minutes"
49
+ default:
50
+ 0: "dans 0 minute"
51
+ 1: "dans 1 minute"
52
+ one: "dans {0} minute"
53
+ other: "dans {0} minutes"
37
54
  minute-past:
38
- 0: "il y a 0 minute"
39
- 1: "il y a 1 minute"
40
- one: "il y a {0} minute"
41
- other: "il y a {0} minutes"
55
+ default:
56
+ 0: "il y a 0 minute"
57
+ 1: "il y a 1 minute"
58
+ one: "il y a {0} minute"
59
+ other: "il y a {0} minutes"
42
60
  month:
43
- one: "{0} mois"
44
- other: "{0} mois"
61
+ default:
62
+ one: "{0} mois"
63
+ other: "{0} mois"
64
+ short:
65
+ one: "{0} mois"
66
+ other: "{0} mois"
45
67
  month-future:
46
- 0: "dans 0 mois"
47
- 1: "dans 1 mois"
48
- one: "dans {0} mois"
49
- other: "dans {0} mois"
68
+ default:
69
+ 0: "dans 0 mois"
70
+ 1: "dans 1 mois"
71
+ one: "dans {0} mois"
72
+ other: "dans {0} mois"
50
73
  month-past:
51
- 0: "il y a 0 mois"
52
- 1: "il y a 1 mois"
53
- one: "il y a {0} mois"
54
- other: "il y a {0} mois"
74
+ default:
75
+ 0: "il y a 0 mois"
76
+ 1: "il y a 1 mois"
77
+ one: "il y a {0} mois"
78
+ other: "il y a {0} mois"
55
79
  second:
56
- one: "{0} s"
57
- other: "{0} s"
80
+ default:
81
+ one: "{0} seconde"
82
+ other: "{0} secondes"
83
+ short:
84
+ one: "{0} s"
85
+ other: "{0} s"
58
86
  second-future:
59
- 0: "dans 0 seconde"
60
- 1: "dans 1 seconde"
61
- one: "dans {0} seconde"
62
- other: "dans {0} secondes"
87
+ default:
88
+ 0: "dans 0 seconde"
89
+ 1: "dans 1 seconde"
90
+ one: "dans {0} seconde"
91
+ other: "dans {0} secondes"
63
92
  second-past:
64
- 0: "il y a 0 seconde"
65
- 1: "il y a 1 seconde"
66
- one: "il y a {0} seconde"
67
- other: "il y a {0} secondes"
93
+ default:
94
+ 0: "il y a 0 seconde"
95
+ 1: "il y a 1 seconde"
96
+ one: "il y a {0} seconde"
97
+ other: "il y a {0} secondes"
68
98
  week:
69
- one: "{0} sem."
70
- other: "{0} sem."
99
+ default:
100
+ one: "{0} semaine"
101
+ other: "{0} semaines"
102
+ short:
103
+ one: "{0} sem."
104
+ other: "{0} sem."
71
105
  week-future:
72
- 0: "dans 0 semaine"
73
- 1: "dans 1 semaine"
74
- one: "dans {0} semaine"
75
- other: "dans {0} semaines"
106
+ default:
107
+ 0: "dans 0 semaine"
108
+ 1: "dans 1 semaine"
109
+ one: "dans {0} semaine"
110
+ other: "dans {0} semaines"
76
111
  week-past:
77
- 0: "il y a 0 semaine"
78
- 1: "il y a 1 semaine"
79
- one: "il y a {0} semaine"
80
- other: "il y a {0} semaines"
112
+ default:
113
+ 0: "il y a 0 semaine"
114
+ 1: "il y a 1 semaine"
115
+ one: "il y a {0} semaine"
116
+ other: "il y a {0} semaines"
81
117
  year:
82
- one: "{0} an"
83
- other: "{0} ans"
118
+ default:
119
+ one: "{0} année"
120
+ other: "{0} années"
121
+ short:
122
+ one: "{0} an"
123
+ other: "{0} ans"
84
124
  year-future:
85
- 0: "dans 0 an"
86
- 1: "dans 1 an"
87
- one: "dans {0} an"
88
- other: "dans {0} ans"
125
+ default:
126
+ 0: "dans 0 an"
127
+ 1: "dans 1 an"
128
+ one: "dans {0} an"
129
+ other: "dans {0} ans"
89
130
  year-past:
90
- 0: "il y a 0 an"
91
- 1: "il y a 1 an"
92
- one: "il y a {0} an"
93
- other: "il y a {0} ans"
131
+ default:
132
+ 0: "il y a 0 an"
133
+ 1: "il y a 1 an"
134
+ one: "il y a {0} an"
135
+ other: "il y a {0} ans"
@@ -1,79 +1,121 @@
1
1
  he:
2
2
  units:
3
3
  day:
4
- one: "{0} יום"
5
- other: "{0} ימים"
4
+ default:
5
+ one: "{0} יום"
6
+ other: "{0} ימים"
7
+ short:
8
+ one: "{0} יום"
9
+ other: "{0} ימים"
6
10
  day-future:
7
- 0: "עוד 0 ימים"
8
- 1: "עוד יום"
9
- other: "בעוד {0} ימים"
11
+ default:
12
+ 0: "עוד 0 ימים"
13
+ 1: "עוד יום"
14
+ other: "בעוד {0} ימים"
10
15
  day-past:
11
- 0: "לפני 0 ימים"
12
- 1: "לפני יום"
13
- other: "לפני {0} ימים"
16
+ default:
17
+ 0: "לפני 0 ימים"
18
+ 1: "לפני יום"
19
+ other: "לפני {0} ימים"
14
20
  hour:
15
- one: "{0} שעה"
16
- other: "{0} שעות"
21
+ default:
22
+ one: "{0} שעה"
23
+ other: "{0} שעות"
24
+ short:
25
+ one: "{0} שעה"
26
+ other: "{0} שעות"
17
27
  hour-future:
18
- 0: "עוד 0 שעות"
19
- 1: "עוד שעה"
20
- other: "בעוד {0} שעות"
28
+ default:
29
+ 0: "עוד 0 שעות"
30
+ 1: "עוד שעה"
31
+ other: "בעוד {0} שעות"
21
32
  hour-past:
22
- 0: "לפני 0 שעות"
23
- 1: "לפני שעה"
24
- other: "לפני {0} שעות"
33
+ default:
34
+ 0: "לפני 0 שעות"
35
+ 1: "לפני שעה"
36
+ other: "לפני {0} שעות"
25
37
  minute:
26
- one: "{0} דק׳"
27
- other: "{0} דק׳"
38
+ default:
39
+ one: "{0} דקה"
40
+ other: "{0} דקות"
41
+ short:
42
+ one: "{0} דק׳"
43
+ other: "{0} דק׳"
28
44
  minute-future:
29
- 0: "עוד 0 דקות"
30
- 1: "עוד דקה"
31
- other: "בעוד {0} דקות"
45
+ default:
46
+ 0: "עוד 0 דקות"
47
+ 1: "עוד דקה"
48
+ other: "בעוד {0} דקות"
32
49
  minute-past:
33
- 0: "לפני 0 דקות"
34
- 1: "לפני דקה"
35
- other: "לפני {0} דקות"
50
+ default:
51
+ 0: "לפני 0 דקות"
52
+ 1: "לפני דקה"
53
+ other: "לפני {0} דקות"
36
54
  month:
37
- one: "{0} חודש"
38
- other: "{0} חודשים"
55
+ default:
56
+ one: "{0} חודש"
57
+ other: "{0} חודשים"
58
+ short:
59
+ one: "{0} חודש"
60
+ other: "{0} חודשים"
39
61
  month-future:
40
- 0: "עוד 0 חודשים"
41
- 1: "עוד חודש"
42
- other: "בעוד {0} חודשים"
62
+ default:
63
+ 0: "עוד 0 חודשים"
64
+ 1: "עוד חודש"
65
+ other: "בעוד {0} חודשים"
43
66
  month-past:
44
- 0: "לפני 0 חודשים"
45
- 1: "לפני חודש"
46
- other: "לפני {0} חודשים"
67
+ default:
68
+ 0: "לפני 0 חודשים"
69
+ 1: "לפני חודש"
70
+ other: "לפני {0} חודשים"
47
71
  second:
48
- one: "{0} שנ׳"
49
- other: "{0} שנ׳"
72
+ default:
73
+ one: "{0} שניה"
74
+ other: "{0} שניות"
75
+ short:
76
+ one: "{0} שנ׳"
77
+ other: "{0} שנ׳"
50
78
  second-future:
51
- 0: "עוד 0 שניות"
52
- 1: "עוד שנייה"
53
- other: "בעוד {0} שניות"
79
+ default:
80
+ 0: "עוד 0 שניות"
81
+ 1: "עוד שנייה"
82
+ other: "בעוד {0} שניות"
54
83
  second-past:
55
- 0: "לפני 0 שניות"
56
- 1: "לפני שנייה"
57
- other: "לפני {0} שניות"
84
+ default:
85
+ 0: "לפני 0 שניות"
86
+ 1: "לפני שנייה"
87
+ other: "לפני {0} שניות"
58
88
  week:
59
- one: "{0} שבוע"
60
- other: "{0} שבועות"
89
+ default:
90
+ one: "{0} שבוע"
91
+ other: "{0} שבועות"
92
+ short:
93
+ one: "{0} שבוע"
94
+ other: "{0} שבועות"
61
95
  week-future:
62
- 0: "עוד 0 שבועות"
63
- 1: "עוד שבוע"
64
- other: "בעוד {0} שבועות"
96
+ default:
97
+ 0: "עוד 0 שבועות"
98
+ 1: "עוד שבוע"
99
+ other: "בעוד {0} שבועות"
65
100
  week-past:
66
- 0: "לפני 0 שבועות"
67
- 1: "לפני שבוע"
68
- other: "לפני {0} שבועות"
101
+ default:
102
+ 0: "לפני 0 שבועות"
103
+ 1: "לפני שבוע"
104
+ other: "לפני {0} שבועות"
69
105
  year:
70
- one: "{0} שנה"
71
- other: "{0} שנים"
106
+ default:
107
+ one: "{0} שנה"
108
+ other: "{0} שנים"
109
+ short:
110
+ one: "{0} שנה"
111
+ other: "{0} שנים"
72
112
  year-future:
73
- 0: "עוד 0 שנים"
74
- 1: "עוד שנה"
75
- other: "בעוד {0} שנים"
113
+ default:
114
+ 0: "עוד 0 שנים"
115
+ 1: "עוד שנה"
116
+ other: "בעוד {0} שנים"
76
117
  year-past:
77
- 0: "לפני 0 שנים"
78
- 1: "לפני שנה"
79
- other: "לפני {0} שנים"
118
+ default:
119
+ 0: "לפני 0 שנים"
120
+ 1: "לפני שנה"
121
+ other: "לפני {0} שנים"