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,230 @@
1
+ # European Portuguese translations for Ruby on Rails
2
+ #
3
+ #
4
+
5
+ pt:
6
+ date:
7
+ formats:
8
+ default: "%d/%m/%Y"
9
+ short: "%d de %B"
10
+ long: "%d de %B de %Y"
11
+
12
+ day_names:
13
+ - Domingo
14
+ - Segunda
15
+ - Terça
16
+ - Quarta
17
+ - Quinta
18
+ - Sexta
19
+ - Sábado
20
+ abbr_day_names:
21
+ - Dom
22
+ - Seg
23
+ - Ter
24
+ - Qua
25
+ - Qui
26
+ - Sex
27
+ - Sáb
28
+
29
+ month_names:
30
+ - ~
31
+ - Janeiro
32
+ - Fevereiro
33
+ - Março
34
+ - Abril
35
+ - Maio
36
+ - Junho
37
+ - Julho
38
+ - Agosto
39
+ - Setembro
40
+ - Outubro
41
+ - Novembro
42
+ - Dezembro
43
+ abbr_month_names:
44
+ - ~
45
+ - Jan
46
+ - Fev
47
+ - Mar
48
+ - Abr
49
+ - Mai
50
+ - Jun
51
+ - Jul
52
+ - Ago
53
+ - Set
54
+ - Out
55
+ - Nov
56
+ - Dez
57
+ order:
58
+ - :day
59
+ - :month
60
+ - :year
61
+
62
+ time:
63
+ formats:
64
+ default: "%A, %d de %B de %Y, %H:%Mh"
65
+ short: "%d/%m, %H:%M hs"
66
+ long: "%A, %d de %B de %Y, %H:%Mh"
67
+ am: "am"
68
+ pm: "pm"
69
+
70
+ support:
71
+ array:
72
+ words_connector: ", "
73
+ two_words_connector: " e "
74
+ last_word_connector: ", e"
75
+
76
+ select:
77
+ prompt: "Por favor seleccione"
78
+
79
+ number:
80
+ format:
81
+ separator: ","
82
+ delimiter: "."
83
+ precision: 3
84
+ significant: false
85
+ strip_insignificant_zeros: false
86
+
87
+ currency:
88
+ format:
89
+ format: "%u%n"
90
+ unit: "€"
91
+ separator: ","
92
+ delimiter: "."
93
+ precision: 2
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: "Byte"
116
+ other: "Bytes"
117
+ kb: "KB"
118
+ mb: "MB"
119
+ gb: "GB"
120
+ tb: "TB"
121
+ decimal_units:
122
+ format: "%n %u"
123
+ units:
124
+ unit: ""
125
+ thousand: mil
126
+ million:
127
+ one: milhão
128
+ other: milhões
129
+ billion:
130
+ one: mil milhões
131
+ other: mil milhões
132
+ trillion:
133
+ one: bilião
134
+ other: biliões
135
+ quadrillion:
136
+ one: mil biliões
137
+ other: mil biliões
138
+
139
+ datetime:
140
+ distance_in_words:
141
+ half_a_minute: "meio minuto"
142
+ less_than_x_seconds:
143
+ one: "menos de 1 segundo"
144
+ other: "menos de %{count} segundos"
145
+ x_seconds:
146
+ one: "1 segundo"
147
+ other: "%{count} segundos"
148
+ less_than_x_minutes:
149
+ one: "menos de um minuto"
150
+ other: "menos de %{count} minutos"
151
+ x_minutes:
152
+ one: "1 minuto"
153
+ other: "%{count} minutos"
154
+ about_x_hours:
155
+ one: "aproximadamente 1 hora"
156
+ other: "aproximadamente %{count} horas"
157
+ x_days:
158
+ one: "1 dia"
159
+ other: "%{count} dias"
160
+ about_x_months:
161
+ one: "aproximadamente 1 mês"
162
+ other: "aproximadamente %{count} meses"
163
+ x_months:
164
+ one: "1 mês"
165
+ other: "%{count} meses"
166
+ about_x_years:
167
+ one: "aproximadamente 1 ano"
168
+ other: "aproximadamente %{count} anos"
169
+ over_x_years:
170
+ one: "mais de 1 ano"
171
+ other: "mais de %{count} anos"
172
+ almost_x_years:
173
+ one: "quase 1 ano"
174
+ other: "quase %{count} years"
175
+ prompts:
176
+ year: "Ano"
177
+ month: "Mês"
178
+ day: "Dia"
179
+ hour: "Hora"
180
+ minute: "Minuto"
181
+ second: "Segundo"
182
+
183
+ helpers:
184
+ select:
185
+ prompt: "Por favor seleccione"
186
+
187
+ submit:
188
+ create: 'Criar %{model}'
189
+ update: 'Actualizar %{model}'
190
+ submit: 'Salvar %{model}'
191
+
192
+ errors:
193
+ format: "%{attribute} %{message}"
194
+
195
+ messages: &errors_messages
196
+ inclusion: "não está incluído na lista"
197
+ exclusion: "é reservado"
198
+ invalid: "é inválido"
199
+ confirmation: "não coincide com a confirmação"
200
+ accepted: "tem de ser aceite"
201
+ empty: "não pode estar vazio"
202
+ blank: "não pode estar em branco"
203
+ too_long: "é demasiado grande (o máximo é de %{count} caracteres)"
204
+ too_short: "é demasiado pequeno (o mínimo é de %{count} caracteres)"
205
+ wrong_length: "comprimento errado (deve ter %{count} caracteres)"
206
+ not_a_number: "não é um número"
207
+ not_an_integer: "tem de ser um inteiro"
208
+ greater_than: "tem de ser maior que %{count}"
209
+ greater_than_or_equal_to: "tem de ser maior ou igual a %{count}"
210
+ equal_to: "tem de ser igual a %{count}"
211
+ less_than: "tem de ser menor que %{count}"
212
+ less_than_or_equal_to: "tem de ser menor ou igual a %{count}"
213
+ odd: "tem de ser ímpar"
214
+ even: "tem de ser par"
215
+
216
+ activerecord:
217
+ errors:
218
+ template:
219
+ header:
220
+ one: "Não foi possível guardar %{model}: 1 erro"
221
+ other: "Não foi possível guardar %{model}: %{count} erros"
222
+ body: "Por favor, verifique os seguintes campos:"
223
+
224
+ messages:
225
+ taken: "não está disponível"
226
+ record_invalid: "A validação falhou: %{errors}"
227
+ <<: *errors_messages
228
+
229
+ full_messages:
230
+ format: "%{attribute} %{message}"
@@ -0,0 +1,177 @@
1
+ # Romansh translations for Ruby on Rails
2
+ # by Flurina Andriuet and Sebastian de Castelberg (rails-i18n@kpricorn.org)
3
+
4
+ rm:
5
+ date:
6
+ formats:
7
+ default: "%d.%m.%Y"
8
+ short: "%e. %b"
9
+ long: "%e. %B %Y"
10
+
11
+ day_names:
12
+ - dumengia
13
+ - glindesdi
14
+ - mardi
15
+ - mesemna
16
+ - gievgia
17
+ - venderdi
18
+ - sonda
19
+ abbr_day_names:
20
+ - du
21
+ - gli
22
+ - ma
23
+ - me
24
+ - gie
25
+ - ve
26
+ - so
27
+ month_names:
28
+ - ~
29
+ - schaner
30
+ - favrer
31
+ - mars
32
+ - avrigl
33
+ - matg
34
+ - zercladur
35
+ - fanadur
36
+ - avust
37
+ - settember
38
+ - october
39
+ - november
40
+ - december
41
+ abbr_month_names:
42
+ - ~
43
+ - schan
44
+ - favr
45
+ - mars
46
+ - avr
47
+ - matg
48
+ - zercl
49
+ - fan
50
+ - avust
51
+ - sett
52
+ - oct
53
+ - nov
54
+ - dec
55
+ order:
56
+ - :day
57
+ - :month
58
+ - :year
59
+
60
+ time:
61
+ formats:
62
+ default: "%A, %d. %B %Y, %H:%M Uhr"
63
+ short: "%d. %B, %H:%M Uhr"
64
+ long: "%A, %d. %B %Y, %H:%M Uhr"
65
+ am: "avantmezdi"
66
+ pm: "suentermezdi"
67
+
68
+ datetime:
69
+ distance_in_words:
70
+ half_a_minute: "ina mesa minuta"
71
+ less_than_x_seconds:
72
+ one: "main ch’ina secunda"
73
+ other: "main che %{count} secundas"
74
+ x_seconds:
75
+ one: "ina secunda"
76
+ other: "%{count} secundas"
77
+ less_than_x_minutes:
78
+ one: "main ch’ina minuta"
79
+ other: "main che %{count} minutas"
80
+ x_minutes:
81
+ one: "1 minuta"
82
+ other: "%{count} minutas"
83
+ about_x_hours:
84
+ one: "circa in'ura"
85
+ other: "circa %{count} uras"
86
+ x_days:
87
+ one: "in di"
88
+ other: "%{count} dis"
89
+ about_x_months:
90
+ one: "circa in mais"
91
+ other: "circa %{count} mais"
92
+ x_months:
93
+ one: "in mais"
94
+ other: "%{count} mais"
95
+ about_x_years:
96
+ one: "circa in onn"
97
+ other: "circa %{count} onns"
98
+ over_x_years:
99
+ one: "dapli ch'in onn"
100
+ other: "dapli che %{count} onns"
101
+ prompts:
102
+ second: "secundas"
103
+ minute: "minutas"
104
+ hour: "uras"
105
+ day: "dis"
106
+ month: "mais"
107
+ year: "onns"
108
+
109
+ number:
110
+ format:
111
+ precision: 2
112
+ separator: "."
113
+ delimiter: "'"
114
+ currency:
115
+ format:
116
+ precision: 2
117
+ separator: "."
118
+ delimiter: "'"
119
+ unit: "CHF"
120
+ format: "%n %u"
121
+ percentage:
122
+ format:
123
+ delimiter: ""
124
+ precision:
125
+ format:
126
+ delimiter: ""
127
+ human:
128
+ format:
129
+ delimiter: ""
130
+ precision: 1
131
+ storage_units:
132
+ # Storage units output formatting.
133
+ # %u is the storage unit, %n is the number (default: 2 MB)
134
+ format: "%n %u"
135
+ units:
136
+ byte:
137
+ one: "byte"
138
+ other: "bytes"
139
+ kb: "KB"
140
+ mb: "MB"
141
+ gb: "GB"
142
+ tb: "TB"
143
+
144
+ support:
145
+ array:
146
+ words_connector: ", "
147
+ two_words_connector: " e "
148
+ last_word_connector: " e "
149
+
150
+ activerecord:
151
+ errors:
152
+ template:
153
+ header:
154
+ one: "Betg pussaivel da memorisar quest %{model}: 1 errur."
155
+ other: "Betg pussaivel da memorisar quest %{model}: %{count} errurs."
156
+ body: "Faschai uschè bain e controllai ils suandants champs:"
157
+
158
+ messages:
159
+ inclusion: "n'è betg sin la glista"
160
+ exclusion: "na stat betg a disposiziun"
161
+ invalid: "n'è betg valid"
162
+ confirmation: "na correspunda betg al champ da conferma"
163
+ accepted: "sto vegnir acceptà"
164
+ empty: "sto vegnir emplenì ora"
165
+ blank: "sto vegnir emplenì ora"
166
+ too_long: "è memia lung (betg dapli che %{count} caracters)"
167
+ too_short: "è memia curt (betg pli pauc che %{count} caracters)"
168
+ wrong_length: "ha la fallida lunghezza (sto avair %{count} caracters)"
169
+ taken: "è gia occupà"
170
+ not_a_number: "è betg in dumber"
171
+ greater_than: "sto esser pli grond che %{count}"
172
+ greater_than_or_equal_to: "sto esser pli grond u medem sco %{count}"
173
+ equal_to: "sto esser exact %{count}"
174
+ less_than: "sto esser pli pitschen che %{count}"
175
+ less_than_or_equal_to: "sto esser pli pitschen u medem sco %{count}"
176
+ odd: "sto esser spèr"
177
+ even: "sto esser pèr"
@@ -0,0 +1,211 @@
1
+ # Romanian translations for Ruby on Rails
2
+ # by Catalin Ilinca (me@talin.ro)
3
+ # updated by kfl62 (bogus keys are now commented)
4
+
5
+ ro:
6
+ date:
7
+ formats:
8
+ default: "%d-%m-%Y"
9
+ short: "%d %b"
10
+ long: "%d %B %Y"
11
+
12
+ day_names:
13
+ - Duminică
14
+ - Luni
15
+ - Marți
16
+ - Miercuri
17
+ - Joi
18
+ - Vineri
19
+ - Sâmbată
20
+ abbr_day_names:
21
+ - Dum
22
+ - Lun
23
+ - Mar
24
+ - Mie
25
+ - Joi
26
+ - Vin
27
+ - Sâm
28
+ month_names:
29
+ - ~
30
+ - Ianuarie
31
+ - Februarie
32
+ - Martie
33
+ - Aprilie
34
+ - Mai
35
+ - Iunie
36
+ - Iulie
37
+ - August
38
+ - Septembrie
39
+ - Octombrie
40
+ - Noiembrie
41
+ - Decembrie
42
+ abbr_month_names:
43
+ - ~
44
+ - Ian
45
+ - Feb
46
+ - Mar
47
+ - Apr
48
+ - Mai
49
+ - Iun
50
+ - Iul
51
+ - Aug
52
+ - Sep
53
+ - Oct
54
+ - Noi
55
+ - Dec
56
+ order:
57
+ - :day
58
+ - :month
59
+ - :year
60
+
61
+ time:
62
+ formats:
63
+ default: "%a %d %b %Y, %H:%M:%S %z"
64
+ short: "%d %b %H:%M"
65
+ long: "%d %B %Y %H:%M"
66
+ am: ''
67
+ pm: ''
68
+
69
+ support:
70
+ array:
71
+ words_connector: ", "
72
+ two_words_connector: " şi "
73
+ last_word_connector: " şi "
74
+ select:
75
+ prompt: "Alegeţi"
76
+ number:
77
+ format:
78
+ precision: 3
79
+ separator: '.'
80
+ delimiter: ','
81
+ significant: false
82
+ strip_insignificant_zeros: false
83
+ currency:
84
+ format:
85
+ unit: 'RON'
86
+ precision: 2
87
+ separator: '.'
88
+ delimiter: ','
89
+ format: '%n %u'
90
+ significant: false
91
+ strip_insignificant_zeros: false
92
+ percentage:
93
+ format:
94
+ delimiter: ","
95
+ precision:
96
+ format:
97
+ delimiter: ""
98
+ human:
99
+ format:
100
+ delimiter: ","
101
+ precision: 3
102
+ significant: true
103
+ strip_insignificant_zeros: true
104
+ storage_units:
105
+ format: "%n %u"
106
+ units:
107
+ byte:
108
+ one: "Byte"
109
+ other: "Bytes"
110
+ kb: "KB"
111
+ mb: "MB"
112
+ gb: "GB"
113
+ tb: "TB"
114
+ decimal_units:
115
+ format: "%n %u"
116
+ units:
117
+ unit: ""
118
+ thousand: Mie
119
+ million: Milion
120
+ billion: Miliard
121
+ trillion: Trilion
122
+ quadrillion: Quadrilion
123
+ datetime:
124
+ distance_in_words:
125
+ half_a_minute: "jumătate de minut"
126
+ less_than_x_seconds:
127
+ one: "mai puțin de o secundă"
128
+ other: "mai puțin de %{count} secunde"
129
+ x_seconds:
130
+ one: "1 secundă"
131
+ other: "%{count} secunde"
132
+ less_than_x_minutes:
133
+ one: "mai puțin de un minut"
134
+ other: "mai puțin de %{count} minute"
135
+ x_minutes:
136
+ one: "1 minut"
137
+ other: "%{count} minute"
138
+ about_x_hours:
139
+ one: "aproximativ o oră"
140
+ other: "aproximativ %{count} ore"
141
+ x_days:
142
+ one: "1 zi"
143
+ other: "%{count} zile"
144
+ about_x_months:
145
+ one: "aproximativ o lună"
146
+ other: "aproximativ %{count} luni"
147
+ x_months:
148
+ one: "1 lună"
149
+ other: "%{count} luni"
150
+ about_x_years:
151
+ one: "aproximativ un an"
152
+ other: "aproximativ %{count} ani"
153
+ over_x_years:
154
+ one: "mai mult de un an"
155
+ other: "mai mult de %{count} ani"
156
+ almost_x_years:
157
+ one: "aproape 1 an"
158
+ other: "aproape %{count} ani"
159
+ prompts:
160
+ year: "Anul"
161
+ month: "Luna"
162
+ day: "Ziua"
163
+ hour: "Ora"
164
+ minute: "Minutul"
165
+ second: "Secunda"
166
+
167
+ helpers:
168
+ select:
169
+ prompt: "Alegeţi"
170
+ submit:
171
+ create: 'Creare %{model}'
172
+ update: 'Modificare %{model}'
173
+ submit: 'Salvare %{model}'
174
+
175
+ errors:
176
+ format: "%{attribute} %{message}"
177
+ messages: &errors_messages
178
+ inclusion: "nu este inclus în listă"
179
+ exclusion: "este rezervat"
180
+ invalid: "este invalid"
181
+ confirmation: "nu este confirmat"
182
+ accepted: "trebuie dat acceptul"
183
+ empty: "nu poate fi gol"
184
+ blank: "nu poate fi gol"
185
+ too_long: "este prea lung (se pot folosi maximum %{count} caractere)"
186
+ too_short: "este pre scurt (minumim de caractere este %{count})"
187
+ wrong_length: "nu are lungimea corectă (trebuie să aiba %{count} caractere)"
188
+ not_a_number: "nu este un număr"
189
+ not_an_integer: "trebuie să fie un mumăr întreg"
190
+ greater_than: "trebuie să fie mai mare decât %{count}"
191
+ greater_than_or_equal_to: "trebuie să fie mai mare sau egal cu %{count}"
192
+ equal_to: "trebuie să fie egal cu %{count}"
193
+ less_than: "trebuie să fie mai mic decât %{count}"
194
+ less_than_or_equal_to: "trebuie să fie mai mic sau egal cu %{count}"
195
+ odd: "trebuie să fie par"
196
+ even: "trebuie să fie impar"
197
+
198
+ activerecord:
199
+ errors:
200
+ template:
201
+ header:
202
+ one: "Nu am putut salva acest %{model}: o eroare"
203
+ other: "Nu am putut salva acest %{model}: %{count} erori."
204
+ body: "Încearcă să corectezi urmatoarele câmpuri:"
205
+ messages:
206
+ taken: "este deja folosit"
207
+ record_invalid: "Validare nereuşită %{errors}"
208
+ <<: *errors_messages
209
+ full_messages:
210
+ format: "%{attribute} %{message}"
211
+