solidus_i18n 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.hound.yml +25 -0
  4. data/.rubocop.yml +7 -0
  5. data/.travis.yml +12 -0
  6. data/CONTRIBUTING.md +70 -0
  7. data/Gemfile +13 -0
  8. data/Guardfile +11 -0
  9. data/LICENSE.md +26 -0
  10. data/README.md +74 -0
  11. data/Rakefile +85 -0
  12. data/app/assets/javascripts/spree/backend/solidus_i18n.js +2 -0
  13. data/app/assets/javascripts/spree/backend/translations.js.coffee +5 -0
  14. data/app/assets/javascripts/spree/frontend/cart_decorator.js.coffee +5 -0
  15. data/app/assets/javascripts/spree/frontend/locale.js.coffee +3 -0
  16. data/app/assets/javascripts/spree/frontend/solidus_i18n.js +2 -0
  17. data/app/assets/stylesheets/spree/backend/solidus_i18n.css +8 -0
  18. data/app/assets/stylesheets/spree/frontend/solidus_i18n.css +8 -0
  19. data/app/controllers/spree/admin/general_settings_controller_decorator.rb +12 -0
  20. data/app/controllers/spree/api/base_controller_decorator.rb +3 -0
  21. data/app/controllers/spree/base_controller_decorator.rb +3 -0
  22. data/app/controllers/spree/locale_controller_decorator.rb +6 -0
  23. data/app/helpers/solidus_i18n/locale_helper.rb +31 -0
  24. data/app/overrides/spree/admin/general_settings/edit/localization_settings.html.erb.deface +20 -0
  25. data/app/overrides/spree/shared/_main_nav_bar/cart_link.html.erb.deface +9 -0
  26. data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +16 -0
  27. data/bin/rails +7 -0
  28. data/config/initializers/country_names.rb +51 -0
  29. data/config/initializers/routing_filter.rb +2 -0
  30. data/config/locales/bg.yml +1330 -0
  31. data/config/locales/ca.yml +1334 -0
  32. data/config/locales/cs.yml +1363 -0
  33. data/config/locales/da.yml +1336 -0
  34. data/config/locales/de-CH.yml +1288 -0
  35. data/config/locales/de.yml +1477 -0
  36. data/config/locales/en-AU.yml +1334 -0
  37. data/config/locales/en-GB.yml +1338 -0
  38. data/config/locales/en-IN.yml +1336 -0
  39. data/config/locales/en-NZ.yml +1334 -0
  40. data/config/locales/es-CL.yml +1398 -0
  41. data/config/locales/es-EC.yml +1338 -0
  42. data/config/locales/es-MX.yml +1337 -0
  43. data/config/locales/es.yml +1338 -0
  44. data/config/locales/et.yml +1316 -0
  45. data/config/locales/fa.yml +1163 -0
  46. data/config/locales/fi.yml +1352 -0
  47. data/config/locales/fr.yml +1588 -0
  48. data/config/locales/id.yml +1335 -0
  49. data/config/locales/it.yml +1395 -0
  50. data/config/locales/ja.yml +1336 -0
  51. data/config/locales/ko.yml +1294 -0
  52. data/config/locales/lv.yml +1328 -0
  53. data/config/locales/nb.yml +1339 -0
  54. data/config/locales/nl.yml +1338 -0
  55. data/config/locales/pl.yml +1345 -0
  56. data/config/locales/pt-BR.yml +1364 -0
  57. data/config/locales/pt.yml +1290 -0
  58. data/config/locales/ro.yml +1335 -0
  59. data/config/locales/ru.yml +1400 -0
  60. data/config/locales/sk.yml +1345 -0
  61. data/config/locales/sl-SI.yml +1288 -0
  62. data/config/locales/sv.yml +1372 -0
  63. data/config/locales/th.yml +1330 -0
  64. data/config/locales/tr.yml +1291 -0
  65. data/config/locales/uk.yml +1447 -0
  66. data/config/locales/vi.yml +1290 -0
  67. data/config/locales/zh-CN.yml +1345 -0
  68. data/config/locales/zh-TW.yml +1293 -0
  69. data/config/routes.rb +6 -0
  70. data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +65 -0
  71. data/lib/generators/solidus_i18n/install/install_generator.rb +27 -0
  72. data/lib/solidus_i18n/configuration.rb +9 -0
  73. data/lib/solidus_i18n/controller_locale_helper.rb +29 -0
  74. data/lib/solidus_i18n/engine.rb +45 -0
  75. data/lib/solidus_i18n/locale.rb +13 -0
  76. data/lib/solidus_i18n/utils.rb +56 -0
  77. data/lib/solidus_i18n/version.rb +18 -0
  78. data/lib/solidus_i18n.rb +8 -0
  79. data/lib/tasks/solidus_i18n/upgrade.rake +43 -0
  80. data/solidus_i18n.gemspec +46 -0
  81. data/spec/controllers/locales_controller_spec.rb +24 -0
  82. data/spec/features/admin/translations_spec.rb +33 -0
  83. data/spec/features/russian_errors_translation_spec.rb +17 -0
  84. data/spec/features/translation_spec.rb +31 -0
  85. data/spec/features/translations_spec.rb +28 -0
  86. data/spec/spec_helper.rb +31 -0
  87. data/spec/support/capybara.rb +11 -0
  88. data/spec/support/database_cleaner.rb +23 -0
  89. data/spec/support/factory_girl.rb +5 -0
  90. data/spec/support/i18n.rb +5 -0
  91. data/spec/support/spree.rb +12 -0
  92. metadata +411 -0
