]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/ro.yml
Turn output_compression plugin into a library
[rails.git] / vendor / rails-locales / ro.yml
1 # Romanian translations for Ruby on Rails
2 # by Catalin Ilinca (me@talin.ro)
3 # updated by kfl62 (bogus keys are now commented)
4
5 ro:
6   date:
7     formats:
8       default: "%d-%m-%Y"
9       short: "%d %b"
10       long: "%d %B %Y"
11
12     day_names:
13       - Duminică
14       - Luni
15       - Marți
16       - Miercuri
17       - Joi
18       - Vineri
19       - Sâmbată
20     abbr_day_names:
21       - Dum
22       - Lun
23       - Mar
24       - Mie
25       - Joi
26       - Vin
27       - Sâm
28     month_names:
29       - ~
30       - Ianuarie
31       - Februarie
32       - Martie
33       - Aprilie
34       - Mai
35       - Iunie
36       - Iulie
37       - August
38       - Septembrie
39       - Octombrie
40       - Noiembrie
41       - Decembrie
42     abbr_month_names:
43       - ~
44       - Ian
45       - Feb
46       - Mar
47       - Apr
48       - Mai
49       - Iun
50       - Iul
51       - Aug
52       - Sep
53       - Oct
54       - Noi
55       - Dec
56     order:
57       - :day
58       - :month
59       - :year
60
61   time:
62     formats:
63       default: "%a %d %b %Y, %H:%M:%S %z"
64       short: "%d %b %H:%M"
65       long: "%d %B %Y %H:%M"
66     am: ''
67     pm: ''
68
69   support:
70     array:
71       words_connector: ", "
72       two_words_connector: " şi "
73       last_word_connector: " şi "
74     select:
75       prompt: "Alegeţi"
76   number:
77     format:
78       precision: 3
79       separator: '.'
80       delimiter: ','
81       significant: false
82       strip_insignificant_zeros: false
83     currency:
84       format:
85         unit: 'RON'
86         precision: 2
87         separator: '.'
88         delimiter: ','
89         format: '%n %u'
90         significant: false
91         strip_insignificant_zeros: false
92     percentage:
93       format:
94         delimiter: ","
95     precision:
96       format:
97         delimiter: ""
98     human:
99       format:
100         delimiter: ","
101         precision: 3
102         significant: true
103         strip_insignificant_zeros: true
104       storage_units:
105         format: "%n %u"
106         units:
107           byte:
108             one:   "Byte"
109             other: "Bytes"
110           kb: "KB"
111           mb: "MB"
112           gb: "GB"
113           tb: "TB"
114       decimal_units:
115         format: "%n %u"
116         units:
117           unit: ""
118           thousand: Mie
119           million: Milion
120           billion: Miliard
121           trillion: Trilion
122           quadrillion: Quadrilion
123   datetime:
124     distance_in_words:
125       half_a_minute: "jumătate de minut"
126       less_than_x_seconds:
127         one:  "mai puțin de o secundă"
128         other: "mai puțin de %{count} secunde"
129       x_seconds:
130         one:  "1 secundă"
131         other: "%{count} secunde"
132       less_than_x_minutes:
133         one:  "mai puțin de un minut"
134         other: "mai puțin de %{count} minute"
135       x_minutes:
136         one:  "1 minut"
137         other: "%{count} minute"
138       about_x_hours:
139         one:  "aproximativ o oră"
140         other: "aproximativ %{count} ore"
141       x_days:
142         one:  "1 zi"
143         other: "%{count} zile"
144       about_x_months:
145         one:  "aproximativ o lună"
146         other: "aproximativ %{count} luni"
147       x_months:
148         one:  "1 lună"
149         other: "%{count} luni"
150       about_x_years:
151         one:  "aproximativ un an"
152         other: "aproximativ %{count} ani"
153       over_x_years:
154         one:  "mai mult de un an"
155         other: "mai mult de %{count} ani"
156       almost_x_years:
157         one:   "aproape 1 an"
158         other: "aproape %{count} ani"
159     prompts:
160       year:   "Anul"
161       month:  "Luna"
162       day:    "Ziua"
163       hour:   "Ora"
164       minute: "Minutul"
165       second: "Secunda"
166
167   helpers:
168     select:
169       prompt: "Alegeţi"
170     submit:
171       create: 'Creare %{model}'
172       update: 'Modificare %{model}'
173       submit: 'Salvare %{model}'
174
175   errors:
176     format: "%{attribute} %{message}"
177     messages: &errors_messages
178       inclusion: "nu este inclus în listă"
179       exclusion: "este rezervat"
180       invalid: "este invalid"
181       confirmation: "nu este confirmat"
182       accepted: "trebuie dat acceptul"
183       empty: "nu poate fi gol"
184       blank: "nu poate fi gol"
185       too_long: "este prea lung (se pot folosi maximum %{count} caractere)"
186       too_short: "este pre scurt (minumim de caractere este %{count})"
187       wrong_length: "nu are lungimea corectă (trebuie să aiba %{count} caractere)"
188       not_a_number: "nu este un număr"
189       not_an_integer: "trebuie să fie un mumăr întreg"
190       greater_than: "trebuie să fie mai mare decât %{count}"
191       greater_than_or_equal_to: "trebuie să fie mai mare sau egal cu %{count}"
192       equal_to: "trebuie să fie egal cu %{count}"
193       less_than: "trebuie să fie mai mic decât %{count}"
194       less_than_or_equal_to: "trebuie să fie mai mic sau egal cu %{count}"
195       odd: "trebuie să fie par"
196       even: "trebuie să fie impar"
197       taken: "este deja folosit"
198       record_invalid: "Validare nereuşită %{errors}"
199     template: &errors_template
200       header:
201         one: "Nu am putut salva acest %{model}: o eroare"
202         other: "Nu am putut salva acest %{model}: %{count} erori."
203       body: "Încearcă să corectezi urmatoarele câmpuri:"
204
205   activerecord:
206     errors:
207       messages:
208         <<: *errors_messages
209       template:
210         <<: *errors_template
211       full_messages:
212         format: "%{attribute} %{message}"