rails-i18n 5.1.1 → 5.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +24 -0
- data/README.md +3 -2
- data/rails/locale/az.yml +7 -0
- data/rails/locale/be.yml +101 -40
- data/rails/locale/cs.yml +6 -6
- data/rails/locale/da.yml +1 -1
- data/rails/locale/en.yml +2 -0
- data/rails/locale/es.yml +2 -0
- data/rails/locale/fr-CA.yml +37 -32
- data/rails/locale/fr-CH.yml +30 -25
- data/rails/locale/fr-FR.yml +5 -0
- data/rails/locale/fr.yml +3 -1
- data/rails/locale/ja.yml +5 -3
- data/rails/locale/ka.yml +1 -1
- data/rails/locale/km.yml +3 -3
- data/rails/locale/ko.yml +11 -0
- data/rails/locale/lo.yml +28 -21
- data/rails/locale/oc.yml +5 -5
- data/rails/locale/pl.yml +1 -0
- data/rails/locale/pt-BR.yml +2 -0
- data/rails/locale/pt.yml +5 -3
- data/rails/locale/ru.yml +2 -0
- data/rails/locale/sk.yml +3 -3
- data/rails/locale/te.yml +215 -0
- data/rails/locale/uk.yml +2 -2
- data/rails/locale/vi.yml +2 -2
- data/rails/locale/zh-CN.yml +2 -0
- data/rails/transliteration/az.yml +24 -0
- metadata +4 -3
- data/rails/pluralization/fil.rb +0 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f47d025c31e0d151f0c7d6402d93a6f46e516a76
|
4
|
+
data.tar.gz: 0cf230086a7ea9458f53dd932634bef2e24f565f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d44c26ef774368b53a279e46b46204c9cb5cea299f2137337e04e756e18e485c1d1a42a6d1c36cd2a33e19a898e1e059f5d8ae4a2fe4ac37b7c21eb601b9feb
|
7
|
+
data.tar.gz: cd17107fda51daee7487e7242e62f6298e697b8c52de23d07ba926552522ff64844f75db301ecf1981ad8046692d12ac6856956894fbb7fd3765e27ac76d3fdd
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,27 @@
|
|
1
|
+
## 5.1.2 (2018-10-29)
|
2
|
+
- Add Telugu (te) locale
|
3
|
+
- Update following locales:
|
4
|
+
- Azerbaijani (az)
|
5
|
+
- Belarusian (be)
|
6
|
+
- Czech (cs)
|
7
|
+
- Danish (da)
|
8
|
+
- English (en)
|
9
|
+
- Spanish (es)
|
10
|
+
- French (fr-*)
|
11
|
+
- Japanese (ja)
|
12
|
+
- Georgian (ka)
|
13
|
+
- Korean (ko)
|
14
|
+
- Lao (lo)
|
15
|
+
- Occitan (oc)
|
16
|
+
- Polish (pl)
|
17
|
+
- Portuguese (pt-*)
|
18
|
+
- Russian (ru)
|
19
|
+
- Slovak (sk)
|
20
|
+
- Ukrainian (uk)
|
21
|
+
- Vietnamese (vi)
|
22
|
+
- Chinese (zh-CN)
|
23
|
+
- Remove :fil inflector (#771)
|
24
|
+
|
1
25
|
## 5.1.1 (2018-02-26)
|
2
26
|
- Fix #767 (New Chinese pluralization rules break stuff)
|
3
27
|
|
data/README.md
CHANGED
@@ -58,8 +58,8 @@ Available locales are:
|
|
58
58
|
> en, en-AU, en-CA, en-GB, en-IE, en-IN, en-NZ, en-US, en-ZA, en-CY,eo, es,
|
59
59
|
> es-419, es-AR, es-CL, es-CO, es-CR, es-EC, es-ES, es-MX, es-NI, es-PA, es-PE, es-US, es-VE,
|
60
60
|
> et, eu, fa, fi, fr, fr-CA, fr-CH, fr-FR, gl, he, hi, hi-IN, hr, hu, id, is, it,
|
61
|
-
> it-CH, ja, ka, km, kn, ko, lb, lo, lt, lv, mk, ml, mn, mr-IN, ms, nb, ne, nl, nn, or,
|
62
|
-
> pa, pl, pt, pt-BR, rm, ro, ru, sk, sl, sq, sr, sw, ta, th, tl, tr, tt, ug,
|
61
|
+
> it-CH, ja, ka, km, kn, ko, lb, lo, lt, lv, mk, ml, mn, mr-IN, ms, nb, ne, nl, nn, oc, or,
|
62
|
+
> pa, pl, pt, pt-BR, rm, ro, ru, sk, sl, sq, sr, sw, ta, te, th, tl, tr, tt, ug,
|
63
63
|
> ur, uz, vi, wo, zh-CN, zh-HK, zh-TW, zh-YUE
|
64
64
|
|
65
65
|
Complete locales are:
|
@@ -159,6 +159,7 @@ We will do the formality check and publish it as quick as we can.
|
|
159
159
|
* [will-paginate-i18n](https://github.com/tigrish/will-paginate-i18n)
|
160
160
|
* [kaminari-i18n](https://github.com/tigrish/kaminari-i18n)
|
161
161
|
* [i18n-country-translation](https://github.com/onomojo/i18n-country-translations) for translations of country names
|
162
|
+
* [i18n-timezones](https://github.com/onomojo/i18n-timezones) for translations of Rails time zones
|
162
163
|
* [i18n-spec](https://github.com/tigrish/i18n-spec) for RSpec matchers to test your locale files
|
163
164
|
* [iso](https://github.com/tigrish/iso) for the list of valid language/region codes and their translations
|
164
165
|
* [i18n-tasks](https://github.com/glebm/i18n-tasks)
|
data/rails/locale/az.yml
CHANGED
@@ -4,6 +4,9 @@ az:
|
|
4
4
|
errors:
|
5
5
|
messages:
|
6
6
|
record_invalid: 'Yoxlama uğursuz oldu: %{errors}'
|
7
|
+
restrict_dependent_destroy:
|
8
|
+
has_one: "Əlaqəli %{record} yazı olduğundan bu yazını silmək mümkün deyil"
|
9
|
+
has_many: "Əlaqəli %{record} yazılar olduğundan bu yazını silmək mümkün deyil"
|
7
10
|
date:
|
8
11
|
abbr_day_names:
|
9
12
|
- B.
|
@@ -105,6 +108,7 @@ az:
|
|
105
108
|
messages:
|
106
109
|
accepted: qəbul olunmalıdır
|
107
110
|
blank: boş ola bilməz
|
111
|
+
present: boş olmalıdır
|
108
112
|
confirmation: təsdiqə uygun deyil
|
109
113
|
empty: boş ola bilməz
|
110
114
|
equal_to: "%{count}-ə bərabər olmalıdır"
|
@@ -116,13 +120,16 @@ az:
|
|
116
120
|
invalid: yanlışdır
|
117
121
|
less_than: "%{count}-dən kiçik olmalıdır"
|
118
122
|
less_than_or_equal_to: kiçik və ya %{count}-ə bərabər olmalıdır
|
123
|
+
model_invalid: "Yoxlama uğursuz oldu: %{errors}"
|
119
124
|
not_a_number: rəqəm deyil
|
120
125
|
not_an_integer: tam rəqəm olmalıdır
|
121
126
|
odd: tək olmalıdır
|
127
|
+
required: mövcud olmalıdır
|
122
128
|
taken: artıq mövcuddur
|
123
129
|
too_long: çox uzundur (%{count} simvoldan çox olmalı deyil)
|
124
130
|
too_short: çox qısadır (%{count} simvoldan az olmalı deyil)
|
125
131
|
wrong_length: uzunluqu səhvdir (%{count} simvol olmalıdır)
|
132
|
+
other_than: "%{count}-dən fərqli olmalıdır"
|
126
133
|
template:
|
127
134
|
body: 'Aşağıdaki səhvlər üzə çıxdı:'
|
128
135
|
header:
|
data/rails/locale/be.yml
CHANGED
@@ -39,9 +39,9 @@ be:
|
|
39
39
|
- Пятніца
|
40
40
|
- Субота
|
41
41
|
formats:
|
42
|
-
default: "%d
|
43
|
-
long: "%B %
|
44
|
-
short: "%b
|
42
|
+
default: "%d.%m.%Y"
|
43
|
+
long: "%-d %B %Y"
|
44
|
+
short: "%-d %b"
|
45
45
|
month_names:
|
46
46
|
-
|
47
47
|
- Студзень
|
@@ -63,39 +63,66 @@ be:
|
|
63
63
|
datetime:
|
64
64
|
distance_in_words:
|
65
65
|
about_x_hours:
|
66
|
-
|
66
|
+
few: каля %{count} гадзін
|
67
|
+
many: каля %{count} гадзін
|
68
|
+
one: каля %{count} гадзіны
|
67
69
|
other: каля %{count} гадзін
|
68
70
|
about_x_months:
|
69
|
-
|
71
|
+
few: каля %{count} месяцаў
|
72
|
+
many: каля %{count} месяцаў
|
73
|
+
one: каля %{count} месяца
|
70
74
|
other: каля %{count} месяцаў
|
71
75
|
about_x_years:
|
72
|
-
|
76
|
+
few: каля %{count} гадоў
|
77
|
+
many: каля %{count} гадоў
|
78
|
+
one: каля %{count} года
|
73
79
|
other: каля %{count} гадоў
|
74
80
|
almost_x_years:
|
75
|
-
|
81
|
+
few: амаль %{count} гады
|
82
|
+
many: амаль %{count} гадоў
|
83
|
+
one: амаль %{count} год
|
76
84
|
other: амаль %{count} гадоў
|
77
85
|
half_a_minute: палова хвіліны
|
78
86
|
less_than_x_minutes:
|
79
|
-
|
80
|
-
|
87
|
+
few: меней за %{count} хвіліны
|
88
|
+
many: меней за %{count} хвілін
|
89
|
+
one: меней за %{count} хвіліну
|
90
|
+
other: меней за %{count} хвіліны
|
81
91
|
less_than_x_seconds:
|
82
|
-
|
83
|
-
|
92
|
+
few: меней за %{count} секунды
|
93
|
+
many: меней за %{count} секунд
|
94
|
+
one: меней за %{count} секунду
|
95
|
+
other: меней за %{count} секунды
|
84
96
|
over_x_years:
|
85
|
-
|
86
|
-
|
97
|
+
few: болей за %{count} гады
|
98
|
+
many: болей за %{count} гадоў
|
99
|
+
one: болей за %{count} год
|
100
|
+
other: болей за %{count} года
|
87
101
|
x_days:
|
88
|
-
|
89
|
-
|
102
|
+
few: "%{count} дні"
|
103
|
+
many: "%{count} дзён"
|
104
|
+
one: "%{count} дзень"
|
105
|
+
other: "%{count} дня"
|
90
106
|
x_minutes:
|
91
|
-
|
92
|
-
|
107
|
+
few: "%{count} хвіліны"
|
108
|
+
many: "%{count} хвілін"
|
109
|
+
one: "%{count} хвіліна"
|
110
|
+
other: "%{count} хвіліны"
|
93
111
|
x_months:
|
94
|
-
|
95
|
-
|
112
|
+
few: "%{count} месяцы"
|
113
|
+
many: "%{count} месяцаў"
|
114
|
+
one: "%{count} месяц"
|
115
|
+
other: "%{count} месяца"
|
116
|
+
x_years:
|
117
|
+
few: "%{count} гады"
|
118
|
+
many: "%{count} гадоў"
|
119
|
+
one: "%{count} год"
|
120
|
+
other: "%{count} года"
|
96
121
|
x_seconds:
|
97
|
-
|
98
|
-
|
122
|
+
few: "%{count} секунды"
|
123
|
+
many: "%{count} секунд"
|
124
|
+
one: "%{count} секунда"
|
125
|
+
other: "%{count} секунды"
|
99
126
|
prompts:
|
100
127
|
day: Дзень
|
101
128
|
hour: Гадзіна
|
@@ -120,24 +147,34 @@ be:
|
|
120
147
|
invalid: няправільнае значэнне
|
121
148
|
less_than: павінна быць меней за %{count}
|
122
149
|
less_than_or_equal_to: павінна быць меней ці роўным %{count}
|
150
|
+
model_invalid: 'Узніклі настпупныя памылкі: %{errors}'
|
123
151
|
not_a_number: гэта не лічба
|
124
152
|
not_an_integer: павінна быць цэлай лічбай
|
125
153
|
odd: павінна быць няцотным
|
154
|
+
required: не можа адсутнічаць
|
126
155
|
taken: ўжо занята
|
127
156
|
too_long:
|
128
|
-
|
157
|
+
few: занадта доўгі (максімум %{count} сімвала)
|
158
|
+
many: занадта доўгі (максімум %{count} сімвалаў)
|
159
|
+
one: занадта доўгі (максімум %{count} сімвал)
|
129
160
|
other: занадта доўгі (максімум %{count} сімвалаў)
|
130
161
|
too_short:
|
131
|
-
|
162
|
+
few: занадта кароткі (мінімум %{count} сімвала)
|
163
|
+
many: занадта кароткі (мінімум %{count} сімвалаў)
|
164
|
+
one: занадта кароткі (мінімум %{count} сімвал)
|
132
165
|
other: занадта кароткі (мінімум %{count} сімвалаў)
|
133
166
|
wrong_length:
|
134
|
-
|
167
|
+
few: няправільная даўжыня (павінен быць %{count} сімвала)
|
168
|
+
many: няправільная даўжыня (павінны быць %{count} сімвалаў)
|
169
|
+
one: няправільная даўжыня (павінен быць %{count} сімвал)
|
135
170
|
other: няправільная даўжыня (павінны быць %{count} сімвалаў)
|
136
171
|
other_than: павінна адрознівацца ад %{count}
|
137
172
|
template:
|
138
173
|
body: 'Узніклі праблемы з наступнымі палямі:'
|
139
174
|
header:
|
140
|
-
|
175
|
+
few: не атрымалася захаваць %{model} з-за %{count} памылак
|
176
|
+
many: не атрымалася захаваць %{model} з-за %{count} памылак
|
177
|
+
one: не атрымалася захаваць %{model} з-за %{count} памылкі
|
141
178
|
other: не атрымалася захаваць %{model} з-за %{count} памылак
|
142
179
|
helpers:
|
143
180
|
select:
|
@@ -149,13 +186,13 @@ be:
|
|
149
186
|
number:
|
150
187
|
currency:
|
151
188
|
format:
|
152
|
-
delimiter: "
|
153
|
-
format: "%u
|
189
|
+
delimiter: " "
|
190
|
+
format: "%n %u"
|
154
191
|
precision: 2
|
155
|
-
separator: "
|
192
|
+
separator: ","
|
156
193
|
significant: false
|
157
194
|
strip_insignificant_zeros: false
|
158
|
-
unit:
|
195
|
+
unit: руб.
|
159
196
|
format:
|
160
197
|
delimiter: ","
|
161
198
|
precision: 3
|
@@ -166,27 +203,51 @@ be:
|
|
166
203
|
decimal_units:
|
167
204
|
format: "%n %u"
|
168
205
|
units:
|
169
|
-
billion:
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
206
|
+
billion:
|
207
|
+
few: мільярда
|
208
|
+
many: мільярдаў
|
209
|
+
one: мільярд
|
210
|
+
other: мільярда
|
211
|
+
million:
|
212
|
+
few: мільёна
|
213
|
+
many: мільёнаў
|
214
|
+
one: мільён
|
215
|
+
other: мільёна
|
216
|
+
quadrillion:
|
217
|
+
few: квадрыльёна
|
218
|
+
many: квадрыльёнаў
|
219
|
+
one: квадрыльён
|
220
|
+
other: квадрыльёна
|
221
|
+
thousand:
|
222
|
+
few: тысячы
|
223
|
+
many: тысяч
|
224
|
+
one: тысяча
|
225
|
+
other: тысячы
|
226
|
+
trillion:
|
227
|
+
few: трыльёна
|
228
|
+
many: трыльёнаў
|
229
|
+
one: трыльён
|
230
|
+
other: трыльёна
|
174
231
|
unit: ''
|
175
232
|
format:
|
176
233
|
delimiter: ''
|
177
|
-
precision:
|
178
|
-
significant:
|
179
|
-
strip_insignificant_zeros:
|
234
|
+
precision: 1
|
235
|
+
significant: false
|
236
|
+
strip_insignificant_zeros: false
|
180
237
|
storage_units:
|
181
238
|
format: "%n %u"
|
182
239
|
units:
|
183
240
|
byte:
|
184
|
-
|
185
|
-
|
241
|
+
few: байта
|
242
|
+
many: байтаў
|
243
|
+
one: байт
|
244
|
+
other: байта
|
186
245
|
gb: ГБ
|
187
246
|
kb: КБ
|
188
247
|
mb: МБ
|
189
248
|
tb: ТБ
|
249
|
+
pb: ПБ
|
250
|
+
eb: ЭБ
|
190
251
|
percentage:
|
191
252
|
format:
|
192
253
|
delimiter: ''
|
@@ -203,6 +264,6 @@ be:
|
|
203
264
|
am: раніцы
|
204
265
|
formats:
|
205
266
|
default: "%a, %d %b %Y %H:%M:%S %z"
|
206
|
-
long: "%
|
267
|
+
long: "%d %B %Y, %H:%M"
|
207
268
|
short: "%d %b %H:%M"
|
208
269
|
pm: вечара
|
data/rails/locale/cs.yml
CHANGED
@@ -177,7 +177,7 @@ cs:
|
|
177
177
|
units:
|
178
178
|
billion: Miliarda
|
179
179
|
million: Milion
|
180
|
-
quadrillion:
|
180
|
+
quadrillion: Biliarda
|
181
181
|
thousand: Tisíc
|
182
182
|
trillion: Bilion
|
183
183
|
unit: ''
|
@@ -210,9 +210,9 @@ cs:
|
|
210
210
|
two_words_connector: " a "
|
211
211
|
words_connector: ", "
|
212
212
|
time:
|
213
|
-
am:
|
213
|
+
am: dopoledne
|
214
214
|
formats:
|
215
|
-
default: "%a %
|
216
|
-
long: "%A %
|
217
|
-
short: "%
|
218
|
-
pm:
|
215
|
+
default: "%a %e. %B %Y %H:%M %z"
|
216
|
+
long: "%A %e. %B %Y %H:%M"
|
217
|
+
short: "%e. %-m. %H:%M"
|
218
|
+
pm: odpoledne
|
data/rails/locale/da.yml
CHANGED
data/rails/locale/en.yml
CHANGED
data/rails/locale/es.yml
CHANGED
data/rails/locale/fr-CA.yml
CHANGED
@@ -5,7 +5,7 @@ fr-CA:
|
|
5
5
|
messages:
|
6
6
|
record_invalid: 'La validation a échoué : %{errors}'
|
7
7
|
restrict_dependent_destroy:
|
8
|
-
has_one: "Vous ne pouvez pas supprimer l'enregistrement car
|
8
|
+
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
9
9
|
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
10
10
|
date:
|
11
11
|
abbr_day_names:
|
@@ -64,40 +64,43 @@ fr-CA:
|
|
64
64
|
distance_in_words:
|
65
65
|
about_x_hours:
|
66
66
|
one: environ une heure
|
67
|
-
other: environ %{count}
|
67
|
+
other: environ %{count} heures
|
68
68
|
about_x_months:
|
69
69
|
one: environ un mois
|
70
|
-
other: environ %{count}
|
70
|
+
other: environ %{count} mois
|
71
71
|
about_x_years:
|
72
72
|
one: environ un an
|
73
|
-
other: environ %{count}
|
73
|
+
other: environ %{count} ans
|
74
74
|
almost_x_years:
|
75
75
|
one: presqu'un an
|
76
76
|
other: presque %{count} ans
|
77
77
|
half_a_minute: une demi-minute
|
78
78
|
less_than_x_minutes:
|
79
|
-
one: moins d'une
|
80
|
-
other: moins de %{count}
|
81
|
-
zero: moins d'une
|
79
|
+
one: moins d'une minute
|
80
|
+
other: moins de %{count} minutes
|
81
|
+
zero: moins d'une minute
|
82
82
|
less_than_x_seconds:
|
83
|
-
one: moins d'une
|
84
|
-
other: moins de %{count}
|
83
|
+
one: moins d'une seconde
|
84
|
+
other: moins de %{count} secondes
|
85
85
|
zero: moins d'une seconde
|
86
86
|
over_x_years:
|
87
87
|
one: plus d'un an
|
88
|
-
other: plus de %{count}
|
88
|
+
other: plus de %{count} ans
|
89
89
|
x_days:
|
90
|
-
one: 1
|
91
|
-
other: "%{count}
|
90
|
+
one: 1 jour
|
91
|
+
other: "%{count} jours"
|
92
92
|
x_minutes:
|
93
|
-
one: 1
|
94
|
-
other: "%{count}
|
93
|
+
one: 1 minute
|
94
|
+
other: "%{count} minutes"
|
95
95
|
x_months:
|
96
|
-
one: 1
|
97
|
-
other: "%{count}
|
96
|
+
one: 1 mois
|
97
|
+
other: "%{count} mois"
|
98
|
+
x_years:
|
99
|
+
one: 1 an
|
100
|
+
other: "%{count} ans"
|
98
101
|
x_seconds:
|
99
|
-
one: 1
|
100
|
-
other: "%{count}
|
102
|
+
one: 1 seconde
|
103
|
+
other: "%{count} secondes"
|
101
104
|
prompts:
|
102
105
|
day: Jour
|
103
106
|
hour: Heure
|
@@ -122,7 +125,7 @@ fr-CA:
|
|
122
125
|
invalid: n'est pas valide
|
123
126
|
less_than: doit être inférieur à %{count}
|
124
127
|
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
125
|
-
model_invalid: "Validation échouée: %{errors}"
|
128
|
+
model_invalid: "Validation échouée : %{errors}"
|
126
129
|
not_a_number: n'est pas un nombre
|
127
130
|
not_an_integer: doit être un nombre entier
|
128
131
|
odd: doit être impair
|
@@ -139,17 +142,17 @@ fr-CA:
|
|
139
142
|
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
|
140
143
|
other_than: doit être différent de %{count}
|
141
144
|
template:
|
142
|
-
body: 'Veuillez vérifier les champs suivants
|
145
|
+
body: 'Veuillez vérifier les champs suivants : '
|
143
146
|
header:
|
144
|
-
one: 'Impossible d''enregistrer ce %{model} : 1 erreur'
|
145
|
-
other: 'Impossible d''enregistrer ce %{model} : %{count} erreurs'
|
147
|
+
one: 'Impossible d''enregistrer ce(tte) %{model} : 1 erreur'
|
148
|
+
other: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreurs'
|
146
149
|
helpers:
|
147
150
|
select:
|
148
151
|
prompt: Veuillez sélectionner
|
149
152
|
submit:
|
150
|
-
create: Créer un %{model}
|
151
|
-
submit: Enregistrer ce %{model}
|
152
|
-
update: Modifier ce %{model}
|
153
|
+
create: Créer un(e) %{model}
|
154
|
+
submit: Enregistrer ce(tte) %{model}
|
155
|
+
update: Modifier ce(tte) %{model}
|
153
156
|
number:
|
154
157
|
currency:
|
155
158
|
format:
|
@@ -170,11 +173,11 @@ fr-CA:
|
|
170
173
|
decimal_units:
|
171
174
|
format: "%n %u"
|
172
175
|
units:
|
173
|
-
billion:
|
174
|
-
million:
|
175
|
-
quadrillion:
|
176
|
-
thousand:
|
177
|
-
trillion:
|
176
|
+
billion: milliard
|
177
|
+
million: million
|
178
|
+
quadrillion: million de milliards
|
179
|
+
thousand: millier
|
180
|
+
trillion: billion
|
178
181
|
unit: ''
|
179
182
|
format:
|
180
183
|
delimiter: ''
|
@@ -185,12 +188,14 @@ fr-CA:
|
|
185
188
|
format: "%n %u"
|
186
189
|
units:
|
187
190
|
byte:
|
188
|
-
one:
|
189
|
-
other:
|
191
|
+
one: octet
|
192
|
+
other: octets
|
190
193
|
gb: Go
|
191
194
|
kb: ko
|
192
195
|
mb: Mo
|
193
196
|
tb: To
|
197
|
+
pb: Po
|
198
|
+
eb: Eo
|
194
199
|
percentage:
|
195
200
|
format:
|
196
201
|
delimiter: ''
|
data/rails/locale/fr-CH.yml
CHANGED
@@ -5,7 +5,7 @@ fr-CH:
|
|
5
5
|
messages:
|
6
6
|
record_invalid: 'La validation a échoué : %{errors}'
|
7
7
|
restrict_dependent_destroy:
|
8
|
-
has_one: "Vous ne pouvez pas supprimer l'enregistrement car
|
8
|
+
has_one: "Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record} dépendant(e) existe"
|
9
9
|
has_many: "Vous ne pouvez pas supprimer l'enregistrement parce que les %{record} dépendants existent"
|
10
10
|
date:
|
11
11
|
abbr_day_names:
|
@@ -64,40 +64,43 @@ fr-CH:
|
|
64
64
|
distance_in_words:
|
65
65
|
about_x_hours:
|
66
66
|
one: environ une heure
|
67
|
-
other: environ %{count}
|
67
|
+
other: environ %{count} heures
|
68
68
|
about_x_months:
|
69
69
|
one: environ un mois
|
70
|
-
other: environ %{count}
|
70
|
+
other: environ %{count} mois
|
71
71
|
about_x_years:
|
72
72
|
one: environ un an
|
73
|
-
other: environ %{count}
|
73
|
+
other: environ %{count} ans
|
74
74
|
almost_x_years:
|
75
75
|
one: presqu'un an
|
76
76
|
other: presque %{count} ans
|
77
77
|
half_a_minute: une demi-minute
|
78
78
|
less_than_x_minutes:
|
79
|
-
one: moins d'une
|
80
|
-
other: moins de %{count}
|
81
|
-
zero: moins d'une
|
79
|
+
one: moins d'une minute
|
80
|
+
other: moins de %{count} minutes
|
81
|
+
zero: moins d'une minute
|
82
82
|
less_than_x_seconds:
|
83
|
-
one: moins d'une
|
84
|
-
other: moins de %{count}
|
83
|
+
one: moins d'une seconde
|
84
|
+
other: moins de %{count} secondes
|
85
85
|
zero: moins d'une seconde
|
86
86
|
over_x_years:
|
87
87
|
one: plus d'un an
|
88
|
-
other: plus de %{count}
|
88
|
+
other: plus de %{count} ans
|
89
89
|
x_days:
|
90
|
-
one: 1
|
91
|
-
other: "%{count}
|
90
|
+
one: 1 jour
|
91
|
+
other: "%{count} jours"
|
92
92
|
x_minutes:
|
93
|
-
one: 1
|
94
|
-
other: "%{count}
|
93
|
+
one: 1 minute
|
94
|
+
other: "%{count} minutes"
|
95
95
|
x_months:
|
96
|
-
one: 1
|
97
|
-
other: "%{count}
|
96
|
+
one: 1 mois
|
97
|
+
other: "%{count} mois"
|
98
|
+
x_years:
|
99
|
+
one: 1 an
|
100
|
+
other: "%{count} ans"
|
98
101
|
x_seconds:
|
99
|
-
one: 1
|
100
|
-
other: "%{count}
|
102
|
+
one: 1 seconde
|
103
|
+
other: "%{count} secondes"
|
101
104
|
prompts:
|
102
105
|
day: Jour
|
103
106
|
hour: Heure
|
@@ -122,7 +125,7 @@ fr-CH:
|
|
122
125
|
invalid: n'est pas valide
|
123
126
|
less_than: doit être inférieur à %{count}
|
124
127
|
less_than_or_equal_to: doit être inférieur ou égal à %{count}
|
125
|
-
model_invalid: "Validation échouée: %{errors}"
|
128
|
+
model_invalid: "Validation échouée : %{errors}"
|
126
129
|
not_a_number: n'est pas un nombre
|
127
130
|
not_an_integer: doit être un nombre entier
|
128
131
|
odd: doit être impair
|
@@ -139,17 +142,17 @@ fr-CH:
|
|
139
142
|
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
|
140
143
|
other_than: doit être différent de %{count}
|
141
144
|
template:
|
142
|
-
body: 'Veuillez vérifier les champs suivants
|
145
|
+
body: 'Veuillez vérifier les champs suivants : '
|
143
146
|
header:
|
144
|
-
one: 'Impossible d''enregistrer ce %{model} : 1 erreur'
|
145
|
-
other: 'Impossible d''enregistrer ce %{model} : %{count} erreurs'
|
147
|
+
one: 'Impossible d''enregistrer ce(tte) %{model} : 1 erreur'
|
148
|
+
other: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreurs'
|
146
149
|
helpers:
|
147
150
|
select:
|
148
151
|
prompt: Veuillez sélectionner
|
149
152
|
submit:
|
150
|
-
create: Créer un %{model}
|
151
|
-
submit: Enregistrer ce %{model}
|
152
|
-
update: Modifier ce %{model}
|
153
|
+
create: Créer un(e) %{model}
|
154
|
+
submit: Enregistrer ce(tte) %{model}
|
155
|
+
update: Modifier ce(tte) %{model}
|
153
156
|
number:
|
154
157
|
currency:
|
155
158
|
format:
|
@@ -191,6 +194,8 @@ fr-CH:
|
|
191
194
|
kb: ko
|
192
195
|
mb: Mo
|
193
196
|
tb: To
|
197
|
+
pb: Po
|
198
|
+
eb: Eo
|
194
199
|
percentage:
|
195
200
|
format:
|
196
201
|
delimiter: ''
|
data/rails/locale/fr-FR.yml
CHANGED
@@ -95,6 +95,9 @@ fr-FR:
|
|
95
95
|
x_months:
|
96
96
|
one: 1 mois
|
97
97
|
other: "%{count} mois"
|
98
|
+
x_years:
|
99
|
+
one: 1 an
|
100
|
+
other: "%{count} ans"
|
98
101
|
x_seconds:
|
99
102
|
one: 1 seconde
|
100
103
|
other: "%{count} secondes"
|
@@ -191,6 +194,8 @@ fr-FR:
|
|
191
194
|
kb: ko
|
192
195
|
mb: Mo
|
193
196
|
tb: To
|
197
|
+
pb: Po
|
198
|
+
eb: Eo
|
194
199
|
percentage:
|
195
200
|
format:
|
196
201
|
delimiter: ''
|
data/rails/locale/fr.yml
CHANGED
@@ -96,7 +96,7 @@ fr:
|
|
96
96
|
one: 1 mois
|
97
97
|
other: "%{count} mois"
|
98
98
|
x_years:
|
99
|
-
one:
|
99
|
+
one: 1 an
|
100
100
|
other: "%{count} ans"
|
101
101
|
x_seconds:
|
102
102
|
one: 1 seconde
|
@@ -194,6 +194,8 @@ fr:
|
|
194
194
|
kb: ko
|
195
195
|
mb: Mo
|
196
196
|
tb: To
|
197
|
+
pb: Po
|
198
|
+
eb: Eo
|
197
199
|
percentage:
|
198
200
|
format:
|
199
201
|
delimiter: ''
|
data/rails/locale/ja.yml
CHANGED
@@ -184,6 +184,8 @@ ja:
|
|
184
184
|
kb: KB
|
185
185
|
mb: MB
|
186
186
|
tb: TB
|
187
|
+
pb: PB
|
188
|
+
eb: EB
|
187
189
|
percentage:
|
188
190
|
format:
|
189
191
|
delimiter: ''
|
@@ -199,7 +201,7 @@ ja:
|
|
199
201
|
time:
|
200
202
|
am: 午前
|
201
203
|
formats:
|
202
|
-
default: "%Y
|
203
|
-
long: "%Y
|
204
|
-
short: "%
|
204
|
+
default: "%Y年%m月%d日(%a) %H時%M分%S秒 %z"
|
205
|
+
long: "%Y/%m/%d %H:%M"
|
206
|
+
short: "%m/%d %H:%M"
|
205
207
|
pm: 午後
|
data/rails/locale/ka.yml
CHANGED
@@ -128,7 +128,7 @@ ka:
|
|
128
128
|
taken: უკვე დაკავებულია
|
129
129
|
too_long:
|
130
130
|
one: არის ძალიან გრძელი (მაქსიმუმია 1 სიმბოლო)
|
131
|
-
other: მეტისმეტად დიდი სიგრძის (მაქსიმუმია %{count} სიმბოლო)
|
131
|
+
other: არის მეტისმეტად დიდი სიგრძის (მაქსიმუმია %{count} სიმბოლო)
|
132
132
|
too_short:
|
133
133
|
one: არის ძალიან მოკლე (მინიმუმია 1 სიმბოლო)
|
134
134
|
other: არის ძალიან მოკლე (მინიმუმია %{count} სიმბოლო)
|
data/rails/locale/km.yml
CHANGED
@@ -136,11 +136,11 @@ km:
|
|
136
136
|
decimal_units:
|
137
137
|
format: "%n %u"
|
138
138
|
units:
|
139
|
-
billion:
|
139
|
+
billion: ប៊ីលាន
|
140
140
|
million: លាន
|
141
|
-
quadrillion:
|
141
|
+
quadrillion: ក្វាទ្រីលាន
|
142
142
|
thousand: ពាន់
|
143
|
-
trillion:
|
143
|
+
trillion: ទ្រីលាន
|
144
144
|
unit: ''
|
145
145
|
format:
|
146
146
|
delimiter: ''
|
data/rails/locale/ko.yml
CHANGED
@@ -4,6 +4,9 @@ ko:
|
|
4
4
|
errors:
|
5
5
|
messages:
|
6
6
|
record_invalid: 데이터 검증에 실패하였습니다. %{errors}
|
7
|
+
restrict_dependent_destroy:
|
8
|
+
has_one: "%{record}가 존재하기 때문에 삭제할 수 없습니다"
|
9
|
+
has_many: "%{record}가 존재하기 때문에 삭제할 수 없습니다"
|
7
10
|
date:
|
8
11
|
abbr_day_names:
|
9
12
|
- 일
|
@@ -90,6 +93,9 @@ ko:
|
|
90
93
|
x_months:
|
91
94
|
one: 한 달
|
92
95
|
other: "%{count}달"
|
96
|
+
x_years:
|
97
|
+
one: 일 년
|
98
|
+
other: "%{count}년"
|
93
99
|
x_seconds:
|
94
100
|
one: 일 초
|
95
101
|
other: "%{count}초"
|
@@ -105,6 +111,7 @@ ko:
|
|
105
111
|
messages:
|
106
112
|
accepted: "%{attribute}을(를) 반드시 확인해야 합니다"
|
107
113
|
blank: "%{attribute}에 내용을 입력해 주세요"
|
114
|
+
present: "%{attribute}은(는) 비어있어야 합니다"
|
108
115
|
confirmation: "%{attribute}은(는) 서로 일치해야 합니다"
|
109
116
|
empty: "%{attribute}에 내용을 입력해 주세요"
|
110
117
|
equal_to: "%{attribute}은(는) %{count}과 같아야 합니다"
|
@@ -116,13 +123,16 @@ ko:
|
|
116
123
|
invalid: "%{attribute}은(는) 올바르지 않은 값입니다"
|
117
124
|
less_than: "%{attribute}은(는) %{count}보다 작아야 합니다"
|
118
125
|
less_than_or_equal_to: "%{attribute}은(는) %{count}과 작거나 같아야 합니다"
|
126
|
+
model_invalid: "%{attribute}에 대한 데이터 검증에 실패하였습니다: %{errors}"
|
119
127
|
not_a_number: "%{attribute}에 숫자를 입력해 주세요"
|
120
128
|
not_an_integer: "%{attribute}에 정수를 입력해 주세요"
|
121
129
|
odd: "%{attribute}에 홀수를 입력해 주세요"
|
130
|
+
required: "%{attribute}은(는) 반드시 있어야 합니다"
|
122
131
|
taken: "%{attribute}은(는) 이미 존재합니다"
|
123
132
|
too_long: "%{attribute}은(는) %{count}자를 넘을 수 없습니다"
|
124
133
|
too_short: "%{attribute}은(는) 적어도 %{count}자를 넘어야 합니다"
|
125
134
|
wrong_length: "%{attribute}은(는) %{count}자여야 합니다"
|
135
|
+
other_than: "%{attribute}은(는) %{count}와(과) 달라야 합니다"
|
126
136
|
template:
|
127
137
|
body: '아래 문제를 확인해 주세요.'
|
128
138
|
header:
|
@@ -177,6 +187,7 @@ ko:
|
|
177
187
|
percentage:
|
178
188
|
format:
|
179
189
|
delimiter: ''
|
190
|
+
format: "%n%"
|
180
191
|
precision:
|
181
192
|
format:
|
182
193
|
delimiter: ''
|
data/rails/locale/lo.yml
CHANGED
@@ -6,27 +6,27 @@ lo:
|
|
6
6
|
record_invalid: 'ການຢືນຢັນບໍ່ສຳເລັດ : %{errors}'
|
7
7
|
date:
|
8
8
|
abbr_day_names:
|
9
|
-
-
|
10
|
-
-
|
11
|
-
-
|
12
|
-
-
|
13
|
-
-
|
14
|
-
-
|
15
|
-
-
|
9
|
+
- ອາທິດ
|
10
|
+
- ຈັນ
|
11
|
+
- ອັງຄານ
|
12
|
+
- ພຸດ
|
13
|
+
- ພະຫັດ
|
14
|
+
- ສຸກ
|
15
|
+
- ເສົາ
|
16
16
|
abbr_month_names:
|
17
17
|
-
|
18
|
-
-
|
19
|
-
-
|
20
|
-
-
|
21
|
-
-
|
22
|
-
-
|
23
|
-
-
|
24
|
-
-
|
25
|
-
-
|
26
|
-
-
|
27
|
-
-
|
28
|
-
-
|
29
|
-
-
|
18
|
+
- ມ.ກ
|
19
|
+
- ກ.ພ
|
20
|
+
- ມ.ນ
|
21
|
+
- ມ.ສ
|
22
|
+
- ພ.ພ
|
23
|
+
- ມິ.ຖ
|
24
|
+
- ກ.ລ
|
25
|
+
- ສ.ຫ
|
26
|
+
- ກ.ຍ
|
27
|
+
- ຕ.ລ
|
28
|
+
- ພ.ຈ
|
29
|
+
- ທ.ວ
|
30
30
|
day_names:
|
31
31
|
- ອາທິດ
|
32
32
|
- ຈັນ
|
@@ -80,6 +80,13 @@ lo:
|
|
80
80
|
few: 'ປະມານ %{count} ປີ '
|
81
81
|
many: 'ປະມານ %{count} ປີ '
|
82
82
|
other: 'ປະມານ %{count} ປີ '
|
83
|
+
almost_x_years:
|
84
|
+
zero: 'ເກືອບ %{count} ປີ '
|
85
|
+
one: 'ເກືອບ 1 ປີ '
|
86
|
+
two: 'ເກືອບ %{count} ປີ '
|
87
|
+
few: 'ເກືອບ %{count} ປີ '
|
88
|
+
many: 'ເກືອບ %{count} ປີ '
|
89
|
+
other: 'ເກືອບ %{count} ປີ '
|
83
90
|
half_a_minute: 'ເຄິ່ງນາທີ '
|
84
91
|
less_than_x_minutes:
|
85
92
|
zero: 'ນ້ອຍກວ່າ %{count} ນາທີ '
|
@@ -223,9 +230,9 @@ lo:
|
|
223
230
|
two_words_connector: 'ແລະ '
|
224
231
|
words_connector: ", "
|
225
232
|
time:
|
226
|
-
am: ''
|
233
|
+
am: 'ເຊົ້າ'
|
227
234
|
formats:
|
228
235
|
default: "%a %d %b %Y %H:%M:%S %z"
|
229
236
|
long: "%d %B %Y %H:%M น."
|
230
237
|
short: "%d %b %H:%M น."
|
231
|
-
pm: ''
|
238
|
+
pm: 'ແລງ'
|
data/rails/locale/oc.yml
CHANGED
@@ -20,10 +20,10 @@ oc:
|
|
20
20
|
-
|
21
21
|
- gen
|
22
22
|
- feb
|
23
|
-
-
|
23
|
+
- març
|
24
24
|
- abr
|
25
25
|
- mai
|
26
|
-
-
|
26
|
+
- junh
|
27
27
|
- jul
|
28
28
|
- ago
|
29
29
|
- set
|
@@ -206,7 +206,7 @@ oc:
|
|
206
206
|
time:
|
207
207
|
am: am
|
208
208
|
formats:
|
209
|
-
default: "Lo %
|
210
|
-
long: "Lo %
|
211
|
-
short: "%
|
209
|
+
default: "Lo %e %b de %Y a %Ho%M %Ss"
|
210
|
+
long: "Lo %a %e %b de %Y a %Ho%M"
|
211
|
+
short: "%e %b %Ho%M"
|
212
212
|
pm: pm
|
data/rails/locale/pl.yml
CHANGED
data/rails/locale/pt-BR.yml
CHANGED
data/rails/locale/pt.yml
CHANGED
@@ -148,8 +148,8 @@ pt:
|
|
148
148
|
number:
|
149
149
|
currency:
|
150
150
|
format:
|
151
|
-
delimiter: "
|
152
|
-
format: "%
|
151
|
+
delimiter: "."
|
152
|
+
format: "%u %n"
|
153
153
|
precision: 2
|
154
154
|
separator: ","
|
155
155
|
significant: false
|
@@ -194,6 +194,8 @@ pt:
|
|
194
194
|
kb: KB
|
195
195
|
mb: MB
|
196
196
|
tb: TB
|
197
|
+
pb: PB
|
198
|
+
eb: EB
|
197
199
|
percentage:
|
198
200
|
format:
|
199
201
|
delimiter: ''
|
@@ -202,7 +204,7 @@ pt:
|
|
202
204
|
delimiter: ''
|
203
205
|
support:
|
204
206
|
array:
|
205
|
-
last_word_connector: "
|
207
|
+
last_word_connector: " e "
|
206
208
|
two_words_connector: " e "
|
207
209
|
words_connector: ", "
|
208
210
|
time:
|
data/rails/locale/ru.yml
CHANGED
data/rails/locale/sk.yml
CHANGED
@@ -205,7 +205,7 @@ sk:
|
|
205
205
|
time:
|
206
206
|
am: dopoludnia
|
207
207
|
formats:
|
208
|
-
default: "%a %
|
209
|
-
long: "%A %
|
210
|
-
short: "%
|
208
|
+
default: "%a %e. %B %Y %H:%M %z"
|
209
|
+
long: "%A %e. %B %Y %H:%M"
|
210
|
+
short: "%e. %-m. %H:%M"
|
211
211
|
pm: popoludní
|
data/rails/locale/te.yml
ADDED
@@ -0,0 +1,215 @@
|
|
1
|
+
# Telugu translations for Ruby on Rails
|
2
|
+
# by Ravi Teja Dandu(raviteja499@gmail.com)
|
3
|
+
---
|
4
|
+
te:
|
5
|
+
activerecord:
|
6
|
+
errors:
|
7
|
+
messages:
|
8
|
+
record_invalid: "ధ్రువీకరన విఫలమైనది: %{errors}"
|
9
|
+
restrict_dependent_destroy:
|
10
|
+
has_one: "రికార్డ్ను తొలగించలేరు, ఎందుకంటే ఒక ఆధారపడిన %{record} ఉంది"
|
11
|
+
has_many: "రికార్డ్ను తొలగించలేరు, ఎందుకంటే ఆధారపడిన %{record} ఉంది"
|
12
|
+
date:
|
13
|
+
abbr_day_names:
|
14
|
+
- ఆది
|
15
|
+
- సోమ
|
16
|
+
- మంగళ
|
17
|
+
- బుధ
|
18
|
+
- గురు
|
19
|
+
- శుక్ర
|
20
|
+
- శని
|
21
|
+
abbr_month_names:
|
22
|
+
-
|
23
|
+
- Jan
|
24
|
+
- Feb
|
25
|
+
- Mar
|
26
|
+
- Apr
|
27
|
+
- May
|
28
|
+
- Jun
|
29
|
+
- Jul
|
30
|
+
- Aug
|
31
|
+
- Sep
|
32
|
+
- Oct
|
33
|
+
- Nov
|
34
|
+
- Dec
|
35
|
+
day_names:
|
36
|
+
- ఆదివారం
|
37
|
+
- సోమవారం
|
38
|
+
- మంగళవారం
|
39
|
+
- బుధవారం
|
40
|
+
- గురువారం
|
41
|
+
- శుక్రవారం
|
42
|
+
- శనివారం
|
43
|
+
formats:
|
44
|
+
default: "%d-%m-%Y"
|
45
|
+
long: "%B %d, %Y"
|
46
|
+
short: "%b %d"
|
47
|
+
month_names:
|
48
|
+
-
|
49
|
+
- జనవరి
|
50
|
+
- ఫిబ్రవరి
|
51
|
+
- మార్చి
|
52
|
+
- ఏప్రిల్
|
53
|
+
- మే
|
54
|
+
- జూన్
|
55
|
+
- జూలై
|
56
|
+
- ఆగస్టు
|
57
|
+
- సెప్టెంబరు
|
58
|
+
- అక్టోబరు
|
59
|
+
- నవంబరు
|
60
|
+
- డిసెంబరు
|
61
|
+
order:
|
62
|
+
- :day
|
63
|
+
- :month
|
64
|
+
- :year
|
65
|
+
datetime:
|
66
|
+
distance_in_words:
|
67
|
+
about_x_hours:
|
68
|
+
one: సుమారు ఒక గంట
|
69
|
+
other: సుమారు %{count} గంటలు
|
70
|
+
about_x_months:
|
71
|
+
one: సుమారు ఒక నెల
|
72
|
+
other: సుమారు %{count} నెలలు
|
73
|
+
about_x_years:
|
74
|
+
one: సుమారు ఒక సంవత్సరం
|
75
|
+
other: సుమారు %{count} సంవత్సరాలు
|
76
|
+
almost_x_years:
|
77
|
+
one: దాదాపు ఒక సంవత్సరం
|
78
|
+
other: దాదాపు %{count} సంవత్సరాలు
|
79
|
+
half_a_minute: అర నిమిషం
|
80
|
+
less_than_x_minutes:
|
81
|
+
one: ఒక నిమిషం కన్నా తక్కువ
|
82
|
+
other: "%{count} నిమిషాల కన్నా తక్కువ"
|
83
|
+
less_than_x_seconds:
|
84
|
+
one: ఒక క్షణం కన్నా తక్కువ
|
85
|
+
other: "%{count} క్షణాలు కన్నా తక్కువ"
|
86
|
+
over_x_years:
|
87
|
+
one: ఒక సంవత్సరం పైగా
|
88
|
+
other: "%{count} సంవత్సరాల పైగా"
|
89
|
+
x_days:
|
90
|
+
one: ఒక రోజు
|
91
|
+
other: "%{count} రోజులు"
|
92
|
+
x_minutes:
|
93
|
+
one: ఒక నిమిషం
|
94
|
+
other: "%{count} నిమిషాలు"
|
95
|
+
x_months:
|
96
|
+
one: ఒక నెల
|
97
|
+
other: "%{count} నెలలు"
|
98
|
+
x_years:
|
99
|
+
one: ఒక సంవత్సరం
|
100
|
+
other: "%{count} సంవత్సరాలు"
|
101
|
+
x_seconds:
|
102
|
+
one: ఒక క్షణం
|
103
|
+
other: "%{count} క్షణాలు"
|
104
|
+
prompts:
|
105
|
+
day: రోజు
|
106
|
+
hour: గంట
|
107
|
+
minute: నిమిషం
|
108
|
+
month: నెల
|
109
|
+
second: క్షణాలు
|
110
|
+
year: సంవత్సరం
|
111
|
+
errors:
|
112
|
+
format: "%{attribute} %{message}"
|
113
|
+
messages:
|
114
|
+
accepted: అంగీకరించి ఉండాలి
|
115
|
+
blank: ఖాళీగా ఉండకూడదు
|
116
|
+
present: ఖాళీగా ఉండాలి
|
117
|
+
confirmation: "%{attribute} సరిపోలడం లేదు"
|
118
|
+
empty: శూన్యంగా ఉండకూడదు
|
119
|
+
equal_to: "%{count}కు సమానంగా ఉండాలి"
|
120
|
+
even: సరి సంఖ్య అయి ఉండాలి
|
121
|
+
exclusion: ప్రత్యేకించబడింది
|
122
|
+
greater_than: "%{count} కంటే ఎక్కువ ఉండాలి"
|
123
|
+
greater_than_or_equal_to: "%{count} కంటే ఎక్కువ లేదా సమానంగా ఉండాలి"
|
124
|
+
inclusion: జాబితాలో చేర్చబడలేదు
|
125
|
+
invalid: చెల్లనిది
|
126
|
+
less_than: "%{count} కంటే తక్కువ ఉండాలి"
|
127
|
+
less_than_or_equal_to: "%{count} నాలుగు కంటే తక్కువగా లేదా సమానంగా ఉండాలి"
|
128
|
+
model_invalid: "ధృవీకరణ విఫలమైంది: %{errors}"
|
129
|
+
not_a_number: సంఖ్య కాదు
|
130
|
+
not_an_integer: పూర్ణాంకంగా ఉండాలి
|
131
|
+
odd: బేసి సంఖ్య అయి ఉండాలి
|
132
|
+
required: ఉనికిలో ఉండాలి
|
133
|
+
taken: ఇప్పటికే తీసుకోబడింది
|
134
|
+
too_long:
|
135
|
+
one: చాలా పొడవుగా ఉంది (గరిష్టంగా ఒక అక్షరం)
|
136
|
+
other: చాలా పొడవుగా ఉంది (గరిష్టంగా %{count} అక్షరాలు)
|
137
|
+
too_short:
|
138
|
+
one: చాలా తక్కువగా ఉంది (కనీసం ఒక అక్షరం)
|
139
|
+
other: చాలా చిన్నది (కనీసం %{count} అక్షరాలు)
|
140
|
+
wrong_length:
|
141
|
+
one: తప్పు పొడవు (ఒక అక్షరం ఉండాలి)
|
142
|
+
other: తప్పు పొడవు (%{count} అక్షరాలు ఉండాలి)
|
143
|
+
other_than: "%{count} కన్నా వేరు ఉండాలి"
|
144
|
+
template:
|
145
|
+
body: 'కింది రంగాలలో సమస్యలు ఉన్నాయి:'
|
146
|
+
header:
|
147
|
+
one: ఒక తప్పు ఈ %{model} ను ఆదా చెయ్యకుండా నిషేదించింది
|
148
|
+
other: "%{count} తప్పులు ఈ %{model} ను ఆదా చెయ్యకుండా నిషేదించింది"
|
149
|
+
helpers:
|
150
|
+
select:
|
151
|
+
prompt: దయచేసి ఎంచుకోండి
|
152
|
+
submit:
|
153
|
+
create: "%{model} ను సృష్టించండి"
|
154
|
+
submit: "%{model} ను ఆదా చెయ్యండి"
|
155
|
+
update: "%{model} ను నవీకరించండి"
|
156
|
+
number:
|
157
|
+
currency:
|
158
|
+
format:
|
159
|
+
delimiter: ","
|
160
|
+
format: "%u%n"
|
161
|
+
precision: 2
|
162
|
+
separator: "."
|
163
|
+
significant: false
|
164
|
+
strip_insignificant_zeros: false
|
165
|
+
unit: "₹"
|
166
|
+
format:
|
167
|
+
delimiter: ","
|
168
|
+
precision: 3
|
169
|
+
separator: "."
|
170
|
+
significant: false
|
171
|
+
strip_insignificant_zeros: false
|
172
|
+
human:
|
173
|
+
decimal_units:
|
174
|
+
format: "%n %u"
|
175
|
+
units:
|
176
|
+
billion: బిలియన్
|
177
|
+
million: మిలియన్
|
178
|
+
quadrillion: క్వాడ్రిలియన్
|
179
|
+
thousand: వెయ్యి
|
180
|
+
trillion: ట్రిలియన్
|
181
|
+
unit: ''
|
182
|
+
format:
|
183
|
+
delimiter: ''
|
184
|
+
precision: 3
|
185
|
+
significant: true
|
186
|
+
strip_insignificant_zeros: true
|
187
|
+
storage_units:
|
188
|
+
format: "%n %u"
|
189
|
+
units:
|
190
|
+
byte:
|
191
|
+
one: బైట్
|
192
|
+
other: బైట్లు
|
193
|
+
gb: GB
|
194
|
+
kb: KB
|
195
|
+
mb: MB
|
196
|
+
tb: TB
|
197
|
+
percentage:
|
198
|
+
format:
|
199
|
+
delimiter: ''
|
200
|
+
format: "%n%"
|
201
|
+
precision:
|
202
|
+
format:
|
203
|
+
delimiter: ''
|
204
|
+
support:
|
205
|
+
array:
|
206
|
+
last_word_connector: ", మరియు "
|
207
|
+
two_words_connector: " మరియు "
|
208
|
+
words_connector: ", "
|
209
|
+
time:
|
210
|
+
am: am
|
211
|
+
formats:
|
212
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
213
|
+
long: "%B %d, %Y %H:%M"
|
214
|
+
short: "%d %b %H:%M"
|
215
|
+
pm: pm
|
data/rails/locale/uk.yml
CHANGED
@@ -114,7 +114,7 @@ uk:
|
|
114
114
|
one: "%{count} місяць"
|
115
115
|
other: "%{count} місяця"
|
116
116
|
x_years:
|
117
|
-
few: "%{count}
|
117
|
+
few: "%{count} роки"
|
118
118
|
many: "%{count} років"
|
119
119
|
one: "%{count} рік"
|
120
120
|
other: "%{count} року"
|
@@ -149,7 +149,7 @@ uk:
|
|
149
149
|
less_than_or_equal_to: має бути менше ніж або дорівнювати %{count}
|
150
150
|
model_invalid: 'Виникли помилки: %{errors}'
|
151
151
|
not_a_number: не число
|
152
|
-
not_an_integer: не
|
152
|
+
not_an_integer: не є цілим числом
|
153
153
|
odd: має бути непарним
|
154
154
|
required: не може бути порожнім
|
155
155
|
taken: вже зайнятий
|
data/rails/locale/vi.yml
CHANGED
@@ -145,11 +145,11 @@ vi:
|
|
145
145
|
format:
|
146
146
|
delimiter: "."
|
147
147
|
format: "%n %u"
|
148
|
-
precision:
|
148
|
+
precision: 0
|
149
149
|
separator: ","
|
150
150
|
significant: false
|
151
151
|
strip_insignificant_zeros: false
|
152
|
-
unit:
|
152
|
+
unit: VNĐ
|
153
153
|
format:
|
154
154
|
delimiter: "."
|
155
155
|
precision: 3
|
data/rails/locale/zh-CN.yml
CHANGED
@@ -0,0 +1,24 @@
|
|
1
|
+
az:
|
2
|
+
i18n:
|
3
|
+
transliterate:
|
4
|
+
rule:
|
5
|
+
c: "j"
|
6
|
+
ç: "ch"
|
7
|
+
ə: "e"
|
8
|
+
ğ: "gh"
|
9
|
+
x: "kh"
|
10
|
+
ı: "i"
|
11
|
+
j: "zh"
|
12
|
+
q: "g"
|
13
|
+
ş: "sh"
|
14
|
+
ü: "u"
|
15
|
+
C: "J"
|
16
|
+
Ç: "Ch"
|
17
|
+
Ə: "E"
|
18
|
+
Ğ: "Gh"
|
19
|
+
X: "Kh"
|
20
|
+
İ: "I"
|
21
|
+
J: "Zh"
|
22
|
+
Q: "G"
|
23
|
+
Ş: "Sh"
|
24
|
+
Ü: "U"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-i18n
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.1.
|
4
|
+
version: 5.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rails I18n Group
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: i18n
|
@@ -209,6 +209,7 @@ files:
|
|
209
209
|
- rails/locale/sv.yml
|
210
210
|
- rails/locale/sw.yml
|
211
211
|
- rails/locale/ta.yml
|
212
|
+
- rails/locale/te.yml
|
212
213
|
- rails/locale/th.yml
|
213
214
|
- rails/locale/tl.yml
|
214
215
|
- rails/locale/tr.yml
|
@@ -272,7 +273,6 @@ files:
|
|
272
273
|
- rails/pluralization/fa.rb
|
273
274
|
- rails/pluralization/ff.rb
|
274
275
|
- rails/pluralization/fi.rb
|
275
|
-
- rails/pluralization/fil.rb
|
276
276
|
- rails/pluralization/fr-CA.rb
|
277
277
|
- rails/pluralization/fr-CH.rb
|
278
278
|
- rails/pluralization/fr-FR.rb
|
@@ -368,6 +368,7 @@ files:
|
|
368
368
|
- rails/pluralization/zh-TW.rb
|
369
369
|
- rails/pluralization/zh-YUE.rb
|
370
370
|
- rails/pluralization/zh.rb
|
371
|
+
- rails/transliteration/az.yml
|
371
372
|
- rails/transliteration/bg.yml
|
372
373
|
- rails/transliteration/ca.yml
|
373
374
|
- rails/transliteration/de.yml
|
data/rails/pluralization/fil.rb
DELETED