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,222 @@
1
+ # Esperanto translations for Ruby on Rails.
2
+ # Contributors:
3
+ # - Emmanuel Debanne (https://github.com/debanne)
4
+
5
+ eo:
6
+ date:
7
+ formats:
8
+ default: "%Y/%m/%d"
9
+ short: "%e %b"
10
+ long: "%e %B %Y"
11
+
12
+ day_names:
13
+ - dimanĉo
14
+ - lundo
15
+ - mardo
16
+ - merkredo
17
+ - ĵaŭdo
18
+ - vendredo
19
+ - sabato
20
+ abbr_day_names:
21
+ - dim
22
+ - lun
23
+ - mar
24
+ - mer
25
+ - ĵaŭ
26
+ - ven
27
+ - sam
28
+ month_names:
29
+ - ~
30
+ - januaro
31
+ - februaro
32
+ - marto
33
+ - aprilo
34
+ - majo
35
+ - junio
36
+ - julio
37
+ - aŭgusto
38
+ - septembro
39
+ - oktobro
40
+ - novembro
41
+ - decembro
42
+ abbr_month_names:
43
+ - ~
44
+ - jan.
45
+ - feb.
46
+ - mar.
47
+ - apr.
48
+ - majo
49
+ - jun.
50
+ - jul.
51
+ - aŭg.
52
+ - sep.
53
+ - okt.
54
+ - nov.
55
+ - dec.
56
+ order:
57
+ - :day
58
+ - :month
59
+ - :year
60
+
61
+ time:
62
+ formats:
63
+ default: "%d %B %Y %H:%M:%S"
64
+ short: "%d %b %H:%M"
65
+ long: "%A %d %B %Y %H:%M"
66
+ am: 'am'
67
+ pm: 'pm'
68
+
69
+ datetime:
70
+ distance_in_words:
71
+ half_a_minute: "duona minuto"
72
+ less_than_x_seconds:
73
+ zero: "malpli ol unu sekundo"
74
+ one: "malpli ol unu sekundo"
75
+ other: "malpli ol %{count} sekundoj"
76
+ x_seconds:
77
+ one: "1 sekundo"
78
+ other: "%{count} sekundoj"
79
+ less_than_x_minutes:
80
+ zero: "malpli ol unu minuto"
81
+ one: "malpli ol unu minuto"
82
+ other: "malpli ol %{count} minutoj"
83
+ x_minutes:
84
+ one: "1 minuto"
85
+ other: "%{count} minutoj"
86
+ about_x_hours:
87
+ one: "ĉirkaŭ unu horo"
88
+ other: "ĉirkaŭ %{count} horoj"
89
+ x_days:
90
+ one: "1 tago"
91
+ other: "%{count} tagoj"
92
+ about_x_months:
93
+ one: "ĉirkaŭ unu monato"
94
+ other: "ĉirkaŭ %{count} monatoj"
95
+ x_months:
96
+ one: "1 monato"
97
+ other: "%{count} monatoj"
98
+ about_x_years:
99
+ one: "ĉirkaŭ uno jaro"
100
+ other: "ĉirkaŭ %{count} jaroj"
101
+ over_x_years:
102
+ one: "pli ol unu jaro"
103
+ other: "pli ol %{count} jaroj"
104
+ almost_x_years:
105
+ one: "preskaŭ unu jaro"
106
+ other: "preskaŭ %{count} jaroj"
107
+ prompts:
108
+ year: "Jaro"
109
+ month: "Monato"
110
+ day: "Tago"
111
+ hour: "Horo"
112
+ minute: "Minuto"
113
+ second: "Sekundo"
114
+
115
+ number:
116
+ format:
117
+ separator: ","
118
+ delimiter: " "
119
+ precision: 3
120
+ significant: false
121
+ strip_insignificant_zeros: false
122
+ currency:
123
+ format:
124
+ format: "%n %u"
125
+ unit: "€"
126
+ separator: ","
127
+ delimiter: " "
128
+ precision: 2
129
+ significant: false
130
+ strip_insignificant_zeros: false
131
+ percentage:
132
+ format:
133
+ delimiter: ""
134
+ precision:
135
+ format:
136
+ delimiter: ""
137
+ human:
138
+ format:
139
+ delimiter: ""
140
+ precision: 2
141
+ significant: true
142
+ strip_insignificant_zeros: true
143
+ storage_units:
144
+ format: "%n %u"
145
+ units:
146
+ byte:
147
+ one: "bitoko"
148
+ other: "bitokoj"
149
+ kb: "kb"
150
+ mb: "Mb"
151
+ gb: "Gb"
152
+ tb: "Tb"
153
+ decimal_units:
154
+ format: "%n %u"
155
+ units:
156
+ unit: ""
157
+ thousand: "mil"
158
+ million: "miliono"
159
+ billion: "miliardo"
160
+ trillion: "mil miliardoj"
161
+ quadrillion: "miliono da miliardoj"
162
+
163
+ support:
164
+ array:
165
+ words_connector: ", "
166
+ two_words_connector: " kaj "
167
+ last_word_connector: " kaj "
168
+ select:
169
+ prompt: "Bonvolu elekti"
170
+
171
+ helpers:
172
+ select:
173
+ prompt: "Bonvolu elekti"
174
+ submit:
175
+ create: "Krei %{model}"
176
+ update: "Modifi tiun %{model}"
177
+ submit: "Registri tiun %{model}"
178
+
179
+ errors:
180
+ template: &errors_template
181
+ header:
182
+ one: "Ne eblas registri tiun %{model}: 1 eraro"
183
+ other: "Ne eblas registri tiun %{model}: %{count} eraroj"
184
+ body: "Kontrolu la jenajn kampojn: "
185
+
186
+ attributes:
187
+ created_at: "Kreita la"
188
+ updated_at: "Modifita la"
189
+
190
+ errors:
191
+ format: "%{attribute} %{message}"
192
+ messages: &errors_messages
193
+ inclusion: "ne estas inkluzivita de la listo"
194
+ exclusion: "ne estas disponebla"
195
+ invalid: "estas nevalida"
196
+ confirmation: "ne kongruas kun la konfirmo"
197
+ accepted: "devas esti akceptita"
198
+ empty: "devas esti kompletigita"
199
+ blank: "devas esti kompletigita"
200
+ too_long: "estas tro longa (maksimume %{count} karekteroj)"
201
+ too_short: "estas tro mallonga (minimume %{count} karakteroj)"
202
+ wrong_length: "ne estas je ĝusta longo (devas enhavi %{count} karakterojn)"
203
+ not_a_number: "ne estas nombro"
204
+ not_an_integer: "devas esti entjero"
205
+ greater_than: "devas superi %{count}"
206
+ greater_than_or_equal_to: "devas superi aŭ egali %{count}"
207
+ equal_to: "devas egali %{count}"
208
+ less_than: "devas malsuperi %{count}"
209
+ less_than_or_equal_to: "devas malsuperi aŭ egali %{count}"
210
+ odd: "devas esti nepara"
211
+ even: "devas esti para"
212
+
213
+ activerecord:
214
+ errors:
215
+ messages:
216
+ taken: "ne estas disponebla"
217
+ record_invalid: "Validado malsukcesis: %{errors}"
218
+ <<: *errors_messages
219
+ template:
220
+ <<: *errors_template
221
+ full_messages:
222
+ format: "%{attribute} %{message}"
@@ -0,0 +1,225 @@
1
+ # Spanish translations for Rails
2
+ # by Francisco Fernando García Nieto (ffgarcianieto@gmail.com)
3
+ # contributors:
4
+ # - Tsutomu Kuroda - http://github.com/kuroda (t-kuroda@oiax.jp)
5
+ # Corrected by Eloy Serra Labán: http://goo.gl/i9Kts, /nQ928, /XfKaX
6
+
7
+ "es":
8
+ date:
9
+ formats:
10
+ default: "%d/%m/%Y"
11
+ short: "%d de %b"
12
+ long: "%d de %B de %Y"
13
+
14
+ day_names:
15
+ - domingo
16
+ - lunes
17
+ - martes
18
+ - miércoles
19
+ - jueves
20
+ - viernes
21
+ - sábado
22
+ abbr_day_names:
23
+ - dom
24
+ - lun
25
+ - mar
26
+ - mié
27
+ - jue
28
+ - vie
29
+ - sáb
30
+
31
+ month_names:
32
+ - ~
33
+ - enero
34
+ - febrero
35
+ - marzo
36
+ - abril
37
+ - mayo
38
+ - junio
39
+ - julio
40
+ - agosto
41
+ - septiembre
42
+ - octubre
43
+ - noviembre
44
+ - diciembre
45
+ abbr_month_names:
46
+ - ~
47
+ - ene
48
+ - feb
49
+ - mar
50
+ - abr
51
+ - may
52
+ - jun
53
+ - jul
54
+ - ago
55
+ - sep
56
+ - oct
57
+ - nov
58
+ - dic
59
+ order:
60
+ - :day
61
+ - :month
62
+ - :year
63
+
64
+ time:
65
+ formats:
66
+ default: "%A, %d de %B de %Y %H:%M:%S %z"
67
+ short: "%d de %b %H:%M"
68
+ long: "%d de %B de %Y %H:%M"
69
+ am: "am"
70
+ pm: "pm"
71
+
72
+ support:
73
+ array:
74
+ words_connector: ", "
75
+ two_words_connector: " y "
76
+ last_word_connector: ", y "
77
+
78
+ select:
79
+ prompt: "Por favor seleccione"
80
+
81
+ number:
82
+ format:
83
+ separator: "."
84
+ delimiter: ","
85
+ precision: 3
86
+ significant: false
87
+ strip_insignificant_zeros: false
88
+
89
+ currency:
90
+ format:
91
+ format: "%n %u"
92
+ unit: "€"
93
+ separator: "."
94
+ delimiter: ","
95
+ precision: 2
96
+ significant: false
97
+ strip_insignificant_zeros: false
98
+
99
+ percentage:
100
+ format:
101
+ delimiter: ""
102
+
103
+ precision:
104
+ format:
105
+ delimiter: ""
106
+
107
+ human:
108
+ format:
109
+ delimiter: ""
110
+ precision: 1
111
+ significant: true
112
+ strip_insignificant_zeros: true
113
+ storage_units:
114
+ format: "%n %u"
115
+ units:
116
+ byte:
117
+ one: "Byte"
118
+ other: "Bytes"
119
+ kb: "KB"
120
+ mb: "MB"
121
+ gb: "GB"
122
+ tb: "TB"
123
+ decimal_units:
124
+ format: "%n %u"
125
+ units:
126
+ unit: ""
127
+ thousand: "mil"
128
+ million: "millón"
129
+ billion: "mil millones"
130
+ trillion: "billón"
131
+ quadrillion: "mil billones"
132
+
133
+ datetime:
134
+ distance_in_words:
135
+ half_a_minute: "medio minuto"
136
+ less_than_x_seconds:
137
+ one: "menos de 1 segundo"
138
+ other: "menos de %{count} segundos"
139
+ x_seconds:
140
+ one: "1 segundo"
141
+ other: "%{count} segundos"
142
+ less_than_x_minutes:
143
+ one: "menos de 1 minuto"
144
+ other: "menos de %{count} minutos"
145
+ x_minutes:
146
+ one: "1 minuto"
147
+ other: "%{count} minutos"
148
+ about_x_hours:
149
+ one: "alrededor de 1 hora"
150
+ other: "alrededor de %{count} horas"
151
+ x_days:
152
+ one: "1 día"
153
+ other: "%{count} días"
154
+ about_x_months:
155
+ one: "alrededor de 1 mes"
156
+ other: "alrededor de %{count} meses"
157
+ x_months:
158
+ one: "1 mes"
159
+ other: "%{count} meses"
160
+ about_x_years:
161
+ one: "alrededor de 1 año"
162
+ other: "alrededor de %{count} años"
163
+ over_x_years:
164
+ one: "más de 1 año"
165
+ other: "más de %{count} años"
166
+ almost_x_years:
167
+ one: "casi 1 año"
168
+ other: "casi %{count} años"
169
+ prompts:
170
+ year: "Año"
171
+ month: "Mes"
172
+ day: "Día"
173
+ hour: "Hora"
174
+ minute: "Minutos"
175
+ second: "Segundos"
176
+
177
+ helpers:
178
+ select:
179
+ prompt: "Por favor seleccione"
180
+
181
+ submit:
182
+ create: 'Crear %{model}'
183
+ update: 'Actualizar %{model}'
184
+ submit: 'Guardar %{model}'
185
+
186
+ errors:
187
+ format: "%{attribute} %{message}"
188
+
189
+ messages: &errors_messages
190
+ inclusion: "no está incluido en la lista"
191
+ exclusion: "está reservado"
192
+ invalid: "no es válido"
193
+ confirmation: "no coincide con la confirmación"
194
+ accepted: "debe ser aceptado"
195
+ empty: "no puede estar vacío"
196
+ blank: "no puede estar en blanco"
197
+ too_long: "es demasiado largo (%{count} caracteres máximo)"
198
+ too_short: "es demasiado corto (%{count} caracteres mínimo)"
199
+ wrong_length: "no tiene la longitud correcta (%{count} caracteres exactos)"
200
+ not_a_number: "no es un número"
201
+ not_an_integer: "debe ser un entero"
202
+ greater_than: "debe ser mayor que %{count}"
203
+ greater_than_or_equal_to: "debe ser mayor que o igual a %{count}"
204
+ equal_to: "debe ser igual a %{count}"
205
+ less_than: "debe ser menor que %{count}"
206
+ less_than_or_equal_to: "debe ser menor que o igual a %{count}"
207
+ odd: "debe ser impar"
208
+ even: "debe ser par"
209
+
210
+ activerecord:
211
+ errors:
212
+ template:
213
+ header:
214
+ one: "No se pudo guardar este/a %{model} porque se encontró 1 error"
215
+ other: "No se pudo guardar este/a %{model} porque se encontraron %{count} errores"
216
+ # The variable :count is also available
217
+ body: "Se encontraron problemas con los siguientes campos:"
218
+
219
+ messages:
220
+ taken: "ya está en uso"
221
+ record_invalid: "La validación falló: %{errors}"
222
+ <<: *errors_messages
223
+
224
+ full_messages:
225
+ format: "%{attribute} %{message}"
@@ -0,0 +1,260 @@
1
+ # Estonian localization for Ruby on Rails 2 and 3
2
+ # by Zahhar Kirillov <zahhar@gmail.com>
3
+ # contributors:
4
+ # - Mart Karu - http://github.com/martkaru <karu@metal.ee>
5
+
6
+ et:
7
+ date:
8
+ formats:
9
+ default: "%d.%m.%Y"
10
+ short: "%d.%m.%y"
11
+ long: "%d. %B %Y"
12
+
13
+ day_names:
14
+ - pühapäev
15
+ - esmaspäev
16
+ - teisipäev
17
+ - kolmapäev
18
+ - neljapäev
19
+ - reede
20
+ - laupäev
21
+ standalone_day_names:
22
+ - Pühapäev
23
+ - Esmaspäev
24
+ - Teisipäev
25
+ - Kolmapäev
26
+ - Neljapäev
27
+ - Reede
28
+ - Laupäev
29
+ abbr_day_names:
30
+ - P
31
+ - E
32
+ - T
33
+ - K
34
+ - N
35
+ - R
36
+ - L
37
+
38
+ month_names:
39
+ - ~
40
+ - jaanuar
41
+ - veebruar
42
+ - märts
43
+ - aprill
44
+ - mai
45
+ - juuni
46
+ - juuli
47
+ - august
48
+ - september
49
+ - oktoober
50
+ - november
51
+ - detsember
52
+ standalone_month_names:
53
+ - ~
54
+ - Jaanuar
55
+ - Veebruar
56
+ - Märts
57
+ - Aprill
58
+ - Mai
59
+ - Juuni
60
+ - Juuli
61
+ - August
62
+ - September
63
+ - Oktoober
64
+ - November
65
+ - Detsember
66
+ abbr_month_names:
67
+ - ~
68
+ - jaan.
69
+ - veebr.
70
+ - märts
71
+ - apr.
72
+ - mai
73
+ - juuni
74
+ - juuli
75
+ - aug.
76
+ - sept.
77
+ - okt.
78
+ - nov.
79
+ - dets.
80
+ standalone_abbr_month_names:
81
+ - ~
82
+ - jaan.
83
+ - veebr.
84
+ - märts
85
+ - apr.
86
+ - mai
87
+ - juuni
88
+ - juuli
89
+ - aug.
90
+ - sept.
91
+ - okt.
92
+ - nov.
93
+ - dets.
94
+
95
+ order:
96
+ - :day
97
+ - :month
98
+ - :year
99
+
100
+ time:
101
+ formats:
102
+ default: "%d. %B %Y, %H:%M"
103
+ short: "%d.%m.%y, %H:%M"
104
+ long: "%a, %d. %b %Y, %H:%M:%S %z"
105
+
106
+ am: "enne lõunat"
107
+ pm: "pärast lõunat"
108
+
109
+ support:
110
+ array:
111
+ words_connector: ", "
112
+ two_words_connector: " ja "
113
+ last_word_connector: " ja "
114
+
115
+ select:
116
+ prompt: "Palun vali"
117
+
118
+ number:
119
+ format:
120
+ separator: ","
121
+ delimiter: " "
122
+ precision: 2
123
+ significant: false
124
+ strip_insignificant_zeros: false
125
+
126
+ currency:
127
+ format:
128
+ format: "%n %u"
129
+ unit: "€"
130
+ separator: ","
131
+ delimiter: " "
132
+ precision: 2
133
+ significant: false
134
+ strip_insignificant_zeros: false
135
+
136
+ percentage:
137
+ format:
138
+ delimiter: ""
139
+
140
+ precision:
141
+ format:
142
+ delimiter: ""
143
+
144
+ human:
145
+ format:
146
+ delimiter: ""
147
+ precision: 1
148
+ significant: true
149
+ strip_insignificant_zeros: true
150
+ storage_units:
151
+ format: "%n %u"
152
+ units:
153
+ byte:
154
+ one: "bait"
155
+ other: "baiti"
156
+ kb: "KB"
157
+ mb: "MB"
158
+ gb: "GB"
159
+ tb: "TB"
160
+ decimal_units:
161
+ format: "%n %u"
162
+ units:
163
+ unit: ""
164
+ thousand: tuhat
165
+ million: miljon
166
+ billion: miljard
167
+ trillion: triljon
168
+ quadrillion: kvadriljon
169
+
170
+ datetime:
171
+ distance_in_words:
172
+ half_a_minute: "pool minutit"
173
+ less_than_x_seconds:
174
+ one: "vähem kui %{count} sekund"
175
+ other: "vähem kui %{count} sekundit"
176
+ x_seconds:
177
+ one: "%{count} sekund"
178
+ other: "%{count} sekundit"
179
+ less_than_x_minutes:
180
+ one: "vähem kui %{count} minut"
181
+ other: "vähem kui %{count} minutit"
182
+ x_minutes:
183
+ one: "%{count} minut"
184
+ other: "%{count} minutit"
185
+ about_x_hours:
186
+ one: "umbes %{count} tund"
187
+ other: "umbes %{count} tundi"
188
+ x_days:
189
+ one: "%{count} päev"
190
+ other: "%{count} päeva"
191
+ about_x_months:
192
+ one: "umbes %{count} kuu"
193
+ other: "umbes %{count} kuud"
194
+ x_months:
195
+ one: "%{count} kuu"
196
+ other: "%{count} kuud"
197
+ about_x_years:
198
+ one: "umbes %{count} aasta"
199
+ other: "umbes %{count} aastat"
200
+ over_x_years:
201
+ one: "üle %{count} aasta"
202
+ other: "üle %{count} aastat"
203
+ almost_x_years:
204
+ one: "peaaegu üks aasta"
205
+ other: "peaaegu %{count} aastat"
206
+ prompts:
207
+ year: "Aasta"
208
+ month: "Kuu"
209
+ day: "Päev"
210
+ hour: "Tunde"
211
+ minute: "Minutit"
212
+ second: "Sekundit"
213
+
214
+ helpers:
215
+ select:
216
+ prompt: "Palun vali"
217
+
218
+ submit:
219
+ create: 'Loo uus %{model}'
220
+ update: 'Uuenda objekti %{model}'
221
+ submit: 'Salvesta %{model}'
222
+
223
+ errors:
224
+ format: "%{attribute} %{message}"
225
+ messages: &errors_messages
226
+ inclusion: "ei leidu nimekirjas"
227
+ exclusion: "on reserveeritud"
228
+ invalid: "ei ole korrektne"
229
+ confirmation: "ei vasta kinnitusele"
230
+ accepted: "peab olema heaks kiidetud"
231
+ empty: "on tühi"
232
+ blank: "on täitmata"
233
+ too_long: "on liiga pikk (maksimum on %{count} tähemärki)"
234
+ too_short: "on liiga lühike (miinimum on %{count} tähemärki)"
235
+ wrong_length: "on vale pikkusega (peab olema %{count} tähemärki)"
236
+ not_a_number: "ei ole number"
237
+ not_an_integer: "peab olema täisarv"
238
+ greater_than: "ei tohi olla suurem kui %{count}"
239
+ greater_than_or_equal_to: "peab olema suurem või võrdne arvuga %{count}"
240
+ equal_to: "peab võrdne arvuga %{count}"
241
+ less_than: "peab olema vähem kui %{count}"
242
+ less_than_or_equal_to: "peab olema vähem või võrdne arvuga %{count}"
243
+ odd: "peab olema paaritu arv"
244
+ even: "peab olema paarisarv"
245
+
246
+ activerecord:
247
+ errors:
248
+ template:
249
+ header:
250
+ one: "Üks viga takistas objekti %{model} salvestamist"
251
+ other: "%{count} viga takistasid objekti %{model} salvestamist"
252
+ body: "Probleeme ilmnes järgmiste väljadega:"
253
+
254
+ messages:
255
+ taken: "on juba võetud"
256
+ record_invalid: "Valideerimine ebaõnnestus: %{errors}"
257
+ <<: *errors_messages
258
+
259
+ full_messages:
260
+ format: "%{attribute} %{message}"