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.
- data/app/controllers/globalize_translations_controller.rb +1 -1
- data/config/locales/ar.yml +226 -0
- data/config/locales/bg.yml +304 -0
- data/config/locales/bs.yml +270 -0
- data/config/locales/ca.yml +253 -0
- data/config/locales/cs.rb +229 -0
- data/config/locales/cy.yml +221 -0
- data/config/locales/da.yml +235 -0
- data/config/locales/de.yml +233 -0
- data/config/locales/el.yml +227 -0
- data/config/locales/en.yml +222 -0
- data/config/locales/eo.yml +222 -0
- data/config/locales/es.yml +225 -0
- data/config/locales/et.yml +260 -0
- data/config/locales/eu.yml +224 -0
- data/config/locales/fa.yml +222 -0
- data/config/locales/fi.yml +225 -0
- data/config/locales/fr.yml +222 -0
- data/config/locales/gl.yml +236 -0
- data/config/locales/he.yml +227 -0
- data/config/locales/hi.yml +221 -0
- data/config/locales/hr.yml +159 -0
- data/config/locales/hu.yml +215 -0
- data/config/locales/id.yml +187 -0
- data/config/locales/is.yml +230 -0
- data/config/locales/it.yml +235 -0
- data/config/locales/ja.yml +228 -0
- data/config/locales/kn.yml +222 -0
- data/config/locales/ko.yml +228 -0
- data/config/locales/lo.yml +244 -0
- data/config/locales/lt.yml +184 -0
- data/config/locales/lv.yml +221 -0
- data/config/locales/mk.yml +158 -0
- data/config/locales/mn.yml +199 -0
- data/config/locales/nb.yml +220 -0
- data/config/locales/nl.yml +226 -0
- data/config/locales/nn.yml +139 -0
- data/config/locales/pl.yml +234 -0
- data/config/locales/pt.yml +230 -0
- data/config/locales/rm.yml +177 -0
- data/config/locales/ro.yml +211 -0
- data/config/locales/ru.yml +376 -0
- data/config/locales/sk.yml +236 -0
- data/config/locales/sl.yml +233 -0
- data/config/locales/sr.yml +159 -0
- data/config/locales/sv.yml +273 -0
- data/config/locales/sw.yml +222 -0
- data/config/locales/th.rb +199 -0
- data/config/locales/tr.yml +181 -0
- data/config/locales/uk.yml +351 -0
- data/config/locales/vi.yml +241 -0
- data/config/locales/zh.yml +250 -0
- data/lib/exvo_globalize/backend/chain.rb +20 -0
- data/lib/exvo_globalize/version.rb +1 -1
- data/spec/controllers/globalize_translations_controller_spec.rb +1 -3
- data/spec/exvo_globalize/globalize_store_spec.rb +5 -0
- metadata +56 -5
@@ -0,0 +1,233 @@
|
|
1
|
+
# German translations for Ruby on Rails
|
2
|
+
# by Clemens Kofler (clemens@railway.at)
|
3
|
+
# contributors:
|
4
|
+
# - Alexander Dreher - http://github.com/alexdreher - Rails 3 update
|
5
|
+
|
6
|
+
de:
|
7
|
+
date:
|
8
|
+
formats:
|
9
|
+
default: "%d.%m.%Y"
|
10
|
+
short: "%e. %b"
|
11
|
+
long: "%e. %B %Y"
|
12
|
+
only_day: "%e"
|
13
|
+
|
14
|
+
day_names:
|
15
|
+
- Sonntag
|
16
|
+
- Montag
|
17
|
+
- Dienstag
|
18
|
+
- Mittwoch
|
19
|
+
- Donnerstag
|
20
|
+
- Freitag
|
21
|
+
- Samstag
|
22
|
+
abbr_day_names:
|
23
|
+
- So
|
24
|
+
- Mo
|
25
|
+
- Di
|
26
|
+
- Mi
|
27
|
+
- Do
|
28
|
+
- Fr
|
29
|
+
- Sa
|
30
|
+
month_names:
|
31
|
+
- ~
|
32
|
+
- Januar
|
33
|
+
- Februar
|
34
|
+
- März
|
35
|
+
- April
|
36
|
+
- Mai
|
37
|
+
- Juni
|
38
|
+
- Juli
|
39
|
+
- August
|
40
|
+
- September
|
41
|
+
- Oktober
|
42
|
+
- November
|
43
|
+
- Dezember
|
44
|
+
abbr_month_names:
|
45
|
+
- ~
|
46
|
+
- Jan
|
47
|
+
- Feb
|
48
|
+
- Mär
|
49
|
+
- Apr
|
50
|
+
- Mai
|
51
|
+
- Jun
|
52
|
+
- Jul
|
53
|
+
- Aug
|
54
|
+
- Sep
|
55
|
+
- Okt
|
56
|
+
- Nov
|
57
|
+
- Dez
|
58
|
+
order:
|
59
|
+
- :day
|
60
|
+
- :month
|
61
|
+
- :year
|
62
|
+
|
63
|
+
time:
|
64
|
+
formats:
|
65
|
+
default: "%A, %d. %B %Y, %H:%M Uhr"
|
66
|
+
short: "%d. %B, %H:%M Uhr"
|
67
|
+
long: "%A, %d. %B %Y, %H:%M Uhr"
|
68
|
+
time: "%H:%M"
|
69
|
+
|
70
|
+
am: "vormittags"
|
71
|
+
pm: "nachmittags"
|
72
|
+
|
73
|
+
datetime:
|
74
|
+
distance_in_words:
|
75
|
+
half_a_minute: 'eine halbe Minute'
|
76
|
+
less_than_x_seconds:
|
77
|
+
one: 'weniger als eine Sekunde'
|
78
|
+
other: 'weniger als %{count} Sekunden'
|
79
|
+
x_seconds:
|
80
|
+
one: 'eine Sekunde'
|
81
|
+
other: '%{count} Sekunden'
|
82
|
+
less_than_x_minutes:
|
83
|
+
one: 'weniger als eine Minute'
|
84
|
+
other: 'weniger als %{count} Minuten'
|
85
|
+
x_minutes:
|
86
|
+
one: 'eine Minute'
|
87
|
+
other: '%{count} Minuten'
|
88
|
+
about_x_hours:
|
89
|
+
one: 'etwa eine Stunde'
|
90
|
+
other: 'etwa %{count} Stunden'
|
91
|
+
x_days:
|
92
|
+
one: 'ein Tag'
|
93
|
+
other: '%{count} Tage'
|
94
|
+
about_x_months:
|
95
|
+
one: 'etwa ein Monat'
|
96
|
+
other: 'etwa %{count} Monate'
|
97
|
+
x_months:
|
98
|
+
one: 'ein Monat'
|
99
|
+
other: '%{count} Monate'
|
100
|
+
almost_x_years:
|
101
|
+
one: 'fast ein Jahr'
|
102
|
+
other: 'fast %{count} Jahre'
|
103
|
+
about_x_years:
|
104
|
+
one: 'etwa ein Jahr'
|
105
|
+
other: 'etwa %{count} Jahre'
|
106
|
+
over_x_years:
|
107
|
+
one: 'mehr als ein Jahr'
|
108
|
+
other: 'mehr als %{count} Jahre'
|
109
|
+
prompts:
|
110
|
+
second: "Sekunden"
|
111
|
+
minute: "Minuten"
|
112
|
+
hour: "Stunden"
|
113
|
+
day: "Tag"
|
114
|
+
month: "Monat"
|
115
|
+
year: "Jahr"
|
116
|
+
|
117
|
+
number:
|
118
|
+
format:
|
119
|
+
precision: 2
|
120
|
+
separator: ','
|
121
|
+
delimiter: '.'
|
122
|
+
significant: false
|
123
|
+
strip_insignificant_zeros: false
|
124
|
+
currency:
|
125
|
+
format:
|
126
|
+
unit: '€'
|
127
|
+
format: '%n %u'
|
128
|
+
separator: ","
|
129
|
+
delimiter: "."
|
130
|
+
precision: 2
|
131
|
+
significant: false
|
132
|
+
strip_insignificant_zeros: false
|
133
|
+
percentage:
|
134
|
+
format:
|
135
|
+
delimiter: ""
|
136
|
+
precision:
|
137
|
+
format:
|
138
|
+
delimiter: ""
|
139
|
+
human:
|
140
|
+
format:
|
141
|
+
delimiter: ""
|
142
|
+
precision: 1
|
143
|
+
significant: true
|
144
|
+
strip_insignificant_zeros: true
|
145
|
+
storage_units:
|
146
|
+
# Storage units output formatting.
|
147
|
+
# %u is the storage unit, %n is the number (default: 2 MB)
|
148
|
+
format: "%n %u"
|
149
|
+
units:
|
150
|
+
byte:
|
151
|
+
one: "Byte"
|
152
|
+
other: "Bytes"
|
153
|
+
kb: "KB"
|
154
|
+
mb: "MB"
|
155
|
+
gb: "GB"
|
156
|
+
tb: "TB"
|
157
|
+
decimal_units:
|
158
|
+
format: "%n %u"
|
159
|
+
units:
|
160
|
+
unit: ""
|
161
|
+
thousand: Tausend
|
162
|
+
million: Millionen
|
163
|
+
billion:
|
164
|
+
one: Milliarde
|
165
|
+
others: Milliarden
|
166
|
+
trillion: Billionen
|
167
|
+
quadrillion:
|
168
|
+
one: Billiarde
|
169
|
+
others: Billiarden
|
170
|
+
|
171
|
+
support:
|
172
|
+
array:
|
173
|
+
words_connector: ", "
|
174
|
+
two_words_connector: " und "
|
175
|
+
last_word_connector: " und "
|
176
|
+
select:
|
177
|
+
prompt: "Bitte wählen:"
|
178
|
+
|
179
|
+
activemodel:
|
180
|
+
errors:
|
181
|
+
template:
|
182
|
+
header:
|
183
|
+
one: "Konnte %{model} nicht speichern: ein Fehler."
|
184
|
+
other: "Konnte %{model} nicht speichern: %{count} Fehler."
|
185
|
+
body: "Bitte überprüfen Sie die folgenden Felder:"
|
186
|
+
helpers:
|
187
|
+
select:
|
188
|
+
prompt: "Bitte wählen"
|
189
|
+
|
190
|
+
submit:
|
191
|
+
create: '%{model} erstellen'
|
192
|
+
update: '%{model} aktualisieren'
|
193
|
+
submit: '%{model} speichern'
|
194
|
+
|
195
|
+
errors:
|
196
|
+
format: "%{attribute} %{message}"
|
197
|
+
|
198
|
+
messages: &errors_messages
|
199
|
+
inclusion: "ist kein gültiger Wert"
|
200
|
+
exclusion: "ist nicht verfügbar"
|
201
|
+
invalid: "ist nicht gültig"
|
202
|
+
confirmation: "stimmt nicht mit der Bestätigung überein"
|
203
|
+
accepted: "muss akzeptiert werden"
|
204
|
+
empty: "muss ausgefüllt werden"
|
205
|
+
blank: "muss ausgefüllt werden"
|
206
|
+
too_long: "ist zu lang (nicht mehr als %{count} Zeichen)"
|
207
|
+
too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)"
|
208
|
+
wrong_length: "hat die falsche Länge (muss genau %{count} Zeichen haben)"
|
209
|
+
not_a_number: "ist keine Zahl"
|
210
|
+
greater_than: "muss größer als %{count} sein"
|
211
|
+
greater_than_or_equal_to: "muss größer oder gleich %{count} sein"
|
212
|
+
equal_to: "muss genau %{count} sein"
|
213
|
+
less_than: "muss kleiner als %{count} sein"
|
214
|
+
less_than_or_equal_to: "muss kleiner oder gleich %{count} sein"
|
215
|
+
odd: "muss ungerade sein"
|
216
|
+
even: "muss gerade sein"
|
217
|
+
not_an_integer: "muss ganzzahlig sein"
|
218
|
+
|
219
|
+
activerecord:
|
220
|
+
errors:
|
221
|
+
template:
|
222
|
+
header:
|
223
|
+
one: "Konnte %{model} nicht speichern: ein Fehler."
|
224
|
+
other: "Konnte %{model} nicht speichern: %{count} Fehler."
|
225
|
+
body: "Bitte überprüfen Sie die folgenden Felder:"
|
226
|
+
|
227
|
+
messages:
|
228
|
+
taken: "ist bereits vergeben"
|
229
|
+
record_invalid: "Gültigkeitsprüfung ist fehlgeschlagen: %{errors}"
|
230
|
+
<<: *errors_messages
|
231
|
+
|
232
|
+
full_messages:
|
233
|
+
format: "%{attribute} %{message}"
|
@@ -0,0 +1,227 @@
|
|
1
|
+
# Greek translations for Ruby on Rails
|
2
|
+
# contributors:
|
3
|
+
# - Tsutomu Kuroda - t-kuroda@oiax.jp - Rails 3 update
|
4
|
+
|
5
|
+
el:
|
6
|
+
date:
|
7
|
+
formats:
|
8
|
+
default: "%d/%m/%Y"
|
9
|
+
short: "%d %b"
|
10
|
+
long: "%e %B %Y"
|
11
|
+
long_ordinal: "%e %B %Y"
|
12
|
+
only_day: "%e"
|
13
|
+
|
14
|
+
day_names:
|
15
|
+
- Κυριακή
|
16
|
+
- Δευτέρα
|
17
|
+
- Τρίτη
|
18
|
+
- Τετάρτη
|
19
|
+
- Πέμπτη
|
20
|
+
- Παρασκευή
|
21
|
+
- Σάββατο
|
22
|
+
abbr_day_names:
|
23
|
+
- Κυρ
|
24
|
+
- Δευ
|
25
|
+
- Τρι
|
26
|
+
- Τετ
|
27
|
+
- Πεμ
|
28
|
+
- Παρ
|
29
|
+
- Σαβ
|
30
|
+
month_names:
|
31
|
+
- ~
|
32
|
+
- Ιανουάριος
|
33
|
+
- Φεβρουάριος
|
34
|
+
- Μάρτιος
|
35
|
+
- Απρίλιος
|
36
|
+
- Μάιος
|
37
|
+
- Ιούνιος
|
38
|
+
- Ιούλιος
|
39
|
+
- Αύγουστος
|
40
|
+
- Σεπτέμβριος
|
41
|
+
- Οκτώβριος
|
42
|
+
- Νοέμβριος
|
43
|
+
- Δεκέμβριος
|
44
|
+
abbr_month_names:
|
45
|
+
- ~
|
46
|
+
- Ιαν.
|
47
|
+
- Φεβ.
|
48
|
+
- Μάρ.
|
49
|
+
- Απρ.
|
50
|
+
- Μαι.
|
51
|
+
- Ιουν.
|
52
|
+
- Ιούλ.
|
53
|
+
- Αυγ.
|
54
|
+
- Σεπ.
|
55
|
+
- Οκτ.
|
56
|
+
- Νοε.
|
57
|
+
- Δεκ.
|
58
|
+
order:
|
59
|
+
- :day
|
60
|
+
- :month
|
61
|
+
- :year
|
62
|
+
|
63
|
+
time:
|
64
|
+
formats:
|
65
|
+
default: "%d %B %Y %H:%M"
|
66
|
+
time: "%H:%M"
|
67
|
+
short: "%d %b %H:%M"
|
68
|
+
long: "%A %d %B %Y %H:%M:%S %Z"
|
69
|
+
long_ordinal: "%A %d %B %Y %H:%M:%S %Z"
|
70
|
+
only_second: "%S"
|
71
|
+
am: 'πμ'
|
72
|
+
pm: 'μμ'
|
73
|
+
|
74
|
+
datetime:
|
75
|
+
distance_in_words:
|
76
|
+
half_a_minute: "μισό λεπτό"
|
77
|
+
less_than_x_seconds:
|
78
|
+
one: "λιγότερο από ένα δευτερόλεπτο"
|
79
|
+
other: "λιγότερο από %{count} δευτερόλεπτα"
|
80
|
+
x_seconds:
|
81
|
+
one: "1 δευτερόλεπτο"
|
82
|
+
other: "%{count} δευτερόλεπτα"
|
83
|
+
less_than_x_minutes:
|
84
|
+
one: "λιγότερο από ένα λεπτό"
|
85
|
+
other: "λιγότερο από %{count} λεπτά"
|
86
|
+
x_minutes:
|
87
|
+
one: "1 λεπτό"
|
88
|
+
other: "%{count} λεπτά"
|
89
|
+
about_x_hours:
|
90
|
+
one: "περίπου μία ώρα"
|
91
|
+
other: "περίπου %{count} ώρες"
|
92
|
+
x_days:
|
93
|
+
one: "1 ώρα"
|
94
|
+
other: "%{count} ώρες"
|
95
|
+
about_x_months:
|
96
|
+
one: "περίπου ένα μήνα"
|
97
|
+
other: "περίπου %{count} μήνες"
|
98
|
+
x_months:
|
99
|
+
one: "1 μήνα"
|
100
|
+
other: "%{count} μήνες"
|
101
|
+
about_x_years:
|
102
|
+
one: "περίπου ένα χρόνο"
|
103
|
+
other: "περίπου %{count} χρόνια"
|
104
|
+
over_x_years:
|
105
|
+
one: "πάνω από ένα χρόνο"
|
106
|
+
other: "πάνω από %{count} χρόνια"
|
107
|
+
almost_x_years:
|
108
|
+
one: "σχεδόν ένα χρόνο"
|
109
|
+
other: "σχεδόν %{count} χρόνια"
|
110
|
+
prompts:
|
111
|
+
year: "Έτος"
|
112
|
+
month: "Μήνας"
|
113
|
+
day: "Ημέρα"
|
114
|
+
hour: "Ώρα"
|
115
|
+
minute: "Λεπτό"
|
116
|
+
second: "Δευτερόλεπτο"
|
117
|
+
|
118
|
+
number:
|
119
|
+
format:
|
120
|
+
precision: 3
|
121
|
+
separator: ','
|
122
|
+
delimiter: '.'
|
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: "byte"
|
155
|
+
other: "bytes"
|
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: "χίλια"
|
165
|
+
million: "εκατομμύριο"
|
166
|
+
billion: "δισεκατομμύριο"
|
167
|
+
trillion: "τρισεκατομμύριο"
|
168
|
+
quadrillion: "τετρακις εκατομμύριο"
|
169
|
+
|
170
|
+
support:
|
171
|
+
array:
|
172
|
+
sentence_connector: ' και '
|
173
|
+
skip_last_comma: true
|
174
|
+
words_connector: ", "
|
175
|
+
two_words_connector: " και "
|
176
|
+
last_word_connector: " και "
|
177
|
+
|
178
|
+
select:
|
179
|
+
prompt: "Παρακαλώ επιλέξτε"
|
180
|
+
|
181
|
+
helpers:
|
182
|
+
select:
|
183
|
+
prompt: "Παρακαλώ επιλέξτε"
|
184
|
+
|
185
|
+
submit:
|
186
|
+
create: 'Δημιουργήστε %{model}'
|
187
|
+
update: 'Ενημερώστε %{model}'
|
188
|
+
submit: 'Αποθηκεύστε %{model}'
|
189
|
+
|
190
|
+
errors:
|
191
|
+
format: "%{attribute} %{message}"
|
192
|
+
|
193
|
+
messages: &errors_messages
|
194
|
+
inclusion: "δεν συμπεριλαμβάνεται στη λίστα"
|
195
|
+
exclusion: "είναι δεσμευμένο"
|
196
|
+
invalid: "είναι άκυρο"
|
197
|
+
confirmation: "δεν ταιριάζει με την επικύρωση"
|
198
|
+
accepted: "πρέπει να είναι αποδεκτό"
|
199
|
+
empty: "δεν πρέπει να είναι άδειο"
|
200
|
+
blank: "δεν πρέπει να είναι κενό"
|
201
|
+
too_long: "είναι πολύ μεγάλο (το μέγιστο μήκος είναι %{count} χαρακτήρες)"
|
202
|
+
too_short: "είναι πολύ μικρό (το μικρότερο μήκος είναι %{count} χαρακτήρες)"
|
203
|
+
wrong_length: "έχει λανθασμένο μήκος (πρέπει να είναι %{count} χαρακτήρες)"
|
204
|
+
not_a_number: "δεν είναι ένας αριθμός"
|
205
|
+
not_an_integer: "πρέπει να είναι ακέραιος αριθμός"
|
206
|
+
greater_than: "πρέπει να είναι μεγαλύτερο από %{count}"
|
207
|
+
greater_than_or_equal_to: "πρέπει να είναι μεγαλύτερο ή ίσο με %{count}"
|
208
|
+
equal_to: "πρέπει να είναι ίσο με %{count}"
|
209
|
+
less_than: "πρέπει να είναι λιγότερο από %{count}"
|
210
|
+
less_than_or_equal_to: "πρέπει να είναι λιγότερο ή ίσο με %{count}"
|
211
|
+
odd: "πρέπει να είναι περιττός"
|
212
|
+
even: "πρέπει να είναι άρτιος"
|
213
|
+
|
214
|
+
activerecord:
|
215
|
+
errors:
|
216
|
+
template:
|
217
|
+
header:
|
218
|
+
one: "1 λάθος παρεμπόδισε αυτό το %{model} να αποθηκευθεί."
|
219
|
+
other: "%{count} λάθη εμπόδισαν αυτό το %{model} να αποθηκευθεί."
|
220
|
+
body: "Υπήρξαν προβλήματα με τα ακόλουθα πεδία:"
|
221
|
+
messages:
|
222
|
+
taken: "το έχουν ήδη χρησιμοποιήσει"
|
223
|
+
record_invalid: "Επικύρωση απέτυχε: %{errors}"
|
224
|
+
<<: *errors_messages
|
225
|
+
|
226
|
+
full_messages:
|
227
|
+
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:
|
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}"
|