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