rails-i18n 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE.txt +21 -0
- data/README.md +118 -0
- data/lib/rails-i18n.rb +4 -0
- data/rails/locale/ar.yml +226 -0
- data/rails/locale/bg.yml +322 -0
- data/rails/locale/bn-IN.yml +223 -0
- data/rails/locale/bs.yml +157 -0
- data/rails/locale/ca.yml +253 -0
- data/rails/locale/cs.rb +229 -0
- data/rails/locale/cy.yml +221 -0
- data/rails/locale/da.yml +235 -0
- data/rails/locale/de-AT.yml +194 -0
- data/rails/locale/de-CH.yml +194 -0
- data/rails/locale/de.yml +233 -0
- data/rails/locale/dsb.yml +225 -0
- data/rails/locale/el.yml +173 -0
- data/rails/locale/en-AU.yml +220 -0
- data/rails/locale/en-GB.yml +220 -0
- data/rails/locale/en-US.yml +222 -0
- data/rails/locale/eo.yml +222 -0
- data/rails/locale/es-AR.yml +219 -0
- data/rails/locale/es-CL.yml +224 -0
- data/rails/locale/es-CO.yml +220 -0
- data/rails/locale/es-MX.yml +227 -0
- data/rails/locale/es-PE.yml +170 -0
- data/rails/locale/es.yml +225 -0
- data/rails/locale/et.yml +260 -0
- data/rails/locale/eu.yml +224 -0
- data/rails/locale/fa.yml +222 -0
- data/rails/locale/fi.yml +225 -0
- data/rails/locale/fr-CA.yml +227 -0
- data/rails/locale/fr-CH.yml +224 -0
- data/rails/locale/fr.yml +222 -0
- data/rails/locale/fur.yml +184 -0
- data/rails/locale/gl-ES.yml +236 -0
- data/rails/locale/gsw-CH.yml +222 -0
- data/rails/locale/he.yml +227 -0
- data/rails/locale/hi-IN.yml +221 -0
- data/rails/locale/hi.yml +221 -0
- data/rails/locale/hr.yml +159 -0
- data/rails/locale/hsb.yml +233 -0
- data/rails/locale/hu.yml +215 -0
- data/rails/locale/id.yml +187 -0
- data/rails/locale/is.yml +230 -0
- data/rails/locale/it.yml +235 -0
- data/rails/locale/ja.yml +228 -0
- data/rails/locale/kn.yml +222 -0
- data/rails/locale/ko.yml +228 -0
- data/rails/locale/lo.yml +244 -0
- data/rails/locale/lt.yml +184 -0
- data/rails/locale/lv.yml +221 -0
- data/rails/locale/mk.yml +158 -0
- data/rails/locale/mn.yml +199 -0
- data/rails/locale/nb.yml +220 -0
- data/rails/locale/nl.yml +226 -0
- data/rails/locale/nn.yml +139 -0
- data/rails/locale/pl.yml +234 -0
- data/rails/locale/pt-BR.yml +239 -0
- data/rails/locale/pt-PT.yml +230 -0
- data/rails/locale/rm.yml +177 -0
- data/rails/locale/ro.yml +211 -0
- data/rails/locale/ru.yml +376 -0
- data/rails/locale/sk.yml +236 -0
- data/rails/locale/sl.yml +233 -0
- data/rails/locale/sr-Latn.yml +159 -0
- data/rails/locale/sr.yml +159 -0
- data/rails/locale/sv-SE.yml +273 -0
- data/rails/locale/sw.yml +222 -0
- data/rails/locale/th.rb +199 -0
- data/rails/locale/tr.yml +181 -0
- data/rails/locale/uk.yml +351 -0
- data/rails/locale/vi.yml +241 -0
- data/rails/locale/zh-CN.yml +250 -0
- data/rails/locale/zh-TW.yml +250 -0
- metadata +153 -0
@@ -0,0 +1,220 @@
|
|
1
|
+
# GB English translations for Ruby on Rails
|
2
|
+
|
3
|
+
"en-GB":
|
4
|
+
date:
|
5
|
+
formats:
|
6
|
+
default: "%d-%m-%Y"
|
7
|
+
short: "%d %b"
|
8
|
+
long: "%d %B, %Y"
|
9
|
+
|
10
|
+
day_names:
|
11
|
+
- Sunday
|
12
|
+
- Monday
|
13
|
+
- Tuesday
|
14
|
+
- Wednesday
|
15
|
+
- Thursday
|
16
|
+
- Friday
|
17
|
+
- Saturday
|
18
|
+
abbr_day_names:
|
19
|
+
- Sun
|
20
|
+
- Mon
|
21
|
+
- Tue
|
22
|
+
- Wed
|
23
|
+
- Thu
|
24
|
+
- Fri
|
25
|
+
- Sat
|
26
|
+
|
27
|
+
month_names:
|
28
|
+
- ~
|
29
|
+
- January
|
30
|
+
- February
|
31
|
+
- March
|
32
|
+
- April
|
33
|
+
- May
|
34
|
+
- June
|
35
|
+
- July
|
36
|
+
- August
|
37
|
+
- September
|
38
|
+
- October
|
39
|
+
- November
|
40
|
+
- December
|
41
|
+
abbr_month_names:
|
42
|
+
- ~
|
43
|
+
- Jan
|
44
|
+
- Feb
|
45
|
+
- Mar
|
46
|
+
- Apr
|
47
|
+
- May
|
48
|
+
- Jun
|
49
|
+
- Jul
|
50
|
+
- Aug
|
51
|
+
- Sep
|
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:%S %z"
|
63
|
+
short: "%d %b %H:%M"
|
64
|
+
long: "%d %B, %Y %H:%M"
|
65
|
+
am: "am"
|
66
|
+
pm: "pm"
|
67
|
+
|
68
|
+
support:
|
69
|
+
array:
|
70
|
+
words_connector: ", "
|
71
|
+
two_words_connector: " and "
|
72
|
+
last_word_connector: ", and "
|
73
|
+
|
74
|
+
select:
|
75
|
+
prompt: "Please select"
|
76
|
+
|
77
|
+
number:
|
78
|
+
format:
|
79
|
+
separator: "."
|
80
|
+
delimiter: ","
|
81
|
+
precision: 3
|
82
|
+
significant: false
|
83
|
+
strip_insignificant_zeros: false
|
84
|
+
|
85
|
+
currency:
|
86
|
+
format:
|
87
|
+
format: "%u%n"
|
88
|
+
unit: "£"
|
89
|
+
separator: "."
|
90
|
+
delimiter: ","
|
91
|
+
precision: 2
|
92
|
+
significant: false
|
93
|
+
strip_insignificant_zeros: false
|
94
|
+
|
95
|
+
percentage:
|
96
|
+
format:
|
97
|
+
delimiter: ""
|
98
|
+
|
99
|
+
precision:
|
100
|
+
format:
|
101
|
+
delimiter: ""
|
102
|
+
|
103
|
+
human:
|
104
|
+
format:
|
105
|
+
delimiter: ""
|
106
|
+
precision: 3
|
107
|
+
significant: true
|
108
|
+
strip_insignificant_zeros: true
|
109
|
+
storage_units:
|
110
|
+
format: "%n %u"
|
111
|
+
units:
|
112
|
+
byte:
|
113
|
+
one: "Byte"
|
114
|
+
other: "Bytes"
|
115
|
+
kb: "KB"
|
116
|
+
mb: "MB"
|
117
|
+
gb: "GB"
|
118
|
+
tb: "TB"
|
119
|
+
decimal_units:
|
120
|
+
format: "%n %u"
|
121
|
+
units:
|
122
|
+
unit: ""
|
123
|
+
thousand: Thousand
|
124
|
+
million: Million
|
125
|
+
billion: Billion
|
126
|
+
trillion: Trillion
|
127
|
+
quadrillion: Quadrillion
|
128
|
+
|
129
|
+
datetime:
|
130
|
+
distance_in_words:
|
131
|
+
half_a_minute: "half a minute"
|
132
|
+
less_than_x_seconds:
|
133
|
+
one: "less than 1 second"
|
134
|
+
other: "less than %{count} seconds"
|
135
|
+
x_seconds:
|
136
|
+
one: "1 second"
|
137
|
+
other: "%{count} seconds"
|
138
|
+
less_than_x_minutes:
|
139
|
+
one: "less than a minute"
|
140
|
+
other: "less than %{count} minutes"
|
141
|
+
x_minutes:
|
142
|
+
one: "1 minute"
|
143
|
+
other: "%{count} minutes"
|
144
|
+
about_x_hours:
|
145
|
+
one: "about 1 hour"
|
146
|
+
other: "about %{count} hours"
|
147
|
+
x_days:
|
148
|
+
one: "1 day"
|
149
|
+
other: "%{count} days"
|
150
|
+
about_x_months:
|
151
|
+
one: "about 1 month"
|
152
|
+
other: "about %{count} months"
|
153
|
+
x_months:
|
154
|
+
one: "1 month"
|
155
|
+
other: "%{count} months"
|
156
|
+
about_x_years:
|
157
|
+
one: "about 1 year"
|
158
|
+
other: "about %{count} years"
|
159
|
+
over_x_years:
|
160
|
+
one: "over 1 year"
|
161
|
+
other: "over %{count} years"
|
162
|
+
almost_x_years:
|
163
|
+
one: "almost 1 year"
|
164
|
+
other: "almost %{count} years"
|
165
|
+
prompts:
|
166
|
+
year: "Year"
|
167
|
+
month: "Month"
|
168
|
+
day: "Day"
|
169
|
+
hour: "Hour"
|
170
|
+
minute: "Minute"
|
171
|
+
second: "Seconds"
|
172
|
+
|
173
|
+
helpers:
|
174
|
+
select:
|
175
|
+
prompt: "Please select"
|
176
|
+
|
177
|
+
submit:
|
178
|
+
create: 'Create %{model}'
|
179
|
+
update: 'Update %{model}'
|
180
|
+
submit: 'Save %{model}'
|
181
|
+
|
182
|
+
errors:
|
183
|
+
format: "%{attribute} %{message}"
|
184
|
+
|
185
|
+
messages: &errors_messages
|
186
|
+
inclusion: "is not included in the list"
|
187
|
+
exclusion: "is reserved"
|
188
|
+
invalid: "is invalid"
|
189
|
+
confirmation: "doesn't match confirmation"
|
190
|
+
accepted: "must be accepted"
|
191
|
+
empty: "can't be empty"
|
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)"
|
196
|
+
not_a_number: "is not a number"
|
197
|
+
not_an_integer: "must be an integer"
|
198
|
+
greater_than: "must be greater than %{count}"
|
199
|
+
greater_than_or_equal_to: "must be greater than or equal to %{count}"
|
200
|
+
equal_to: "must be equal to %{count}"
|
201
|
+
less_than: "must be less than %{count}"
|
202
|
+
less_than_or_equal_to: "must be less than or equal to %{count}"
|
203
|
+
odd: "must be odd"
|
204
|
+
even: "must be even"
|
205
|
+
|
206
|
+
activerecord:
|
207
|
+
errors:
|
208
|
+
template:
|
209
|
+
header:
|
210
|
+
one: "1 error prohibited this %{model} from being saved"
|
211
|
+
other: "%{count} errors prohibited this %{model} from being saved"
|
212
|
+
body: "There were problems with the following fields:"
|
213
|
+
|
214
|
+
messages:
|
215
|
+
taken: "has already been taken"
|
216
|
+
record_invalid: "Validation failed: %{errors}"
|
217
|
+
<<: *errors_messages
|
218
|
+
|
219
|
+
full_messages:
|
220
|
+
format: "%{attribute} %{message}"
|
@@ -0,0 +1,222 @@
|
|
1
|
+
# US English translations for Ruby on Rails
|
2
|
+
#
|
3
|
+
# Use this as the base for the locale file of your language.
|
4
|
+
|
5
|
+
"en-US":
|
6
|
+
date:
|
7
|
+
formats:
|
8
|
+
default: "%Y-%m-%d"
|
9
|
+
short: "%b %d"
|
10
|
+
long: "%B %d, %Y"
|
11
|
+
|
12
|
+
day_names:
|
13
|
+
- Sunday
|
14
|
+
- Monday
|
15
|
+
- Tuesday
|
16
|
+
- Wednesday
|
17
|
+
- Thursday
|
18
|
+
- Friday
|
19
|
+
- Saturday
|
20
|
+
abbr_day_names:
|
21
|
+
- Sun
|
22
|
+
- Mon
|
23
|
+
- Tue
|
24
|
+
- Wed
|
25
|
+
- Thu
|
26
|
+
- Fri
|
27
|
+
- Sat
|
28
|
+
|
29
|
+
month_names:
|
30
|
+
- ~
|
31
|
+
- January
|
32
|
+
- February
|
33
|
+
- March
|
34
|
+
- April
|
35
|
+
- May
|
36
|
+
- June
|
37
|
+
- July
|
38
|
+
- August
|
39
|
+
- September
|
40
|
+
- October
|
41
|
+
- November
|
42
|
+
- December
|
43
|
+
abbr_month_names:
|
44
|
+
- ~
|
45
|
+
- Jan
|
46
|
+
- Feb
|
47
|
+
- Mar
|
48
|
+
- Apr
|
49
|
+
- May
|
50
|
+
- Jun
|
51
|
+
- Jul
|
52
|
+
- Aug
|
53
|
+
- Sep
|
54
|
+
- Oct
|
55
|
+
- Nov
|
56
|
+
- Dec
|
57
|
+
order:
|
58
|
+
- :year
|
59
|
+
- :month
|
60
|
+
- :day
|
61
|
+
|
62
|
+
time:
|
63
|
+
formats:
|
64
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
65
|
+
short: "%d %b %H:%M"
|
66
|
+
long: "%B %d, %Y %H:%M"
|
67
|
+
am: "am"
|
68
|
+
pm: "pm"
|
69
|
+
|
70
|
+
support:
|
71
|
+
array:
|
72
|
+
words_connector: ", "
|
73
|
+
two_words_connector: " and "
|
74
|
+
last_word_connector: ", and "
|
75
|
+
|
76
|
+
select:
|
77
|
+
prompt: "Please select"
|
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: 3
|
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: Thousand
|
126
|
+
million: Million
|
127
|
+
billion: Billion
|
128
|
+
trillion: Trillion
|
129
|
+
quadrillion: Quadrillion
|
130
|
+
|
131
|
+
datetime:
|
132
|
+
distance_in_words:
|
133
|
+
half_a_minute: "half a minute"
|
134
|
+
less_than_x_seconds:
|
135
|
+
one: "less than 1 second"
|
136
|
+
other: "less than %{count} seconds"
|
137
|
+
x_seconds:
|
138
|
+
one: "1 second"
|
139
|
+
other: "%{count} seconds"
|
140
|
+
less_than_x_minutes:
|
141
|
+
one: "less than a minute"
|
142
|
+
other: "less than %{count} minutes"
|
143
|
+
x_minutes:
|
144
|
+
one: "1 minute"
|
145
|
+
other: "%{count} minutes"
|
146
|
+
about_x_hours:
|
147
|
+
one: "about 1 hour"
|
148
|
+
other: "about %{count} hours"
|
149
|
+
x_days:
|
150
|
+
one: "1 day"
|
151
|
+
other: "%{count} days"
|
152
|
+
about_x_months:
|
153
|
+
one: "about 1 month"
|
154
|
+
other: "about %{count} months"
|
155
|
+
x_months:
|
156
|
+
one: "1 month"
|
157
|
+
other: "%{count} months"
|
158
|
+
about_x_years:
|
159
|
+
one: "about 1 year"
|
160
|
+
other: "about %{count} years"
|
161
|
+
over_x_years:
|
162
|
+
one: "over 1 year"
|
163
|
+
other: "over %{count} years"
|
164
|
+
almost_x_years:
|
165
|
+
one: "almost 1 year"
|
166
|
+
other: "almost %{count} years"
|
167
|
+
prompts:
|
168
|
+
year: "Year"
|
169
|
+
month: "Month"
|
170
|
+
day: "Day"
|
171
|
+
hour: "Hour"
|
172
|
+
minute: "Minute"
|
173
|
+
second: "Seconds"
|
174
|
+
|
175
|
+
helpers:
|
176
|
+
select:
|
177
|
+
prompt: "Please select"
|
178
|
+
|
179
|
+
submit:
|
180
|
+
create: 'Create %{model}'
|
181
|
+
update: 'Update %{model}'
|
182
|
+
submit: 'Save %{model}'
|
183
|
+
|
184
|
+
errors:
|
185
|
+
format: "%{attribute} %{message}"
|
186
|
+
|
187
|
+
messages: &errors_messages
|
188
|
+
inclusion: "is not included in the list"
|
189
|
+
exclusion: "is reserved"
|
190
|
+
invalid: "is invalid"
|
191
|
+
confirmation: "doesn't match confirmation"
|
192
|
+
accepted: "must be accepted"
|
193
|
+
empty: "can't be empty"
|
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)"
|
198
|
+
not_a_number: "is not a number"
|
199
|
+
not_an_integer: "must be an integer"
|
200
|
+
greater_than: "must be greater than %{count}"
|
201
|
+
greater_than_or_equal_to: "must be greater than or equal to %{count}"
|
202
|
+
equal_to: "must be equal to %{count}"
|
203
|
+
less_than: "must be less than %{count}"
|
204
|
+
less_than_or_equal_to: "must be less than or equal to %{count}"
|
205
|
+
odd: "must be odd"
|
206
|
+
even: "must be even"
|
207
|
+
|
208
|
+
activerecord:
|
209
|
+
errors:
|
210
|
+
template:
|
211
|
+
header:
|
212
|
+
one: "1 error prohibited this %{model} from being saved"
|
213
|
+
other: "%{count} errors prohibited this %{model} from being saved"
|
214
|
+
body: "There were problems with the following fields:"
|
215
|
+
|
216
|
+
messages:
|
217
|
+
taken: "has already been taken"
|
218
|
+
record_invalid: "Validation failed: %{errors}"
|
219
|
+
<<: *errors_messages
|
220
|
+
|
221
|
+
full_messages:
|
222
|
+
format: "%{attribute} %{message}"
|
data/rails/locale/eo.yml
ADDED
@@ -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}"
|