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.
Files changed (57) hide show
  1. data/app/controllers/globalize_translations_controller.rb +1 -1
  2. data/config/locales/ar.yml +226 -0
  3. data/config/locales/bg.yml +304 -0
  4. data/config/locales/bs.yml +270 -0
  5. data/config/locales/ca.yml +253 -0
  6. data/config/locales/cs.rb +229 -0
  7. data/config/locales/cy.yml +221 -0
  8. data/config/locales/da.yml +235 -0
  9. data/config/locales/de.yml +233 -0
  10. data/config/locales/el.yml +227 -0
  11. data/config/locales/en.yml +222 -0
  12. data/config/locales/eo.yml +222 -0
  13. data/config/locales/es.yml +225 -0
  14. data/config/locales/et.yml +260 -0
  15. data/config/locales/eu.yml +224 -0
  16. data/config/locales/fa.yml +222 -0
  17. data/config/locales/fi.yml +225 -0
  18. data/config/locales/fr.yml +222 -0
  19. data/config/locales/gl.yml +236 -0
  20. data/config/locales/he.yml +227 -0
  21. data/config/locales/hi.yml +221 -0
  22. data/config/locales/hr.yml +159 -0
  23. data/config/locales/hu.yml +215 -0
  24. data/config/locales/id.yml +187 -0
  25. data/config/locales/is.yml +230 -0
  26. data/config/locales/it.yml +235 -0
  27. data/config/locales/ja.yml +228 -0
  28. data/config/locales/kn.yml +222 -0
  29. data/config/locales/ko.yml +228 -0
  30. data/config/locales/lo.yml +244 -0
  31. data/config/locales/lt.yml +184 -0
  32. data/config/locales/lv.yml +221 -0
  33. data/config/locales/mk.yml +158 -0
  34. data/config/locales/mn.yml +199 -0
  35. data/config/locales/nb.yml +220 -0
  36. data/config/locales/nl.yml +226 -0
  37. data/config/locales/nn.yml +139 -0
  38. data/config/locales/pl.yml +234 -0
  39. data/config/locales/pt.yml +230 -0
  40. data/config/locales/rm.yml +177 -0
  41. data/config/locales/ro.yml +211 -0
  42. data/config/locales/ru.yml +376 -0
  43. data/config/locales/sk.yml +236 -0
  44. data/config/locales/sl.yml +233 -0
  45. data/config/locales/sr.yml +159 -0
  46. data/config/locales/sv.yml +273 -0
  47. data/config/locales/sw.yml +222 -0
  48. data/config/locales/th.rb +199 -0
  49. data/config/locales/tr.yml +181 -0
  50. data/config/locales/uk.yml +351 -0
  51. data/config/locales/vi.yml +241 -0
  52. data/config/locales/zh.yml +250 -0
  53. data/lib/exvo_globalize/backend/chain.rb +20 -0
  54. data/lib/exvo_globalize/version.rb +1 -1
  55. data/spec/controllers/globalize_translations_controller_spec.rb +1 -3
  56. data/spec/exvo_globalize/globalize_store_spec.rb +5 -0
  57. metadata +56 -5
