rails-i18n 0.1.9 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -27,7 +27,7 @@ For more information, visit [Rails Internationalization (I18n) API](http://guide
27
27
 
28
28
  Available locales are:
29
29
 
30
- > ar, bg, bn-IN, bs, ca, cs, cy, da, de, de-AT, de-CH, dsb, el, en-AU, en-GB, en-US, eo, es,
30
+ > ar, bg, bn-IN, bs, ca, cs, csb, cy, da, de, de-AT, de-CH, dsb, el, en-AU, en-GB, en-US, eo, es,
31
31
  > es-AR, es-CL, es-CO, es-MX, es-PE, et, eu, fa, fi, fr, fr-CA, fr-CH, fur, gl-ES,
32
32
  > gsw-CH, he, hi-IN, hr, hsb, hu, id, is, it, ja, kn, ko, lo, lt, lv, mk, mn, nb,
33
33
  > nl, nn, pl, pt-BR, pt-PT, rm, ro, ru, sk, sl, sr, sr-Latn, sv-SE, sw, th,
@@ -35,7 +35,7 @@ Available locales are:
35
35
 
36
36
  Note that all locale files are not yet ready for Rails 3. Currently, following locales are ready for Rails 2 and 3:
37
37
 
38
- > ar, bg, bs, ca, cs, cy, da, de, de-AT, de-CH, el, en-AU, en-GB, en-US, eo, es, es-AR, es-CL, es-CO, es-MX, et,
38
+ > ar, bg, bs, ca, cs, csb, cy, da, de, de-AT, de-CH, el, en-AU, en-GB, en-US, eo, es, es-AR, es-CL, es-CO, es-MX, et,
39
39
  > eu, fa, fi, fr, fr-CA, fr-CH, gsw-CH, he, hi, hi-IN, hu, id, is, it, ja, kn, ko, lv, nb,
40
40
  > nl, pl, pt-BR, pt-PT, ro, ru, sk, sv-SE, sw, th, uk, zh-CN, zh-TW
41
41
 
@@ -0,0 +1,232 @@
1
+ # Kashubian translations for Ruby on Rails
2
+ # by Michôł Òstrowsczi (ostrowski.michal@gmail.com, http://github.com/espresse)
3
+
4
+ csb:
5
+ date:
6
+ formats:
7
+ default: "%d-%m-%Y"
8
+ short: "%d %b"
9
+ long: "%B %d, %Y"
10
+
11
+ day_names:
12
+ - niedzela
13
+ - pòniedzôłk
14
+ - wtórk
15
+ - strzoda
16
+ - czwiôrtk
17
+ - piątk
18
+ - sobòta
19
+ abbr_day_names:
20
+ - nie
21
+ - pòn
22
+ - wtó
23
+ - str
24
+ - czw
25
+ - pią
26
+ - sob
27
+
28
+ month_names:
29
+ - ~
30
+ - stëcznik
31
+ - gromicznik
32
+ - strëmiannik
33
+ - łżëkwiôt
34
+ - môj
35
+ - czerwińc
36
+ - lëpińc
37
+ - zélnik
38
+ - séwnik
39
+ - rujan
40
+ - lëstopadnik
41
+ - gòdnik
42
+ abbr_month_names:
43
+ - ~
44
+ - stë
45
+ - gro
46
+ - str
47
+ - łżë
48
+ - môj
49
+ - cze
50
+ - lëp
51
+ - zél
52
+ - séw
53
+ - ruj
54
+ - lës
55
+ - gòd
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: "%B %d, %Y %H:%M"
66
+ am: "przed pôłnim"
67
+ pm: "pò pôłnim"
68
+
69
+ support:
70
+ array:
71
+ words_connector: ", "
72
+ two_words_connector: " ë "
73
+ last_word_connector: " a téż "
74
+
75
+ select:
76
+ prompt: "Proszã wëbrac"
77
+
78
+ number:
79
+ format:
80
+ separator: ","
81
+ delimiter: " "
82
+ precision: 3
83
+ significant: false
84
+ strip_insignificant_zeros: false
85
+
86
+ currency:
87
+ format:
88
+ format: "%u %n"
89
+ unit: "PLN"
90
+ separator: ","
91
+ delimiter: " "
92
+ precision: 2
93
+ significant: false
94
+ strip_insignificant_zeros: true
95
+
96
+ percentage:
97
+ format:
98
+ delimiter: ""
99
+
100
+ precision:
101
+ format:
102
+ delimiter: ""
103
+
104
+ human:
105
+ format:
106
+ delimiter: ""
107
+ precision: 3
108
+ significant: true
109
+ strip_insignificant_zeros: true
110
+ storage_units:
111
+ format: "%n %u"
112
+ units:
113
+ byte:
114
+ one: "bajt"
115
+ other: "bajtë"
116
+ kb: "KB"
117
+ mb: "MB"
118
+ gb: "GB"
119
+ tb: "TB"
120
+ decimal_units:
121
+ format: "%n %u"
122
+ units:
123
+ unit: ""
124
+ thousand: Tësąc
125
+ million: Milión
126
+ billion: Miliard
127
+ trillion: Bilión
128
+ quadrillion: Biliard
129
+
130
+ datetime:
131
+ distance_in_words:
132
+ half_a_minute: "pół minutë"
133
+ less_than_x_seconds:
134
+ one: "mni jak sekùnda"
135
+ few: "mni jak %{count} sekùndë"
136
+ other: "mni jak %{count} sekùndów"
137
+ x_seconds:
138
+ one: "1 sekùnda"
139
+ few: "%{count} sekùndë"
140
+ other: "%{count} sekùndów"
141
+ less_than_x_minutes:
142
+ one: "mni jak minuta"
143
+ few: "mni jak %{count} minutë"
144
+ other: "mni jak %{count} minutów"
145
+ x_minutes:
146
+ one: "1 minuta"
147
+ few: "%{count} minutë"
148
+ other: "%{count} minutów"
149
+ about_x_hours:
150
+ one: "kòle gòdzënë"
151
+ few: "kòle %{count} gòdzën"
152
+ other: "kòle %{count} gòdzën"
153
+ x_days:
154
+ one: "1 dzéń"
155
+ few: "%{count} dni"
156
+ other: "%{count} dniów"
157
+ about_x_months:
158
+ one: "kòle miesąca"
159
+ few: "kòle %{count} miesąców"
160
+ other: "kòle %{count} miesąców"
161
+ x_months:
162
+ one: "1 miesąc"
163
+ few: "%{count} miesiące"
164
+ other: "%{count} miesięców"
165
+ about_x_years:
166
+ one: "kòle rokù"
167
+ few: "kòle %{count} lat"
168
+ other: "kòle %{count} lat"
169
+ over_x_years:
170
+ one: "wicy jak rok"
171
+ few: "wicy jak %{count} lata"
172
+ other: "wicy jak %{count} lat"
173
+ almost_x_years:
174
+ one: "wnet rok"
175
+ few: "wnet %{count} lata"
176
+ other: "wnet %{count} lat"
177
+ prompts:
178
+ year: "Rok"
179
+ month: "Miesiąc"
180
+ day: "Dzéń"
181
+ hour: "Gòdzëna"
182
+ minute: "Minuta"
183
+ second: "Sekunda"
184
+
185
+ helpers:
186
+ select:
187
+ prompt: "Proszã wëbrac"
188
+
189
+ submit:
190
+ create: 'Ùsôdzë %{model}'
191
+ update: 'Aktualizëjë %{model}'
192
+ submit: 'Zapiszë %{model}'
193
+
194
+ errors:
195
+ format: "%{attribute} %{message}"
196
+
197
+ messages: &errors_messages
198
+ inclusion: "ni ma na lësce dopùszczalnëch wôrtnotów"
199
+ exclusion: "je zarezerwowóné"
200
+ invalid: "je zmiłkòwé"
201
+ confirmation: "nie zgòdzô sã z pòcwierdzenim"
202
+ accepted: "mùszi bëc zaakceptowóné"
203
+ empty: "ni mòżé bëc pùsté"
204
+ blank: "ni mòże bëc pùsté"
205
+ too_long: "je za dłëdżé (maksymalno %{count} znaków)"
206
+ too_short: "je za krótczé (przënômni %{count} znaków)"
207
+ wrong_length: "mô lëchą długòtã (bë mùsza miec %{count} znaków)"
208
+ not_a_number: "nie je lëczbą"
209
+ not_an_integer: "muszi bëc całowną lëczbą"
210
+ greater_than: "mùszi bëc wikszé òd %{count}"
211
+ greater_than_or_equal_to: "mùszi bëc wikszé abò równé %{count}"
212
+ equal_to: "mùszi bëc równe %{count}"
213
+ less_than: "mùszi bëc mniszé òd %{count}"
214
+ less_than_or_equal_to: "mùszi bëc mniszé abò równé %{count}"
215
+ odd: "mùszi bëc nieparzësté"
216
+ even: "mùszé bëc parzësté"
217
+
218
+ activerecord:
219
+ errors:
220
+ template:
221
+ header:
222
+ one: "%{model} nie òstôł zachòwóny przez jedną felã"
223
+ other: "%{model} nie òstôł zachòwóny przez %{count} felów"
224
+ body: "Fele tikają sã nëch pól:"
225
+
226
+ messages:
227
+ taken: "je ju zajãté"
228
+ record_invalid: "Negatiwné sprôwdzenié pòprawnoscë: %{errors}"
229
+ <<: *errors_messages
230
+
231
+ full_messages:
232
+ format: "%{attribute} %{message}"
@@ -162,11 +162,11 @@ de:
162
162
  million: Millionen
163
163
  billion:
164
164
  one: Milliarde
165
- others: Milliarden
165
+ other: Milliarden
166
166
  trillion: Billionen
167
167
  quadrillion:
168
168
  one: Billiarde
169
- others: Billiarden
169
+ other: Billiarden
170
170
 
171
171
  support:
172
172
  array:
@@ -190,9 +190,15 @@
190
190
  accepted: "must be accepted"
191
191
  empty: "can't be empty"
192
192
  blank: "can't be blank"
193
- too_long: "is too long (maximum is %{count} characters)"
194
- too_short: "is too short (minimum is %{count} characters)"
195
- wrong_length: "is the wrong length (should be %{count} characters)"
193
+ too_long:
194
+ one: "is too long (maximum is 1 character)"
195
+ other: "is too long (maximum is %{count} characters)"
196
+ too_short:
197
+ one: "is too short (minimum is 1 character)"
198
+ other: "is too short (minimum is %{count} characters)"
199
+ wrong_length:
200
+ one: "is the wrong length (should be 1 character)"
201
+ other: "is the wrong length (should be %{count} characters)"
196
202
  not_a_number: "is not a number"
197
203
  not_an_integer: "must be an integer"
198
204
  greater_than: "must be greater than %{count}"
@@ -190,9 +190,15 @@
190
190
  accepted: "must be accepted"
191
191
  empty: "can't be empty"
192
192
  blank: "can't be blank"
193
- too_long: "is too long (maximum is %{count} characters)"
194
- too_short: "is too short (minimum is %{count} characters)"
195
- wrong_length: "is the wrong length (should be %{count} characters)"
193
+ too_long:
194
+ one: "is too long (maximum is 1 character)"
195
+ other: "is too long (maximum is %{count} characters)"
196
+ too_short:
197
+ one: "is too short (minimum is 1 character)"
198
+ other: "is too short (minimum is %{count} characters)"
199
+ wrong_length:
200
+ one: "is the wrong length (should be 1 character)"
201
+ other: "is the wrong length (should be %{count} characters)"
196
202
  not_a_number: "is not a number"
197
203
  not_an_integer: "must be an integer"
198
204
  greater_than: "must be greater than %{count}"
@@ -192,9 +192,15 @@
192
192
  accepted: "must be accepted"
193
193
  empty: "can't be empty"
194
194
  blank: "can't be blank"
195
- too_long: "is too long (maximum is %{count} characters)"
196
- too_short: "is too short (minimum is %{count} characters)"
197
- wrong_length: "is the wrong length (should be %{count} characters)"
195
+ too_long:
196
+ one: "is too long (maximum is 1 character)"
197
+ other: "is too long (maximum is %{count} characters)"
198
+ too_short:
199
+ one: "is too short (minimum is 1 character)"
200
+ other: "is too short (minimum is %{count} characters)"
201
+ wrong_length:
202
+ one: "is the wrong length (should be 1 character)"
203
+ other: "is the wrong length (should be %{count} characters)"
198
204
  not_a_number: "is not a number"
199
205
  not_an_integer: "must be an integer"
200
206
  greater_than: "must be greater than %{count}"
@@ -202,9 +202,15 @@ fr-CA:
202
202
  accepted: "doit être accepté(e)"
203
203
  empty: "doit être rempli(e)"
204
204
  blank: "doit être rempli(e)"
205
- too_long: "est trop long (pas plus de %{count} caractères)"
206
- too_short: "est trop court (au moins %{count} caractères)"
207
- wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)"
205
+ too_long:
206
+ one: "est trop long (pas plus d'un caractère)"
207
+ other: "est trop long (pas plus de %{count} caractères)"
208
+ too_short:
209
+ one: "est trop court (au moins un caractère)"
210
+ other: "est trop court (au moins %{count} caractères)"
211
+ wrong_length:
212
+ one: "ne fait pas la bonne longueur (doit comporter un seul caractère)"
213
+ other: "ne fait pas la bonne longueur (doit comporter %{count} caractères)"
208
214
  not_a_number: "n'est pas un nombre"
