]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/ca.yml
Simplify login page
[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       words_connector: ", "
78       two_words_connector: " i "
79       last_word_connector: ", i "
80
81     select:
82       prompt: "Si us plau tria"
83
84   number:
85     # Used in number_with_delimiter()
86     # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
87     format:
88       # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
89       separator: ","
90       # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
91       delimiter: "."
92       # Number of decimals, behind the separator (1 with a precision of 2 gives: 1.00)
93       precision: 3
94       significant: false
95       strip_insignificant_zeros: false
96
97     # Used in number_to_currency()
98     currency:
99       format:
100         # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
101         format: "%n %u"
102         unit: "€"
103         # These three are to override number.format and are optional
104         separator: ","
105         delimiter: "."
106         precision: 2
107         significant: false
108         strip_insignificant_zeros: false
109
110     # Used in number_to_percentage()
111     percentage:
112       format:
113         # These three are to override number.format and are optional
114         # separator:
115         delimiter: ""
116         # precision:
117
118     # Used in number_to_precision()
119     precision:
120       format:
121         # These three are to override number.format and are optional
122         # separator:
123         delimiter: ""
124         # precision:
125
126     # Used in number_to_human_size()
127     human:
128       format:
129         # These three are to override number.format and are optional
130         # separator:
131         delimiter: ""
132         precision: 1
133         significant: true
134         strip_insignificant_zeros: true
135       storage_units:
136         # Storage units output formatting.
137         # %u is the storage unit, %n is the number (default: 2 MB)
138         format: "%n %u"
139         units:
140           byte:
141             one:   "Byte"
142             other: "Bytes"
143           kb: "KB"
144           mb: "MB"
145           gb: "GB"
146           tb: "TB"
147       decimal_units:
148         format: "%n %u"
149         units:
150           unit: ""
151           thousand: "Mil"
152           million: "Milió"
153           billion: "Bilió"
154           trillion: "Trilió"
155           quadrillion: "Quatrilió"
156
157   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
158   datetime:
159     distance_in_words:
160       half_a_minute: "mig minut"
161       less_than_x_seconds:
162         one:  "menys d'1 segon"
163         other: "menys de %{count} segons"
164       x_seconds:
165         one:  "1 segon"
166         other: "%{count} segons"
167       less_than_x_minutes:
168         one:  "menys d'1 minut"
169         other: "menys de %{count} minuts"
170       x_minutes:
171         one:  "1 minut"
172         other: "%{count} minuts"
173       about_x_hours:
174         one:  "aproximadament 1 hora"
175         other: "aproximadament %{count} hores"
176       x_days:
177         one:  "1 dia"
178         other: "%{count} dies"
179       about_x_months:
180         one:  "aproximadament 1 mes"
181         other: "aproximadament %{count} mesos"
182       x_months:
183         one:  "1 mes"
184         other: "%{count} mesos"
185       about_x_years:
186         one:  "aproximadament 1 any"
187         other: "aproximadament %{count} anys"
188       over_x_years:
189         one:  "més d'1 any"
190         other: "més de %{count} anys"
191       almost_x_years:
192         one:   "casi 1 any"
193         other: "casi %{count} anys"
194     prompts:
195       year: "Any"
196       month: "Mes"
197       day: "Dia"
198       hour: "Hora"
199       minute: "Minut"
200       second: "Segun"
201
202   helpers:
203     select:
204       prompt: "Si us plau tria"
205
206     submit:
207       create: 'Crear %{model}'
208       update: 'Actualizar %{model}'
209       submit: 'Guardar %{model}'
210
211
212   errors:
213     format: "%{attribute} %{message}"
214
215     messages: &errors_messages
216       inclusion: "no està inclós a la llista"
217       exclusion: "està reservat"
218       invalid: "no és vàlid"
219       confirmation: "no coincideix"
220       accepted: "ha de ser acceptat"
221       empty: "no pot estar buit"
222       blank: "no pot estar en blanc"
223       too_long: "és massa llarg (%{count} caràcters màxim)"
224       too_short: "és massa curt (%{count} caràcters mínim)"
225       wrong_length: "no té la longitud correcte (%{count} caràcters exactament)"
226       not_a_number: "no és un número"
227       not_an_integer: "ha de ser un enter"
228       taken: "no està disponible"
229       not_a_number: "no és un número"
230       greater_than: "ha de ser més gran que %{count}"
231       greater_than_or_equal_to: "ha de ser més gran o igual a %{count}"
232       equal_to: "ha de ser igual a %{count}"
233       less_than: "ha de ser menor que %{count}"
234       less_than_or_equal_to: "ha de ser menor o igual a %{count}"
235       odd: "ha de ser imparell"
236       even: "ha de ser parell"
237       record_invalid: "La validació ha fallat: %{errors}"
238     template: &errors_template
239       header:
240         one: "No s'ha pogut desar aquest/a %{model} perquè hi ha 1 error"
241         other: "No s'ha pogut desar aquest/a %{model} perquè hi ha hagut %{count} errors"
242       body: "Hi ha hagut problemes amb els següents camps:"
243
244   activerecord:
245     errors:
246       messages:
247         <<: *errors_messages
248       template:
249         <<: *errors_template
250
251       full_messages:
252         format: "%{attribute} %{message}"