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,107 +1,142 @@
1
1
  el:
2
2
  units:
3
3
  day:
4
- 0: "0 ημέρες"
5
- 1: "1 ημέρα"
6
- one: "{0} ημέρα"
7
- other: "{0} ημέρες"
4
+ default:
5
+ one: "{0} ημέρα"
6
+ other: "{0} ημέρες"
7
+ short:
8
+ 0: "0 ημέρες"
9
+ 1: "1 ημέρα"
10
+ other: "{0} ημέρες"
8
11
  day-future:
9
- 0: "Σε 0 ημέρες"
10
- 1: "Σε 1 ημέρα"
11
- one: "Σε {0} ημέρα"
12
- other: "Σε {0} ημέρες"
12
+ default:
13
+ 0: "Σε 0 ημέρες"
14
+ 1: "Σε 1 ημέρα"
15
+ one: "Σε {0} ημέρα"
16
+ other: "Σε {0} ημέρες"
13
17
  day-past:
14
- 0: "Πριν από 0 ημέρες"
15
- 1: "Πριν από 1 ημέρα"
16
- one: "Πριν από {0} ημέρα"
17
- other: "Πριν από {0} ημέρες"
18
+ default:
19
+ 0: "Πριν από 0 ημέρες"
20
+ 1: "Πριν από 1 ημέρα"
21
+ one: "Πριν από {0} ημέρα"
22
+ other: "Πριν από {0} ημέρες"
18
23
  hour:
19
- 0: "0 ώρες"
20
- 1: "1 ώρα"
21
- one: "{0} ώρα"
22
- other: "{0} ώρες"
24
+ default:
25
+ one: "{0} ώρα"
26
+ other: "{0} ώρες"
27
+ short:
28
+ 0: "0 ώρες"
29
+ 1: "1 ώρα"
30
+ other: "{0} ώρες"
23
31
  hour-future:
24
- 0: "Σε 0 ώρες"
25
- 1: "Σε 1 ώρα"
26
- one: "Σε {0} ώρα"
27
- other: "Σε {0} ώρες"
32
+ default:
33
+ 0: "Σε 0 ώρες"
34
+ 1: "Σε 1 ώρα"
35
+ one: "Σε {0} ώρα"
36
+ other: "Σε {0} ώρες"
28
37
  hour-past:
29
- 0: "Πριν από 0 ώρες"
30
- 1: "Πριν από 1 ώρα"
31
- one: "Πριν από {0} ώρα"
32
- other: "Πριν από {0} ώρες"
38
+ default:
39
+ 0: "Πριν από 0 ώρες"
40
+ 1: "Πριν από 1 ώρα"
41
+ one: "Πριν από {0} ώρα"
42
+ other: "Πριν από {0} ώρες"
33
43
  minute:
34
- 0: "0 λεπτά"
35
- 1: "1 λεπτό"
36
- one: "{0} λεπτό"
37
- other: "{0} λεπτά"
44
+ default:
45
+ one: "{0} λεπτό"
46
+ other: "{0} λεπτά"
47
+ short:
48
+ 0: "0 λεπτά"
49
+ 1: "1 λεπτό"
50
+ other: "{0} λεπτά"
38
51
  minute-future:
39
- 0: "Σε 0 λεπτά"
40
- 1: "Σε 1 λεπτό"
41
- one: "Σε {0} λεπτό"
42
- other: "Σε {0} λεπτά"
52
+ default:
53
+ 0: "Σε 0 λεπτά"
54
+ 1: "Σε 1 λεπτό"
55
+ one: "Σε {0} λεπτό"
56
+ other: "Σε {0} λεπτά"
43
57
  minute-past:
44
- 0: "Πριν από 0 λεπτά"
45
- 1: "Πριν από 1 λεπτό"
46
- one: "Πριν από {0} λεπτό"
47
- other: "Πριν από {0} λεπτά"
58
+ default:
59
+ 0: "Πριν από 0 λεπτά"
60
+ 1: "Πριν από 1 λεπτό"
61
+ one: "Πριν από {0} λεπτό"
62
+ other: "Πριν από {0} λεπτά"
48
63
  month:
49
- 0: "0 μήνες"
50
- 1: "1 μήνας"
51
- one: "{0} μήνας"
52
- other: "{0} μήνες"
64
+ default:
65
+ one: "{0} μήνας"
66
+ other: "{0} μήνες"
67
+ short:
68
+ 0: "0 μήνες"
69
+ 1: "1 μήνας"
70
+ other: "{0} μήνες"
53
71
  month-future:
