]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/ca.yml
9e499fbdfcfa2e23758d5b0779739dfd31fafbeb
[rails.git] / vendor / rails-locales / ca.yml
1 # Catalan translations for Rails
2 # by Emili Parreño (emili@eparreno.com - www.eparreno.com)
3
4 ca:
5   date:
6     formats:
7       # Use the strftime parameters for formats.
8       # When no format has been given, it uses default.
9       # You can provide other formats here if you like!
10       default: "%d-%m-%Y"
11       short: "%d de %b"
12       long: "%d de %B de %Y"
13
14     day_names:
15       - Diumenge
16       - Dilluns
17       - Dimarts
18       - Dimecres
19       - Dijous
20       - Divendres
21       - Dissabte
22     abbr_day_names:
23       - Dg
24       - Dl
25       - Dm
26       - Dc
27       - Dj
28       - Dv
29       - Ds
30
31     # Don't forget the nil at the beginning; there's no such thing as a 0th month
32     month_names:
33       - ~
34       - Gener
35       - Febrer
36       - Març
37       - Abril
38       - Maig
39       - Juny
40       - Juliol
41       - Agost
42       - Setembre
43       - Octubre
44       - Novembre
45       - Desembre
46     abbr_month_names:
47       - ~,
48       - Gen
49       - Feb
50       - Mar
51       - Abr
52       - Mai
53       - Jun
54       - Jul
55       - Ago
56       - Set
57       - Oct
58       - Nov
59       - Des
60     # Used in date_select and datime_select.
61     order:
62       - :day
63       - :month
64       - :year
65
66   time:
67     formats:
68       default: "%A, %d de %B de %Y %H:%M:%S %z"
69       short: "%d de %b %H:%M"
70       long: "%d de %B de %Y %H:%M"
71     am: "am"
72     pm: "pm"
73
74 # Used in array.to_sentence.
75   support:
76     array:
77       sentence_connector: "i"
78       words_connector: ", "
79       two_words_connector: " i "
80       last_word_connector: ", i "
81
82     select:
83       prompt: "Si us plau tria"
84
85   number:
86     # Used in number_with_delimiter()
87     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
88     format:
89       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
90       separator: ","
91       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
92       delimiter: "."
93       # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
94       precision: 3
95       significant: false
96       strip_insignificant_zeros: false
97
98     # Used in number_to_currency()
99     currency:
100       format:
101         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
102         format: "%n %u"
103         unit: "€"
104         # These three are to override number.format and are optional
105         separator: ","
106         delimiter: "."
107         precision: 2
108         significant: false
109         strip_insignificant_zeros: false
110
111     # Used in number_to_percentage()
112     percentage:
113       format:
114         # These three are to override number.format and are optional
115         # separator:
116         delimiter: ""
117         # precision:
118
119     # Used in number_to_precision()
120     precision:
121       format:
122         # These three are to override number.format and are optional
123         # separator:
124         delimiter: ""
125         # precision:
126
127     # Used in number_to_human_size()
128     human:
129       format:
130         # These three are to override number.format and are optional
131         # separator:
132         delimiter: ""
133         precision: 1
134         significant: true
135         strip_insignificant_zeros: true
136       storage_units:
137         # Storage units output formatting.
138         # %u is the storage unit, %n is the number (default: 2 MB)
139         format: "%n %u"
140         units:
141           byte:
142             one:   "Byte"
143             other: "Bytes"
144           kb: "KB"
145           mb: "MB"
146           gb: "GB"
147           tb: "TB"
148       decimal_units:
149         format: "%n %u"
150         units:
151           unit: ""
152           thousand: "Mil"
153           million: "Milió"
154           billion: "Bilió"
155           trillion: "Trilió"
156           quadrillion: "Quatrilió"
157
158   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
159   datetime:
160     distance_in_words:
161       half_a_minute: "mig minut"
162       less_than_x_seconds:
163         one:  "menys d'1 segon"
164         other: "menys de %{count} segons"
165       x_seconds:
166         one:  "1 segon"
167         other: "%{count} segons"
168       less_than_x_minutes:
169         one:  "menys d'1 minut"
170         other: "menys de %{count} minuts"
171       x_minutes:
172         one:  "1 minut"
173         other: "%{count} minuts"
174       about_x_hours:
175         one:  "aproximadament 1 hora"
176         other: "aproximadament %{count} hores"
177       x_days:
178         one:  "1 dia"
179         other: "%{count} dies"
180       about_x_months:
181         one:  "aproximadament 1 mes"
182         other: "aproximadament %{count} mesos"
183       x_months:
184         one:  "1 mes"
185         other: "%{count} mesos"
186       about_x_years:
187         one:  "aproximadament 1 any"
188         other: "aproximadament %{count} anys"
189       over_x_years:
190         one:  "més d'1 any"
191         other: "més de %{count} anys"
192       almost_x_years:
193         one:   "casi 1 any"
194         other: "casi %{count} anys"
195     prompts:
196       year: "Any"
197       month: "Mes"
198       day: "Dia"
199       hour: "Hora"
200       minute: "Minut"
201       second: "Segun"
202
203   helpers:
204     select:
205       prompt: "Si us plau tria"
206
207     submit:
208       create: 'Crear %{model}'
209       update: 'Actualizar %{model}'
210       submit: 'Guardar %{model}'
211
212
213   errors:
214     format: "%{attribute} %{message}"
215
216     messages: &errors_messages
217       inclusion: "no està incluós a la llista"
218       exclusion: "està reservat"
219       invalid: "no és vàlid"
220       confirmation: "no coincideix"
221       accepted: "ha de ser acceptat"
222       empty: "no pot estar buit"
223       blank: "no pot estar en blanc"
224       too_long: "és massa llarg (%{count} caràcters màxim)"
225       too_short: "és massa curt (%{count} caràcters mínim)"
226       wrong_length: "no té la longitud correcte (%{count} caràcters exactament)"
227       not_a_number: "no és un número"
228       not_an_integer: "ha de ser un enter"
229       taken: "no està disponible"
230       not_a_number: "no és un número"
231       greater_than: "ha de ser més gran que %{count}"
232       greater_than_or_equal_to: "ha de ser més gran o igual a %{count}"
233       equal_to: "ha de ser igual a %{count}"
234       less_than: "ha de ser menor que %{count}"
235       less_than_or_equal_to: "ha de ser menor o igual a %{count}"
236       odd: "ha de ser imparell"
237       even: "ha de ser parell"
238
239   activerecord:
240     errors:
241       template:
242         header:
243           one:   "No s'ha pogut desar aquest/a %{model} perquè hi ha 1 error"
244           other:  "No s'ha pogut desar aquest/a %{model} perquè hi ha hagut %{count} errors"
245         body: "Hi ha hagut problemes amb els següents camps:"
246
247       messages:
248         taken: "ja està fet servir"
249         record_invalid: "La validació ha fallat: %{errors}"
250         <<: *errors_messages
251
252       full_messages:
253         format: "%{attribute} %{message}"