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