54
- 0: "Σε 0 μήνες"
55
- 1: "Σε 1 μήνα"
56
- one: "Σε {0} μήνα"
57
- other: "Σε {0} μήνες"
72
+ default:
73
+ 0: "Σε 0 μήνες"
74
+ 1: "Σε 1 μήνα"
75
+ one: "Σε {0} μήνα"
76
+ other: "Σε {0} μήνες"
58
77
  month-past:
59
- 0: "Πριν από 0 μήνες"
60
- 1: "Πριν από 1 μήνα"
61
- one: "Πριν από {0} μήνα"
62
- other: "Πριν από {0} μήνες"
78
+ default:
79
+ 0: "Πριν από 0 μήνες"
80
+ 1: "Πριν από 1 μήνα"
81
+ one: "Πριν από {0} μήνα"
82
+ other: "Πριν από {0} μήνες"
63
83
  second:
64
- 0: "0 δευτερόλεπτα"
65
- 1: "1 δευτερόλεπτο"
66
- one: "{0} δευτερόλεπτο"
67
- other: "{0} δευτερόλεπτα"
84
+ default:
85
+ one: "{0} δευτερόλεπτο"
86
+ other: "{0} δευτερόλεπτα"
87
+ short:
88
+ 0: "0 δευτερόλεπτα"
89
+ 1: "1 δευτερόλεπτο"
90
+ other: "{0} δευτερόλεπτα"
68
91
  second-future:
69
- 0: "Σε 0 δευτερόλεπτα"
70
- 1: "Σε 1 δευτερόλεπτο"
71
- one: "Σε {0} δευτερόλεπτο"
72
- other: "Σε {0} δευτερόλεπτα"
92
+ default:
93
+ 0: "Σε 0 δευτερόλεπτα"
94
+ 1: "Σε 1 δευτερόλεπτο"
95
+ one: "Σε {0} δευτερόλεπτο"
96
+ other: "Σε {0} δευτερόλεπτα"
73
97
  second-past:
74
- 0: "Πριν από 0 δευτερόλεπτα"
75
- 1: "Πριν από 1 δευτερόλεπτο"
76
- one: "Πριν από {0} δευτερόλεπτο"
77
- other: "Πριν από {0} δευτερόλεπτα"
98
+ default:
99
+ 0: "Πριν από 0 δευτερόλεπτα"
100
+ 1: "Πριν από 1 δευτερόλεπτο"
101
+ one: "Πριν από {0} δευτερόλεπτο"
102
+ other: "Πριν από {0} δευτερόλεπτα"
78
103
  week:
79
- 0: "0 εβδομάδες"
80
- 1: "1 εβδομάδα"
81
- one: "{0} εβδομάδα"
82
- other: "{0} εβδομάδες"
104
+ default:
105
+ one: "{0} εβδομάδα"
106
+ other: "{0} εβδομάδες"
107
+ short:
108
+ 0: "0 εβδομάδες"
109
+ 1: "1 εβδομάδα"
110
+ other: "{0} εβδομάδες"
83
111
  week-future:
84
- 0: "Σε 0 εβδομάδες"
85
- 1: "Σε 1 εβδομάδα"
86
- one: "Σε {0} εβδομάδα"
87
- other: "Σε {0} εβδομάδες"
112
+ default:
113
+ 0: "Σε 0 εβδομάδες"
114
+ 1: "Σε 1 εβδομάδα"
115
+ one: "Σε {0} εβδομάδα"
116
+ other: "Σε {0} εβδομάδες"
88
117
  week-past:
89
- 0: "Πριν από 0 εβδομάδες"
90
- 1: "Πριν από 1 εβδομάδα"
91
- one: "Πριν από {0} εβδομάδα"
92
- other: "Πριν από {0} εβδομάδες"
118
+ default:
119
+ 0: "Πριν από 0 εβδομάδες"
120
+ 1: "Πριν από 1 εβδομάδα"
121
+ one: "Πριν από {0} εβδομάδα"
122
+ other: "Πριν από {0} εβδομάδες"
93
123
  year:
94
- 0: "0 έτη"
95
- 1: "1 έτος"
96
- one: "{0} έτος"
97
- other: "{0} έτη"
124
+ default:
125
+ one: "{0} έτος"
126
+ other: "{0} έτη"
127
+ short:
128
+ 0: "0 έτη"
129
+ 1: "1 έτος"
130
+ other: "{0} έτη"
98
131
  year-future:
99
- 0: "Σε 0 έτη"
100
- 1: "Σε 1 έτος"
101
- one: "Σε {0} έτος"
102
- other: "Σε {0} έτη"
132
+ default:
133
+ 0: "Σε 0 έτη"
134
+ 1: "Σε 1 έτος"
135
+ one: "Σε {0} έτος"
136
+ other: "Σε {0} έτη"
103
137
  year-past:
104
- 0: "Πριν από 0 έτη"
105
- 1: "Πριν από 1 έτος"
106
- one: "Πριν από {0} έτος"
107
- other: "Πριν από {0} έτη"
138
+ default:
139
+ 0: "Πριν από 0 έτη"
140
+ 1: "Πριν από 1 έτος"
141
+ one: "Πριν από {0} έτος"
142
+ other: "Πριν από {0} έτη"
@@ -1,65 +1,107 @@
1
1
  en:
2
2
  units:
3
3
  day:
4
- one: "{0} day"
5
- other: "{0} days"
4
+ default:
5
+ one: "{0} day"
6
+ other: "{0} days"
7
+ short:
8
+ one: "{0} day"
9
+ other: "{0} days"
6
10
  day-future:
7
- one: "In {0} day"
8
- other: "In {0} days"
11
+ default:
12
+ one: "In {0} day"
13
+ other: "In {0} days"
9
14
  day-past:
10
- one: "{0} day ago"
11
- other: "{0} days ago"
15
+ default:
16
+ one: "{0} day ago"
17
+ other: "{0} days ago"
12
18
  hour:
13
- one: "{0} hr"
14
- other: "{0} hrs"
19
+ default:
20
+ one: "{0} hour"
21
+ other: "{0} hours"
22
+ short:
23
+ one: "{0} hr"
24
+ other: "{0} hrs"
15
25
  hour-future:
16
- one: "In {0} hour"
17
- other: "In {0} hours"
26
+ default:
27
+ one: "In {0} hour"
28
+ other: "In {0} hours"
18
29
  hour-past:
19
- one: "{0} hour ago"
20
- other: "{0} hours ago"
30
+ default:
31
+ one: "{0} hour ago"
32
+ other: "{0} hours ago"
21
33
  minute:
22
- one: "{0} min"
23
- other: "{0} mins"
34
+ default:
35
+ one: "{0} minute"
36
+ other: "{0} minutes"
37
+ short:
38
+ one: "{0} min"
39
+ other: "{0} mins"
24
40
  minute-future:
25
- one: "In {0} minute"
26
- other: "In {0} minutes"
41
+ default:
42
+ one: "In {0} minute"
43
+ other: "In {0} minutes"
27
44
  minute-past:
28
- one: "{0} minute ago"
29
- other: "{0} minutes ago"
45
+ default:
46
+ one: "{0} minute ago"
47
+ other: "{0} minutes ago"
30
48
  month:
31
- one: "{0} mth"
32
- other: "{0} mths"
49
+ default:
50
+ one: "{0} month"
51
+ other: "{0} months"
52
+ short:
53
+ one: "{0} mth"
54
+ other: "{0} mths"
33
55
  month-future:
34
- one: "In {0} month"
35
- other: "In {0} months"
56
+ default:
57
+ one: "In {0} month"
58
+ other: "In {0} months"
36
59
  month-past:
37
- one: "{0} month ago"
38
- other: "{0} months ago"
60
+ default:
61
+ one: "{0} month ago"
62
+ other: "{0} months ago"
39
63
  second:
40
- one: "{0} sec"
41
- other: "{0} secs"
64
+ default:
65
+ one: "{0} second"
66
+ other: "{0} seconds"
67
+ short:
68
+ one: "{0} sec"
69
+ other: "{0} secs"
42
70
  second-future:
43
- one: "In {0} second"
44
- other: "In {0} seconds"
71
+ default:
72
+ one: "In {0} second"
73
+ other: "In {0} seconds"
45
74
  second-past:
46
- one: "{0} second ago"
47
- other: "{0} seconds ago"
75
+ default:
76
+ one: "{0} second ago"
77
+ other: "{0} seconds ago"
48
78
  week:
49
- one: "{0} wk"
50
- other: "{0} wks"
79
+ default:
80
+ one: "{0} week"
81
+ other: "{0} weeks"
82
+ short:
83
+ one: "{0} wk"
84
+ other: "{0} wks"
51
85
  week-future:
52
- one: "In {0} week"
53
- other: "In {0} weeks"
86
+ default:
87
+ one: "In {0} week"
88
+ other: "In {0} weeks"
54
89
  week-past:
55
- one: "{0} week ago"
56
- other: "{0} weeks ago"
90
+ default:
91
+ one: "{0} week ago"
92
+ other: "{0} weeks ago"
57
93
  year:
58
- one: "{0} yr"
59
- other: "{0} yrs"
94
+ default:
95
+ one: "{0} year"
96
+ other: "{0} years"
97
+ short:
98
+ one: "{0} yr"
99
+ other: "{0} yrs"
60
100
  year-future:
61
- one: "In {0} year"
62
- other: "In {0} years"
101
+ default:
102
+ one: "In {0} year"
103
+ other: "In {0} years"
63
104
  year-past:
64
- one: "{0} year ago"
65
- other: "{0} years ago"
105
+ default:
106
+ one: "{0} year ago"
107
+ other: "{0} years ago"
@@ -1,93 +1,135 @@
1
1
  es:
2
2
  units:
3
3
  day:
4
- one: "{0} día"
5
- other: "{0} días"
4
+ default:
5
+ one: "{0} día"
6
+ other: "{0} días"
7
+ short:
8
+ one: "{0} día"
9
+ other: "{0} días"
6
10
  day-future:
7
- 0: "Dentro de 0 días"
8
- 1: "Dentro de 1 día"
9
- one: "Dentro de {0} día"
10
- other: "Dentro de {0} días"
11
+ default:
12
+ 0: "Dentro de 0 días"
13
+ 1: "Dentro de 1 día"
14
+ one: "Dentro de {0} día"
15
+ other: "Dentro de {0} días"
11
16
  day-past:
12
- 0: "Hace 0 días"
13
- 1: "Hace 1 día"
14
- one: "Hace {0} día"
15
- other: "Hace {0} días"
17
+ default:
18
+ 0: "Hace 0 días"
19
+ 1: "Hace 1 día"
20
+ one: "Hace {0} día"
21
+ other: "Hace {0} días"
16
22
  hour:
17
- one: "{0} h"
18
- other: "{0} h"
23
+ default:
24
+ one: "{0} hora"
25
+ other: "{0} horas"
26
+ short:
27
+ one: "{0} h"
28
+ other: "{0} h"
19
29
  hour-future:
20
- 0: "Dentro de 0 horas"
21
- 1: "Dentro de 1 hora"
22
- one: "Dentro de {0} hora"
23
- other: "Dentro de {0} horas"
30
+ default:
31
+ 0: "Dentro de 0 horas"
32
+ 1: "Dentro de 1 hora"
33
+ one: "Dentro de {0} hora"
34
+ other: "Dentro de {0} horas"
24
35
  hour-past:
25
- 0: "Hace 0 horas"
26
- 1: "Hace 1 hora"
27
- one: "Hace {0} hora"
28
- other: "Hace {0} horas"
36
+ default:
37
+ 0: "Hace 0 horas"
38
+ 1: "Hace 1 hora"
39
+ one: "Hace {0} hora"
40
+ other: "Hace {0} horas"
29
41
  minute:
30
- one: "{0} min"
31
- other: "{0} min"
42
+ default:
43
+ one: "{0} minuto"
44
+ other: "{0} minutos"
45
+ short:
46
+ one: "{0} min"
47
+ other: "{0} min"
32
48
  minute-future:
33
- 0: "Dentro de 0 minutos"
34
- 1: "Dentro de 1 minuto"
35
- one: "Dentro de {0} minuto"
36
- other: "Dentro de {0} minutos"
49
+ default:
50
+ 0: "Dentro de 0 minutos"
51
+ 1: "Dentro de 1 minuto"
52
+ one: "Dentro de {0} minuto"
53
+ other: "Dentro de {0} minutos"
37
54
  minute-past:
38
- 0: "Hace 0 minutos"
39
- 1: "Hace 1 minuto"
40
- one: "Hace {0} minuto"
41
- other: "Hace {0} minutos"
55
+ default:
56
+ 0: "Hace 0 minutos"
57
+ 1: "Hace 1 minuto"
58
+ one: "Hace {0} minuto"
59
+ other: "Hace {0} minutos"
42
60
  month:
