rails-i18n 0.1.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 (75) hide show
  1. data/MIT-LICENSE.txt +21 -0
  2. data/README.md +118 -0
  3. data/lib/rails-i18n.rb +4 -0
  4. data/rails/locale/ar.yml +226 -0
  5. data/rails/locale/bg.yml +322 -0
  6. data/rails/locale/bn-IN.yml +223 -0
  7. data/rails/locale/bs.yml +157 -0
  8. data/rails/locale/ca.yml +253 -0
  9. data/rails/locale/cs.rb +229 -0
  10. data/rails/locale/cy.yml +221 -0
  11. data/rails/locale/da.yml +235 -0
  12. data/rails/locale/de-AT.yml +194 -0
  13. data/rails/locale/de-CH.yml +194 -0
  14. data/rails/locale/de.yml +233 -0
  15. data/rails/locale/dsb.yml +225 -0
  16. data/rails/locale/el.yml +173 -0
  17. data/rails/locale/en-AU.yml +220 -0
  18. data/rails/locale/en-GB.yml +220 -0
  19. data/rails/locale/en-US.yml +222 -0
  20. data/rails/locale/eo.yml +222 -0
  21. data/rails/locale/es-AR.yml +219 -0
  22. data/rails/locale/es-CL.yml +224 -0
  23. data/rails/locale/es-CO.yml +220 -0
  24. data/rails/locale/es-MX.yml +227 -0
  25. data/rails/locale/es-PE.yml +170 -0
  26. data/rails/locale/es.yml +225 -0
  27. data/rails/locale/et.yml +260 -0
  28. data/rails/locale/eu.yml +224 -0
  29. data/rails/locale/fa.yml +222 -0
  30. data/rails/locale/fi.yml +225 -0
  31. data/rails/locale/fr-CA.yml +227 -0
  32. data/rails/locale/fr-CH.yml +224 -0
  33. data/rails/locale/fr.yml +222 -0
  34. data/rails/locale/fur.yml +184 -0
  35. data/rails/locale/gl-ES.yml +236 -0
  36. data/rails/locale/gsw-CH.yml +222 -0
  37. data/rails/locale/he.yml +227 -0
  38. data/rails/locale/hi-IN.yml +221 -0
  39. data/rails/locale/hi.yml +221 -0
  40. data/rails/locale/hr.yml +159 -0
  41. data/rails/locale/hsb.yml +233 -0
  42. data/rails/locale/hu.yml +215 -0
  43. data/rails/locale/id.yml +187 -0
  44. data/rails/locale/is.yml +230 -0
  45. data/rails/locale/it.yml +235 -0
  46. data/rails/locale/ja.yml +228 -0
  47. data/rails/locale/kn.yml +222 -0
  48. data/rails/locale/ko.yml +228 -0
  49. data/rails/locale/lo.yml +244 -0
  50. data/rails/locale/lt.yml +184 -0
  51. data/rails/locale/lv.yml +221 -0
  52. data/rails/locale/mk.yml +158 -0
  53. data/rails/locale/mn.yml +199 -0
  54. data/rails/locale/nb.yml +220 -0
  55. data/rails/locale/nl.yml +226 -0
  56. data/rails/locale/nn.yml +139 -0
  57. data/rails/locale/pl.yml +234 -0
  58. data/rails/locale/pt-BR.yml +239 -0
  59. data/rails/locale/pt-PT.yml +230 -0
  60. data/rails/locale/rm.yml +177 -0
  61. data/rails/locale/ro.yml +211 -0
  62. data/rails/locale/ru.yml +376 -0
  63. data/rails/locale/sk.yml +236 -0
  64. data/rails/locale/sl.yml +233 -0
  65. data/rails/locale/sr-Latn.yml +159 -0
  66. data/rails/locale/sr.yml +159 -0
  67. data/rails/locale/sv-SE.yml +273 -0
  68. data/rails/locale/sw.yml +222 -0
  69. data/rails/locale/th.rb +199 -0
  70. data/rails/locale/tr.yml +181 -0
  71. data/rails/locale/uk.yml +351 -0
  72. data/rails/locale/vi.yml +241 -0
  73. data/rails/locale/zh-CN.yml +250 -0
  74. data/rails/locale/zh-TW.yml +250 -0
  75. metadata +153 -0
