]> git.openstreetmap.org Git - rails.git/blob - vendor/plugins/rails-i18n/locale/zh-CN.yml
Update rails translations
[rails.git] / vendor / plugins / rails-i18n / locale / zh-CN.yml
1 # Chinese (China) translations for Ruby on Rails
2 # by tsechingho (http://github.com/tsechingho)
3
4 zh-CN:
5   date:
6     formats:
7       default: "%Y-%m-%d"
8       short: "%b%d日"
9       long: "%Y年%b%d日"
10     day_names: [星期日, 星期一, 星期二, 星期三, 星期四, 星期五, 星期六]
11     abbr_day_names: [日, 一, 二, 三, 四, 五, 六]
12     month_names: [~, 一月, 二月, 三月, 四月, 五月, 六月, 七月, 八月, 九月, 十月, 十一月, 十二月]
13     abbr_month_names: [~, 1月, 2月, 3月, 4月, 5月, 6月, 7月, 8月, 9月, 10月, 11月, 12月]
14     order:
15       - :year
16       - :month
17       - :day
18
19   time:
20     formats:
21       default: "%Y年%b%d日 %A %H:%M:%S %Z"
22       short: "%b%d日 %H:%M"
23       long: "%Y年%b%d日 %H:%M"
24     am: "上午"
25     pm: "下午"
26
27   datetime:
28     distance_in_words:
29       half_a_minute: "半分钟"
30       less_than_x_seconds:
31         one: "不到一秒"
32         other: "不到 %{count} 秒"
33       x_seconds:
34         one: "一秒"
35         other: "%{count} 秒"
36       less_than_x_minutes:
37         one: "不到一分钟"
38         other: "不到 %{count} 分钟"
39       x_minutes:
40         one: "一分钟"
41         other: "%{count} 分钟"
42       about_x_hours:
43         one: "大约一小时"
44         other: "大约 %{count} 小时"
45       x_days:
46         one: "一天"
47         other: "%{count} 天"
48       about_x_months:
49         one: "大约一个月"
50         other: "大约 %{count} 个月"
51       x_months:
52         one: "一个月"
53         other: "%{count} 个月"
54       about_x_years:
55         one: "大约一年"
56         other: "大约 %{count} 年"
57       over_x_years:
58         one: "一年多"
59         other: "%{count} 年多"
60       almost_x_years:
61         one:   "接近一年"
62         other: "接近 %{count} 年"
63     prompts:
64       year:   "年"
65       month:  "月"
66       day:    "日"
67       hour:   "时"
68       minute: "分"
69       second: "秒"
70
71   number:
72     format:
73       separator: "."
74       delimiter: ","
75       precision: 3
76       significant: false
77       strip_insignificant_zeros: false
78     currency:
79       format:
80         format: "%u %n"
81         unit: "CN¥"
82         separator: "."
83         delimiter: ","
84         precision: 2
85         significant: false
86         strip_insignificant_zeros: false
87     percentage:
88       format:
89         delimiter: ""
90     precision:
91       format:
92         delimiter: ""
93     human:
94       format:
95         delimiter: ""
96         precision: 1
97         significant: false
98         strip_insignificant_zeros: false
99       storage_units:
100         format: "%n %u"
101         units:
102           byte:
103             one: "Byte"
104             other: "Bytes"
105           kb: "KB"
106           mb: "MB"
107           gb: "GB"
108           tb: "TB"
109       decimal_units:
110         format: "%n %u"
111         units:
112           # 10^-21 zepto, 10^-24 yocto
113           atto: "渺"  # 10^-18
114           femto: "飞" # 10^-15 毫微微
115           pico: "漠"  # 10^-12 微微
116           nano: "奈"  # 10^-9 毫微
117           micro: "微" # 10^-6
118           mili: "毫"  # 10^-3 milli
119           centi: "厘" # 10^-2
120           deci: "分"  # 10^-1
121           unit: ""
122           ten:
123             one: "十"
124             other: "十"  # 10^1
125           hundred: "百"  # 10^2
126           thousand: "千" # 10^3 kilo
127           million: "百万" # 10^6 mega
128           billion: "十亿" # 10^9 giga
129           trillion: "兆" # 10^12 tera
130           quadrillion: "千兆" # 10^15 peta
131           # 10^18 exa, 10^21 zetta, 10^24 yotta
132
133   support:
134     array:
135       words_connector: ", "
136       two_words_connector: " 和 "
137       last_word_connector: ", 和 "
138     select:
139       prompt: "请选择"
140
141   activerecord:
142     errors:
143       template: # ~ 2.3.5 backward compatible
144         header:
145           one: "有 1 个错误发生导致「%{model}」无法被保存。"
146           other: "有 %{count} 个错误发生导致「%{model}」无法被保存。"
147         body: "如下字段出现错误:"
148       full_messages:
149         format: "%{attribute} %{message}"
150       messages:
151         inclusion: "不包含于列表中"
152         exclusion: "是保留关键字"
153         invalid: "是无效的"
154         confirmation: "与确认值不匹配"
155         accepted: "必须是可被接受的"
156         empty: "不能留空"
157         blank: "不能为空字符"
158         too_long: "过长(最长为 %{count} 个字符)"
159         too_short: "过短(最短为 %{count} 个字符)"
160         wrong_length: "长度非法(必须为 %{count} 个字符)"
161         not_a_number: "不是数字"
162         not_an_integer: "必须是整数"
163         greater_than: "必须大于 %{count}"
164         greater_than_or_equal_to: "必须大于或等于 %{count}"
165         equal_to: "必须等于 %{count}"
166         less_than: "必须小于 %{count}"
167         less_than_or_equal_to: "必须小于或等于 %{count}"
168         odd: "必须为单数"
169         even: "必须为双数"
170         taken: "已经被使用"
171         record_invalid: "校验失败: %{errors}"
172
173   activemodel:
174     errors:
175       template:
176         header:
177           one: "有 1 个错误发生导致「%{model}」无法被保存。"
178           other: "有 %{count} 个错误发生导致「%{model}」无法被保存。"
179         body: "如下字段出现错误:"
180
181   errors:
182     format: "%{attribute} %{message}"
183     messages:
184       inclusion: "不包含于列表中"
185       exclusion: "是保留关键字"
186       invalid: "是无效的"
187       confirmation: "与确认值不匹配"
188       accepted: "必须是可被接受的"
189       empty: "不能留空"
190       blank: "不能为空字符"
191       too_long: "过长(最长为 %{count} 个字符)"
192       too_short: "过短(最短为 %{count} 个字符)"
193       wrong_length: "长度非法(必须为 %{count} 个字符)"
194       not_a_number: "不是数字"
195       not_an_integer: "必须是整数"
196       greater_than: "必须大于 %{count}"
197       greater_than_or_equal_to: "必须大于或等于 %{count}"
198       equal_to: "必须等于 %{count}"
199       less_than: "必须小于 %{count}"
200       less_than_or_equal_to: "必须小于或等于 %{count}"
201       odd: "必须为单数"
202       even: "必须为双数"
203
204   helpers:
205     select:
206       prompt: "请选择"
207     submit:
208       create: "新增%{model}"
209       update: "更新%{model}"
210       submit: "储存%{model}"