209
215
  not_an_integer: "doit être un nombre entier"
210
216
  greater_than: "doit être supérieur à %{count}"
@@ -198,9 +198,15 @@ fr-CH:
198
198
  accepted: "doit être accepté(e)"
199
199
  empty: "doit être rempli(e)"
200
200
  blank: "doit être rempli(e)"
201
- too_long: "est trop long (pas plus de %{count} caractères)"
202
- too_short: "est trop court (au moins %{count} caractères)"
203
- wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)"
201
+ too_long:
202
+ one: "est trop long (pas plus d'un caractère)"
203
+ other: "est trop long (pas plus de %{count} caractères)"
204
+ too_short:
205
+ one: "est trop court (au moins un caractère)"
206
+ other: "est trop court (au moins %{count} caractères)"
207
+ wrong_length:
208
+ one: "ne fait pas la bonne longueur (doit comporter un seul caractère)"
209
+ other: "ne fait pas la bonne longueur (doit comporter %{count} caractères)"
204
210
  not_a_number: "n'est pas un nombre"
205
211
  not_an_integer: "doit être un nombre entier"
206
212
  greater_than: "doit être supérieur à %{count}"
@@ -192,9 +192,15 @@ fr:
192
192
  accepted: "doit être accepté(e)"
193
193
  empty: "doit être rempli(e)"