@@ -0,0 +1,244 @@
1
+ # Lao translation for Ruby on Rails
2
+ # By justin maccarthy justin.maccarthy@gmail.com with help from Lao language experts...
3
+ #
4
+
5
+ lo:
6
+ number:
7
+ # Used in number_with_delimiter()
8
+ # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
9
+ format:
10
+ # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
11
+ separator: "."
12
+ # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
13
+ delimiter: ","
14
+ # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
15
+ precision: 3
16
+
17
+ # Used in number_to_currency()
18
+ currency:
19
+ format:
20
+ # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
21
+ format: "%n %u"
22
+ unit: "Kip"
23
+ # These three are to override number.format and are optional
24
+ separator: "."
25
+ delimiter: ","
26
+ precision: 2
27
+
28
+ # Used in number_to_percentage()
29
+ percentage:
30
+ format:
31
+ # These three are to override number.format and are optional
32
+ # separator:
33
+ delimiter: ""
34
+ # precision:
35
+
36
+ # Used in number_to_precision()
37
+ precision:
38
+ format:
39
+ # These three are to override number.format and are optional
40
+ # separator:
41
+ delimiter: ""
42
+ # precision:
43
+
44
+ # Used in number_to_human_size()
45
+ human:
46
+ format:
47
+ # These three are to override number.format and are optional
48
+ # separator:
49
+ delimiter: ""
50
+ precision: 1
51
+ storage_units:
52
+ # Storage units output formatting.
53
+ # %u is the storage unit, %n is the number (default: 2 MB)
54
+ format: "%n %u"
55
+ units:
56
+ byte:
57
+ one: "Byte"
58
+ other: "Bytes"
59
+ kb: "KB"
60
+ mb: "MB"
61
+ gb: "GB"
62
+ tb: "TB"
63
+
64
+ # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
65
+ datetime:
66
+ distance_in_words:
67
+ half_a_minute: "ເຄິ່ງນາທີ "
68
+ less_than_x_seconds:
69
+ one: "ນ້ອຍກວ່າ 1 ວິນາທີ "
70
+ other: "ນ້ອຍກວ່າ %{count} ວິນາທີ "
71
+ x_seconds:
72
+ one: "1 ວິນາທີ "
73
+ other: "%{count} ວິນາທີ "
74
+ less_than_x_minutes:
75
+ one: "ນ້ອຍກວ່າ 1 ນາທີ "
76
+ other: "ນ້ອຍກວ່າ %{count} ນາທີ "
77
+ x_minutes:
78
+ one: "1 ນາທີ "
79
+ other: "%{count} ນາທີ "
80
+ about_x_hours:
81
+ one: "ປະມານ 1 ຊົ່ວໂມງ"
82
+ other: "ປະມານ %{count} ຊົ່ວໂມງ"
83
+ x_days:
84
+ one: "1 ມື້ "
85
+ other: "%{count} ມື້ "
86
+ about_x_months:
87
+ one: "ປະມານ 1 ເດືອນ"
88
+ other: "ປະມານ %{count} ເດືອນ"
89
+ x_months:
90
+ one: "1 ເດືອນ"
91
+ other: "%{count} ເດືອນ"
92
+ about_x_years:
93
+ one: "ປະມານ 1 ປີ "
94
+ other: "ປະມານ %{count} ປີ "
95
+ over_x_years:
96
+ one: "ຫຼາຍກວ່າ 1 ປີ "
97
+ other: "ຫຼາຍກວ່າ %{count} ປີ "
98
+ prompts:
99
+ year: "ປີ"
100
+ month: "ເດືອນ"
101
+ day: "ວັນ"
102
+ hour: "ຊົ່ວໂມງ"
103
+ minute: "ນາທີ"
104
+ second: "ວິນາທີ"
105
+
106
+ activerecord:
107
+ errors:
108
+ template:
109
+ header:
110
+ one: "ບໍ່ສາມາດບັນທຶກ %{model} ໄດ້ເນື່ອງຈາກເກີດຂໍ້ຜິດພາດ"
111
+ other: "ບໍ່ສາມາດບັນທຶກ %{model} ໄດ້ເນື່ອງຈາກ ເກີດ %{count} ຂໍ້ຜິດພາດ"
112
+ # The variable :count is also available
113
+ body: "ກະລຸນາກວດສອບຂໍ້ມູນໃນຫ້ອງຕໍ່ໄປນີ້ :"
114
+
115
+ # The values :model, :attribute and :value are always available for interpolation
116
+ # The value :count is available when applicable. Can be used for pluralization.
117
+ messages:
118
+ inclusion: "ບໍ່ໄດ້ຮວມຢູ່ໃນບັນຊີລາຍການ"
119
+ exclusion: "ມີການຈອງໄວ້ແລ້ວ"
120
+ invalid: "ບໍ່ຖືກ"
121
+ confirmation: "ບໍ່ຖືກກັບການຢືນຢັນ"
122
+ accepted: "ຕ້ອງຍອມຮັບ"
123
+ empty: "ວ່າງໄວ້ບໍ່ໄດ້"
124
+ blank: "ເປົ່າບໍ່ໄດ້"
125
+ too_long: "ຍາວໂພດ (ສູງສຸດຄື %{count} ຕົວອັກສອນ)"
126
+ too_short: "ສັ້ນໂພດ (ຕຳ່ສຸດຄື %{count} ຕົວອັກສອນ)"
127
+ wrong_length: "ຄວາມຍາວຜິດ (ຄວນຈະເປັນ %{count} ຕົວອັກສອນ)"
128
+ taken: "ຮັບເອົາໄປແລ້ວ"
129
+ not_a_number: "ບໍ່ແມ່ນຕົວເລກ"
130
+ greater_than: "ຕ້ອງສູງກວ່າ %{count}"
131
+ greater_than_or_equal_to: "ຕ້ອງສູງກວ່າ ຫຼື ເທົ່າກັບ %{count}"
132
+ equal_to: "ຕ້ອງເທົ່າກັບ %{count}"
133
+ less_than: "ຕ້ອງຕຳ່ກວ່າ %{count}"
134
+ less_than_or_equal_to: "ຕ້ອງຕຳ່ກວ່າ ຫຼື ເທົ່າກັບ %{count}"
135
+ odd: "ຕ້ອງເປັນເລກຄີກ"
136
+ even: "ຕ້ອງເປັນເລກຄູ່"
137
+ record_invalid: "ການຢືນຢັນບໍ່ສຳເລັດ : %{errors}"
138
+ # Append your own errors here or at the model/attributes scope.
139
+
140
+ # You can define own errors for models or model attributes.
141
+ # The values :model, :attribute and :value are always available for interpolation.
142
+ #
143
+ # For example,
144
+ # models:
145
+ # user:
146
+ # blank: "This is a custom blank message for %{model}: %{attribute}"
147
+ # attributes:
148
+ # login:
149
+ # blank: "This is a custom blank message for User login"
150
+ # Will define custom blank validation message for User model and
151
+ # custom blank validation message for login attribute of User model.
152
+ #models:
153
+
154
+ # Translate model names. Used in Model.human_name().
155
+ #models:
156
+ # For example,
157
+ # user: "Dude"
158
+ # will translate User model name to "Dude"
159
+
160
+ # Translate model attribute names. Used in Model.human_attribute_name(attribute).
161
+ #attributes:
162
+ # For example,
163
+ # user:
164
+ # login: "Handle"
165
+ # will translate User attribute "login" as "Handle"
166
+
167
+ date:
168
+ formats:
169
+ # Use the strftime parameters for formats.
170
+ # When no format has been given, it uses default.
171
+ # You can provide other formats here if you like!
172
+ default: "%d-%m-%Y"
173
+ short: "%e %b"
174
+ long: "%e %B %Y"
175
+
176
+ day_names:
177
+ - "ອາທິດ"
178
+ - "ຈັນ"
179
+ - "ອັງຄານ"
180
+ - "ພຸດ"
181
+ - "ພະຫັດ"
182
+ - "ສຸກ"
183
+ - "ເສົາ"
184
+ abbr_day_names:
185
+ - ""
186
+ - ""
187
+ - ""
188
+ - ""
189
+ - ""
190
+ - ""
191
+ - ""
192
+
193
+ # Don't forget the nil at the beginning; there's no such thing as a 0th month
194
+ month_names:
195
+ - ~
196
+ - "ມັງກອນ"
197
+ - "ກຸມພາ"
198
+ - "ມີນາ"
199
+ - "ເມສາ"
200
+ - "ພຶດສະພາ"
201
+ - "ມິຖຸນາ"
202
+ - "ກໍລະກົດ"
203
+ - "ສິງຫາ"
204
+ - "ກັນຍາ"
205
+ - "ຕຸລາ"
206
+ - "ພະຈິກ"
207
+ - "ທັນວາ"
208
+ abbr_month_names:
209
+ - ~
210
+ - ""
211
+ - ""
212
+ - ""
213
+ - ""
214
+ - ""
215
+ - ""
216
+ - ""
217
+ - ""
218
+ - ""
219
+ - ""
220
+ - ""
221
+ - ""
222
+ # Used in date_select and datime_select.
223
+ order:
224
+ - :day
225
+ - :month
226
+ - :year
227
+
228
+ time:
229
+ formats:
230
+ default: "%a %d %b %Y %H:%M:%S %z"
231
+ short: "%d %b %H:%M น."
232
+ long: "%d %B %Y %H:%M น."
233
+ am: ""
234
+ pm: ""
235
+
236
+ # Used in array.to_sentence.
237
+ support:
238
+ array:
239
+ words_connector: ", "
240
+ two_words_connector: "ແລະ "
241
+ last_word_connector: ", ແລະ "
242
+ select:
243
+ # default value for :prompt => true in FormOptionsHelper
244
+ prompt: "โปรดเลือก"
@@ -0,0 +1,184 @@
1
+ # Lithuanian translations for Ruby on Rails
2
+ # by Laurynas Butkus (laurynas.butkus@gmail.com)
3
+
4
+ lt:
5
+ number:
6
+ format:
7
+ separator: ","
8
+ delimiter: " "
9
+ precision: 3
10
+
11
+ currency:
12
+ format:
13
+ format: "%n %u"
14
+ unit: "Lt"
15
+ separator: ","
16
+ delimiter: " "
17
+ precision: 2
18
+
19
+ percentage:
20
+ format:
21
+ delimiter: ""
22
+
23
+ precision:
24
+ format:
25
+ delimiter: ""
26
+
27
+ human:
28
+ format:
29
+ delimiter: ""
30
+ precision: 1
31
+ storage_units:
32
+ # Storage units output formatting.
33
+ # %u is the storage unit, %n is the number (default: 2 MB)
34
+ format: "%n %u"
35
+ units:
36
+ byte:
37
+ one: "Baitas"
38
+ other: "Baitai"
39
+ kb: "KB"
40
+ mb: "MB"
41
+ gb: "GB"
42
+ tb: "TB"
43
+
44
+ datetime:
45
+ distance_in_words:
46
+ half_a_minute: "pusė minutės"
47
+ less_than_x_seconds:
48
+ one: "mažiau nei 1 sekundė"
49
+ other: "mažiau nei %{count} sekundės"
50
+ x_seconds:
51
+ one: "1 sekundė"
52
+ other: "%{count} sekundės"
53
+ less_than_x_minutes:
54
+ one: "mažiau nei minutė"
55
+ other: "mažiau nei %{count} minutės"
56
+ x_minutes:
57
+ one: "1 minutė"
58
+ other: "%{count} minutės"
59
+ about_x_hours:
60
+ one: "apie 1 valanda"
61
+ other: "apie %{count} valandų"
62
+ x_days:
63
+ one: "1 diena"
64
+ other: "%{count} dienų"
65
+ about_x_months:
66
+ one: "apie 1 mėnuo"
67
+ other: "apie %{count} mėnesiai"
68
+ x_months:
69
+ one: "1 mėnuo"
70
+ other: "%{count} mėnesiai"
71
+ about_x_years:
72
+ one: "apie 1 metai"
73
+ other: "apie %{count} metų"
74
+ over_x_years:
75
+ one: "virš 1 metų"
76
+ other: "virš %{count} metų"
77
+ prompts:
78
+ year: "Metai"
79
+ month: "Mėnuo"
80
+ day: "Diena"
81
+ hour: "Valanda"
82
+ minute: "Minutė"
83
+ second: "Sekundės"
84
+
85
+ activerecord:
86
+ errors:
87
+ template:
88
+ header:
89
+ one: "Išsaugant objektą %{model} rasta klaida"
90
+ other: "Išsaugant objektą %{model} rastos %{count} klaidos"
91
+ body: "Šiuose laukuose yra klaidų:"
92
+
93
+ messages:
94
+ inclusion: "nenumatyta reikšmė"
95
+ exclusion: "užimtas"
96
+ invalid: "neteisingas"
97
+ confirmation: "neteisingai pakartotas"
98
+ accepted: "turi būti patvirtintas"
99
+ empty: "negali būti tuščias"
100
+ blank: "negali būti tuščias"
101
+ too_long: "per ilgas (daugiausiai %{count} simboliai)"
102
+ too_short: "per trumpas (mažiausiai %{count} simboliai)"
103
+ wrong_length: "neteisingo ilgio (turi būti %{count} simboliai)"
104
+ taken: "jau užimtas"
105
+ not_a_number: "ne skaičius"
106
+ greater_than: "turi būti didesnis už %{count}"
107
+ greater_than_or_equal_to: "turi būti didesnis arba lygus %{count}"
108
+ equal_to: "turi būti lygus %{count}"
109
+ less_than: "turi būti mažesnis už %{count}"
110
+ less_than_or_equal_to: "turi būti mažesnis arba lygus %{count}"
111
+ odd: "turi būti nelyginis"
112
+ even: "turi būti lyginis"
113
+
114
+ models:
115
+
116
+ date:
117
+ formats:
118
+ default: "%Y-%m-%d"
119
+ short: "%b %d"
120
+ long: "%B %d, %Y"
121
+
122
+ day_names:
123
+ - sekmadienis
124
+ - pirmadienis
125
+ - antradienis
126
+ - trečiadienis
127
+ - ketvirtadienis
128
+ - penktadienis
129
+ - šeštadienis
130
+ abbr_day_names:
131
+ - Sek
132
+ - Pir
133
+ - Ant
134
+ - Tre
135
+ - Ket
136
+ - Pen
137
+ - Šeš
138
+
139
+ month_names:
140
+ - ~
141
+ - sausio
142
+ - vasario
143
+ - kovo
144
+ - balandžio
145
+ - gegužės
146
+ - birželio
147
+ - liepos
148
+ - rugpjūčio
149
+ - rugsėjo
150
+ - spalio
151
+ - lapkričio
152
+ - gruodžio
153
+ abbr_month_names:
154
+ - ~
155
+ - Sau
156
+ - Vas
157
+ - Kov
158
+ - Bal
159
+ - Geg
160
+ - Bir
161
+ - Lie
162
+ - Rgp
163
+ - Rgs
164
+ - Spa
165
+ - Lap
166
+ - Grd
167
+ order:
168
+ - :year
169
+ - :month
170
+ - :day
171
+
172
+ time:
173
+ formats:
174
+ default: "%a, %d %b %Y %H:%M:%S %z"
175
+ short: "%d %b %H:%M"
176
+ long: "%B %d, %Y %H:%M"
177
+ am: "am"
178
+ pm: "pm"
179
+
180
+ support:
181
+ array:
182
+ words_connector: ", "
183
+ two_words_connector: " ir "
184
+ last_word_connector: " ir "
@@ -0,0 +1,221 @@
1
+ # Latvian translations for Ruby on Rails
2
+ # by Kaspars Bankovskis (kaspars@kei.lv)
3
+
4
+ lv:
5
+ date:
6
+ formats:
7
+ default: "%d.%m.%Y."
8
+ short: "%e. %B"
9
+ long: "%Y. gada %e. %B"
10
+
11
+ day_names:
12
+ - svētdiena
13
+ - pirmdiena
14
+ - otrdiena
15
+ - trešdiena
16
+ - ceturtdiena
17
+ - piektdiena
18
+ - sestdiena
19
+ abbr_day_names:
20
+ - Sv.
21
+ - P.
22
+ - O.
23
+ - T.
24
+ - C.
25
+ - Pk.
26
+ - S.
27
+ month_names:
28
+ - ~
29
+ - janvārī
30
+ - februārī
31
+ - martā
32
+ - aprīlī
33
+ - maijā
34
+ - jūnijā
35
+ - jūlijā
36
+ - augustā
37
+ - septembrī
38
+ - oktobrī
39
+ - novembrī
40
+ - decembrī
41
+ abbr_month_names:
42
+ - ~
43
+ - Janv
44
+ - Febr
45
+ - Marts
46
+ - Apr
47
+ - Maijs
48
+ - Jūn
49
+ - Jūl
50
+ - Aug
51
+ - Sept
52
+ - Okt
53
+ - Nov
54
+ - Dec
55
+ order:
56
+ - :year
57
+ - :month
58
+ - :day
59
+
60
+ time:
61
+ formats:
62
+ default: "%Y. gada %e. %B, %H:%M"
63
+ short: "%d.%m.%Y., %H:%M"
64
+ long: "%Y. gada %e. %B, %H:%M:%S"
65
+
66
+ am: "priekšpusdiena"
67
+ pm: "pēcpusdiena"
68
+
69
+ datetime:
70
+ distance_in_words:
71
+ half_a_minute: "pusminūte"
72
+ less_than_x_seconds:
73
+ one: "mazāk par vienu sekundi"
74
+ other: "mazāk par %{count} sekundēm"
75
+ x_seconds:
76
+ one: "1 sekunde"
77
+ other: "%{count} sekundes"
78
+ less_than_x_minutes:
79
+ one: "mazāk par vienu minūti"
80
+ other: "mazāk par %{count} minūtēm"
81
+ x_minutes:
82
+ one: "1 minūte"
83
+ other: "%{count} minūtes"
84
+ about_x_hours:
85
+ one: "apmēram 1 stunda"
86
+ other: "apmēram %{count} stundas"
87
+ x_days:
88
+ one: "1 diena"
89
+ other: "%{count} dienas"
90
+ about_x_months:
91
+ one: "apmēram 1 mēnesis"
92
+ other: "apmēram %{count} mēneši"
93
+ x_months:
94
+ one: "1 mēnesis"
95
+ other: "%{count} mēneši"
96
+ about_x_years:
97
+ one: "apmēram 1 gads"
98
+ other: "apmēram %{count} gadi"
99
+ over_x_years:
100
+ one: "vairāk kā gads"
101
+ other: "vairāk kā %{count} gadi"
102
+ almost_x_years:
103
+ one: "gandrīz 1 gads"
104
+ other: "gandrīz %{count} gadi"
105
+ prompts:
106
+ second: "sekunde"
107
+ minute: "minūte"
108
+ hour: "stunda"
109
+ day: "diena"
110
+ month: "mēnesis"
111
+ year: "gads"
112
+
113
+ number:
114
+ format:
115
+ precision: 2
116
+ separator: ','
117
+ delimiter: '.'
118
+ significant: false
119
+ strip_insignificant_zeros: false
120
+
121
+ currency:
122
+ format:
123
+ unit: 'LVL'
124
+ format: '%u %n'
125
+ separator: ","
126
+ delimiter: "."
127
+ precision: 2
128
+ significant: false
129
+ strip_insignificant_zeros: false
130
+
131
+ percentage:
132
+ format:
133
+ delimiter: ""
134
+
135
+ precision:
136
+ format:
137
+ delimiter: ""
138
+
139
+ human:
140
+ format:
141
+ delimiter: ""
142
+ precision: 1
143
+ significant: false
144
+ strip_insignificant_zeros: false
145
+ storage_units:
146
+ format: "%n %u"
147
+ units:
148
+ byte:
149
+ one: "Baits"
150
+ other: "Baiti"
151
+ kb: "KB"
152
+ mb: "MB"
153
+ gb: "GB"
154
+ tb: "TB"
155
+ decimal_units:
156
+ format: "%n %u"
157
+ units:
158
+ unit: ""
159
+ thousand: Tūkstotis
160
+ million: Miljons
161
+ billion: Biljons
162
+ trillion: Triljons
163
+ quadrillion: Kvadriljons
164
+
165
+ support:
166
+ array:
167
+ words_connector: ", "
168
+ two_words_connector: " un "
169
+ last_word_connector: " un "
170
+
171
+ select:
172
+ prompt: "Lūdzu izvēlies"
173
+
174
+ helpers:
175
+ select:
176
+ prompt: "Lūdzu izvēlies"
177
+
178
+ submit:
179
+ create: 'Izveidot %{model}'
180
+ update: 'Atjaunināt %{model}'
181
+ submit: 'Saglabāt %{model}'
182
+
183
+ errors:
184
+ format: "%{attribute} %{message}"
185
+ messages: &errors_messages
186
+ inclusion: "nav iekļauts sarakstā"
187
+ exclusion: "nav pieejams"
188
+ invalid: "nav derīgs"
189
+ confirmation: "nesakrīt ar apstiprinājumu"
190
+ accepted: "ir jāpiekrīt"
191
+ empty: "ir jābūt aizpildītam"
192
+ blank: "ir jābūt aizpildītam"
193
+ too_long: "ir par garu (maksimums ir %{count} zīmes)"
194
+ too_short: "ir par īsu (minimums ir %{count} zīmes)"
195
+ wrong_length: "ir nepareizs garums (jābūt %{count} zīmēm)"
196
+ taken: "ir jau aizņemts"
197
+ not_a_number: "nav skaitlis"
198
+ not_an_integer: "ir jābūt veselam skaitlim"
199
+ greater_than: "ir jābūt lielākam par %{count}"
200
+ greater_than_or_equal_to: "ir jābūt lielākam vai vienādam ar %{count}"
201
+ equal_to: "ir jābūt vienādam ar %{count}"
202
+ less_than: "ir jābūt mazākam par %{count}"
203
+ less_than_or_equal_to: "ir jābūt mazākam vai vienādam ar %{count}"
204
+ odd: "ir jābūt nepāra skaitlim"
205
+ even: "ir jābūt pāra skaitlim"
206
+
207
+ activerecord:
208
+ errors:
209
+ template:
210
+ header:
211
+ one: "Dēļ 1 kļūdas šis %{model} netika saglabāts"
212
+ other: "Dēļ %{count} kļūdām šis %{model} netika saglabāts"
213
+ body: "Problēmas ir šajos ievades laukos:"
214
+
215
+ messages:
216
+ taken: "ir jau aizņemts"
217
+ record_invalid: "Pārbaude neizdevās: %{errors}"
218
+ <<: *errors_messages
219
+
220
+ full_messages:
221
+ format: "%{attribute} %{message}"