refinerycms-i18n 0.9.9.9 → 0.9.9.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. data/config/locales/ar.yml +4 -1
  2. data/config/locales/bg.yml +4 -1
  3. data/config/locales/bn-IN.yml +4 -1
  4. data/config/locales/bs.yml +4 -1
  5. data/config/locales/{ca-ES.yml → ca.yml} +16 -1
  6. data/config/locales/{cz.rb → cs.rb} +2 -2
  7. data/config/locales/cy.yml +181 -0
  8. data/config/locales/da.yml +115 -87
  9. data/config/locales/de-AT.yml +29 -15
  10. data/config/locales/de-CH.yml +154 -0
  11. data/config/locales/de.yml +89 -37
  12. data/config/locales/dsb.yml +185 -182
  13. data/config/locales/el.yml +95 -153
  14. data/config/locales/en-AU.yml +180 -0
  15. data/config/locales/en-GB.yml +210 -0
  16. data/config/locales/en-US.yml +182 -0
  17. data/config/locales/eo.yml +182 -0
  18. data/config/locales/es-AR.yml +150 -141
  19. data/config/locales/es-CO.yml +79 -46
  20. data/config/locales/es-MX.yml +81 -13
  21. data/config/locales/es-PE.yml +124 -0
  22. data/config/locales/es.yml +183 -84
  23. data/config/locales/et.yml +93 -15
  24. data/config/locales/eu.yml +264 -0
  25. data/config/locales/fa.yml +36 -12
  26. data/config/locales/fi.yml +6 -5
  27. data/config/locales/fr-CA.yml +187 -0
  28. data/config/locales/fr-CH.yml +111 -50
  29. data/config/locales/fr.yml +95 -53
  30. data/config/locales/fun/en-AU.rb +1 -1
  31. data/config/locales/fun/gibberish.rb +2 -2
  32. data/config/locales/fur.yml +4 -1
  33. data/config/locales/gl-ES.yml +4 -1
  34. data/config/locales/gsw-CH.yml +182 -0
  35. data/config/locales/he.yml +4 -1
  36. data/config/locales/hi-IN.yml +181 -0
  37. data/config/locales/hi.yml +181 -0
  38. data/config/locales/hr.yml +4 -1
  39. data/config/locales/hsb.yml +193 -190
  40. data/config/locales/hu.yml +4 -1
  41. data/config/locales/id.yml +35 -15
  42. data/config/locales/is.yml +5 -2
  43. data/config/locales/it.yml +76 -24
  44. data/config/locales/ja.yml +72 -23
  45. data/config/locales/ko.yml +131 -98
  46. data/config/locales/lo.yml +42 -39
  47. data/config/locales/lt.yml +4 -1
  48. data/config/locales/lv.yml +58 -9
  49. data/config/locales/mk.yml +4 -1
  50. data/config/locales/mn.yml +159 -0
  51. data/config/locales/nb.yml +44 -7
  52. data/config/locales/nl.yml +171 -158
  53. data/config/locales/nn.yml +5 -2
  54. data/config/locales/pl.yml +117 -51
  55. data/config/locales/pt-BR.yml +85 -25
  56. data/config/locales/pt-PT.yml +132 -162
  57. data/config/locales/rm.yml +4 -1
  58. data/config/locales/ro.yml +6 -3
  59. data/config/locales/ru.yml +4 -1
  60. data/config/locales/sk.yml +195 -139
  61. data/config/locales/sl.yml +4 -1
  62. data/config/locales/sr-Latn.yml +4 -1
  63. data/config/locales/sr.yml +4 -1
  64. data/config/locales/sv.yml +85 -32
  65. data/config/locales/sw.yml +135 -76
  66. data/config/locales/th.rb +180 -203
  67. data/config/locales/tr.yml +4 -1
  68. data/config/locales/uk.yml +4 -1
  69. data/config/locales/vi.yml +4 -1
  70. data/config/locales/zh-CN.yml +91 -12
  71. data/config/locales/zh-TW.yml +92 -14
  72. data/lib/gemspec.rb +1 -1
  73. data/lib/refinery/i18n.rb +1 -1
  74. metadata +18 -5
@@ -1,106 +1,117 @@
1
- # Greek translations for Ruby on Rails
2
- # by Nick Kokkos (nkokkos@gmail.com)
3
-
4
1
  el:
5
- number:
6
- # Used in number_with_delimiter()
7
- # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
8
- format:
9
- # Sets the separator between the units, for more precision (e.g. 1,0 / 2,0 == 0,5)
10
- separator: ","
11
- # Delimets thousands (e.g. 1.000.000 is a million) (always in groups of three)
12
- delimiter: "."
13
- # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1,00)
14
- precision: 3
15
-
16
- # Used in number_to_currency()
17
- currency:
18
- format:
19
- # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
20
- # in Greek currency values would be represented as (e.g €5,78:five euros and seventy eight cents or €1.012,45: one thousand twelve euros and 45 cents)
21
- format: "%u%n"
22
- unit: "€"
23
- # These three are to override number.format and are optional
24
- separator: ","
25
- delimiter: "."
26
- precision: 2
27
-
28
- # Used in number_to_percentage()
29
- percentage:
30
- format:
31
- # These three are to override number.format and are optional
32
- # separator:
33
- delimiter: ""
34
- # precision:
35
-
36
- # Used in number_to_precision()
37
- precision:
38
- format:
39
- # These three are to override number.format and are optional
40
- # separator:
41
- delimiter: ""
42
- # precision:
43
-
44
- # Used in number_to_human_size()
45
- human:
46
- format:
47
- # These three are to override number.format and are optional
48
- # separator:
49
- delimiter: ""
50
- precision: 1
51
- storage_units: [Bytes, KB, MB, GB, TB]
2
+ date:
3
+ formats:
4
+ default: "%d/%m/%Y"
5
+ short: "%d %b"
6
+ long: "%e %B %Y"
7
+ long_ordinal: "%e %B %Y"
8
+ only_day: "%e"
9
+
10
+ day_names: [Κυριακή, Δευτέρα, Τρίτη, Τετάρτη, Πέμπτη, Παρασκευή, Σάββατο]
11
+ abbr_day_names: [Κυρ, Δευ, Τρι, Τετ, Πεμ, Παρ, Σαβ]
12
+ month_names: [~, Ιανουάριος, Φεβρουάριος, Μάρτιος, Απρίλιος, Μάιος, Ιούνιος, Ιούλιος, Αύγουστος, Σεπτέμβριος, Οκτώβριος, Νοέμβριος, Δεκέμβριος]
13
+ abbr_month_names: [~, Ιαν., Φεβ., Μάρ., Απρ., Μαι., Ιουν., Ιούλ., Αυγ., Σεπ., Οκτ., Νοε., Δεκ.]
14
+ order:
15
+ - :day
16
+ - :month
17
+ - :year
18
+
19
+ time:
20
+ formats:
21
+ default: "%d %B %Y %H:%M"
22
+ time: "%H:%M"
23
+ short: "%d %b %H:%M"
24
+ long: "%A %d %B %Y %H:%M:%S %Z"
25
+ long_ordinal: "%A %d %B %Y %H:%M:%S %Z"
26
+ only_second: "%S"
27
+ am: 'πμ'
28
+ pm: 'μμ'
52
29
 
53
- # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
54
30
  datetime:
55
31
  distance_in_words:
56
32
  half_a_minute: "μισό λεπτό"
57
33
  less_than_x_seconds:
58
- one: "λιγότερο απο ένα δευτερόλεπτο"
59
- other: "λιγότερο απο %{count} δευτερόλεπτα"
34
+ one: "λιγότερο από ένα δευτερόλεπτο"
35
+ other: "λιγότερο από %{count} δευτερόλεπτα"
60
36
  x_seconds:
61
- one: "1 δευτερόλεπτο"
37
+ one: "1 δευτερόλεπτο"
62
38
  other: "%{count} δευτερόλεπτα"
63
39
  less_than_x_minutes:
64
- one: "λιγότερο απο ένα λεπτό"
65
- other: "λιγότερο απο %{count} λεπτά"
40
+ one: "λιγότερο από ένα λεπτό"
41
+ other: "λιγότερο από %{count} λεπτά"
66
42
  x_minutes:
67
- one: "ένα λεπτό"
43
+ one: "1 λεπτό"
68
44
  other: "%{count} λεπτά"
69
45
  about_x_hours:
70
- one: "1 ώρα περίπου"
71
- other: "%{count} hours περίπου"
46
+ one: "περίπου μία ώρα"
47
+ other: "περίπου %{count} ώρες"
72
48
  x_days:
73
- one: "1 μέρα"
74
- other: "%{count} μέρες"
49
+ one: "1 ώρα"
50
+ other: "%{count} ώρες"
75
51
  about_x_months:
76
- one: "1 μήνα περίπου"
77
- other: "%{count} μήνες περίπου"
52
+ one: "περίπου ένα μήνα"
53
+ other: "περίπου %{count} μήνες"
78
54
  x_months:
79
- one: "1 μήνα"
55
+ one: "1 μήνα"
80
56
  other: "%{count} μήνες"
81
57
  about_x_years:
82
- one: "ένα χρόνο περίπου"
83
- other: "%{count} χρόνια περίπου"
58
+ one: "περίπου ένα χρόνο"
59
+ other: "περίπου %{count} χρόνια"
84
60
  over_x_years:
85
- one: "πάνω απο 1 χρόνο"
86
- other: "πάνω απο %{count} χρόνια"
61
+ one: "πάνω από ένα χρόνο"
62
+ other: "πάνω από %{count} χρόνια"
63
+ prompts:
64
+ year: "Έτος"
65
+ month: "Μήνας"
66
+ day: "Ημέρα"
67
+ hour: "Ώρα"
68
+ minute: "Λεπτό"
69
+ second: "Δευτερόλεπτο"
87
70
 
88
- activerecord:
89
- errors:
90
- template:
91
- header:
92
- one: "1 λάθος παρεμπόδισε αυτό το %{model} να αποθηκευθεί"
93
- other: "%{count} λάθη εμπόδισαν αυτό το %{model} να αποθηκευθεί"
94
- # The variable :count is also available
95
- body: "Υπήρξαν προβλήματα με τα ακόλουθα πεδία :"
71
+ number:
72
+ format:
73
+ precision: 3
74
+ separator: ','
75
+ delimiter: '.'
76
+ currency:
77
+ format:
78
+ unit: '€'
79
+ precision: 2
80
+ format: '%n %u'
81
+ human:
82
+ format:
83
+ # These three are to override number.format and are optional
84
+ # separator:
85
+ delimiter: ""
86
+ precision: 1
87
+ storage_units:
88
+ format: "%n %u"
89
+ units:
90
+ byte:
91
+ one: "byte"
92
+ other: "bytes"
93
+ kb: "KB"
94
+ mb: "MB"
95
+ gb: "GB"
96
+ tb: "TB"
96
97
 
98
+ support:
99
+ array:
100
+ sentence_connector: ' και '
101
+ skip_last_comma: true
102
+ words_connector: ", "
103
+ two_words_connector: " και "
104
+ last_word_connector: " και "
97
105
 
98
106
  activerecord:
99
107
  errors:
100
- # The values :model, :attribute and :value are always available for interpolation
101
- # The value :count is available when applicable. Can be used for pluralization.
108
+ template:
109
+ header:
110
+ one: "1 λάθος παρεμπόδισε αυτό το %{model} να αποθηκευθεί."
111
+ other: "%{count} λάθη εμπόδισαν αυτό το %{model} να αποθηκευθεί."
112
+ body: "Υπήρξαν προβλήματα με τα ακόλουθα πεδία:"
102
113
  messages:
103
- inclusion: "δεν συμπεριλαβάνεται στη λίστα"
114
+ inclusion: "δεν συμπεριλαμβάνεται στη λίστα"
104
115
  exclusion: "είναι δεσμευμένο"
105
116
  invalid: "είναι άκυρο"
106
117
  confirmation: "δεν ταιριάζει με την επικύρωση"
@@ -112,80 +123,11 @@ el:
112
123
  wrong_length: "έχει λανθασμένο μήκος (πρέπει να είναι %{count} χαρακτήρες)"
113
124
  taken: "το έχουν ήδη χρησιμοποιήσει"
114
125
  not_a_number: "δεν είναι ένας αριθμός"
115
- greater_than: "πρέπει να είναι μεγαλύτερο απο %{count}"
116
- greater_than_or_equal_to: "πρέπει να είναι μεγαλύτερο ή ίσον με %{count}"
117
- equal_to: "πρέπει να είναι ίσον με %{count}"
118
- less_than: "πρέπει να είναι λιγότερο απο %{count}"
119
- less_than_or_equal_to: "πρέπει να είναι λιγότερο ή ίσον με %{count}"
126
+ greater_than: "πρέπει να είναι μεγαλύτερο από %{count}"
127
+ greater_than_or_equal_to: "πρέπει να είναι μεγαλύτερο ή ίσο με %{count}"
128
+ equal_to: "πρέπει να είναι ίσο με %{count}"
129
+ less_than: "πρέπει να είναι λιγότερο από %{count}"
130
+ less_than_or_equal_to: "πρέπει να είναι λιγότερο ή ίσο με %{count}"
120
131
  odd: "πρέπει να είναι περιττός"
