exvo_globalize 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. data/app/controllers/globalize_translations_controller.rb +1 -1
  2. data/config/locales/ar.yml +226 -0
  3. data/config/locales/bg.yml +304 -0
  4. data/config/locales/bs.yml +270 -0
  5. data/config/locales/ca.yml +253 -0
  6. data/config/locales/cs.rb +229 -0
  7. data/config/locales/cy.yml +221 -0
  8. data/config/locales/da.yml +235 -0
  9. data/config/locales/de.yml +233 -0
  10. data/config/locales/el.yml +227 -0
  11. data/config/locales/en.yml +222 -0
  12. data/config/locales/eo.yml +222 -0
  13. data/config/locales/es.yml +225 -0
  14. data/config/locales/et.yml +260 -0
  15. data/config/locales/eu.yml +224 -0
  16. data/config/locales/fa.yml +222 -0
  17. data/config/locales/fi.yml +225 -0
  18. data/config/locales/fr.yml +222 -0
  19. data/config/locales/gl.yml +236 -0
  20. data/config/locales/he.yml +227 -0
  21. data/config/locales/hi.yml +221 -0
  22. data/config/locales/hr.yml +159 -0
  23. data/config/locales/hu.yml +215 -0
  24. data/config/locales/id.yml +187 -0
  25. data/config/locales/is.yml +230 -0
  26. data/config/locales/it.yml +235 -0
  27. data/config/locales/ja.yml +228 -0
  28. data/config/locales/kn.yml +222 -0
  29. data/config/locales/ko.yml +228 -0
  30. data/config/locales/lo.yml +244 -0
  31. data/config/locales/lt.yml +184 -0
  32. data/config/locales/lv.yml +221 -0
  33. data/config/locales/mk.yml +158 -0
  34. data/config/locales/mn.yml +199 -0
  35. data/config/locales/nb.yml +220 -0
  36. data/config/locales/nl.yml +226 -0
  37. data/config/locales/nn.yml +139 -0
  38. data/config/locales/pl.yml +234 -0
  39. data/config/locales/pt.yml +230 -0
  40. data/config/locales/rm.yml +177 -0
  41. data/config/locales/ro.yml +211 -0
  42. data/config/locales/ru.yml +376 -0
  43. data/config/locales/sk.yml +236 -0
  44. data/config/locales/sl.yml +233 -0
  45. data/config/locales/sr.yml +159 -0
  46. data/config/locales/sv.yml +273 -0
  47. data/config/locales/sw.yml +222 -0
  48. data/config/locales/th.rb +199 -0
  49. data/config/locales/tr.yml +181 -0
  50. data/config/locales/uk.yml +351 -0
  51. data/config/locales/vi.yml +241 -0
  52. data/config/locales/zh.yml +250 -0
  53. data/lib/exvo_globalize/backend/chain.rb +20 -0
  54. data/lib/exvo_globalize/version.rb +1 -1
  55. data/spec/controllers/globalize_translations_controller_spec.rb +1 -3
  56. data/spec/exvo_globalize/globalize_store_spec.rb +5 -0
  57. metadata +56 -5