194
194
  blank: "doit être rempli(e)"
195
- too_long: "est trop long (pas plus de %{count} caractères)"
196
- too_short: "est trop court (au moins %{count} caractères)"
197
- wrong_length: "ne fait pas la bonne longueur (doit comporter %{count} caractères)"
195
+ too_long:
196
+ one: "est trop long (pas plus d'un caractère)"
197
+ other: "est trop long (pas plus de %{count} caractères)"
198
+ too_short:
199
+ one: "est trop court (au moins un caractère)"
200
+ other: "est trop court (au moins %{count} caractères)"
201
+ wrong_length:
202
+ one: "ne fait pas la bonne longueur (doit comporter un seul caractère)"
203
+ other: "ne fait pas la bonne longueur (doit comporter %{count} caractères)"
198
204
  not_a_number: "n'est pas un nombre"
199
205
  not_an_integer: "doit être un nombre entier"
200
206
  greater_than: "doit être supérieur à %{count}"
@@ -217,6 +217,8 @@ it:
217
217
  less_than_or_equal_to: "deve essere meno o uguale a %{count}"
218
218
  odd: "deve essere dispari"
219
219
  even: "deve essere pari"
220
+ taken: "è già in uso"
221
+ record_invalid: "Validazione fallita: %{errors}"
220
222
 
221
223
  activerecord:
222
224
  errors:
@@ -227,8 +229,6 @@ it:
227
229
  body: "Per favore ricontrolla i seguenti campi:"
228
230
 
229
231
  messages:
230
- taken: "è già in uso"
231
- record_invalid: "Validazione fallita: %{errors}"
232
232
  <<: *errors_messages
233
233
 
234
234
  full_messages:
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-i18n
3
3
  version: !ruby/object:Gem::Version
4
- hash: 9
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 9
10
- version: 0.1.9
9
+ - 10
10
+ version: 0.1.10
11
11
  platform: ruby
12
12
  authors:
13
13
  - Rails I18n Group
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-09-29 00:00:00 Z
18
+ date: 2011-10-10 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: i18n
@@ -87,6 +87,7 @@ files:
87
87
  - rails/locale/nb.yml
88
88
  - rails/locale/uk.yml
89
89
  - rails/locale/sr.yml
90
+ - rails/locale/csb.yml
90
91
  - rails/locale/lo.yml
91
92
  - rails/locale/mk.yml
92
93
  - rails/locale/hu.yml