@@ -0,0 +1,221 @@
1
+ # Hindi (hi) translations for Rails
2
+ # by Rajesh Ranjan (rajesh672@gmail.com)
3
+
4
+ hi:
5
+ date:
6
+ formats:
7
+ default: "%d-%m-%Y"
8
+ short: "%b %d"
9
+ long: "%B %d, %Y"
10
+
11
+ day_names:
12
+ - रविवार
13
+ - सोमवार
14
+ - मंगलवार
15
+ - बुधवार
16
+ - गुरुवार
17
+ - शुक्रवार
18
+ - शनिवार
19
+ abbr_day_names:
20
+ - रवि
21
+ - सोम
22
+ - मंगल
23
+ - बुध
24
+ - गुरु
25
+ - शुक्र
26
+ - शनि
27
+
28
+ month_names:
29
+ - ~
30
+ - जनवरी
31
+ - फरवरी
32
+ - मार्च
33
+ - अप्रैल
34
+ - मई
35
+ - जून
36
+ - जुलाई
37
+ - अगस्त
38
+ - सितंबर
39
+ - अक्टूबर
40
+ - नवंबर
41
+ - दिसंबर
42
+ abbr_month_names:
43
+ - ~
44
+ - जन
45
+ - फर
46
+ - मार्च
47
+ - अप्रै
48
+ - मई
49
+ - जून
50
+ - जुला
51
+ - अग
52
+ - सितं
53
+ - अक्टू
54
+ - नवं
55
+ - दिस
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: "पूर्वाह्न"
67
+ pm: "अपराह्न"
68
+
69
+ support:
70
+ array:
71
+ words_connector: ", "
72
+ two_words_connector: " और "
73
+ last_word_connector: ", और "
74
+
75
+ select:
76
+ prompt: "कृपया चुनें"
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: "$"
90
+ separator: "."
91
+ delimiter: ","
92
+ precision: 2
93
+ significant: false
94
+ strip_insignificant_zeros: false
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: "Byte"
115
+ other: "Bytes"
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: "हज़ार"
125
+ million: "दस करोड़"
126
+ billion: "अरब"
127
+ trillion: "खरब"
128
+ quadrillion: "करोड़ शंख"
129
+
130
+ datetime:
131
+ distance_in_words:
132
+ half_a_minute: "एक आधा मिनट"
133
+ less_than_x_seconds:
134
+ one: "एक सेकेंड से कम"
135
+ other: "%{count} सेकेंड से कम"
136
+ x_seconds:
137
+ one: "एक सेकेंड"
138
+ other: "%{count} सेकेंड"
139
+ less_than_x_minutes:
140
+ one: "एक मिनट से कम"
141
+ other: "%{count} मिनट से कम"
142
+ x_minutes:
143
+ one: "एक मिनट"
144
+ other: "%{count} मिनट"
145
+ about_x_hours:
146
+ one: "लगभग एक घंटा"
147
+ other: "लगभग %{count} घंटा"
148
+ x_days:
149
+ one: "एक दिन"
150
+ other: "%{count} दिन"
151
+ about_x_months:
152
+ one: "लगभग 1 महीना"
153
+ other: "लगभग %{count} महीना"
154
+ x_months:
155
+ one: "एक महीना"
156
+ other: "%{count} महीना"
157
+ about_x_years:
158
+ one: "लगभग 1 साल"
159
+ other: "लगभग %{count} साल"
160
+ over_x_years:
161
+ one: "एक साल के ऊपर"
162
+ other: "%{count} साल से अधिक"
163
+ almost_x_years:
164
+ one: "लगभग एक साल"
165
+ other: "लगभग %{count} साल"
166
+ prompts:
167
+ year: "वर्ष"
168
+ month: "माह"
169
+ day: "दिन"
170
+ hour: "घंटा"
171
+ minute: "मिनट"
172
+ second: "सेकेंड"
173
+
174
+ helpers:
175
+ select:
176
+ prompt: "कृपया चुनें"
177
+
178
+ submit:
179
+ create: '%{model} बनाएँ'
180
+ update: '%{model} अद्यतन'
181
+ submit: '%{model} सौंपें'
182
+
183
+ errors:
184
+ format: "%{attribute} %{message}"
185
+
186
+ messages: &errors_messages
187
+ inclusion: "सूची में शामिल नहीं है"
188
+ exclusion: "आरक्षित है"
189
+ invalid: "अवैध है"
190
+ confirmation: "पुष्टिकरण मेल नहीं खाता"
191
+ accepted: "स्वीकार किया जाना जरूरी"
192
+ empty: "रिक्त नहीं रह सकता है"
193
+ blank: "खाली नहीं रह सकता है"
194
+ too_long: "अत्यधिक लंबा है (अधिकतम %{count} वर्ण हैं)"
195
+ too_short: "अत्यधिक छोटा है (न्यूनतम %{count} वर्ण हैं)"
196
+ wrong_length: "गलत लंबाई है (%{count} वर्ण युक्त होना चाहिए)"
197
+ not_a_number: "कोई संख्या नहीं है"
198
+ not_an_integer: "एक पूर्णांक होना चाहिए"
199
+ greater_than: "%{count} से अधिक होना चाहिए"
200
+ greater_than_or_equal_to: "%{count} से बड़ा या बराबर होना आवश्यक है"
201
+ equal_to: "%{count} के लिए बराबर होना चाहिए"
202
+ less_than: "%{count} से कम होना चाहिए"
203
+ less_than_or_equal_to: "%{count} से कम या बराबर होना आवश्यक है"
204
+ odd: "विसम होना चाहिए"
205
+ even: "सम होना चाहिए"
206
+
207
+ activerecord:
208
+ errors:
209
+ template:
210
+ header:
211
+ one: "इस %{model} को सहेजे जाना एक त्रुटि के कारण नहीं हुआ"
212
+ other: "इस %{model} को सहेजे जाना %{count} त्रुटि के कारण नहीं हुआ"
213
+ body: "निम्नलिखित क्षेत्रों के साथ समस्या थी:"
214
+
215
+ messages:
216
+ taken: "पहले ही ले लिया गया है"
217
+ record_invalid: "सत्यापन विफल: %{errors}"
218
+ <<: *errors_messages
219
+
220
+ full_messages:
221
+ format: "%{attribute} %{message}"
@@ -0,0 +1,159 @@
1
+ # Croatian translation for Ruby on Rails
2
+ # by Marjan Vrban (mvrban@gmail.com)
3
+
4
+ "hr":
5
+ date:
6
+ formats:
7
+ default: "%d/%m/%Y"
8
+ short: "%e %b"
9
+ long: "%B %e, %Y"
10
+ only_day: "%e"
11
+
12
+ day_names:
13
+ - Nedjelja
14
+ - Ponedjeljak
15
+ - Utorak
16
+ - Srijeda
17
+ - Četvrtak
18
+ - Petak
19
+ - Subota
20
+ abbr_day_names:
21
+ - Ned
22
+ - Pon
23
+ - Uto
24
+ - Sre
25
+ - Čet
26
+ - Pet
27
+ - Sub
28
+ month_names:
29
+ - ~
30
+ - Siječanj
31
+ - Veljača
32
+ - Ožujak
33
+ - Travanj
34
+ - Svibanj
35
+ - Lipanj
36
+ - Srpanj
37
+ - Kolovoz
38
+ - Rujan
39
+ - Listopad
40
+ - Studeni
41
+ - Prosinac
42
+ abbr_month_names:
43
+ - ~
44
+ - Sij
45
+ - Vel
46
+ - Ožu
47
+ - Tra
48
+ - Svi
49
+ - Lip
50
+ - Srp
51
+ - Kol
52
+ - Ruj
53
+ - Lis
54
+ - Stu
55
+ - Pro
56
+ order:
57
+ - :day
58
+ - :month
59
+ - :year
60
+
61
+ time:
62
+ formats:
63
+ default: "%a %b %d %H:%M:%S %Z %Y"
64
+ time: "%H:%M"
65
+ short: "%d %b %H:%M"
66
+ long: "%B %d, %Y %H:%M"
67
+ only_second: "%S"
68
+
69
+ datetime:
70
+ formats:
71
+ default: "%Y-%m-%dT%H:%M:%S%Z"
72
+
73
+ am: 'AM'
74
+ pm: 'PM'
75
+
76
+ datetime:
77
+ distance_in_words:
78
+ half_a_minute: 'pola minute'
79
+ less_than_x_seconds:
80
+ zero: 'manje od 1 sekunde'
81
+ one: 'manje od 1 sekunde'
82
+ few: 'manje od %{count} sekunde'
83
+ other: 'manje od %{count} sekundi'
84
+ x_seconds:
85
+ one: '1 sekunda'
86
+ few: '%{count} sekunde'
87
+ other: '%{count} sekundi'
88
+ less_than_x_minutes:
89
+ zero: 'manje od minute'
90
+ one: 'manje od 1 minute'
91
+ other: 'manje od %{count} minuta'
92
+ x_minutes:
93
+ one: '1 minuta'
94
+ other: '%{count} minuta-e'
95
+ about_x_hours:
96
+ one: 'oko 1 sat'
97
+ few: 'oko %{count} sata'
98
+ other: 'oko %{count} sati'
99
+ x_days:
100
+ one: '1 dan'
101
+ other: '%{count} dana'
102
+ about_x_months:
103
+ one: 'oko 1 mjesec'
104
+ few: 'oko %{count} mjeseca'
105
+ other: 'oko %{count} mjeseci'
106
+ x_months:
107
+ one: '1 mjesec'
108
+ few: '%{count} mjeseca'
109
+ other: '%{count} mjeseci'
110
+ about_x_years:
111
+ one: 'oko 1 godine'
112
+ other: 'oko %{count} godine'
113
+ over_x_years:
114
+ one: 'preko 1 godine'
115
+ other: 'preko %{count} godine'
116
+
117
+ number:
118
+ format:
119
+ precision: 3
120
+ separator: ','
121
+ delimiter: '.'
122
+ currency:
123
+ format:
124
+ unit: 'Kn'
125
+ precision: 2
126
+ format: '%n %u'
127
+
128
+ support:
129
+ array:
130
+ sentence_connector: "i"
131
+
132
+ activerecord:
133
+ errors:
134
+ template:
135
+ header:
136
+ one: 'Nisam uspio spremiti %{model}: 1 greška'
137
+ few: 'Nisam uspio spremiti %{model}: %{count} greške.'
138
+ other: 'Nisam uspio spremiti %{model}: %{count} greški.'
139
+ body: "Molim Vas provjerite slijedeća polja:"
140
+ messages:
141
+ inclusion: "nije u listi"
142
+ exclusion: "nije dostupno"
143
+ invalid: "nije ispravan"
144
+ confirmation: "se ne slaže sa svojom potvrdom"
145
+ accepted: "mora biti prihvaćen"
146
+ empty: "mora biti ispunjen"
147
+ blank: "mora biti ispunjen"
148
+ too_long: "je predugačak (ne više od %{count} karaktera)"
149
+ too_short: "je prekratak (ne manje od %{count} karaktera)"
150
+ wrong_length: "nije odgovarajuće dužine (mora imati %{count} karaktera)"
151
+ taken: "je zauzeto"
152
+ not_a_number: "nije broj"
153
+ greater_than: "mora biti veće od %{count}"
154
+ greater_than_or_equal_to: "mora biti veće ili jednako %{count}"
155
+ equal_to: "mora biti jednako %{count}"
156
+ less_than: "mora biti manje od %{count}"
157
+ less_than_or_equal_to: "mora biti manje ili jednako %{count}"
158
+ odd: "mora biti neparno"
159
+ even: "mora biti parno"
@@ -0,0 +1,215 @@
1
+ # Hungarian translations for Ruby on Rails
2
+ # by Richard Abonyi (richard.abonyi@gmail.com)
3
+ # thanks to KKata, replaced and #hup.hu
4
+ # Cleaned up by László Bácsi (http://lackac.hu)
5
+ # updated by kfl62 kfl62g@gmail.com
6
+
7
+ "hu":
8
+ date:
9
+ formats:
10
+ default: "%Y.%m.%d."
11
+ short: "%b %e."
12
+ long: "%Y. %B %e."
13
+ day_names:
14
+ - vasárnap
15
+ - hétfő
16
+ - kedd
17
+ - szerda
18
+ - csütörtök
19
+ - péntek
20
+ - szombat
21
+ abbr_day_names:
22
+ - v.
23
+ - h.
24
+ - k.
25
+ - sze.
26
+ - cs.
27
+ - p.
28
+ - szo.
29
+ month_names:
30
+ - ~
31
+ - január
32
+ - február
33
+ - március
34
+ - április
35
+ - május
36
+ - június
37
+ - július
38
+ - augusztus
39
+ - szeptember
40
+ - október
41
+ - november
42
+ - december
43
+ abbr_month_names:
44
+ - ~
45
+ - jan.
46
+ - febr.
47
+ - márc.
48
+ - ápr.
49
+ - máj.
50
+ - jún.
51
+ - júl.
52
+ - aug.
53
+ - szept.
54
+ - okt.
55
+ - nov.
56
+ - dec.
57
+ order:
58
+ - :year
59
+ - :month
60
+ - :day
61
+
62
+ time:
63
+ formats:
64
+ default: "%Y. %b %e., %H:%M"
65
+ short: "%b %e., %H:%M"
66
+ long: "%Y. %B %e., %A, %H:%M"
67
+ am: "de."
68
+ pm: "du."
69
+
70
+ support:
71
+ array:
72
+ words_connector: ", "
73
+ two_words_connector: " és "
74
+ last_word_connector: " és "
75
+ select:
76
+ prompt: "Válasszon"
77
+
78
+ number:
79
+ format:
80
+ precision: 2
81
+ separator: ','
82
+ delimiter: ' '
83
+ significant: true
84
+ strip_insignificant_zeros: true
85
+ currency:
86
+ format:
87
+ unit: 'Ft'
88
+ precision: 0
89
+ format: '%n %u'
90
+ separator: ","
91
+ delimiter: ""
92
+ significant: true
93
+ strip_insignificant_zeros: true
94
+ percentage:
95
+ format:
96
+ delimiter: ""
97
+ precision:
98
+ format:
99
+ delimiter: ""
100
+ human:
101
+ format:
102
+ delimiter: ""
103
+ precision: 1
104
+ significant: true
105
+ strip_insignificant_zeros: true
106
+ storage_units:
107
+ format: "%n %u"
108
+ units:
109
+ byte:
110
+ one: "bájt"
111
+ other: "bájt"
112
+ kb: "KB"
113
+ mb: "MB"
114
+ gb: "GB"
115
+ tb: "TB"
116
+ decimal_units:
117
+ format: "%n %u"
118
+ units:
119
+ unit: ""
120
+ thousand: Ezer
121
+ million: Millió
122
+ billion: Milliárd
123
+ trillion: Trillió
124
+ quadrillion: Kvadrillió
125
+
126
+ datetime:
127
+ distance_in_words:
128
+ half_a_minute: 'fél perc'
129
+ less_than_x_seconds:
130
+ # zero: 'kevesebb, mint 1 másodperc'
131
+ one: 'kevesebb, mint 1 másodperc'
132
+ other: 'kevesebb, mint %{count} másodperc'
133
+ x_seconds:
134
+ one: '1 másodperc'
135
+ other: '%{count} másodperc'
136
+ less_than_x_minutes:
137
+ # zero: 'kevesebb, mint 1 perc'
138
+ one: 'kevesebb, mint 1 perc'
139
+ other: 'kevesebb, mint %{count} perc'
140
+ x_minutes:
141
+ one: '1 perc'
142
+ other: '%{count} perc'
143
+ about_x_hours:
144
+ one: 'kb 1 óra'
145
+ other: 'kb %{count} óra'
146
+ x_days:
147
+ one: '1 nap'
148
+ other: '%{count} nap'
149
+ about_x_months:
150
+ one: 'kb 1 hónap'
151
+ other: 'kb %{count} hónap'
152
+ x_months:
153
+ one: '1 hónap'
154
+ other: '%{count} hónap'
155
+ about_x_years:
156
+ one: 'kb 1 év'
157
+ other: 'kb %{count} év'
158
+ over_x_years:
159
+ one: 'több, mint 1 év'
160
+ other: 'több, mint %{count} év'
161
+ almost_x_years:
162
+ one: "majdnem 1 év"
163
+ other: "majdnem %{count} év"
164
+ prompts:
165
+ year: "Év"
166
+ month: "Hónap"
167
+ day: "Nap"
168
+ hour: "Óra"
169
+ minute: "Perc"
170
+ second: "Másodperc"
171
+
172
+ helpers:
173
+ select:
174
+ prompt: "Válasszon"
175
+ submit:
176
+ create: 'Új %{model}'
177
+ update: '%{model} Módosítása'
178
+ submit: '%{model} Mentése'
179
+
180
+ errors:
181
+ format: "%{attribute} %{message}"
182
+ messages: &errors_messages
183
+ inclusion: "nincs a listában"
184
+ exclusion: "nem elérhető"
185
+ invalid: "nem megfelelő"
186
+ confirmation: "nem egyezik"
187
+ accepted: "nincs elfogadva"
188
+ empty: "nincs megadva"
189
+ blank: "nincs megadva"
190
+ too_long: "túl hosszú (nem lehet több %{count} karakternél)"
191
+ too_short: "túl rövid (legalább %{count} karakter kell legyen)"
192
+ wrong_length: "nem megfelelő hosszúságú (%{count} karakter szükséges)"
193
+ not_a_number: "nem szám"
194
+ not_an_integer: "egész számnak kell lennie"
195
+ greater_than: "nagyobb kell legyen, mint %{count}"
196
+ greater_than_or_equal_to: "legalább %{count} kell legyen"
197
+ equal_to: "pontosan %{count} kell legyen"
198
+ less_than: "kevesebb, mint %{count} kell legyen"
199
+ less_than_or_equal_to: "legfeljebb %{count} lehet"
200
+ odd: "páratlan kell legyen"
201
+ even: "páros kell legyen"
202
+
203
+ activerecord:
204
+ errors:
205
+ template:
206
+ header:
207
+ one: "1 hiba miatt nem menthető a következő: %{model}"
208
+ other: "%{count} hiba miatt nem menthető a következő: %{model}"
209
+ body: "Problémás mezők:"
210
+ messages:
211
+ taken: "már foglalt"
212
+ record_invalid: "Sikertelen validálás %{errors}"
213
+ <<: *errors_messages
214
+ full_messages:
215
+ format: "%{attribute} %{message}"