Froze rails gems
[depot.git] / vendor / rails / actionpack / lib / action_view / locale / en.yml
1 "en":
2 number:
3 # Used in number_with_delimiter()
4 # These are also the defaults for 'currency', 'percentage', 'precision', and 'human'
5 format:
6 # Sets the separator between the units, for more precision (e.g. 1.0 / 2.0 == 0.5)
7 separator: "."
8 # Delimets thousands (e.g. 1,000,000 is a million) (always in groups of three)
9 delimiter: ","
10 # Number of decimals, behind the separator (the number 1 with a precision of 2 gives: 1.00)
11 precision: 3
12
13 # Used in number_to_currency()
14 currency:
15 format:
16 # Where is the currency sign? %u is the currency unit, %n the number (default: $5.00)
17 format: "%u%n"
18 unit: "$"
19 # These three are to override number.format and are optional
20 separator: "."
21 delimiter: ","
22 precision: 2
23
24 # Used in number_to_percentage()
25 percentage:
26 format:
27 # These three are to override number.format and are optional
28 # separator:
29 delimiter: ""
30 # precision:
31
32 # Used in number_to_precision()
33 precision:
34 format:
35 # These three are to override number.format and are optional
36 # separator:
37 delimiter: ""
38 # precision:
39
40 # Used in number_to_human_size()
41 human:
42 format:
43 # These three are to override number.format and are optional
44 # separator:
45 delimiter: ""
46 precision: 1
47
48 # Used in distance_of_time_in_words(), distance_of_time_in_words_to_now(), time_ago_in_words()
49 datetime:
50 distance_in_words:
51 half_a_minute: "half a minute"
52 less_than_x_seconds:
53 one: "less than 1 second"
54 other: "less than {{count}} seconds"
55 x_seconds:
56 one: "1 second"
57 other: "{{count}} seconds"
58 less_than_x_minutes:
59 one: "less than a minute"
60 other: "less than {{count}} minutes"
61 x_minutes:
62 one: "1 minute"
63 other: "{{count}} minutes"
64 about_x_hours:
65 one: "about 1 hour"
66 other: "about {{count}} hours"
67 x_days:
68 one: "1 day"
69 other: "{{count}} days"
70 about_x_months:
71 one: "about 1 month"
72 other: "about {{count}} months"
73 x_months:
74 one: "1 month"
75 other: "{{count}} months"
76 about_x_years:
77 one: "about 1 year"
78 other: "about {{count}} years"
79 over_x_years:
80 one: "over 1 year"
81 other: "over {{count}} years"
82
83 activerecord:
84 errors:
85 template:
86 header:
87 one: "1 error prohibited this {{model}} from being saved"
88 other: "{{count}} errors prohibited this {{model}} from being saved"
89 # The variable :count is also available
90 body: "There were problems with the following fields:"
91