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