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