43
- one: "{0} mes"
44
- other: "{0} meses"
61
+ default:
62
+ one: "{0} mes"
63
+ other: "{0} meses"
64
+ short:
65
+ one: "{0} mes"
66
+ other: "{0} meses"
45
67
  month-future:
46
- 0: "Dentro de 0 meses"
47
- 1: "Dentro de 1 mes"
48
- one: "Dentro de {0} mes"
49
- other: "Dentro de {0} meses"
68
+ default:
69
+ 0: "Dentro de 0 meses"
70
+ 1: "Dentro de 1 mes"
71
+ one: "Dentro de {0} mes"
72
+ other: "Dentro de {0} meses"
50
73
  month-past:
51
- 0: "Hace 0 meses"
52
- 1: "Hace 1 mes"
53
- one: "Hace {0} mes"
54
- other: "Hace {0} meses"
74
+ default:
75
+ 0: "Hace 0 meses"
76
+ 1: "Hace 1 mes"
77
+ one: "Hace {0} mes"
78
+ other: "Hace {0} meses"
55
79
  second:
56
- one: "{0} s"
57
- other: "{0} s"
80
+ default:
81
+ one: "{0} segundo"
82
+ other: "{0} segundos"
83
+ short:
84
+ one: "{0} s"
85
+ other: "{0} s"
58
86
  second-future:
59
- 0: "Dentro de 0 segundos"
60
- 1: "Dentro de 1 segundo"
61
- one: "Dentro de {0} segundo"
62
- other: "Dentro de {0} segundos"
87
+ default:
88
+ 0: "Dentro de 0 segundos"
89
+ 1: "Dentro de 1 segundo"
90
+ one: "Dentro de {0} segundo"
91
+ other: "Dentro de {0} segundos"
63
92
  second-past:
64
- 0: "Hace 0 segundos"
65
- 1: "Hace 1 segundo"
66
- one: "Hace {0} segundo"
67
- other: "Hace {0} segundos"
93
+ default:
94
+ 0: "Hace 0 segundos"
95
+ 1: "Hace 1 segundo"
96
+ one: "Hace {0} segundo"
97
+ other: "Hace {0} segundos"
68
98
  week:
69
- one: "{0} semana"
70
- other: "{0} semanas"
99
+ default:
100
+ one: "{0} semana"
101
+ other: "{0} semanas"
102
+ short:
103
+ one: "{0} semana"
104
+ other: "{0} semanas"
71
105
  week-future:
72
- 0: "Dentro de 0 semanas"
73
- 1: "Dentro de 1 semana"
74
- one: "Dentro de {0} semana"
75
- other: "Dentro de {0} semanas"
106
+ default:
107
+ 0: "Dentro de 0 semanas"
108
+ 1: "Dentro de 1 semana"
109
+ one: "Dentro de {0} semana"
110
+ other: "Dentro de {0} semanas"
76
111
  week-past:
77
- 0: "Hace 0 semanas"
78
- 1: "Hace 1 semana"
79
- one: "Hace {0} semana"
80
- other: "Hace {0} semanas"
112
+ default:
113
+ 0: "Hace 0 semanas"
114
+ 1: "Hace 1 semana"
115
+ one: "Hace {0} semana"
116
+ other: "Hace {0} semanas"
81
117
  year:
82
- one: "{0} año"
83
- other: "{0} años"
118
+ default:
119
+ one: "{0} año"
120
+ other: "{0} años"
121
+ short:
122
+ one: "{0} año"
123
+ other: "{0} años"
84
124
  year-future:
85
- 0: "Dentro de 0 años"
86
- 1: "Dentro de 1 año"
87
- one: "Dentro de {0} año"
88
- other: "Dentro de {0} años"
125
+ default:
126
+ 0: "Dentro de 0 años"
127
+ 1: "Dentro de 1 año"
128
+ one: "Dentro de {0} año"
129
+ other: "Dentro de {0} años"
89
130
  year-past:
90
- 0: "Hace 0 años"
91
- 1: "Hace 1 año"
92
- one: "Hace {0} año"
93
- other: "Hace {0} años"
131
+ default:
132
+ 0: "Hace 0 años"
133
+ 1: "Hace 1 año"
134
+ one: "Hace {0} año"
135
+ other: "Hace {0} años"