]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/ca.yml
Switch to using the rails-i18n-updater gem instead of the rails-i18n plugin
[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   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 (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         format: "%n %u"
21         unit: "€"
22         # These three are to override number.format and are optional
23         separator: ","
24         delimiter: "."
25         precision: 2
26
27     # Used in number_to_percentage()
28     percentage:
29       format:
30         # These three are to override number.format and are optional
31         # separator:
32         delimiter: ""
33         # precision:
34
35     # Used in number_to_precision()
36     precision:
37       format:
38         # These three are to override number.format and are optional
39         # separator:
40         delimiter: ""
41         # precision:
42
43     # Used in number_to_human_size()
44     human:
45       format:
46         # These three are to override number.format and are optional
47         # separator:
48         delimiter: ""
49         precision: 1
50       storage_units:
51         # Storage units output formatting.
52         # %u is the storage unit, %n is the number (default: 2 MB)
53         format: "%n %u"
54         units:
55           byte:
56             one:   "Byte"
57             other: "Bytes"
58           kb: "KB"
59           mb: "MB"
60           gb: "GB"
61           tb: "TB"
62
63   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
64   datetime:
65     distance_in_words:
66       half_a_minute: "mig minut"
67       less_than_x_seconds:
68         one:  "menys d'1 segon"
69         other: "menys de %{count} segons"
70       x_seconds:
71         one:  "1 segon"
72         other: "%{count} segons"
73       less_than_x_minutes:
74         one:  "menys d'1 minut"
75         other: "menys de %{count} minuts"
76       x_minutes:
77         one:  "1 minut"
78         other: "%{count} minuts"
79       about_x_hours:
80         one:  "aproximadament 1 hora"
81         other: "aproximadament %{count} hores"
82       x_days:
83         one:  "1 dia"
84         other: "%{count} dies"
85       about_x_months:
86         one:  "aproximadament 1 mes"
87         other: "aproximadament %{count} mesos"
88       x_months:
89         one:  "1 mes"
90         other: "%{count} mesos"
91       about_x_years:
92         one:  "aproximadament 1 any"
93         other: "aproximadament %{count} anys"
94       over_x_years:
95         one:  "més d'1 any"
96         other: "més de %{count} anys"
97
98   activerecord:
99     errors:
100       template:
101         header:
102           one:   "No s'ha pogut desar aquest/a %{model} perquè hi ha 1 error"
103           other:  "No s'ha pogut desar aquest/a %{model} perquè hi ha hagut %{count} errors"
104         # The variable :count is also available
105         body: "Hi ha hagut problemes amb els següents camps:"
106
107       # The values :model, :attribute and :value are always available for interpolation
108       # The value :count is available when applicable. Can be used for pluralization.
109       messages:
110         inclusion: "no està incluós a la llista"
111         exclusion: "està reservat"
112         invalid: "no és vàlid"
113         confirmation: "no coincideix"
114         accepted: "ha de ser acceptat"
115         empty: "no pot estar buit"
116         blank: "no pot estar en blanc"
117         too_long: "és massa llarg (%{count} caràcters màxim)"
118         too_short: "és massa curt (%{count} caràcters mínim)"
119         wrong_length: "no té la longitud correcte (%{count} caràcters exactament)"
120         taken: "no està disponible"
121         not_a_number: "no és un número"
122         greater_than: "ha de ser més gran que %{count}"
123         greater_than_or_equal_to: "ha de ser més gran o igual a %{count}"
124         equal_to: "ha de ser igual a %{count}"
125         less_than: "ha de ser menor que %{count}"
126         less_than_or_equal_to: "ha de ser menor o igual a %{count}"
127         odd: "ha de ser imparell"
128         even: "ha de ser parell"
129
130         # Append your own errors here or at the model/attributes scope.
131
132       models:
133         # Overrides default messages
134
135       attributes:
136         # Overrides model and default messages.
137
138   date:
139     formats:
140       # Use the strftime parameters for formats.
141       # When no format has been given, it uses default.
142       # You can provide other formats here if you like!
143       default: "%Y-%m-%d"
144       short: "%d de %b"
145       long: "%d de %B de %Y"
146
147     day_names: [diumenge, dilluns, dimarts, dimecres, dijous, divendres, dissabte]
148     abbr_day_names: [dg, dl, dm, dc, dj, dv, ds]
149
150     # Don't forget the nil at the beginning; there's no such thing as a 0th month
151     month_names: [~, gener, febrer, març, abril, maig, juny, juliol, agost, setembre, octubre, novembre, desembre]
152     abbr_month_names: [~, Gen, Feb, Mar, Abr, Mai, Jun, Jul, Ago, Set, Oct, Nov, Des]
153     # Used in date_select and datime_select.
154     order:
155       - :day
156       - :month
157       - :year
158
159   time:
160     formats:
161       default: "%A, %d de %B de %Y %H:%M:%S %z"
162       short: "%d de %b %H:%M"
163       long: "%d de %B de %Y %H:%M"
164     am: "am"
165     pm: "pm"
166
167 # Used in array.to_sentence.
168   support:
169     array:
170       sentence_connector: "i"