@@ -0,0 +1,224 @@
1
+ # Basque translations for Rails
2
+ # by Esti Alvarez (esti@efaber.net)
3
+
4
+
5
+ "eu":
6
+ date:
7
+ formats:
8
+ default: "%Y/%m/%e"
9
+ short: "%b %e"
10
+ long: "%Y(e)ko %Bk %e"
11
+
12
+ day_names:
13
+ - Igandea
14
+ - Astelehena
15
+ - Asteartea
16
+ - Asteazkena
17
+ - Osteguna
18
+ - Ostirala
19
+ - Larunbata
20
+ abbr_day_names:
21
+ - Igan
22
+ - Astel
23
+ - Astear
24
+ - Asteaz
25
+ - Oste
26
+ - Osti
27
+ - Lar
28
+
29
+ month_names:
30
+ - ~
31
+ - Urtarrila
32
+ - Otsaila
33
+ - Martxoa
34
+ - Apirila
35
+ - Maiatza
36
+ - Ekaina
37
+ - Uztaila
38
+ - Abuztua
39
+ - Iraila
40
+ - Urria
41
+ - Azaroa
42
+ - Abendua
43
+ abbr_month_names:
44
+ - ~
45
+ - Urt
46
+ - Ots
47
+ - Mar
48
+ - Api
49
+ - Mai
50
+ - Eka
51
+ - Uzt
52
+ - Abu
53
+ - Ira
54
+ - Urr
55
+ - Aza
56
+ - Aben
57
+ order:
58
+ - :year
59
+ - :month
60
+ - :day
61
+
62
+ time:
63
+ formats:
64
+ default: "%A, %Y(e)ko %Bren %e %H:%M:%S %z"
65
+ short: "%b %e, %H:%M"
66
+ long: "%Y(e)ko %Bren %e, %H:%M"
67
+ am: "am"
68
+ pm: "pm"
69
+
70
+ # Used in array.to_sentence.
71
+ support:
72
+ array:
73
+ words_connector: ", "
74
+ two_words_connector: " eta "
75
+ last_word_connector: " eta "
76
+
77
+ select:
78
+ prompt: "Aukeratu mesedez"
79
+
80
+ number:
81
+ format:
82
+ separator: ","
83
+ delimiter: "."
84
+ precision: 3
85
+ significant: false
86
+ strip_insignificant_zeros: false
87
+
88
+ currency:
89
+ format:
90
+ format: "%n %u"
91
+ unit: "€"
92
+ separator: ","
93
+ delimiter: "."
94
+ precision: 2
95
+ significant: false
96
+ strip_insignificant_zeros: false
97
+
98
+ percentage:
99
+ format:
100
+ delimiter: ""
101
+
102
+ precision:
103
+ format:
104
+ delimiter: ""
105
+
106
+ human:
107
+ format:
108
+ delimiter: ""
109
+ precision: 3
110
+ significant: true
111
+ strip_insignificant_zeros: true
112
+ storage_units:
113
+ format: "%n %u"
114
+ units:
115
+ byte:
116
+ one: "Byte"
117
+ other: "Byte"
118
+ kb: "KB"
119
+ mb: "MB"
120
+ gb: "GB"
121
+ tb: "TB"
122
+ decimal_units:
123
+ format: "%n %u"
124
+ units:
125
+ unit: ""
126
+ thousand: "Mila"
127
+ million: "Milioi"
128
+ billion: "Mila milioi"
129
+ trillion: "Trilioi"
130
+ quadrillion: "Kuatrilioi"
131
+
132
+ datetime:
133
+ distance_in_words:
134
+ half_a_minute: "minutu erdi"
135
+ less_than_x_seconds:
136
+ one: "segundu bat baino gutxiago"
137
+ other: "%{count} segundu baino gutxiago"
138
+ x_seconds:
139
+ one: "segundu bat"
140
+ other: "%{count} segundu"
141
+ less_than_x_minutes:
142
+ one: "1 minutu bat baino gutxiago"
143
+ other: "%{count} minutu baino gutxiago"
144
+ x_minutes:
145
+ one: "minutu bat"
146
+ other: "%{count} minutu"
147
+ about_x_hours:
148
+ one: "ordu bat inguru"
149
+ other: "%{count} ordu inguru"
150
+ x_days:
151
+ one: "egun bat"
152
+ other: "%{count} egun"
153
+ about_x_months:
154
+ one: "hilabete bat inguru"
155
+ other: "%{count} hilabete inguru"
156
+ x_months:
157
+ one: "hilabete bat"
158
+ other: "%{count} hilabete"
159
+ about_x_years:
160
+ one: "urte bat inguru"
161
+ other: "%{count} urte inguru"
162
+ over_x_years:
163
+ one: "urte bat baino gehiago"
164
+ other: "%{count} urte baino gehiago"
165
+ almost_x_years:
166
+ one: "ia urte bat"
167
+ other: "ia %{count} urte"
168
+ prompts:
169
+ year: "Urte"
170
+ month: "Hilabete"
171
+ day: "Egun"
172
+ hour: "Ordu"
173
+ minute: "Minutu"
174
+ second: "Segundu"
175
+
176
+ helpers:
177
+ select:
178
+ prompt: "Mesedez, aukeratu"
179
+
180
+ submit:
181
+ create: '%{model}a eratu'
182
+ update: '%{model}a eguneratu'
183
+ submit: '%{model}a gorde'
184
+
185
+ errors:
186
+ format: "%{attribute} %{message}"
187
+
188
+ messages: &errors_messages
189
+ inclusion: "ez da zerrendako aukera bat"
190
+ exclusion: "erreserbatuta dago"
191
+ invalid: "ez da zuzena"
192
+ confirmation: "ez dator bat konfirmazioarekin"
193
+ accepted: "onartuta izan behar da"
194
+ empty: "ezin da hutsik egon"
195
+ blank: "ezin da zuriz utzi"
196
+ too_long: "luzeegia da (%{count} karaktere gehienez)"
197
+ too_short: "laburregia da (%{count} karaktere gutxienez)"
198
+ wrong_length: "ez du luzeera zuzena (%{count} karaktere izan behar ditu)"
199
+ not_a_number: "ez da zenbaki bat"
200
+ not_an_integer: "zenbaki osoa izan behar da"
201
+ greater_than: "%{count} baino handiagoa izan behar da"
202
+ greater_than_or_equal_to: "%{count} baino handiago edo berdin izan behar da"
203
+ equal_to: "%{count} izan behar da"
204
+ less_than: "%{count} baino txikiago izan behar da"
205
+ less_than_or_equal_to: "%{count} baino txikiago edo berdin izan behar da"
206
+ odd: "bakoitia izan behar du"
207
+ even: "bikoitia izan behar du"
208
+
209
+ activerecord:
210
+ errors:
211
+ template:
212
+ header:
213
+ one: "Errore batek ezinezkoa egin du {{model}} hau gordetzea"
214
+ other: "{{count}} errorek ezinezkoa egiten dute {{model}} hau gordetzea"
215
+ body: "Arazoak egon dira ondoko eremuekin:"
216
+
217
+ messages:
218
+ taken: "hartuta dago"
219
+ record_invalid: "Balioztatze arazoa: %{errors}"
220
+ <<: *errors_messages
221
+
222
+ full_messages:
223
+ format: "%{attribute} %{message}"
224
+
@@ -0,0 +1,222 @@
1
+ # Persian translations for Ruby on Rails
2
+ # by Reza (reza@balatarin.com)
3
+ # Rails 3 update by rbjarnason
4
+
5
+ "fa":
6
+ date:
7
+ formats:
8
+ default: "%Y/%m/%d"
9
+ short: "%m/%d"
10
+ long: "%e %B %Y"
11
+
12
+ day_names:
13
+ - یکشنبه
14
+ - دوشنبه
15
+ - سه‌شنبه
16
+ - چهارشنبه
17
+ - پنج‌شنبه
18
+ - جمعه
19
+ - شنبه
20
+ abbr_day_names:
21
+ - ی
22
+ - د
23
+ - س
24
+ - چ
25
+ - پ
26
+ - ج
27
+ - ش
28
+
29
+ month_names:
30
+ - ~
31
+ - ژانویه
32
+ - فوریه
33
+ - مارس
34
+ - آوریل
35
+ - مه
36
+ - ژوئن
37
+ - ژوئیه
38
+ - اوت
39
+ - سپتامبر
40
+ - اکتبر
41
+ - نوامبر
42
+ - دسامبر
43
+ abbr_month_names:
44
+ - ~
45
+ - ژانویه
46
+ - فوریه
47
+ - مارس
48
+ - آوریل
49
+ - مه
50
+ - ژوئن
51
+ - ژوئیه
52
+ - اوت
53
+ - سپتامبر
54
+ - اکتبر
55
+ - نوامبر
56
+ - دسامبر
57
+ order:
58
+ - :day
59
+ - :month
60
+ - :year
61
+
62
+ time:
63
+ formats:
64
+ default: "%A، %e %B %Y، ساعت %H:%M:%S (%Z)"
65
+ short: "%e %B، ساعت %H:%M"
66
+ long: "%e %B %Y، ساعت %H:%M"
67
+ am: "قبل از ظهر"
68
+ pm: "بعد از ظهر"
69
+
70
+ support:
71
+ array:
72
+ words_connector: "، "
73
+ two_words_connector: " و "
74
+ last_word_connector: "، و "
75
+
76
+ select:
77
+ prompt: "لطفا انتخاب کنید"
78
+
79
+ number:
80
+ format:
81
+ separator: '٫'
82
+ delimiter: '٬'
83
+ precision: 2
84
+ significant: false
85
+ strip_insignificant_zeros: false
86
+
87
+ currency:
88
+ format:
89
+ unit: 'ریال'
90
+ format: '%n %u'
91
+ separator: '٫'
92
+ delimiter: '٬'
93
+ precision: 0
94
+ significant: false
95
+ strip_insignificant_zeros: false
96
+
97
+ percentage:
98
+ format:
99
+ delimiter: ""
100
+
101
+ precision:
102
+ format:
103
+ delimiter: ""
104
+
105
+ human:
106
+ format:
107
+ delimiter: ""
108
+ precision: 1
109
+ significant: true
110
+ strip_insignificant_zeros: true
111
+ storage_units:
112
+ format: "%n %u"
113
+ units:
114
+ byte:
115
+ one: "بایت"
116
+ other: "بایت"
117
+ kb: "کیلوبایت"
118
+ mb: "مگابایت"
119
+ gb: "گیگابایت"
120
+ tb: "ترابایت"
121
+ decimal_units:
122
+ format: "%n %u"
123
+ units:
124
+ unit: ""
125
+ thousand: هزار
126
+ million: میلیون
127
+ billion: بیلیون
128
+ trillion: تریلیون
129
+ quadrillion: کادریلیون
130
+
131
+ datetime:
132
+ distance_in_words:
133
+ half_a_minute: "نیم دقیقه"
134
+ less_than_x_seconds:
135
+ one: "۱ ثانیه"
136
+ other: "کمتر از %{count} ثانیه"
137
+ x_seconds:
138
+ one: "۱ ثانیه"
139
+ other: "%{count} ثانیه"
140
+ less_than_x_minutes:
141
+ one: "کمتر از ۱ دقیقه"
142
+ other: "کمتر از %{count} دقیقه"
143
+ x_minutes:
144
+ one: "۱ دقیقه"
145
+ other: "%{count} دقیقه"
146
+ about_x_hours:
147
+ one: "حدود ۱ ساعت"
148
+ other: "حدود %{count} ساعت"
149
+ x_days:
150
+ one: "۱ روز"
151
+ other: "%{count} روز"
152
+ about_x_months:
153
+ one: "حدود ۱ ماه"
154
+ other: "حدود %{count} ماه"
155
+ x_months:
156
+ one: "۱ ماه"
157
+ other: "%{count} ماه"
158
+ about_x_years:
159
+ one: "حدود ۱ سال"
160
+ other: "حدود %{count} سال"
161
+ over_x_years:
162
+ one: "بیش از ۱ سال"
163
+ other: "بیش از %{count} سال"
164
+ almost_x_years:
165
+ one: "حدود ۱ سال"
166
+ other: "حدود %{count} سال"
167
+ prompts:
168
+ year: "سال"
169
+ month: "ماه"
170
+ day: "روز"
171
+ hour: "ساعت"
172
+ minute: "دقیقه"
173
+ second: "ثانیه"
174
+
175
+ helpers:
176
+ select:
177
+ prompt: "لطفا انتخاب کنید"
178
+
179
+ submit:
180
+ create: '%{model} ایجاد'
181
+ update: '%{model} بروز'
182
+ submit: '%{model} ذخیره'
183
+
184
+ errors:
185
+ format: "%{attribute} %{message}"
186
+
187
+ messages: &errors_messages
188
+ inclusion: "در لیست موجود نیست"
189
+ exclusion: "رزرو است"
190
+ invalid: "نامعتبر است"
191
+ confirmation: "با تایید نمی‌خواند"
192
+ accepted: "باید پذیرفته شود"
193
+ empty: "نمی‌تواند خالی باشد"
194
+ blank: "نباید خالی باشد"
195
+ too_long: "بلند است (حداکثر %{count} کاراکتر)"
196
+ too_short: "کوتاه است (حداقل %{count} کاراکتر)"
197
+ wrong_length: "نااندازه است (باید %{count} کاراکتر باشد)"
198
+ not_a_number: "عدد نیست"
199
+ not_an_integer: "عدد صحیح نیست"
200
+ greater_than: "باید بزرگتر از %{count} باشد"
201
+ greater_than_or_equal_to: "باید بزرگتر یا برابر %{count} باشد"
202
+ equal_to: "باید برابر %{count} باشد"
203
+ less_than: "باید کمتر از %{count} باشد"
204
+ less_than_or_equal_to: "باید کمتر یا برابر %{count} باشد"
205
+ odd: "باید فرد باشد"
206
+ even: "باید زوج باشد"
207
+
208
+ activerecord:
209
+ errors:
210
+ template:
211
+ header:
212
+ one: "1 خطا جلوی ذخیره این %{model} را گرفت"
213
+ other: "%{count} خطا جلوی ذخیره این %{model} را گرفت"
214
+ body: "موارد زیر مشکل داشت:"
215
+
216
+ messages:
217
+ taken: "پیشتر گرفته شده"
218
+ record_invalid: "رکورد نامعتبر است %{errors}"
219
+ <<: *errors_messages
220
+
221
+ full_messages:
222
+ format: "%{attribute} %{message}"
@@ -0,0 +1,225 @@
1
+ # Finnish translations for Ruby on Rails
2
+ # by Marko Seppä (marko.seppa@gmail.com)
3
+ #
4
+ # corrected by Petri Kivikangas (pkivik@gmail.com)
5
+ # corrected and amended by Niklas Laxström (niklas.laxstrom+rails@gmail.com) 2009
6
+ # Rails 3 conversion by rbjarnason
7
+
8
+ fi:
9
+ date:
10
+ formats:
11
+ default: "%e. %Bta %Y"
12
+ long: "%A %e. %Bta %Y"
13
+ short: "%e.%m.%Y"
14
+
15
+ day_names:
16
+ - sunnuntai
17
+ - maanantai
18
+ - tiistai
19
+ - keskiviikko
20
+ - torstai
21
+ - perjantai
22
+ - lauantai
23
+ abbr_day_names:
24
+ - su
25
+ - ma
26
+ - ti
27
+ - ke
28
+ - to
29
+ - pe
30
+ - la
31
+
32
+ month_names:
33
+ - ~
34
+ - tammikuu
35
+ - helmikuu
36
+ - maaliskuu
37
+ - huhtikuu
38
+ - toukokuu
39
+ - kesäkuu
40
+ - heinäkuu
41
+ - elokuu
42
+ - syyskuu
43
+ - lokakuu
44
+ - marraskuu
45
+ - joulukuu
46
+ abbr_month_names:
47
+ - ~
48
+ - tammi
49
+ - helmi
50
+ - maalis
51
+ - huhti
52
+ - touko
53
+ - kesä
54
+ - heinä
55
+ - elo
56
+ - syys
57
+ - loka
58
+ - marras
59
+ - joulu
60
+ order:
61
+ - :day
62
+ - :month
63
+ - :year
64
+
65
+ time:
66
+ formats:
67
+ default: "%A %e. %Bta %Y %H:%M:%S %z"
68
+ short: "%e.%m. %H.%M"
69
+ long: "%e. %Bta %Y %H.%M"
70
+ am: "aamupäivä"
71
+ pm: "iltapäivä"
72
+
73
+ support:
74
+ array:
75
+ words_connector: ", "
76
+ two_words_connector: " ja "
77
+ last_word_connector: " ja "
78
+
79
+ select:
80
+ prompt: "Valitse"
81
+
82
+ number:
83
+ format:
84
+ separator: "."
85
+ delimiter: ","
86
+ precision: 3
87
+ significant: false
88
+ strip_insignificant_zeros: false
89
+
90
+ currency:
91
+ format:
92
+ format: "%n %u"
93
+ unit: "€"
94
+ separator: ","
95
+ delimiter: "."
96
+ precision: 2
97
+ significant: false
98
+ strip_insignificant_zeros: false
99
+
100
+ percentage:
101
+ format:
102
+ delimiter: ""
103
+
104
+ precision:
105
+ format:
106
+ delimiter: ""
107
+
108
+ human:
109
+ format:
110
+ delimiter: ""
111
+ precision: 3
112
+ significant: true
113
+ strip_insignificant_zeros: true
114
+ storage_units:
115
+ format: "%n %u"
116
+ units:
117
+ byte:
118
+ one: "tavu"
119
+ other: "tavua"
120
+ kb: "kB"
121
+ mb: "MB"
122
+ gb: "GB"
123
+ tb: "TB"
124
+ decimal_units:
125
+ format: "%n %u"
126
+ units:
127
+ unit: ""
128
+ thousand: Tuhatta
129
+ million: Euroa
130
+ billion: Miljardia
131
+ trillion: Biljoona
132
+ quadrillion: Kvadriljoona
133
+
134
+ datetime:
135
+ distance_in_words:
136
+ half_a_minute: "puoli minuuttia"
137
+ less_than_x_seconds:
138
+ one: "alle sekunti"
139
+ other: "alle %{count} sekuntia"
140
+ x_seconds:
141
+ one: "sekunti"
142
+ other: "%{count} sekuntia"
143
+ less_than_x_minutes:
144
+ one: "alle minuutti"
145
+ other: "alle %{count} minuuttia"
146
+ x_minutes:
147
+ one: "minuutti"
148
+ other: "%{count} minuuttia"
149
+ about_x_hours:
150
+ one: "noin tunti"
151
+ other: "noin %{count} tuntia"
152
+ x_days:
153
+ one: "päivä"
154
+ other: "%{count} päivää"
155
+ about_x_months:
156
+ one: "noin kuukausi"
157
+ other: "noin %{count} kuukautta"
158
+ x_months:
159
+ one: "kuukausi"
160
+ other: "%{count} kuukautta"
161
+ about_x_years:
162
+ one: "vuosi"
163
+ other: "noin %{count} vuotta"
164
+ over_x_years:
165
+ one: "yli vuosi"
166
+ other: "yli %{count} vuotta"
167
+ almost_x_years:
168
+ one: "melkein yksi vuosi"
169
+ other: "melkein %{count} vuotta"
170
+ prompts:
171
+ year: "Vuosi"
172
+ month: "Kuukausi"
173
+ day: "Päivä"
174
+ hour: "Tunti"
175
+ minute: "Minuutti"
176
+ second: "Sekunti"
177
+
178
+ helpers:
179
+ select:
180
+ prompt: "Valitse"
181
+
182
+ submit:
183
+ create: 'Luo %{model}'
184
+ update: 'Päivitä %{model}'
185
+ submit: 'Tallenna %{model}'
186
+
187
+ errors:
188
+ format: "%{attribute} %{message}"
189
+
190
+ messages: &errors_messages
191
+ inclusion: "ei löydy listasta"
192
+ exclusion: "on varattu"
193
+ invalid: "on kelvoton"
194
+ confirmation: "ei vastaa varmennusta"
195
+ accepted: "täytyy olla hyväksytty"
196
+ empty: "ei voi olla tyhjä"
197
+ blank: "ei voi olla sisällötön"
198
+ too_long: "on liian pitkä (saa olla enintään %{count} merkkiä)"
199
+ too_short: "on liian lyhyt (oltava vähintään %{count} merkkiä)"
200
+ wrong_length: "on väärän pituinen (täytyy olla täsmälleen %{count} merkkiä)"
201
+ not_an_integer: "on kokonaisluku"
202
+ not_a_number: "ei ole luku"
203
+ greater_than: "täytyy olla suurempi kuin %{count}"
204
+ greater_than_or_equal_to: "täytyy olla suurempi tai yhtä suuri kuin %{count}"
205
+ equal_to: "täytyy olla yhtä suuri kuin %{count}"
206
+ less_than: "täytyy olla pienempi kuin %{count}"
207
+ less_than_or_equal_to: "täytyy olla pienempi tai yhtä suuri kuin %{count}"
208
+ odd: "täytyy olla pariton"
209
+ even: "täytyy olla parillinen"
210
+
211
+ activerecord:
212
+ errors:
213
+ template:
214
+ header:
215
+ one: "Virhe syötteessä esti mallin %{model} tallentamisen"
216
+ other: "%{count} virhettä esti mallin %{model} tallentamisen"
217
+ body: "Seuraavat kentät aiheuttivat ongelmia:"
218
+
219
+ messages:
220
+ taken: "on jo käytössä"
221
+ record_invalid: "Validointi epäonnistui: %{errors}"
222
+ <<: *errors_messages
223
+
224
+ full_messages:
225
+ format: "%{attribute} %{message}"