@@ -0,0 +1,1345 @@
1
+ zh-CN:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: "地址"
6
+ address2: "地址(继续)"
7
+ city: "城市"
8
+ country: "国家"
9
+ firstname: "名字"
10
+ lastname: "姓氏"
11
+ phone: "电话"
12
+ state: "省份"
13
+ zipcode: "邮政编码"
14
+ spree/calculator/tiered_flat_rate:
15
+ preferred_base_amount:
16
+ preferred_tiers:
17
+ spree/calculator/tiered_percent:
18
+ preferred_base_percent:
19
+ preferred_tiers:
20
+ spree/country:
21
+ iso: ISO
22
+ iso3: ISO3
23
+ iso_name: ISO名称
24
+ name: "名称"
25
+ numcode: ISO编号
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: "信用卡类型"
29
+ month: "月份"
30
+ name:
31
+ number: "卡号"
32
+ verification_value: "验证码"
33
+ year: "年份"
34
+ spree/inventory_unit:
35
+ state: "状态"
36
+ spree/line_item:
37
+ price: "单价"
38
+ quantity: "数量"
39
+ spree/option_type:
40
+ name: "名称"
41
+ presentation: "描述"
42
+ spree/order:
43
+ checkout_complete: "完成结账"
44
+ completed_at: "结账日期"
45
+ considered_risky:
46
+ coupon_code: "优惠券号码"
47
+ created_at: "下单日期"
48
+ email: "电子邮件"
49
+ ip_address: IP地址
50
+ item_total: "小记"
51
+ number: "订单号"
52
+ payment_state: "支付状态"
53
+ shipment_state: "物流状态"
54
+ special_instructions: "特别说明"
55
+ state: "状态"
56
+ total: "总计"
57
+ spree/order/bill_address:
58
+ address1: "地址"
59
+ city: "城市"
60
+ firstname: "名字"
61
+ lastname: "姓氏"
62
+ phone: "电话"
63
+ state: "省份"
64
+ zipcode: "邮政编码"
65
+ spree/order/ship_address:
66
+ address1: "地址"
67
+ city: "城市"
68
+ firstname: "名字"
69
+ lastname: "姓氏"
70
+ phone: "电话"
71
+ state: "省份"
72
+ zipcode: "邮政编码"
73
+ spree/payment:
74
+ amount: "金额"
75
+ spree/payment_method:
76
+ name: "名称"
77
+ spree/product:
78
+ available_on: "上架日期"
79
+ cost_currency: "成本币种"
80
+ cost_price: "成本"
81
+ description: "描述"
82
+ master_price: "默认价格"
83
+ name: "名称"
84
+ on_hand: "库存"
85
+ shipping_category: "物流分类"
86
+ tax_category: "缴税分类"
87
+ spree/promotion:
88
+ advertise: "推广"
89
+ code: "编号"
90
+ description: "描述"
91
+ event_name: "事件名称"
92
+ expires_at: "过期日期"
93
+ name: "名称"
94
+ path: "路径"
95
+ starts_at: "开始日期"
96
+ usage_limit: "使用次数限制"
97
+ spree/promotion_category:
98
+ name: "名称"
99
+ code: "编号"
100
+ spree/property:
101
+ name: "名称"
102
+ presentation: "描述"
103
+ spree/prototype:
104
+ name: "名称"
105
+ spree/return_authorization:
106
+ amount: "金额"
107
+ spree/role:
108
+ name: ming cheng
109
+ spree/state:
110
+ abbr: "缩写"
111
+ name: "名称"
112
+ spree/state_change:
113
+ state_changes: "状态变更"
114
+ state_from:
115
+ state_to:
116
+ timestamp: "时间"
117
+ type: "类型"
118
+ updated:
119
+ user: "用户"
120
+ spree/store:
121
+ mail_from_address:
122
+ meta_description:
123
+ meta_keywords:
124
+ name:
125
+ seo_title:
126
+ url:
127
+ spree/tax_category:
128
+ description: "描述"
129
+ name: "名称"
130
+ spree/tax_rate:
131
+ amount: "税率"
132
+ included_in_price: "包含在售价中"
133
+ show_rate_in_label: "在标签中显示比率"
134
+ spree/taxon:
135
+ name: "名称"
136
+ permalink: "永久链接"
137
+ position: "位置"
138
+ spree/taxonomy:
139
+ name: "名称"
140
+ spree/user:
141
+ email: "电子邮箱"
142
+ password: "密码"
143
+ password_confirmation: "确认密码"
144
+ spree/variant:
145
+ cost_currency: "成本币种"
146
+ cost_price: "成本"
147
+ depth: "长度/深度"
148
+ height: "高度"
149
+ price: "单价"
150
+ sku: "条码"
151
+ weight: "重量"
152
+ width: "宽度"
153
+ spree/zone:
154
+ description: "描述"
155
+ name: "名称"
156
+ errors:
157
+ models:
158
+ spree/calculator/tiered_flat_rate:
159
+ attributes:
160
+ base:
161
+ keys_should_be_positive_number:
162
+ preferred_tiers:
163
+ should_be_hash:
164
+ spree/calculator/tiered_percent:
165
+ attributes:
166
+ base:
167
+ keys_should_be_positive_number:
168
+ values_should_be_percent:
169
+ preferred_tiers:
170
+ should_be_hash:
171
+ spree/classification:
172
+ attributes:
173
+ taxon_id:
174
+ already_linked:
175
+ spree/credit_card:
176
+ attributes:
177
+ base:
178
+ card_expired:
179
+ expiry_invalid:
180
+ spree/line_item:
181
+ attributes:
182
+ currency:
183
+ must_match_order_currency:
184
+ spree/refund:
185
+ attributes:
186
+ amount:
187
+ greater_than_allowed:
188
+ spree/reimbursement:
189
+ attributes:
190
+ base:
191
+ return_items_order_id_does_not_match:
192
+ spree/return_item:
193
+ attributes:
194
+ inventory_unit:
195
+ other_completed_return_item_exists:
196
+ reimbursement:
197
+ cannot_be_associated_unless_accepted:
198
+ spree/store:
199
+ attributes:
200
+ base:
201
+ cannot_destroy_default_store:
202
+ models:
203
+ spree/address:
204
+ one: "地址"
205
+ other: "地址"
206
+ spree/country:
207
+ one: "国家"
208
+ other: "国家"
209
+ spree/credit_card:
210
+ one: "信用卡"
211
+ other: "信用卡"
212
+ spree/customer_return:
213
+ spree/inventory_unit:
214
+ one: "库存单位"
215
+ other: "库存单位"
216
+ spree/line_item:
217
+ one: "单项"
218
+ other: "单项"
219
+ spree/option_type:
220
+ one: "选项类型"
221
+ other: "选项类型"
222
+ spree/option_value:
223
+ spree/order:
224
+ one: "订单"
225
+ other: "订单"
226
+ spree/payment:
227
+ one: "支付"
228
+ other: "支付"
229
+ spree/payment_method:
230
+ one: "支付方式"
231
+ other: "支付方式"
232
+ spree/product:
233
+ one: "产品"
234
+ other: "产品"
235
+ spree/promotion: "促销"
236
+ spree/promotion_category:
237
+ one: "促销分类"
238
+ other: "促销分类"
239
+ spree/property:
240
+ one: "属性"
241
+ other: "属性"
242
+ spree/prototype:
243
+ one: "原型"
244
+ other: "原型"
245
+ spree/refund_reason:
246
+ spree/reimbursement:
247
+ spree/reimbursement_type:
248
+ spree/return_authorization:
249
+ one: "返回授权"
250
+ other: "返回授权"
251
+ spree/return_authorization_reason:
252
+ spree/role:
253
+ one: "角色"
254
+ other: "角色"
255
+ spree/shipment:
256
+ one: "物流"
257
+ other: "物流"
258
+ spree/shipping_category:
259
+ one: "物流分类"
260
+ other: "物流分类"
261
+ spree/shipping_method:
262
+ one: "配送方式"
263
+ other: "配送方式"
264
+ spree/state:
265
+ one: "省份"
266
+ other: "省份"
267
+ spree/state_change:
268
+ spree/stock_location:
269
+ spree/stock_movement:
270
+ spree/stock_transfer:
271
+ spree/tax_category:
272
+ one: "缴税分类"
273
+ other: "缴税分类"
274
+ spree/tax_rate:
275
+ one: "税率"
276
+ other: "税率"
277
+ spree/taxon:
278
+ one: "分类"
279
+ other: "分类"
280
+ spree/taxonomy:
281
+ one: "分类"
282
+ other: "分类"
283
+ spree/tracker:
284
+ spree/user:
285
+ one: "用户"
286
+ other: "用户"
287
+ spree/variant:
288
+ one: "具体型号"
289
+ other: "具体型号"
290
+ spree/zone:
291
+ one: "区域"
292
+ other: "区域"
293
+ devise:
294
+ confirmations:
295
+ confirmed: "您已成功确认您的帐户信息。您现在已登录。"
296
+ send_instructions: "您将在几分钟后收到一封说明如何确认帐号的邮件。"
297
+ failure:
298
+ inactive: "您的帐号尚未激活。"
299
+ invalid: "找不到该电子邮件地址或者密码,请更正并再次尝试。"
300
+ invalid_token: "无效的授权口令。"
301
+ locked: "您的帐号已被冻结。"
302
+ timeout: "您的登录时间过长,请重新登录后继续其他操作。"
303
+ unauthenticated: "您需要在继续操作之前进行登录或者注册。"
304
+ unconfirmed: "您需要在继续操作之前确认您的帐号。"
305
+ mailer:
306
+ confirmation_instructions:
307
+ subject: "确认帐号说明"
308
+ reset_password_instructions:
309
+ subject: "重置密码说明"
310
+ unlock_instructions:
311
+ subject: "帐号解锁说明"
312
+ oauth_callbacks:
313
+ failure: "由于%{reason},您暂时无法从%{kind}获得授权。"
314
+ success: "成功地从%{kind}帐号获得授权。"
315
+ unlocks:
316
+ send_instructions: "您将在几分钟之后收到一封说明如何解锁帐号的邮件。"
317
+ unlocked: "您的帐号已被成功解锁。您现在已登录。"
318
+ user_passwords:
319
+ user:
320
+ cannot_be_blank: "密码不能为空。"
321
+ send_instructions: "您将在几分钟之后收到一封说明如何重置密码的邮件。"
322
+ updated: "您已成功修改您的密码,您现在已登录。"
323
+ user_registrations:
324
+ destroyed: "再见!您已成功取消帐号注册。希望您再次光临。"
325
+ inactive_signed_up: "您已成功注册。但是,由于您的帐号%{reason},您暂时无法登录。"
326
+ signed_up: "欢迎!您已成功注册。"
327
+ updated: "您已成功更新您的帐号信息。"
328
+ user_sessions:
329
+ signed_in: "成功登录。"
330
+ signed_out: "成功注销。"
331
+ errors:
332
+ messages:
333
+ already_confirmed: "已被确认"
334
+ not_found: "无法找到"
335
+ not_locked: "未冻结"
336
+ not_saved: "由于以下%{count}个错误,导致%{resource}无法保存:"
337
+ spree:
338
+ abbreviation: "缩写"
339
+ accept:
340
+ acceptance_errors:
341
+ acceptance_status:
342
+ accepted:
343
+ account: "帐户"
344
+ account_updated: "帐户更新完成!"
345
+ action: "操作"
346
+ actions:
347
+ cancel: "取消"
348
+ continue: "继续"
349
+ create: "创建"
350
+ destroy: "删除"
351
+ edit: "编辑"
352
+ list: "列表"
353
+ listing: "正在列出"
354
+ new: "新建"
355
+ refund:
356
+ save: "保存"
357
+ update: "更新"
358
+ activate: "激活"
359
+ active: "激活"
360
+ add: "添加"
361
+ add_action_of_type: "添加激活方式"
362
+ add_country: "添加国家"
363
+ add_coupon_code:
364
+ add_new_header: "添加新的头部"
365
+ add_new_style: "添加新的样式"
366
+ add_one: "新建"
367
+ add_option_value: "添加选项值"
368
+ add_product: "添加产品"
369
+ add_product_properties: "添加产品属性"
370
+ add_rule_of_type: "添加新的类型规则"
371
+ add_state: "添加一个省份"
372
+ add_stock: "添加库存"
373
+ add_stock_management: "添加库存管理"
374
+ add_to_cart: "加入购物车"
375
+ add_variant: "添加具体型号"
376
+ additional_item: "额外项目花费"
377
+ address1: "地址"
378
+ address2: "地址(继续)"
379
+ adjustable:
380
+ adjustment: "调整"
381
+ adjustment_amount: "金额"
382
+ adjustment_successfully_closed: "价格调整已被禁用!"
383
+ adjustment_successfully_opened: "价格调整已被启用!"
384
+ adjustment_total: "调整总数"
385
+ adjustments: "其他调整"
386
+ admin:
387
+ tab:
388
+ configuration: "配置"
389
+ option_types: "选项类型"
390
+ orders: "订单"
391
+ overview: "概览"
392
+ products: "产品"
393
+ promotions: "促销"
394
+ promotion_categories: "促销分类"
395
+ properties: "属性"
396
+ prototypes: "原型"
397
+ reports: "报告"
398
+ taxonomies: "分类层级"
399
+ taxons: "分类"
400
+ users: "用户"
401
+ user:
402
+ account: "账户"
403
+ addresses: "地址"
404
+ items:
405
+ items_purchased:
406
+ order_history:
407
+ order_num:
408
+ orders: "订单"
409
+ user_information:
410
+ administration: "管理"
411
+ advertise: "推广"
412
+ agree_to_privacy_policy: "同意隐私政策"
413
+ agree_to_terms_of_service: "同意服务条款"
414
+ all: "全部"
415
+ all_adjustments_closed: "所有价格调整已被成功禁用!"
416
+ all_adjustments_opened: "所有价格调整已被成功启用!"
417
+ all_departments: "所有部门"
418
+ all_items_have_been_returned:
419
+ allow_ssl_in_development_and_test: "允许在开发以及测试模式下使用SSL"
420
+ allow_ssl_in_production: "允许在生产模式下使用SSL"
421
+ allow_ssl_in_staging: "允许在演示模式下使用SSL"
422
+ already_signed_up_for_analytics: "您已注册Spree Analytics帐号"
423
+ alt_text: "其他文本"
424
+ alternative_phone: "其他电话"
425
+ amount: "金额"
426
+ analytics_desc_header_1: Spree Analytics
427
+ analytics_desc_header_2:
428
+ analytics_desc_list_1:
429
+ analytics_desc_list_2: "仅需要一个免费的Spree帐号用于激活"
430
+ analytics_desc_list_3:
431
+ analytics_desc_list_4: "完全免费"
432
+ analytics_trackers: "追踪分析"
433
+ and: "以及"
434
+ approve: "核准"
435
+ approved_at: "核准日期"
436
+ approver: "核准者"
437
+ are_you_sure: "你确定么?"
438
+ are_you_sure_delete: "你确定你要删除这条记录么?"
439
+ associated_adjustment_closed: "相关联的价格调整已被关闭,并且不会被重复计算。您需要启用它吗?"
440
+ at_symbol: '@'
441
+ authorization_failure: "认证失败"
442
+ authorized:
443
+ auto_capture:
444
+ available_on: "上架日期"
445
+ average_order_value:
446
+ avs_response:
447
+ back: "后退"
448
+ back_end: "后端"
449
+ back_to_payment:
450
+ back_to_resource_list:
451
+ back_to_rma_reason_list:
452
+ back_to_store: "回到商店"
453
+ back_to_users_list: "回到用户列表"
454
+ backorderable: "可预订"
455
+ backorderable_default:
456
+ backordered: "待补"
457
+ backorders_allowed:
458
+ balance_due: "尚欠款"
459
+ base_amount:
460
+ base_percent:
461
+ bill_address: "账单地址"
462
+ billing: "账单"
463
+ billing_address: "账单地址"
464
+ both: "全部"
465
+ calculated_reimbursements:
466
+ calculator: "计算器"
467
+ calculator_settings_warning: "如果你正在修改计算方式,你必须在编辑计算器设置之前先保存"
468
+ cancel: "取消"
469
+ canceled_at:
470
+ canceler:
471
+ cannot_create_customer_returns:
472
+ cannot_create_payment_without_payment_methods: "您无法在没有定义任何支付方式的情况下进行支付。"
473
+ cannot_create_returns: "没有配送的订单不能申请退货"
474
+ cannot_perform_operation: "无法执行请求的操作"
475
+ cannot_set_shipping_method_without_address: "缺乏客户的详细信息,无法设置配送方式。"
476
+ capture: "付款"
477
+ capture_events:
478
+ card_code: "卡验证码"
479
+ card_number: "卡号"
480
+ card_type:
481
+ card_type_is: "卡的类型是"
482
+ cart: "购物车"
483
+ cart_subtotal:
484
+ categories: "分类"
485
+ category: "分类"
486
+ charged:
487
+ check_for_spree_alerts: "查收Spree的通知"
488
+ checkout: "结账"
489
+ choose_a_customer: "选择用户"
490
+ choose_a_taxon_to_sort_products_for:
491
+ choose_currency: "选择货币"
492
+ choose_dashboard_locale: "选择控制面板语言"
493
+ choose_location:
494
+ city: "城市"
495
+ clear_cache:
496
+ clear_cache_ok:
497
+ clear_cache_warning:
498
+ click_and_drag_on_the_products_to_sort_them:
499
+ clone: "复制"
500
+ close: "关闭"
501
+ close_all_adjustments: "禁用所有价格调整"
502
+ code: "编码"
503
+ company: "公司"
504
+ complete: "完成"
505
+ configuration: "配置"
506
+ configurations: "配置"
507
+ confirm: "确认"
508
+ confirm_delete: "确认删除"
509
+ confirm_password: "确认密码"
510
+ continue: "继续"
511
+ continue_shopping: "继续购物"
512
+ cost_currency: "成本币种"
513
+ cost_price: "进货价"
514
+ could_not_connect_to_jirafe: "无法连接Jirafe。稍后将会自动重新连接。"
515
+ could_not_create_customer_return:
516
+ could_not_create_stock_movement:
517
+ count_on_hand: "库存数量"
518
+ countries: "国家"
519
+ country: "国家"
520
+ country_based: "根据国家"
521
+ country_name: "名称"
522
+ country_names:
523
+ CA:
524
+ FRA:
525
+ ITA:
526
+ US:
527
+ coupon: "优惠券"
528
+ coupon_code: "优惠券号码"
529
+ coupon_code_already_applied: "优惠券号码已在本订单中使用"
530
+ coupon_code_applied: "优惠券号码已在订单中生效。"
531
+ coupon_code_better_exists:
532
+ coupon_code_expired: "优惠券号码已过期"
533
+ coupon_code_max_usage: "优惠券号码使用次数超出限制"
534
+ coupon_code_not_eligible: "您的订单号码无法在您的订单上生效。"
535
+ coupon_code_not_found: "您所输入的优惠券号码不存在。请重新输入。"
536
+ coupon_code_unknown_error:
537
+ create: "创建"
538
+ create_a_new_account: "创建一个新帐号"
539
+ create_new_order:
540
+ create_reimbursement:
541
+ created_at: "创建日期"
542
+ credit: "欠款??"
543
+ credit_card: "信用卡"
544
+ credit_cards: "信用卡"
545
+ credit_owed: "应予退款"
546
+ credits:
547
+ currency: "币种"
548
+ currency_decimal_mark:
549
+ currency_settings: "当前设置"
550
+ currency_symbol_position: "在金额之前或者之后放置币种符号?"
551
+ currency_thousands_separator: "千元分割符"
552
+ current: "现在的"
553
+ current_promotion_usage: "当前已使用:%{count}"
554
+ customer: "顾客"
555
+ customer_details: "顾客详细信息"
556
+ customer_details_updated: "已更新客户的详细信息"
557
+ customer_return:
558
+ customer_returns:
559
+ customer_search: "顾客搜索"
560
+ cut: "剪下"
561
+ cvv_response:
562
+ dash:
563
+ jirafe:
564
+ app_id:
565
+ app_token: "添加口令"
566
+ currently_unavailable:
567
+ explanation:
568
+ header: Jirafe分析器设置
569
+ site_id:
570
+ token: "口令"
571
+ jirafe_settings_updated: Jirafe设置已更新。
572
+ date: "日期"
573
+ date_completed: "完成日期"
574
+ date_picker:
575
+ first_day:
576
+ format: "%Y/%m/%d"
577
+ js_format: yy/mm/dd
578
+ date_range: "时间范围"
579
+ default: "默认"
580
+ default_refund_amount:
581
+ default_tax: "默认缴税"
582
+ default_tax_zone: "默认缴税区域"
583
+ delete: "删除"
584
+ deleted_variants_present:
585
+ delivery: "配送"
586
+ depth: "长"
587
+ description: "描述"
588
+ destination: "目的地"
589
+ destroy: "删除"
590
+ details: "详情"
591
+ discount_amount: "折扣金额"
592
+ dismiss_banner: "不,谢谢!我对此不感兴趣,请不要再显示此信息。"
593
+ display: "显示"
594
+ display_currency: "显示货币符号"
595
+ doesnt_track_inventory:
596
+ edit: "编辑"
597
+ editing_resource:
598
+ editing_rma_reason:
599
+ editing_user: "编辑用户"
600
+ eligibility_errors:
601
+ messages:
602
+ has_excluded_product:
603
+ item_total_less_than:
604
+ item_total_less_than_or_equal:
605
+ item_total_more_than:
606
+ item_total_more_than_or_equal:
607
+ limit_once_per_user:
608
+ missing_product:
609
+ missing_taxon:
610
+ no_applicable_products:
611
+ no_matching_taxons:
612
+ no_user_or_email_specified:
613
+ no_user_specified:
614
+ not_first_order:
615
+ email: "电子邮件"
616
+ empty: "空"
617
+ empty_cart: "清空购物车"
618
+ enable_mail_delivery: "开启邮件发送"
619
+ end: "结束"
620
+ ending_in: Ending in
621
+ environment: "环境"
622
+ error: "错误"
623
+ errors:
624
+ messages:
625
+ could_not_create_taxon: "无法添加分类"
626
+ no_payment_methods_available: "当前运行环境下没有配置好支付方式"
627
+ no_shipping_methods_available: "选中的地址没有适合的运送方式,请修改您的地址后再次尝试"
628
+ errors_prohibited_this_record_from_being_saved:
629
+ one: 1个错误导致此记录无法保存
630
+ other: "%{count}个错误导致此记录无法保存"
631
+ event: "事件"
632
+ events:
633
+ spree:
634
+ cart:
635
+ add: "添加商品到购物车"
636
+ checkout:
637
+ coupon_code_added: "添加了优惠券号码"
638
+ content:
639
+ visited: "访问了静态页面"
640
+ order:
641
+ contents_changed: "订单内容更新"
642
+ page_view: "静态页面被访问"
643
+ user:
644
+ signup: "用户注册"
645
+ exceptions:
646
+ count_on_hand_setter: "无法手动设置 count_on_hand, 将会在 recalculate_count_on_hand 中被自动设定。请使用 `update_column(:count_on_hand, value)`"
647
+ exchange_for:
648
+ excl:
649
+ existing_shipments:
650
+ expedited_exchanges_warning:
651
+ expiration: "过期"
652
+ extension: "扩展"
653
+ failed_payment_attempts:
654
+ filename: "文件名"
655
+ fill_in_customer_info: "请填写顾客信息"
656
+ filter: "过滤"
657
+ filter_results: "过滤结果"
658
+ finalize: "完成"
659
+ finalized:
660
+ find_a_taxon: "查找一种分类"
661
+ first_item: "首件产品价格??"
662
+ first_name: "名"
663
+ first_name_begins_with: "名的开始"
664
+ flat_percent: "固定费率"
665
+ flat_rate_per_order: "固定费率 (每订单)"
666
+ flexible_rate: "灵活费率"
667
+ forgot_password: "忘记密码"
668
+ free_shipping: "免运送费"
669
+ free_shipping_amount:
670
+ front_end: "前端"
671
+ gateway: "网关"
672
+ gateway_config_unavailable: "当前运行环境下无可用的网关"
673
+ gateway_error: "网关出错"
674
+ general: "一般"
675
+ general_settings: "一般设置"
676
+ google_analytics: Google Analytics
677
+ google_analytics_id: Analytics ID
678
+ guest_checkout: "匿名用户结账"
679
+ guest_user_account: "作为一个匿名用户结账"
680
+ has_no_shipped_units: "没有已配送的单元"
681
+ height: "高度"
682
+ hide_cents: "隐藏分钱"
683
+ home: "首页"
684
+ i18n:
685
+ available_locales: "可用的语言"
686
+ language: "语言"
687
+ localization_settings:
688
+ this_file_language: "中文(简体)"
689
+ translations: "翻译"
690
+ icon: "图标"
691
+ identifier:
692
+ image: "图片"
693
+ images: "图片"
694
+ implement_eligible_for_return:
695
+ implement_requires_manual_intervention:
696
+ inactive:
697
+ incl:
698
+ included_in_price: "包含在售价中"
699
+ included_price_validation: "除非您设置了默认的缴税区域,否则无法选择"
700
+ incomplete:
701
+ info_number_of_skus_not_shown:
702
+ info_product_has_multiple_skus:
703
+ instructions_to_reset_password: "请填写如下表格来重置你的密码,重置后的密码会通过电子邮件发送给您"
704
+ insufficient_stock: "库存不足,当前还剩下%{on_hand}件库存"
705
+ insufficient_stock_lines_present:
706
+ intercept_email_address: "用于接收邮件的邮箱地址"
707
+ intercept_email_instructions: "使用以下邮箱地址覆盖所有收件人邮箱"
708
+ internal_name:
709
+ invalid_credit_card:
710
+ invalid_exchange_variant:
711
+ invalid_payment_provider: "无效的支付服务提供商。"
712
+ invalid_promotion_action: "无效的优惠方式。"
713
+ invalid_promotion_rule: "无效的促销规则。"
714
+ inventory: "库存"
715
+ inventory_adjustment: "库存调整"
716
+ inventory_error_flash_for_insufficient_quantity: "您的购物车中的一个商品已经不可购买。"
717
+ inventory_state:
718
+ is_not_available_to_shipment_address: "无法送达要求的配送地址"
719
+ iso_name: ISO名称
720
+ item: "商品项"
721
+ item_description: "商品项描述"
722
+ item_total: "项目总计"
723
+ item_total_rule:
724
+ operators:
725
+ gt: "大于"
726
+ gte: "大于或等于"
727
+ lt:
728
+ lte:
729
+ items_cannot_be_shipped:
730
+ items_in_rmas:
731
+ items_reimbursed:
732
+ items_to_be_reimbursed:
733
+ jirafe: Jirafe
734
+ landing_page_rule:
735
+ path: Path
736
+ last_name: "姓"
737
+ last_name_begins_with: "姓的开始"
738
+ learn_more: "更多"
739
+ lifetime_stats:
740
+ line_item_adjustments:
741
+ list: "列表"
742
+ loading: "加载"
743
+ locale_changed: Locale已变更
744
+ location: "位置"
745
+ lock: "锁住/冻结"
746
+ log_entries:
747
+ logged_in_as: "已登录为"
748
+ logged_in_succesfully: "登录成功"
749
+ logged_out: "您已经登出系统"
750
+ login: "登录"
751
+ login_as_existing: "作为一个已有客户登录"
752
+ login_failed: "登录认证失败。"
753
+ login_name: "用户名"
754
+ logout: "退出"
755
+ logs:
756
+ look_for_similar_items: "寻找类似的产品"
757
+ make_refund: "进行退款??"
758
+ make_sure_the_above_reimbursement_amount_is_correct:
759
+ manage_promotion_categories:
760
+ manage_variants:
761
+ manual_intervention_required:
762
+ master_price: "默认价格"
763
+ match_choices:
764
+ all: "全部"
765
+ none: "清空"
766
+ max_items: "最大商品项??"
767
+ member_since:
768
+ memo:
769
+ meta_description: "元描述"
770
+ meta_keywords: "关键字"
771
+ meta_title:
772
+ metadata: "元数据"
773
+ minimal_amount: "少量"
774
+ month: "月"
775
+ more: "更多"
776
+ move_stock_between_locations:
777
+ my_account: "我的帐户"
778
+ my_orders: "我的订单"
779
+ name: "名称"
780
+ name_on_card:
781
+ name_or_sku: "名称或条形码(输入产品名称中的至少4个字母)"
782
+ new: "新建"
783
+ new_adjustment: "新建调整"
784
+ new_country:
785
+ new_customer: "新建客户"
786
+ new_customer_return:
787
+ new_image: "新建图片"
788
+ new_option_type: "新建选项类型"
789
+ new_order: "新建订单"
790
+ new_order_completed: "新建订单完成"
791
+ new_payment: "新建支付"
792
+ new_payment_method: "新建支付方式"
793
+ new_product: "新建产品"
794
+ new_promotion: "新建促销活动"
795
+ new_promotion_category: "新建促销分类"
796
+ new_property: "新建属性"
797
+ new_prototype: "新建原型"
798
+ new_refund:
799
+ new_refund_reason:
800
+ new_return_authorization: "新建退货"
801
+ new_rma_reason:
802
+ new_shipment_at_location:
803
+ new_shipping_category: "新建配送分类"
804
+ new_shipping_method: "新建配送方式"
805
+ new_state: "新建省份"
806
+ new_stock_location: "添加仓库位置"
807
+ new_stock_movement:
808
+ new_stock_transfer:
809
+ new_tax_category: "新建缴税类型"
810
+ new_tax_rate: "新建税率"
811
+ new_taxon: "新建分类"
812
+ new_taxonomy: "新建分类层级"
813
+ new_tracker: New Tracker
814
+ new_user: "新建用户"
815
+ new_variant: "新建具体型号"
816
+ new_zone: "新建区域"
817
+ next: "下一页"
818
+ no_actions_added: "未添加动作"
819
+ no_payment_found:
820
+ no_pending_payments:
821
+ no_products_found: "找不到产品"
822
+ no_resource_found: "找不到资源"
823
+ no_results: "无任何结果"
824
+ no_returns_found:
825
+ no_rules_added: "未添加规则"
826
+ no_shipping_method_selected:
827
+ no_state_changes:
828
+ no_tracking_present: "未提供跟踪细节。"
829
+ none: "没有"
830
+ none_selected:
831
+ normal_amount: Normal Amount
832
+ not: false
833
+ not_available: N/A
834
+ not_enough_stock:
835
+ not_found: "未找到%{resource}"
836
+ note:
837
+ notice_messages:
838
+ product_cloned: "产品已经被复制"
839
+ product_deleted: "产品已经被删除"
840
+ product_not_cloned: "产品无法被复制"
841
+ product_not_deleted: "产品无法被删除"
842
+ variant_deleted: "具体型号已经被删除"
843
+ variant_not_deleted: "具体型号不能被删除"
844
+ num_orders:
845
+ on_hand: "库存"
846
+ open: "打开"
847
+ open_all_adjustments: "启用所有价格调整"
848
+ option_type: "选项类型"
849
+ option_type_placeholder: "选项类型默认值"
850
+ option_types: "选项类型"
851
+ option_value: "选项值"
852
+ option_values: "选项值"
853
+ optional: "可选的"
854
+ options: "选项"
855
+ or: "或"
856
+ or_over_price: "%{price}或以上"
857
+ order: "订单"
858
+ order_adjustments: "订单调整"
859
+ order_already_updated:
860
+ order_approved:
861
+ order_canceled:
862
+ order_details: "订单详情"
863
+ order_email_resent: "重新发出了订单邮件"
864
+ order_information: "订单信息"
865
+ order_mailer:
866
+ cancel_email:
867
+ dear_customer: "亲爱的顾客,"
868
+ instructions: "您的订单已被取消。请保留此取消信息记录。"
869
+ order_summary_canceled: "订单总览 [已取消]"
870
+ subject: "取消订单"
871
+ subtotal:
872
+ total:
873
+ confirm_email:
874
+ dear_customer: "亲爱的顾客,"
875
+ instructions: "请仔细阅读并保留以下订单信息记录。"
876
+ order_summary: "订单总览"
877
+ subject: "订单确认"
878
+ subtotal:
879
+ thanks: "谢谢您的购买。"
880
+ total:
881
+ order_not_found: "我们无法找到您的订单。请重新尝试。"
882
+ order_number: "订单号 %{number}"
883
+ order_processed_successfully: "您的订单已经被成功处理了"
884
+ order_resumed:
885
+ order_state:
886
+ address: "地址"
887
+ awaiting_return: "等待退货"
888
+ canceled: "取消"
889
+ cart: "购物车"
890
+ complete: "完成"
891
+ confirm: "确认"
892
+ considered_risky:
893
+ delivery: "配送"
894
+ payment: "支付"
895
+ resumed: "重新开始"
896
+ returned: "返回"
897
+ order_summary: "订单概述"
898
+ order_sure_want_to: "您确定您想要%{event}这个订单么?"
899
+ order_total: "订单总计"
900
+ order_updated: "订单已更新"
901
+ orders: "订单"
902
+ other_items_in_other:
903
+ out_of_stock: "没有库存"
904
+ overview: "首页"
905
+ package_from: "包裹来自"
906
+ pagination:
907
+ next_page: "下一页 »"
908
+ previous_page: "« 上一页"
909
+ truncate: "…"
910
+ password: "密码"
911
+ paste: "粘贴"
912
+ path: "路径"
913
+ pay: "支付"
914
+ payment: "支付"
915
+ payment_could_not_be_created:
916
+ payment_identifier:
917
+ payment_information: "支付信息"
918
+ payment_method: "支付方式"
919
+ payment_method_not_supported:
920
+ payment_methods: "支付方式"
921
+ payment_processing_failed: "无法处理支付信息,请检查您所输入的详细信息"
922
+ payment_processor_choose_banner_text: "如果您需要关于支付处理的帮助,请访问"
923
+ payment_processor_choose_link: "我们的支付页面"
924
+ payment_state: "支付状态"
925
+ payment_states:
926
+ balance_due: "欠款"
927
+ checkout: "支付"
928
+ completed: "完成"
929
+ credit_owed: credit owed
930
+ failed: "失败"
931
+ paid: "已支付"
932
+ pending: "等待中"
933
+ processing: "正在处理"
934
+ void: "无效"
935
+ payment_updated: "支付已更新"
936
+ payments: "支付"
937
+ pending:
938
+ percent: "百分比"
939
+ percent_per_item: "单件百分比"
940
+ permalink: "永久链接"
941
+ phone: "电话"
942
+ place_order: "下单"
943
+ please_define_payment_methods: "请先设定支付方式。"
944
+ populate_get_error: "出错了,请重新添加项目。"
945
+ powered_by: "技术支持"
946
+ pre_tax_amount:
947
+ pre_tax_refund_amount:
948
+ pre_tax_total:
949
+ preferred_reimbursement_type:
950
+ presentation: "描述"
951
+ previous: "上一页"
952
+ previous_state_missing: "状态未知"
953
+ price: "价格"
954
+ price_range: "价格范围"
955
+ price_sack: "袋价格"
956
+ process: "处理"
957
+ product: "产品"
958
+ product_details: "产品详情"
959
+ product_has_no_description: "该产品没有描述"
960
+ product_not_available_in_this_currency: "此产品在当前选中的货币下不可购买。"
961
+ product_properties: "产品属性"
962
+ product_rule:
963
+ choose_products: "选择产品"
964
+ label:
965
+ match_all: "全部"
966
+ match_any: "至少一个"
967
+ match_none:
968
+ product_source:
969
+ group: "从产品分组"
970
+ manual: "手工选择"
971
+ products: "产品"
972
+ promotion: "促销"
973
+ promotion_action: "优惠方式"
974
+ promotion_action_types:
975
+ create_adjustment:
976
+ description: "为订单添加促销用的价格调整"
977
+ name: "添加订单的价格调整"
978
+ create_item_adjustments:
979
+ description: "为订单上的单项产品添加一笔促销用的价格调整"
980
+ name: "添加单项的价格调整"
981
+ create_line_items:
982
+ description: "增加特定商品到订单中"
983
+ name: "赠送礼品"
984
+ free_shipping:
985
+ description: "整张订单免费发货"
986
+ name: "免运费"
987
+ promotion_actions: "优惠方式"
988
+ promotion_form:
989
+ match_policies:
990
+ all: "匹配任意规则"
991
+ any: "匹配所有规则"
992
+ promotion_rule: "促销规则"
993
+ promotion_rule_types:
994
+ first_order:
995
+ description: "必须是客户的第一笔订单"
996
+ name: "第一笔订单"
997
+ item_total:
998
+ description: "订单总额满足这些条件"
999
+ name: "小记"
1000
+ landing_page:
1001
+ description: "客户必须访问了指定的页面"
1002
+ name: "登录页面"
1003
+ one_use_per_user:
1004
+ description: "每人只可使用一次"
1005
+ name: "每人一次"
1006
+ option_value:
1007
+ description:
1008
+ name:
1009
+ product:
1010
+ description: "订单包含指定的产品"
1011
+ name: "产品"
1012
+ taxon:
1013
+ description: "订单中包括指定分类产品"
1014
+ name: "分类"
1015
+ user:
1016
+ description: "只对指定的用户生效"
1017
+ name: "用户"
1018
+ user_logged_in:
1019
+ description: "只对已经登录的用户有效"
1020
+ name: "用户登录"
1021
+ promotion_uses: "促销使用频率"
1022
+ promotionable:
1023
+ promotions: "促销"
1024
+ propagate_all_variants:
1025
+ properties: "属性"
1026
+ property: "属性"
1027
+ prototype: "原型"
1028
+ prototypes: "原型"
1029
+ provider: "提供者"
1030
+ provider_settings_warning: "如果您正在修改提供者类型,您需要在编辑提供者设置之前先保存。"
1031
+ qty: "数量"
1032
+ quantity: "数量"
1033
+ quantity_returned: "返回的数量"
1034
+ quantity_shipped: "已发货数量"
1035
+ quick_search: "快速搜索"
1036
+ rate: "费率"
1037
+ reason: "原因"
1038
+ receive: "收到"
1039
+ receive_stock:
1040
+ received: "已收到"
1041
+ reception_status:
1042
+ reference:
1043
+ refund: "退款"
1044
+ refund_amount_must_be_greater_than_zero:
1045
+ refund_reasons:
1046
+ refunded_amount:
1047
+ refunds:
1048
+ register: "注册成为新用户"
1049
+ registration: "注册"
1050
+ reimburse:
1051
+ reimbursed:
1052
+ reimbursement:
1053
+ reimbursement_mailer:
1054
+ reimbursement_email:
1055
+ days_to_send:
1056
+ dear_customer:
1057
+ exchange_summary:
1058
+ for:
1059
+ instructions:
1060
+ refund_summary:
1061
+ subject:
1062
+ total_refunded:
1063
+ reimbursement_perform_failed:
1064
+ reimbursement_status:
1065
+ reimbursement_type:
1066
+ reimbursement_type_override:
1067
+ reimbursement_types:
1068
+ reimbursements:
1069
+ reject:
1070
+ rejected:
1071
+ remember_me: "记住我"
1072
+ remove: "移出"
1073
+ rename: "重命名"
1074
+ report:
1075
+ reports: "报表"
1076
+ resend: "重新发送"
1077
+ reset_password: "重置密码"
1078
+ response_code: "返回代码"
1079
+ resume: "恢复"
1080
+ resumed: "已恢复"
1081
+ return: "退回"
1082
+ return_authorization: "退货审批"
1083
+ return_authorization_reasons:
1084
+ return_authorization_updated: "退货审批已更新"
1085
+ return_authorizations: "退货审批"
1086
+ return_item_inventory_unit_ineligible:
1087
+ return_item_inventory_unit_reimbursed:
1088
+ return_item_rma_ineligible:
1089
+ return_item_time_period_ineligible:
1090
+ return_items:
1091
+ return_items_cannot_be_associated_with_multiple_orders:
1092
+ return_number:
1093
+ return_quantity: "退货数量"
1094
+ returned: "已退回"
1095
+ returns:
1096
+ review: Review
1097
+ risk:
1098
+ risk_analysis:
1099
+ risky:
1100
+ rma_credit: RMA Credit
1101
+ rma_number: "退货单号"
1102
+ rma_value: "退货价值"
1103
+ roles: "角色"
1104
+ rules: Rules
1105
+ safe: "安全"
1106
+ sales_total: "销售总计"
1107
+ sales_total_description: "所有订单总销量"
1108
+ sales_totals: "总销量"
1109
+ save_and_continue: "保存并继续"
1110
+ save_my_address: "保存我的地址"
1111
+ say_no: "不"
1112
+ say_yes: "是的"
1113
+ scope: "范围"
1114
+ search: "搜索"
1115
+ search_results: "搜索 '%{keywords}' 的结果"
1116
+ searching: "搜索"
1117
+ secure_connection_type: "安全连接类型"
1118
+ security_settings: "安全设置"
1119
+ select: "选择"
1120
+ select_a_return_authorization_reason:
1121
+ select_a_stock_location:
1122
+ select_from_prototype: "从原型中选择"
1123
+ select_stock:
1124
+ send_copy_of_all_mails_to: "将所有邮件的副本发送至"
1125
+ send_mails_as: "发送邮件作为"
1126
+ server: "服务器"
1127
+ server_error: "服务器返回了一个错误"
1128
+ settings: "设置"
1129
+ ship: "发货"
1130
+ ship_address: "配送地址"
1131
+ ship_total:
1132
+ shipment: "配送"
1133
+ shipment_adjustments:
1134
+ shipment_details:
1135
+ shipment_mailer:
1136
+ shipped_email:
1137
+ dear_customer: "亲爱的顾客,"
1138
+ instructions: "您的订单已发货"
1139
+ shipment_summary: "发货概览"
1140
+ subject: "发货通知"
1141
+ thanks: "谢谢您的购买"
1142
+ track_information: "货运单号: %{tracking}"
1143
+ track_link:
1144
+ shipment_state: "配送状态"
1145
+ shipment_states:
1146
+ backorder: "延期未交定货"
1147
+ canceled:
1148
+ partial: "部分"
1149
+ pending: "等待中"
1150
+ ready: "就绪"
1151
+ shipped: "已经发货"
1152
+ shipment_transfer_error:
1153
+ shipment_transfer_success:
1154
+ shipments: "配送"
1155
+ shipped: "已发货"
1156
+ shipping: "配送中"
1157
+ shipping_address: "配送地址"
1158
+ shipping_categories: "配送类型"
1159
+ shipping_category: "配送分类"
1160
+ shipping_flat_rate_per_item: "以单项计固定费率"
1161
+ shipping_flat_rate_per_order: "固定费率"
1162
+ shipping_flexible_rate: "以每项计弹性价格"
1163
+ shipping_instructions: "配送指南"
1164
+ shipping_method: "配送方式"
1165
+ shipping_methods: "配送方式"
1166
+ shipping_price_sack:
1167
+ shipping_total:
1168
+ shop_by_taxonomy: "根据%{taxonomy}购物"
1169
+ shopping_cart: "购物车"
1170
+ show: "显示"
1171
+ show_active: "显示激活的"
1172
+ show_deleted: "显示删除的"
1173
+ show_only_complete_orders: "只显示完整的订单"
1174
+ show_only_considered_risky:
1175
+ show_rate_in_label:
1176
+ sku: "条形码"
1177
+ skus:
1178
+ slug:
1179
+ source: "来源"
1180
+ special_instructions: "特别说明"
1181
+ split: "分拆"
1182
+ spree_gateway_error_flash_for_checkout: "您的支付信息存在错误。请检查您的信息后再次尝试。"
1183
+ ssl:
1184
+ change_protocol:
1185
+ start: "开始"
1186
+ state: "省份"
1187
+ state_based: "根据省份"
1188
+ state_machine_states:
1189
+ accepted:
1190
+ address:
1191
+ authorized:
1192
+ awaiting:
1193
+ awaiting_return:
1194
+ backordered:
1195
+ canceled:
1196
+ cart:
1197
+ checkout:
1198
+ closed:
1199
+ complete:
1200
+ completed:
1201
+ confirm:
1202
+ delivery:
1203
+ errored:
1204
+ failed:
1205
+ given_to_customer:
1206
+ invalid:
1207
+ manual_intervention_required:
1208
+ on_hand:
1209
+ open:
1210
+ order:
1211
+ payment:
1212
+ pending:
1213
+ processing:
1214
+ ready:
1215
+ reimbursed:
1216
+ resumed:
1217
+ returned:
1218
+ shipped:
1219
+ void:
1220
+ states: "省份"
1221
+ states_required:
1222
+ status: "状态"
1223
+ stock: "库存"
1224
+ stock_location: "库存区域"
1225
+ stock_location_info: "库存区域资讯"
1226
+ stock_locations: "库存区域"
1227
+ stock_locations_need_a_default_country:
1228
+ stock_management: "库存管理"
1229
+ stock_management_requires_a_stock_location: "请先新增库存区域,才可使用库存管理"
1230
+ stock_movements: "库存动向"
1231
+ stock_movements_for_stock_location: "%{stock_location_name} 的库存动向"
1232
+ stock_successfully_transferred: "库存已成功在两区域转移"
1233
+ stock_transfer: "库存转移"
1234
+ stock_transfers: "库存转移"
1235
+ stop: "结束"
1236
+ store: "商城"
1237
+ street_address: "地址"
1238
+ street_address_2: "地址(继续输入)"
1239
+ subtotal: "小计"
1240
+ subtract: "减去"
1241
+ success:
1242
+ successfully_created: "%{resource} 已被成功添加!"
1243
+ successfully_refunded:
1244
+ successfully_removed: "%{resource} 已被成功删除!"
1245
+ successfully_signed_up_for_analytics:
1246
+ successfully_updated: "%{resource} 已被成功更新!"
1247
+ summary:
1248
+ tax: "税"
1249
+ tax_categories: "缴税分类"
1250
+ tax_category: "缴税分类"
1251
+ tax_code:
1252
+ tax_included:
1253
+ tax_rate_amount_explanation:
1254
+ tax_rates: "税率"
1255
+ taxon: "分类"
1256
+ taxon_edit: "编辑分类"
1257
+ taxon_placeholder: "添加分类"
1258
+ taxon_rule:
1259
+ choose_taxons:
1260
+ label:
1261
+ match_all:
1262
+ match_any:
1263
+ taxonomies: "分类层级"
1264
+ taxonomy: "分类层级"
1265
+ taxonomy_edit: "编辑分类层级"
1266
+ taxonomy_tree_error: "请求的变更没有被接受,分类树会恢复到之前的状态,请重新尝试."
1267
+ taxonomy_tree_instruction: "* 右键单击一个树的子结点以访问添加、删除或者排序字节点的菜单."
1268
+ taxons: "分类"
1269
+ test: "测试"
1270
+ test_mailer:
1271
+ test_email:
1272
+ greeting: "恭喜!"
1273
+ message: "如果您收到此邮件,则说明您的邮件设置是正确的"
1274
+ subject: "测试邮件"
1275
+ test_mode: "测试模式"
1276
+ thank_you_for_your_order: "感谢您的订购,请打印这张订单作为购买凭证。"
1277
+ there_are_no_items_for_this_order:
1278
+ there_were_problems_with_the_following_fields: "以下字段存在错误"
1279
+ this_order_has_already_received_a_refund:
1280
+ thumbnail: "缩略图"
1281
+ tiered_flat_rate:
1282
+ tiered_percent:
1283
+ tiers:
1284
+ time: "时间"
1285
+ to_add_variants_you_must_first_define: "要添加具体型号,您需要先定义"
1286
+ total: "总计"
1287
+ total_per_item:
1288
+ total_pre_tax_refund:
1289
+ total_price:
1290
+ total_sales:
1291
+ track_inventory:
1292
+ tracking: "追踪"
1293
+ tracking_number:
1294
+ tracking_url:
1295
+ tracking_url_placeholder: "比如,http://quickship.com/package?num=:tracking"
1296
+ transaction_id:
1297
+ transfer_from_location:
1298
+ transfer_stock:
1299
+ transfer_to_location:
1300
+ tree: "树"
1301
+ type: "类型"
1302
+ type_to_search: "搜索类型"
1303
+ unable_to_connect_to_gateway: "无法连接支付网关."
1304
+ unable_to_create_reimbursements:
1305
+ under_price: "低于 %{price}"
1306
+ unlock: "解锁"
1307
+ unrecognized_card_type: "无法辨识的支付卡种类"
1308
+ unshippable_items: "无法邮寄的商品"
1309
+ update: "更新"
1310
+ updating: "更新中"
1311
+ usage_limit: "使用限制"
1312
+ use_app_default:
1313
+ use_billing_address: "使用账单地址"
1314
+ use_new_cc: "使用一张新卡"
1315
+ use_s3: "使用Amazon S3存储图片"
1316
+ user: "用户"
1317
+ user_rule:
1318
+ choose_users: "选择用户"
1319
+ users: "用户详情"
1320
+ validation:
1321
+ cannot_be_less_than_shipped_units: "不能少于已配送的单位数。"
1322
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1323
+ exceeds_available_stock: "超出可用的库存。请确认订单项拥有有效的数量。"
1324
+ is_too_large: "数量太多了 -- 现有库存无法满足您需要的数量!"
1325
+ must_be_int: "必须是整数"
1326
+ must_be_non_negative: "不能为负数"
1327
+ unpaid_amount_not_zero:
1328
+ value: "价值"
1329
+ variant: "具体型号"
1330
+ variant_placeholder: "选择具体型号"
1331
+ variants: "具体型号"
1332
+ version: "版本"
1333
+ void: "作废"
1334
+ weight: "重量"
1335
+ what_is_a_cvv: "信用卡验证码(CVV)是什么"
1336
+ what_is_this: "这是什么?"
1337
+ width: "宽度"
1338
+ year: "年"
1339
+ you_have_no_orders_yet: "您还没有下过订单"
1340
+ your_cart_is_empty: "您的购物车是空的"
1341
+ your_order_is_empty_add_product: "您的订单是空的,请搜索并且添加以上的产品"
1342
+ zip: "邮编"
1343
+ zipcode: "邮编"
1344
+ zone: "区域"
1345
+ zones: "区域"