]> git.openstreetmap.org Git - rails.git/blob - vendor/rails-locales/en-US.yml
Add support for viewing a list of your friends' changesets
[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
87     currency:
88       format:
89         format: "%u%n"
90         unit: "$"
91         separator: "."
92         delimiter: ","
93         precision: 2
94         significant: false
95         strip_insignificant_zeros: false
96
97     percentage:
98       format:
99         delimiter: ""
100
101     precision:
102       format:
103         delimiter: ""
104
105     human:
106       format:
107         delimiter: ""
108         precision: 3
109         significant: true
110         strip_insignificant_zeros: true
111       storage_units:
112         format: "%n %u"
113         units:
114           byte:
115             one:   "Byte"
116             other: "Bytes"
117           kb: "KB"
118           mb: "MB"
119           gb: "GB"
120           tb: "TB"
121       decimal_units:
122         format: "%n %u"
123         units:
124           unit: ""
125           thousand: Thousand
126           million: Million
127           billion: Billion
128           trillion: Trillion
129           quadrillion: Quadrillion
130
131   datetime:
132     distance_in_words:
133       half_a_minute: "half a minute"
134       less_than_x_seconds:
135         one:   "less than 1 second"
136         other: "less than %{count} seconds"
137       x_seconds:
138         one:   "1 second"
139         other: "%{count} seconds"
140       less_than_x_minutes:
141         one:   "less than a minute"
142         other: "less than %{count} minutes"
143       x_minutes:
144         one:   "1 minute"
145         other: "%{count} minutes"
146       about_x_hours:
147         one:   "about 1 hour"
148         other: "about %{count} hours"
149       x_days:
150         one:   "1 day"
151         other: "%{count} days"
152       about_x_months:
153         one:   "about 1 month"
154         other: "about %{count} months"
155       x_months:
156         one:   "1 month"
157         other: "%{count} months"
158       about_x_years:
159         one:   "about 1 year"
160         other: "about %{count} years"
161       over_x_years:
162         one:   "over 1 year"
163         other: "over %{count} years"
164       almost_x_years:
165         one:   "almost 1 year"
166         other: "almost %{count} years"
167     prompts:
168       year:   "Year"
169       month:  "Month"
170       day:    "Day"
171       hour:   "Hour"
172       minute: "Minute"
173       second: "Seconds"
174
175   helpers:
176     select:
177       prompt: "Please select"
178
179     submit:
180       create: 'Create %{model}'
181       update: 'Update %{model}'
182       submit: 'Save %{model}'
183
184   errors:
185     format: "%{attribute} %{message}"
186
187     messages: &errors_messages
188       inclusion: "is not included in the list"
189       exclusion: "is reserved"
190       invalid: "is invalid"
191       confirmation: "doesn't match confirmation"
192       accepted: "must be accepted"
193       empty: "can't be empty"
194       blank: "can't be blank"
195       too_long:
196         one: "is too long (maximum is 1 character)"
197         other: "is too long (maximum is %{count} characters)"
198       too_short:
199         one: "is too short (minimum is 1 character)"
200         other: "is too short (minimum is %{count} characters)"
201       wrong_length:
202         one: "is the wrong length (should be 1 character)"
203         other: "is the wrong length (should be %{count} characters)"
204       not_a_number: "is not a number"
205       not_an_integer: "must be an integer"
206       greater_than: "must be greater than %{count}"
207       greater_than_or_equal_to: "must be greater than or equal to %{count}"
208       equal_to: "must be equal to %{count}"
209       less_than: "must be less than %{count}"
210       less_than_or_equal_to: "must be less than or equal to %{count}"
211       odd: "must be odd"
212       even: "must be even"
213
214   activerecord:
215     errors:
216       template:
217         header:
218           one:    "1 error prohibited this %{model} from being saved"
219           other:  "%{count} errors prohibited this %{model} from being saved"
220         body: "There were problems with the following fields:"
221
222       messages:
223         taken: "has already been taken"
224         record_invalid: "Validation failed: %{errors}"
225         <<: *errors_messages
226
227       full_messages:
228         format: "%{attribute} %{message}"