]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/en-AU.yml
735766c9b621d1d4310a9df4a195cc394b8504d0
[rails.git] / vendor / rails-locales / en-AU.yml
1 # Australian English translations for Ruby on Rails
2
3 "en-AU":
4   date:
5     formats:
6       default: "%d-%m-%Y"
7       short: "%b %d"
8       long: "%B %d, %Y"
9
10     day_names:
11       - Sunday
12       - Monday
13       - Tuesday
14       - Wednesday
15       - Thursday
16       - Friday
17       - Saturday
18     abbr_day_names:
19       - Sun
20       - Mon
21       - Tue
22       - Wed
23       - Thu
24       - Fri
25       - Sat
26
27     month_names:
28       - ~
29       - January
30       - February
31       - March
32       - April
33       - May
34       - June
35       - July
36       - August
37       - September
38       - October
39       - November
40       - December
41     abbr_month_names:
42       - ~
43       - Jan
44       - Feb
45       - Mar
46       - Apr
47       - May
48       - Jun
49       - Jul
50       - Aug
51       - Sep
52       - Oct
53       - Nov
54       - Dec
55     order:
56       - :year
57       - :month
58       - :day
59
60   time:
61     formats:
62       default: "%a, %d %b %Y %H:%M:%S %z"
63       short: "%d %b %H:%M"
64       long: "%B %d, %Y %H:%M"
65     am: "am"
66     pm: "pm"
67
68   support:
69     array:
70       words_connector: ", "
71       two_words_connector: " and "
72       last_word_connector: ", and "
73
74     select:
75       prompt: "Please select"
76
77   number:
78     format:
79       separator: "."
80       delimiter: ","
81       precision: 3
82       significant: false
83       strip_insignificant_zeros: false
84
85     currency:
86       format:
87         format: "%u%n"
88         unit: "$"
89         separator: "."
90         delimiter: ","
91         precision: 2
92         significant: false
93         strip_insignificant_zeros: false
94
95     percentage:
96       format:
97         delimiter: ""
98
99     precision:
100       format:
101         delimiter: ""
102
103     human:
104       format:
105         delimiter: ""
106         precision: 3
107         significant: true
108         strip_insignificant_zeros: true
109       storage_units:
110         format: "%n %u"
111         units:
112           byte:
113             one:   "Byte"
114             other: "Bytes"
115           kb: "KB"
116           mb: "MB"
117           gb: "GB"
118           tb: "TB"
119       decimal_units:
120         format: "%n %u"
121         units:
122           unit: ""
123           thousand: Thousand
124           million: Million
125           billion: Billion
126           trillion: Trillion
127           quadrillion: Quadrillion
128
129   datetime:
130     distance_in_words:
131       half_a_minute: "half a minute"
132       less_than_x_seconds:
133         one:   "less than 1 second"
134         other: "less than %{count} seconds"
135       x_seconds:
136         one:   "1 second"
137         other: "%{count} seconds"
138       less_than_x_minutes:
139         one:   "less than a minute"
140         other: "less than %{count} minutes"
141       x_minutes:
142         one:   "1 minute"
143         other: "%{count} minutes"
144       about_x_hours:
145         one:   "about 1 hour"
146         other: "about %{count} hours"
147       x_days:
148         one:   "1 day"
149         other: "%{count} days"
150       about_x_months:
151         one:   "about 1 month"
152         other: "about %{count} months"
153       x_months:
154         one:   "1 month"
155         other: "%{count} months"
156       about_x_years:
157         one:   "about 1 year"
158         other: "about %{count} years"
159       over_x_years:
160         one:   "over 1 year"
161         other: "over %{count} years"
162       almost_x_years:
163         one:   "almost 1 year"
164         other: "almost %{count} years"
165     prompts:
166       year:   "Year"
167       month:  "Month"
168       day:    "Day"
169       hour:   "Hour"
170       minute: "Minute"
171       second: "Seconds"
172
173   helpers:
174     select:
175       prompt: "Please select"
176
177     submit:
178       create: 'Create %{model}'
179       update: 'Update %{model}'
180       submit: 'Save %{model}'
181
182   errors:
183     format: "%{attribute} %{message}"
184
185     messages: &errors_messages
186       inclusion: "is not included in the list"
187       exclusion: "is reserved"
188       invalid: "is invalid"
189       confirmation: "doesn't match confirmation"
190       accepted: "must be accepted"
191       empty: "can't be empty"
192       blank: "can't be blank"
193       too_long:
194         one: "is too long (maximum is 1 character)"
195         other: "is too long (maximum is %{count} characters)"
196       too_short:
197         one: "is too short (minimum is 1 character)"
198         other: "is too short (minimum is %{count} characters)"
199       wrong_length:
200         one: "is the wrong length (should be 1 character)"
201         other: "is the wrong length (should be %{count} characters)"
202       not_a_number: "is not a number"
203       not_an_integer: "must be an integer"
204       greater_than: "must be greater than %{count}"
205       greater_than_or_equal_to: "must be greater than or equal to %{count}"
206       equal_to: "must be equal to %{count}"
207       less_than: "must be less than %{count}"
208       less_than_or_equal_to: "must be less than or equal to %{count}"
209       odd: "must be odd"
210       even: "must be even"
211
212   activerecord:
213     errors:
214       template:
215         header:
216           one:    "1 error prohibited this %{model} from being saved"
217           other:  "%{count} errors prohibited this %{model} from being saved"
218         body: "There were problems with the following fields:"
219
220       messages:
221         taken: "has already been taken"
222         record_invalid: "Validation failed: %{errors}"
223         <<: *errors_messages
224
225       full_messages:
226         format: "%{attribute} %{message}"