121
132
  even: "πρέπει να είναι άρτιος"
122
- # Append your own errors here or at the model/attributes scope.
123
-
124
- # You can define own errors for models or model attributes.
125
- # The values :model, :attribute and :value are always available for interpolation.
126
- #
127
- # For example,
128
- # models:
129
- # user:
130
- # blank: "This is a custom blank message for %{model}: %{attribute}"
131
- # attributes:
132
- # login:
133
- # blank: "This is a custom blank message for User login"
134
- # Will define custom blank validation message for User model and
135
- # custom blank validation message for login attribute of User model.
136
- # models:
137
-
138
- # Translate model names. Used in Model.human_name().
139
- #models:
140
- # For example,
141
- # user: "Dude"
142
- # will translate User model name to "Dude"
143
-
144
- # Translate model attribute names. Used in Model.human_attribute_name(attribute).
145
- #attributes:
146
- # For example,
147
- # user:
148
- # login: "Handle"
149
- # will translate User attribute "login" as "Handle"
150
-
151
133
 
152
- date:
153
- formats:
154
- # Use the strftime parameters for formats.
155
- # When no format has been given, it uses default.
156
- # You can provide other formats here if you like!
157
- default: "%d-%m-%Y"
158
- short: "%d %b"
159
- long: "%d %B %Y"
160
- only_day: "%e"
161
-
162
- day_names: [Κυριακή, Δευτέρα, Τρίτη, Τετάρτη, Πέμπτη, Παρασκευή, Σάββατο]
163
- abbr_day_names: [Κυρ, Δευ, Τρι, Τετ, Πεμ, Παρ, Σαβ]
164
-
165
- # Don't forget the nil at the beginning; there's no such thing as a 0th month
166
- month_names: [~, Ιανοάριος, Φεβρουάριος, Μάρτιος, Απρίλιος, Μάιος, Ιούνιος, Ιούλιος, Άυγουστος, Σεπτέμβριος, Οκτώβριος, Νοέμβριος, Δεκέμβριος]
167
- abbr_month_names: [~, Ιαν, Φεβ, Μάρ, Απρ, Μαι, Ιουν, Ιούλ, Αυγ, Σεπ, Οκτ, Νοε, Δεκ]
168
- # Used in date_select and datime_select.
169
- # original was: order: [ :year, :month, :day ]
170
- order: [ :day, :month, :year ]
171
-
172
- time:
173
- formats:
174
- default: "%a %d %b %Y, %H:%M:%S %z"
175
- time: "%H:%M"
176
- short: "%d %b %H:%M"
177
- long: "%d %B %Y %H:%M"
178
- only_second: "%S"
179
- am: "πμ"
180
- pm: "μμ"
181
-
182
- datetime:
183
- formats:
184
- default: "%d-%m-%YT%H:%M:%S%Z"
185
-
186
-
187
- # Used in array.to_sentence.
188
- support:
189
- array:
190
- sentence_connector: " και "
191
- skip_last_comma: false
@@ -0,0 +1,180 @@
1
+ # Australian English translations for Ruby on Rails
2
+
3
+ "en-AU":
4
+ date:
5
+ formats:
6
+ default: "%d-%m-%Y"
7
+ short: "%b %d"
8
+ long: "%B %d, %Y"
9
+
10
+ day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
11
+ abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
12
+
13
+ month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
14
+ abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
15
+ order:
16
+ - :year
17
+ - :month
18
+ - :day
19
+
20
+ time:
21
+ formats:
22
+ default: "%a, %d %b %Y %H:%M:%S %z"
23
+ short: "%d %b %H:%M"
24
+ long: "%B %d, %Y %H:%M"
25
+ am: "am"
26
+ pm: "pm"
27
+
28
+ support:
29
+ array:
30
+ words_connector: ", "
31
+ two_words_connector: " and "
32
+ last_word_connector: ", and "
33
+
34
+ select:
35
+ prompt: "Please select"
36
+
37
+ number:
38
+ format:
39
+ separator: "."
40
+ delimiter: ","
41
+ precision: 3
42
+ significant: false
43
+ strip_insignificant_zeros: false
44
+
45
+ currency:
46
+ format:
47
+ format: "%u%n"
48
+ unit: "$"
49
+ separator: "."
50
+ delimiter: ","
51
+ precision: 2
52
+ significant: false
53
+ strip_insignificant_zeros: false
54
+
55
+ percentage:
56
+ format:
57
+ delimiter: ""
58
+
59
+ precision:
60
+ format:
61
+ delimiter: ""
62
+
63
+ human:
64
+ format:
65
+ delimiter: ""
66
+ precision: 3
67
+ significant: true
68
+ strip_insignificant_zeros: true
69
+ storage_units:
70
+ format: "%n %u"
71
+ units:
72
+ byte:
73
+ one: "Byte"
74
+ other: "Bytes"
75
+ kb: "KB"
76
+ mb: "MB"
77
+ gb: "GB"
78
+ tb: "TB"
79
+ decimal_units:
80
+ format: "%n %u"
81
+ units:
82
+ unit: ""
83
+ thousand: Thousand
84
+ million: Million
85
+ billion: Billion
86
+ trillion: Trillion
87
+ quadrillion: Quadrillion
88
+
89
+ datetime:
90
+ distance_in_words:
91
+ half_a_minute: "half a minute"
92
+ less_than_x_seconds:
93
+ one: "less than 1 second"
94
+ other: "less than %{count} seconds"
95
+ x_seconds:
96
+ one: "1 second"
97
+ other: "%{count} seconds"
98
+ less_than_x_minutes:
99
+ one: "less than a minute"
100
+ other: "less than %{count} minutes"
101
+ x_minutes:
102
+ one: "1 minute"
103
+ other: "%{count} minutes"
104
+ about_x_hours:
105
+ one: "about 1 hour"
106
+ other: "about %{count} hours"
107
+ x_days:
108
+ one: "1 day"
109
+ other: "%{count} days"
110
+ about_x_months:
111
+ one: "about 1 month"
112
+ other: "about %{count} months"
113
+ x_months:
114
+ one: "1 month"
115
+ other: "%{count} months"
116
+ about_x_years:
117
+ one: "about 1 year"
118
+ other: "about %{count} years"
119
+ over_x_years:
120
+ one: "over 1 year"
121
+ other: "over %{count} years"
122
+ almost_x_years:
123
+ one: "almost 1 year"
124
+ other: "almost %{count} years"
125
+ prompts:
126
+ year: "Year"
127
+ month: "Month"
128
+ day: "Day"
129
+ hour: "Hour"
130
+ minute: "Minute"
131
+ second: "Seconds"
132
+
133
+ helpers:
134
+ select:
135
+ prompt: "Please select"
136
+
137
+ submit:
138
+ create: 'Create %{model}'
139
+ update: 'Update %{model}'
140
+ submit: 'Save %{model}'
141
+
142
+ errors:
143
+ format: "%{attribute} %{message}"
144
+
145
+ messages: &errors_messages
146
+ inclusion: "is not included in the list"
147
+ exclusion: "is reserved"
148
+ invalid: "is invalid"
149
+ confirmation: "doesn't match confirmation"
150
+ accepted: "must be accepted"
151
+ empty: "can't be empty"
152
+ blank: "can't be blank"
153
+ too_long: "is too long (maximum is %{count} characters)"
154
+ too_short: "is too short (minimum is %{count} characters)"
155
+ wrong_length: "is the wrong length (should be %{count} characters)"
156
+ not_a_number: "is not a number"
157
+ not_an_integer: "must be an integer"
158
+ greater_than: "must be greater than %{count}"
159
+ greater_than_or_equal_to: "must be greater than or equal to %{count}"
160
+ equal_to: "must be equal to %{count}"
161
+ less_than: "must be less than %{count}"
162
+ less_than_or_equal_to: "must be less than or equal to %{count}"
163
+ odd: "must be odd"
164
+ even: "must be even"
165
+
166
+ activerecord:
167
+ errors:
168
+ template:
169
+ header:
170
+ one: "1 error prohibited this %{model} from being saved"
171
+ other: "%{count} errors prohibited this %{model} from being saved"
172
+ body: "There were problems with the following fields:"
173
+
174
+ messages:
175
+ taken: "has already been taken"
176
+ record_invalid: "Validation failed: %{errors}"
177
+ <<: *errors_messages
178
+
179
+ full_messages:
180
+ format: "%{attribute}%{message}"