]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/es.yml
287bfda8715bca3b846aa840b7fa9a31d917aec9
[rails.git] / vendor / plugins / rails-i18n / locale / es.yml
1 # Spanish translations for Rails
2 # by Francisco Fernando García Nieto (ffgarcianieto@gmail.com)
3
4 es:
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       # Rails <= v2.2.2
51       # storage_units: [Bytes, KB, MB, GB, TB]
52       # Rails >= v2.3
53       storage_units:
54         format: "%n %u"
55         units:
56           byte:
57             one:   "Byte"
58             other: "Bytes"
59           kb: "KB"
60           mb: "MB"
61           gb: "GB"
62           tb: "TB"
63
64   # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
65   datetime:
66     distance_in_words:
67       half_a_minute: "medio minuto" 
68       less_than_x_seconds:
69         one:  "menos de 1 segundo" 
70         other: "menos de {{count}} segundos"
71       x_seconds:
72         one:  "1 segundo" 
73         other: "{{count}} segundos" 
74       less_than_x_minutes:
75         one:  "menos de 1 minuto" 
76         other: "menos de {{count}} minutos" 
77       x_minutes:
78         one:  "1 minuto" 
79         other: "{{count}} minutos" 
80       about_x_hours:
81         one:  "alrededor de 1 hora" 
82         other: "alrededor de {{count}} horas" 
83       x_days:
84         one:  "1 día" 
85         other: "{{count}} días" 
86       about_x_months:
87         one:  "alrededor de 1 mes" 
88         other: "alrededor de {{count}} meses" 
89       x_months:
90         one:  "1 mes" 
91         other: "{{count}} meses" 
92       about_x_years:
93         one:  "alrededor de 1 año" 
94         other: "alrededor de {{count}} años" 
95       over_x_years:
96         one:  "más de 1 año" 
97         other: "más de {{count}} años" 
98
99   activerecord:
100     errors:
101       template:
102         header:
103           one:   "no se pudo guardar este {{model}} porque se encontró 1 error" 
104           other:  "no se pudo guardar este {{model}} porque se encontraron {{count}} errores" 
105         # The variable :count is also available
106         body: "Se encontraron problemas con los siguientes campos:" 
107
108       # The values :model, :attribute and :value are always available for interpolation
109       # The value :count is available when applicable. Can be used for pluralization.
110       messages:
111         inclusion: "no está incluido en la lista" 
112         exclusion: "está reservado" 
113         invalid: "no es válido" 
114         confirmation: "no coincide con la confirmación"
115         accepted: "debe ser aceptado"
116         empty: "no puede estar vacío"
117         blank: "no puede estar en blanco"
118         too_long: "es demasiado largo ({{count}} caracteres máximo)"
119         too_short: "es demasiado corto ({{count}} caracteres mínimo)"
120         wrong_length: "no tiene la longitud correcta ({{count}} caracteres exactos)"
121         taken: "ya está en uso"
122         not_a_number: "no es un número"
123         greater_than: "debe ser mayor que {{count}}"
124         greater_than_or_equal_to: "debe ser mayor que o igual a {{count}}"
125         equal_to: "debe ser igual a {{count}}"
126         less_than: "debe ser menor que {{count}}"
127         less_than_or_equal_to: "debe ser menor que o igual a {{count}}"
128         odd: "debe ser impar"
129         even: "debe ser par"
130
131         # Append your own errors here or at the model/attributes scope.
132
133       models:
134         # Overrides default messages
135
136       attributes:
137         # Overrides model and default messages.
138
139   date:
140     formats:
141       # Use the strftime parameters for formats.
142       # When no format has been given, it uses default.
143       # You can provide other formats here if you like!
144       default: "%e/%m/%Y"
145       short: "%d de %b" 
146       long: "%d de %B de %Y" 
147
148     day_names: [Domingo, Lunes, Martes, Miércoles, Jueves, Viernes, Sábado]
149     abbr_day_names: [Dom, Lun, Mar, Mie, Jue, Vie, Sab]
150
151     # Don't forget the nil at the beginning; there's no such thing as a 0th month
152     month_names: [~, Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Setiembre, Octubre, Noviembre, Diciembre]
153     abbr_month_names: [~, Ene, Feb, Mar, Abr, May, Jun, Jul, Ago, Set, Oct, Nov, Dic]
154     # Used in date_select and datime_select.
155     order: [ :year, :month, :day ]
156
157   time:
158     formats:
159       default: "%A, %d de %B de %Y %H:%M:%S %z"
160       short: "%d de %b %H:%M" 
161       long: "%d de %B de %Y %H:%M" 
162     am: "am" 
163     pm: "pm" 
164
165 # Used in array.to_sentence.
166   support:
167     array:
168       # Rails <= v.2.2.2
169       # sentence_connector: "y"
170       # Rails >= v.2.3
171       words_connector: ", "
172       two_words_connector: " y "
173       last_word_connector: " y "