solidus_i18n 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
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,1293 @@
1
+ zh-TW:
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
+ spree/property:
100
+ name: "名稱"
101
+ presentation: "描述"
102
+ spree/prototype:
103
+ name: "名稱"
104
+ spree/return_authorization:
105
+ amount: "金額"
106
+ spree/role:
107
+ name: "名稱"
108
+ spree/state:
109
+ abbr: "縮寫"
110
+ name: "名稱"
111
+ spree/state_change:
112
+ state_changes:
113
+ state_from:
114
+ state_to:
115
+ timestamp:
116
+ type:
117
+ updated:
118
+ user:
119
+ spree/store:
120
+ mail_from_address:
121
+ meta_description:
122
+ meta_keywords:
123
+ name:
124
+ seo_title:
125
+ url:
126
+ spree/tax_category:
127
+ description: "描述"
128
+ name: "名稱"
129
+ spree/tax_rate:
130
+ amount: "稅率"
131
+ included_in_price: "包含在售價中"
132
+ show_rate_in_label: "顯示稅率"
133
+ spree/taxon:
134
+ name: "名稱"
135
+ permalink: "永久連結"
136
+ position: "位置"
137
+ spree/taxonomy:
138
+ name: "名稱"
139
+ spree/user:
140
+ email: Email
141
+ password: "密碼"
142
+ password_confirmation: "確認密碼"
143
+ spree/variant:
144
+ cost_currency: "成本幣別"
145
+ cost_price: "成本價"
146
+ depth: "長/深"
147
+ height: "高度"
148
+ price: "單價"
149
+ sku: "條碼"
150
+ weight: "重量"
151
+ width: "寬"
152
+ spree/zone:
153
+ description: "描述"
154
+ name: "名稱"
155
+ errors:
156
+ models:
157
+ spree/calculator/tiered_flat_rate:
158
+ attributes:
159
+ base:
160
+ keys_should_be_positive_number:
161
+ preferred_tiers:
162
+ should_be_hash:
163
+ spree/calculator/tiered_percent:
164
+ attributes:
165
+ base:
166
+ keys_should_be_positive_number:
167
+ values_should_be_percent:
168
+ preferred_tiers:
169
+ should_be_hash:
170
+ spree/classification:
171
+ attributes:
172
+ taxon_id:
173
+ already_linked:
174
+ spree/credit_card:
175
+ attributes:
176
+ base:
177
+ card_expired: "信用卡已失效"
178
+ expiry_invalid:
179
+ spree/line_item:
180
+ attributes:
181
+ currency:
182
+ must_match_order_currency:
183
+ spree/refund:
184
+ attributes:
185
+ amount:
186
+ greater_than_allowed:
187
+ spree/reimbursement:
188
+ attributes:
189
+ base:
190
+ return_items_order_id_does_not_match:
191
+ spree/return_item:
192
+ attributes:
193
+ inventory_unit:
194
+ other_completed_return_item_exists:
195
+ reimbursement:
196
+ cannot_be_associated_unless_accepted:
197
+ spree/store:
198
+ attributes:
199
+ base:
200
+ cannot_destroy_default_store:
201
+ models:
202
+ spree/address: "地址"
203
+ spree/country: "國家"
204
+ spree/credit_card: "信用卡"
205
+ spree/customer_return:
206
+ spree/inventory_unit: "庫存單位"
207
+ spree/line_item:
208
+ one: "單項"
209
+ other: "單項"
210
+ spree/option_type:
211
+ spree/option_value:
212
+ spree/order: "訂單"
213
+ spree/payment: "付款"
214
+ spree/payment_method:
215
+ spree/product: "產品"
216
+ spree/promotion: "促銷"
217
+ spree/promotion_category:
218
+ spree/property: "屬性"
219
+ spree/prototype: "原型"
220
+ spree/refund_reason:
221
+ spree/reimbursement:
222
+ spree/reimbursement_type:
223
+ spree/return_authorization:
224
+ one: "返回授權"
225
+ other: "返回授權"
226
+ spree/return_authorization_reason:
227
+ spree/role: "角色"
228
+ spree/shipment: "貨運"
229
+ spree/shipping_category: "貨運類別"
230
+ spree/shipping_method:
231
+ spree/state: "州/省"
232
+ spree/state_change:
233
+ spree/stock_location:
234
+ spree/stock_movement:
235
+ spree/stock_transfer:
236
+ spree/tax_category: "稅金類別"
237
+ spree/tax_rate: "稅率"
238
+ spree/taxon: "分類"
239
+ spree/taxonomy: "分類"
240
+ spree/tracker:
241
+ spree/user: "使用者"
242
+ spree/variant: "型號"
243
+ spree/zone: "區域"
244
+ devise:
245
+ confirmations:
246
+ confirmed: "您的帳號已驗證成功. 現已登入."
247
+ send_instructions: "您將在幾分鐘內收到一封說明如何驗證帳號的電子郵件."
248
+ failure:
249
+ inactive: "您的帳號尚未啓用."
250
+ invalid: "錯誤的帳號或者密碼."
251
+ invalid_token: "不正確的認證辨識碼."
252
+ locked: "您的帳號已被鎖定."
253
+ timeout: "您的連線已過期, 請重新登入."
254
+ unauthenticated: "您必須先登入或者註冊."
255
+ unconfirmed: "您必須先驗證帳號才能繼續."
256
+ mailer:
257
+ confirmation_instructions:
258
+ subject: "驗證說明"
259
+ reset_password_instructions:
260
+ subject: "重置密碼說明"
261
+ unlock_instructions:
262
+ subject: "帳號解鎖說明"
263
+ oauth_callbacks:
264
+ failure: "由於%{reason}, 您無法從%{kind} 獲得授權."
265
+ success: "成功從%{kind} 帳號取得授權."
266
+ unlocks:
267
+ send_instructions: "您將在數分鐘內收到一封說明如何解鎖帳號的電子郵件."
268
+ unlocked: "您的帳號已成功解鎖. 現已登入."
269
+ user_passwords:
270
+ user:
271
+ cannot_be_blank: "密碼不能空白."
272
+ send_instructions: "您將在數分鐘內收到一封說明如何重置密碼的電子郵件."
273
+ updated: "密碼變更成功, 現已登入."
274
+ user_registrations:
275
+ destroyed: "再會! 您的帳號已註銷, 希望您再度造訪."
276
+ inactive_signed_up: "您已註冊成功. 但由於您的帳號%{reason}, 故無法登入."
277
+ signed_up: "歡迎! 您已註冊成功."
278
+ updated: "您的帳號已更新成功."
279
+ user_sessions:
280
+ signed_in: "登入成功."
281
+ signed_out: "登出成功."
282
+ errors:
283
+ messages:
284
+ already_confirmed: "已驗證"
285
+ not_found: "找不到"
286
+ not_locked: "未鎖定"
287
+ not_saved: "在儲存%{resource}時遭遇%{count} 個錯誤"
288
+ spree:
289
+ abbreviation: "縮寫"
290
+ accept:
291
+ acceptance_errors:
292
+ acceptance_status:
293
+ accepted:
294
+ account: "帳戶"
295
+ account_updated: "帳戶已更新"
296
+ action: "操作"
297
+ actions:
298
+ cancel: "取消"
299
+ continue: "繼續"
300
+ create: "建立"
301
+ destroy: "刪除"
302
+ edit: "編輯"
303
+ list: "列表"
304
+ listing: "列出中"
305
+ new: "新增"
306
+ refund:
307
+ save: "儲存"
308
+ update: "更新"
309
+ activate: "啓用"
310
+ active: "啟動"
311
+ add: "增加"
312
+ add_action_of_type: "增加促銷優惠"
313
+ add_country: "增加國家"
314
+ add_coupon_code:
315
+ add_new_header: "增加新 Header"
316
+ add_new_style: "增加新樣式"
317
+ add_one: "新增"
318
+ add_option_value: "增加選項"
319
+ add_product: "增加商品"
320
+ add_product_properties: "增加商品屬性"
321
+ add_rule_of_type: "增加條件"
322
+ add_state: "增加 州,省,日本県,台灣縣市"
323
+ add_stock: "新增庫存"
324
+ add_stock_management: "新增庫存管理"
325
+ add_to_cart: "加到購物車"
326
+ add_variant: "新增型號"
327
+ additional_item: "額外商品花費"
328
+ address1: "地址"
329
+ address2: "地址 (接續)"
330
+ adjustable:
331
+ adjustment: "其他項目"
332
+ adjustment_amount: "金額"
333
+ adjustment_successfully_closed: "其他項目已成功停用!"
334
+ adjustment_successfully_opened: "其他項目已成功啓用!"
335
+ adjustment_total: "其他項目總計"
336
+ adjustments: "其他項目"
337
+ admin:
338
+ tab:
339
+ configuration: "設定"
340
+ option_types:
341
+ orders: "訂單"
342
+ overview: "總覽"
343
+ products: "產品"
344
+ promotions: "宣傳"
345
+ properties:
346
+ prototypes:
347
+ reports: "報表"
348
+ taxonomies:
349
+ taxons:
350
+ users: "使用者"
351
+ user:
352
+ account:
353
+ addresses:
354
+ items:
355
+ items_purchased:
356
+ order_history:
357
+ order_num:
358
+ orders:
359
+ user_information:
360
+ administration: "管理介面"
361
+ advertise:
362
+ agree_to_privacy_policy: "同意隱私條款"
363
+ agree_to_terms_of_service: "同意服務條款"
364
+ all: "全部"
365
+ all_adjustments_closed: "所有調整項目已成功停用!"
366
+ all_adjustments_opened: "所有調整項目已成功啓用!"
367
+ all_departments: "所有部門"
368
+ all_items_have_been_returned:
369
+ allow_ssl_in_development_and_test: "允許在 Development / Test 模式下使用SSL"
370
+ allow_ssl_in_production: "允許在 Production 模式下使用SSL"
371
+ allow_ssl_in_staging: "允許在 Staging 模式下使用SSL"
372
+ already_signed_up_for_analytics: "您已註冊 Spree Analytics"
373
+ alt_text: "說明文字"
374
+ alternative_phone: "額外電話"
375
+ amount: "金額"
376
+ analytics_desc_header_1: Spree Analytics
377
+ analytics_desc_header_2: "整合線上分析至您的Spree 控制台"
378
+ analytics_desc_list_1:
379
+ analytics_desc_list_2: "只需一個免費的Spree 帳號便能啓用"
380
+ analytics_desc_list_3: "完全不需要插入程式碼"
381
+ analytics_desc_list_4: "完全免費!"
382
+ analytics_trackers: "分析追蹤"
383
+ and: "以及"
384
+ approve: "核准"
385
+ approved_at: "核准日期"
386
+ approver: "核准者"
387
+ are_you_sure: "你確定嗎?"
388
+ are_you_sure_delete: "你確定要刪除?"
389
+ associated_adjustment_closed: "這個關聯的調整項目已經停用, 而且不會被重複計算, 您要啓用它嗎?"
390
+ at_symbol: '@'
391
+ authorization_failure: "認証失敗"
392
+ authorized:
393
+ auto_capture:
394
+ available_on: "上架時間"
395
+ average_order_value:
396
+ avs_response:
397
+ back: "返回"
398
+ back_end: "後端"
399
+ back_to_payment:
400
+ back_to_resource_list:
401
+ back_to_rma_reason_list:
402
+ back_to_store: "回商店"
403
+ back_to_users_list: "返回使用者列表"
404
+ backorderable: "可預購"
405
+ backorderable_default:
406
+ backordered: "待補"
407
+ backorders_allowed: "已允許預購"
408
+ balance_due: "未入帳"
409
+ base_amount:
410
+ base_percent:
411
+ bill_address: "帳單地址"
412
+ billing: "帳單"
413
+ billing_address: "帳單地址"
414
+ both: "全部"
415
+ calculated_reimbursements:
416
+ calculator: "計算規則"
417
+ calculator_settings_warning: "如果你更改了計算規則, 需要先儲存才能進行修改"
418
+ cancel: "取消"
419
+ canceled_at:
420
+ canceler:
421
+ cannot_create_customer_returns:
422
+ cannot_create_payment_without_payment_methods: "你無法在未定義付費方法前產生訂單的付費資訊."
423
+ cannot_create_returns: "無法建立退貨資訊, 因為這筆訂單不需要配送"
424
+ cannot_perform_operation: "無法執行要求的運算"
425
+ cannot_set_shipping_method_without_address: "在消費者細節沒提供前, 無法設定運送方法"
426
+ capture: "入帳完成付款"
427
+ capture_events:
428
+ card_code: "信用卡驗證碼"
429
+ card_number: "信用卡卡號"
430
+ card_type:
431
+ card_type_is: "信用卡類型"
432
+ cart: "購物車"
433
+ cart_subtotal:
434
+ categories: "分類"
435
+ category: "分類"
436
+ charged:
437
+ check_for_spree_alerts: "檢查 Spree的警告"
438
+ checkout: "結帳"
439
+ choose_a_customer: "選擇一個消費者"
440
+ choose_a_taxon_to_sort_products_for:
441
+ choose_currency: "選擇幣別"
442
+ choose_dashboard_locale: "選擇控制台語系"
443
+ choose_location:
444
+ city: "城市"
445
+ clear_cache:
446
+ clear_cache_ok:
447
+ clear_cache_warning:
448
+ click_and_drag_on_the_products_to_sort_them:
449
+ clone: "複製"
450
+ close: "關閉"
451
+ close_all_adjustments: "停用所有調整項目"
452
+ code: "編碼"
453
+ company: "公司"
454
+ complete: "完成"
455
+ configuration: "偏好設定"
456
+ configurations: "偏好設定"
457
+ confirm: "確認"
458
+ confirm_delete: "確認刪除"
459
+ confirm_password: "確認密碼"
460
+ continue: "繼續"
461
+ continue_shopping: "繼續購物"
462
+ cost_currency: "成本貨幣"
463
+ cost_price: "成本價格"
464
+ could_not_connect_to_jirafe: "無法從 Jirafe同步資料, 稍候將自動重新嘗試."
465
+ could_not_create_customer_return:
466
+ could_not_create_stock_movement: "在儲存庫存動向時發生了錯誤, 請再試一次."
467
+ count_on_hand: "庫存數量"
468
+ countries: "國家"
469
+ country: "國家"
470
+ country_based: "依據國家"
471
+ country_name: "名稱"
472
+ country_names:
473
+ CA:
474
+ FRA:
475
+ ITA:
476
+ US:
477
+ coupon: "促銷代碼"
478
+ coupon_code: "促銷代碼"
479
+ coupon_code_already_applied: "優惠代碼已經被使用在這個訂單"
480
+ coupon_code_applied: "優惠代碼已經成功使用在您的訂單."
481
+ coupon_code_better_exists: "上一組優惠代碼比較划算"
482
+ coupon_code_expired: "優惠代碼已過期"
483
+ coupon_code_max_usage: "已達優惠代碼使用上限"
484
+ coupon_code_not_eligible: "此優惠代碼不適用於本訂單"
485
+ coupon_code_not_found: "您輸入的優惠代碼不存在. 請再試一次."
486
+ coupon_code_unknown_error:
487
+ create: "建立"
488
+ create_a_new_account: "建立新帳號"
489
+ create_new_order:
490
+ create_reimbursement:
491
+ created_at: "建立於"
492
+ credit: "額度"
493
+ credit_card: "信用卡"
494
+ credit_cards: "信用卡"
495
+ credit_owed: "負債"
496
+ credits:
497
+ currency: "幣別"
498
+ currency_decimal_mark: "幣別小數點符號"
499
+ currency_settings: "幣別設定"
500
+ currency_symbol_position: "幣別符號在金額數字前還是後?"
501
+ currency_thousands_separator: "幣別千分位分隔符號"
502
+ current: "目前的"
503
+ current_promotion_usage: "目前使用量: %{count}"
504
+ customer: "客戶"
505
+ customer_details: "客戶資料"
506
+ customer_details_updated: "客戶資料更新完成"
507
+ customer_return:
508
+ customer_returns:
509
+ customer_search: "搜尋客戶"
510
+ cut: "剪下"
511
+ cvv_response:
512
+ dash:
513
+ jirafe:
514
+ app_id: App ID
515
+ app_token: App Token
516
+ currently_unavailable: Jirafe 目前無法使用. Spree 將在Jirafe 恢復正常時自動連線.
517
+ explanation: "如果你選擇從管理界面來註冊Jirafe, 以下填寫的欄位很有可能已經存在"
518
+ header: Jirafe Analytics 設定
519
+ site_id: "網站 ID"
520
+ token: "辨識碼"
521
+ jirafe_settings_updated: Jirafe 設定已經更新.
522
+ date: "日期"
523
+ date_completed: "完成日期"
524
+ date_picker:
525
+ first_day: 0
526
+ format: "%Y/%m/%d"
527
+ js_format: yy/mm/dd
528
+ date_range: "日期範圍"
529
+ default: "預設"
530
+ default_refund_amount:
531
+ default_tax: "預設稅項"
532
+ default_tax_zone: "預設稅區"
533
+ delete: "刪除"
534
+ deleted_variants_present:
535
+ delivery: "抵達"
536
+ depth: "深"
537
+ description: "描述"
538
+ destination: "目的地"
539
+ destroy: "刪除"
540
+ details:
541
+ discount_amount: "折扣金額"
542
+ dismiss_banner: "不。謝謝!我沒有興趣,不要再顯示此訊息。"
543
+ display: "顯示"
544
+ display_currency: "顯示貨幣"
545
+ doesnt_track_inventory:
546
+ edit: "編輯"
547
+ editing_resource:
548
+ editing_rma_reason:
549
+ editing_user: "編輯使用者"
550
+ eligibility_errors:
551
+ messages:
552
+ has_excluded_product:
553
+ item_total_less_than:
554
+ item_total_less_than_or_equal:
555
+ item_total_more_than:
556
+ item_total_more_than_or_equal:
557
+ limit_once_per_user:
558
+ missing_product:
559
+ missing_taxon:
560
+ no_applicable_products:
561
+ no_matching_taxons:
562
+ no_user_or_email_specified:
563
+ no_user_specified:
564
+ not_first_order:
565
+ email: Email
566
+ empty: "空"
567
+ empty_cart: "清空購物車"
568
+ enable_mail_delivery: "啟用 Email 寄送功能"
569
+ end: "結束"
570
+ ending_in: Ending in
571
+ environment: "環境"
572
+ error: "錯誤"
573
+ errors:
574
+ messages:
575
+ could_not_create_taxon: "無法建立類型"
576
+ no_payment_methods_available: No payment methods are configured for this environment
577
+ no_shipping_methods_available: "沒有可用的出貨方式, 請修改地址後再試一次"
578
+ errors_prohibited_this_record_from_being_saved:
579
+ one: "有 1 個錯誤發生使得這筆資料無法被儲存"
580
+ other: "有 %{count} 個錯誤發生使得這筆資料無法被儲存"
581
+ event: "觸發事件"
582
+ events:
583
+ spree:
584
+ cart:
585
+ add: "加入購物車"
586
+ checkout:
587
+ coupon_code_added: "添加了優惠券號碼"
588
+ content:
589
+ visited: "訪問靜態頁面"
590
+ order:
591
+ contents_changed: "訂單內容已變更"
592
+ page_view: "被訪問靜態頁面"
593
+ user:
594
+ signup: "使用者登記"
595
+ exceptions:
596
+ count_on_hand_setter: "無法手動設置 count_on_hand, 將會在 recalculate_count_on_hand 中被自動設定. 請使用 `update_column(:count_on_hand, value)`"
597
+ exchange_for:
598
+ excl:
599
+ existing_shipments:
600
+ expedited_exchanges_warning:
601
+ expiration: "過期"
602
+ extension: "擴展"
603
+ failed_payment_attempts:
604
+ filename: "檔案名稱"
605
+ fill_in_customer_info: "請填寫消費者資訊"
606
+ filter_results: "過濾結果"
607
+ finalize: "完成"
608
+ finalized:
609
+ find_a_taxon:
610
+ first_item: "第一項商品價格"
611
+ first_name: "名"
612
+ first_name_begins_with: "名字開始"
613
+ flat_percent: "固定比例"
614
+ flat_rate_per_order: "固定金額(單一訂單)"
615
+ flexible_rate: "變動金額"
616
+ forgot_password: "忘記密碼"
617
+ free_shipping: "免運費"
618
+ free_shipping_amount:
619
+ front_end: "前端"
620
+ gateway: Gateway
621
+ gateway_config_unavailable: Gateway unavailable for environment
622
+ gateway_error: Gateway Error
623
+ general: "一般"
624
+ general_settings: "一般設定"
625
+ google_analytics: Google Analytics
626
+ google_analytics_id: Analytics ID
627
+ guest_checkout: "訪客結帳"
628
+ guest_user_account: "訪客帳戶"
629
+ has_no_shipped_units: "不需出貨"
630
+ height: "高"
631
+ hide_cents: "隱藏小數點"
632
+ home: "首頁"
633
+ i18n:
634
+ available_locales: "可用語系"
635
+ language: "語言"
636
+ localization_settings: "在地化設定"
637
+ this_file_language: "中文 (繁體)"
638
+ icon: "圖示"
639
+ identifier:
640
+ image: "圖片"
641
+ images: "圖片"
642
+ implement_eligible_for_return:
643
+ implement_requires_manual_intervention:
644
+ inactive:
645
+ incl:
646
+ included_in_price: "已包括於售價"
647
+ included_price_validation: "除非您設置了默認的繳稅區域,否則無法選擇"
648
+ incomplete:
649
+ info_number_of_skus_not_shown:
650
+ info_product_has_multiple_skus:
651
+ instructions_to_reset_password: "請填寫如下表格來重置你的密碼,重置後的密碼會通過電子郵件發送給您"
652
+ insufficient_stock: "庫存不足,當前還剩下 %{on_hand} 件庫存"
653
+ insufficient_stock_lines_present:
654
+ intercept_email_address: "攔截電郵地址"
655
+ intercept_email_instructions: "更改電子郵件回函收件位址為這個位址"
656
+ internal_name: "內部名稱"
657
+ invalid_credit_card:
658
+ invalid_exchange_variant:
659
+ invalid_payment_provider: "不正確的付費供應商."
660
+ invalid_promotion_action: "不正確的宣傳操作."
661
+ invalid_promotion_rule: "不正確的宣傳規則."
662
+ inventory: "庫存"
663
+ inventory_adjustment: "庫存調整"
664
+ inventory_error_flash_for_insufficient_quantity: "您購物車內的商品已無法使用."
665
+ inventory_state:
666
+ is_not_available_to_shipment_address: "沒有可用的出貨地址"
667
+ iso_name: ISO 名稱
668
+ item: "商品"
669
+ item_description: "商品描述"
670
+ item_total: "商品總價"
671
+ item_total_rule:
672
+ operators:
673
+ gt: "大於"
674
+ gte: "大於等於"
675
+ lt:
676
+ lte:
677
+ items_cannot_be_shipped: "我們無法遞送物品至您的運送地址. 請選擇其他運送位置."
678
+ items_in_rmas:
679
+ items_reimbursed:
680
+ items_to_be_reimbursed:
681
+ jirafe: Jirafe
682
+ landing_page_rule:
683
+ path: Path
684
+ last_name: "姓"
685
+ last_name_begins_with: "姓氏開頭"
686
+ learn_more: Learn More
687
+ lifetime_stats:
688
+ line_item_adjustments:
689
+ list: "列表"
690
+ loading: "載入中"
691
+ locale_changed: "語系已變更"
692
+ location: "位置"
693
+ lock: "鎖定"
694
+ log_entries:
695
+ logged_in_as: "目前帳號"
696
+ logged_in_succesfully: "登入成功"
697
+ logged_out: "你已經完成登出"
698
+ login: "登入"
699
+ login_as_existing: "用戶登入"
700
+ login_failed: "登入認証失敗"
701
+ login_name: "使用者名稱"
702
+ logout: "登出"
703
+ logs:
704
+ look_for_similar_items: "瀏覽相似的商品"
705
+ make_refund: "退款"
706
+ make_sure_the_above_reimbursement_amount_is_correct:
707
+ manage_promotion_categories:
708
+ manage_variants:
709
+ manual_intervention_required:
710
+ master_price: "主要定價"
711
+ match_choices:
712
+ all: "全部"
713
+ none: "清空"
714
+ max_items:
715
+ member_since:
716
+ memo:
717
+ meta_description: Meta 描述
718
+ meta_keywords: Meta 關鍵字
719
+ meta_title:
720
+ metadata: Metadata
721
+ minimal_amount: "最小個數"
722
+ month: "月"
723
+ more: More
724
+ move_stock_between_locations: "移動庫存位置"
725
+ my_account: "我的帳戶"
726
+ my_orders: "我的訂單"
727
+ name: "名稱"
728
+ name_on_card:
729
+ name_or_sku: "商品名稱或編號"
730
+ new: "新增"
731
+ new_adjustment: "新增訂單項目"
732
+ new_country:
733
+ new_customer: "新增客戶"
734
+ new_customer_return:
735
+ new_image: "新增圖片"
736
+ new_option_type: "新增商品選項類型"
737
+ new_order: "新增訂單"
738
+ new_order_completed: "新增訂單完成"
739
+ new_payment: "新增付費紀錄"
740
+ new_payment_method: "新增付費方式"
741
+ new_product: "新增商品"
742
+ new_promotion: "新增優惠推廣"
743
+ new_promotion_category:
744
+ new_property: "新增商品屬性"
745
+ new_prototype: "新增商品原型"
746
+ new_refund:
747
+ new_refund_reason:
748
+ new_return_authorization: "新增退貨資料"
749
+ new_rma_reason:
750
+ new_shipment_at_location:
751
+ new_shipping_category: "新增出貨類型"
752
+ new_shipping_method: "新增出貨方式"
753
+ new_state: "新增省份"
754
+ new_stock_location: "新增庫存位置"
755
+ new_stock_movement: "新增庫存動向"
756
+ new_stock_transfer: "新增庫存轉移"
757
+ new_tax_category: "新增課稅分類"
758
+ new_tax_rate: "新增稅���"
759
+ new_taxon: "新增分類"
760
+ new_taxonomy: "新增分類"
761
+ new_tracker:
762
+ new_user: "新增使用者"
763
+ new_variant: "新增款式系列"
764
+ new_zone: "新增區域"
765
+ next: "下一頁"
766
+ no_actions_added:
767
+ no_payment_found:
768
+ no_pending_payments:
769
+ no_products_found: "找不到商品"
770
+ no_resource_found:
771
+ no_results: "沒有結果"
772
+ no_returns_found:
773
+ no_rules_added: No rules added
774
+ no_shipping_method_selected:
775
+ no_state_changes:
776
+ no_tracking_present:
777
+ none: "沒有"
778
+ none_selected:
779
+ normal_amount: "一般數量"
780
+ not: "不"
781
+ not_available: N/A
782
+ not_enough_stock: "來源地沒有足夠的庫存以完成遞送."
783
+ not_found: "%{resource} is not found"
784
+ note:
785
+ notice_messages:
786
+ product_cloned: "商品已經被覆制"
787
+ product_deleted: "商品已經被刪除"
788
+ product_not_cloned: "商品無法被複製"
789
+ product_not_deleted: "商品無法被刪除"
790
+ variant_deleted: "具體型號已經被刪除"
791
+ variant_not_deleted: "具體型號不能被刪除"
792
+ num_orders:
793
+ on_hand: "庫存"
794
+ open:
795
+ open_all_adjustments: "啟用所有價格調整"
796
+ option_type: "商品選項類型"
797
+ option_type_placeholder:
798
+ option_types: "商品選項類型"
799
+ option_value: "商品選項"
800
+ option_values: "商品選項"
801
+ optional:
802
+ options: "選項"
803
+ or: "或"
804
+ or_over_price: "%{price} 或以上"
805
+ order: "訂單"
806
+ order_adjustments: "訂單調整"
807
+ order_already_updated:
808
+ order_approved:
809
+ order_canceled:
810
+ order_details: "訂單資料"
811
+ order_email_resent: "重新發送了訂單郵件"
812
+ order_information: "訂單資訊"
813
+ order_mailer:
814
+ cancel_email:
815
+ dear_customer: "親愛的顧客,"
816
+ instructions: "您的訂單已被取消。請保留此取消信息記錄。"
817
+ order_summary_canceled: "訂單總覽 [已取消]"
818
+ subject: "註銷訂單"
819
+ subtotal:
820
+ total:
821
+ confirm_email:
822
+ dear_customer: "親愛的顧客,"
823
+ instructions: "請仔細閱讀並保留以下訂單信息記錄。"
824
+ order_summary: "訂單總覽"
825
+ subject: "訂單確認"
826
+ subtotal:
827
+ thanks: "謝謝你的購物和信賴。"
828
+ total:
829
+ order_not_found: "找不到您的訂單. 請再試一次."
830
+ order_number: "訂單編號 %{number}"
831
+ order_processed_successfully: "您的訂單已被接收"
832
+ order_resumed:
833
+ order_state:
834
+ address: "地址"
835
+ awaiting_return: "等待寄回"
836
+ canceled: "取消"
837
+ cart: "購物車"
838
+ complete: "完成"
839
+ confirm: "確認"
840
+ considered_risky:
841
+ delivery: "寄送方式"
842
+ payment: "付款"
843
+ resumed: "重新開始"
844
+ returned: "己寄回"
845
+ order_summary: "訂單總計"
846
+ order_sure_want_to: "您確定您想要%{event}這個訂單嗎?"
847
+ order_total: "總金額"
848
+ order_updated: "訂單已更新"
849
+ orders: "訂單"
850
+ other_items_in_other:
851
+ out_of_stock: "缺貨中"
852
+ overview: "總覽"
853
+ package_from: "包裝自"
854
+ pagination:
855
+ next_page: "下一頁 »"
856
+ previous_page: "« 上一頁"
857
+ truncate: "…"
858
+ password: "密碼"
859
+ paste: "貼上"
860
+ path: "路徑"
861
+ pay: "付款"
862
+ payment: "付款"
863
+ payment_could_not_be_created:
864
+ payment_identifier:
865
+ payment_information: "付費資訊"
866
+ payment_method: "付費方式"
867
+ payment_method_not_supported:
868
+ payment_methods: "付費方式"
869
+ payment_processing_failed:
870
+ payment_processor_choose_banner_text: "如果您需要關於支付處理的幫助,請訪問"
871
+ payment_processor_choose_link: "我們的支付頁面"
872
+ payment_state: "付費狀態"
873
+ payment_states:
874
+ balance_due: "未入帳"
875
+ checkout: "付款"
876
+ completed: "已完成"
877
+ credit_owed:
878
+ failed: "失敗"
879
+ paid: "已付費"
880
+ pending: "擱置"
881
+ processing: "處理中"
882
+ void: "無效"
883
+ payment_updated: "付費資料已更新"
884
+ payments: "付費資料"
885
+ pending:
886
+ percent: "百分比"
887
+ percent_per_item: "單件百分比"
888
+ permalink: "永久連結"
889
+ phone: "電話"
890
+ place_order: "落單"
891
+ please_define_payment_methods: "請先設定支付方式。"
892
+ populate_get_error: "發生錯誤,請再添加項目。"
893
+ powered_by: "技術支持"
894
+ pre_tax_amount:
895
+ pre_tax_refund_amount:
896
+ pre_tax_total:
897
+ preferred_reimbursement_type:
898
+ presentation: "描述"
899
+ previous: "上一個"
900
+ previous_state_missing:
901
+ price: "價格"
902
+ price_range: "價格範圍"
903
+ price_sack: "袋價格"
904
+ process: "處理"
905
+ product: "產品"
906
+ product_details: "商品資料"
907
+ product_has_no_description: "該產品沒有描述"
908
+ product_not_available_in_this_currency: "本產品無法使用您選擇的幣別付費."
909
+ product_properties: "商品屬性"
910
+ product_rule:
911
+ choose_products: "選擇產品"
912
+ label:
913
+ match_all: "全部"
914
+ match_any: "最新一個"
915
+ match_none:
916
+ product_source:
917
+ group: "從產品分組"
918
+ manual: "手動選擇"
919
+ products: "商品"
920
+ promotion: "優惠推廣"
921
+ promotion_action: "優惠方式"
922
+ promotion_action_types:
923
+ create_adjustment:
924
+ description: "為訂單添加促銷用的價格調整"
925
+ name: "添加訂單的價格調整"
926
+ create_item_adjustments:
927
+ description: "為訂單上的單項產品添加一筆促銷用的價格調整"
928
+ name: "添加單項的價格調整"
929
+ create_line_items:
930
+ description: "添加特定商品到訂單中"
931
+ name: "添加訂單商品"
932
+ free_shipping:
933
+ description: "整張訂單免費發貨"
934
+ name: "免運費"
935
+ promotion_actions: "優惠方式"
936
+ promotion_form:
937
+ match_policies:
938
+ all: "符合所有條件"
939
+ any: "符合任一條件"
940
+ promotion_rule: "促銷規則"
941
+ promotion_rule_types:
942
+ first_order:
943
+ description: "使用者的第 1 筆訂單"
944
+ name: "第 1 筆訂單"
945
+ item_total:
946
+ description: "商品總價符合條件"
947
+ name: "商品總價"
948
+ landing_page:
949
+ description: "客戶必須訪問了指定的頁面"
950
+ name: "登陸頁面"
951
+ one_use_per_user:
952
+ description: "每人只可使用一次"
953
+ name: "每人一次"
954
+ option_value:
955
+ description:
956
+ name:
957
+ product:
958
+ description: "訂單中包含特定商品"
959
+ name: "商品"
960
+ taxon:
961
+ description: "訂單中包括指定分類產品"
962
+ name: "分類"
963
+ user:
964
+ description: "符合特定使用者"
965
+ name: "使用者"
966
+ user_logged_in:
967
+ description: "網站已註冊的使用者"
968
+ name: "已註冊使用者登入"
969
+ promotion_uses: "促銷使用頻率"
970
+ promotionable:
971
+ promotions: "優惠推廣"
972
+ propagate_all_variants:
973
+ properties: "屬性"
974
+ property: "屬性"
975
+ prototype: "原型"
976
+ prototypes: "原型"
977
+ provider: "供應商"
978
+ provider_settings_warning: "如果您正在修改提供者類型,您需要在編輯提供者設置之前先保存。"
979
+ qty: "數量"
980
+ quantity: "數量"
981
+ quantity_returned: "退貨數量"
982
+ quantity_shipped: "出貨數量"
983
+ quick_search:
984
+ rate: "費率"
985
+ reason: "理由"
986
+ receive: "收到"
987
+ receive_stock: "接收存貨"
988
+ received: "已收到"
989
+ reception_status:
990
+ reference: "參考"
991
+ refund: "退款"
992
+ refund_amount_must_be_greater_than_zero:
993
+ refund_reasons:
994
+ refunded_amount:
995
+ refunds:
996
+ register: "註冊新用戶"
997
+ registration: "註冊"
998
+ reimburse:
999
+ reimbursed:
1000
+ reimbursement:
1001
+ reimbursement_mailer:
1002
+ reimbursement_email:
1003
+ days_to_send:
1004
+ dear_customer:
1005
+ exchange_summary:
1006
+ for:
1007
+ instructions:
1008
+ refund_summary:
1009
+ subject:
1010
+ total_refunded:
1011
+ reimbursement_perform_failed:
1012
+ reimbursement_status:
1013
+ reimbursement_type:
1014
+ reimbursement_type_override:
1015
+ reimbursement_types:
1016
+ reimbursements:
1017
+ reject:
1018
+ rejected:
1019
+ remember_me: "記住我"
1020
+ remove: "移除"
1021
+ rename: Rename
1022
+ report:
1023
+ reports: "報告"
1024
+ resend: "重寄"
1025
+ reset_password: "重設密碼"
1026
+ response_code: "回應代碼"
1027
+ resume: "恢復"
1028
+ resumed: "已恢復"
1029
+ return: "退回"
1030
+ return_authorization: "退貨資料"
1031
+ return_authorization_reasons:
1032
+ return_authorization_updated: "退貨資料已更新"
1033
+ return_authorizations: "退貨資料"
1034
+ return_item_inventory_unit_ineligible:
1035
+ return_item_inventory_unit_reimbursed:
1036
+ return_item_rma_ineligible:
1037
+ return_item_time_period_ineligible:
1038
+ return_items:
1039
+ return_items_cannot_be_associated_with_multiple_orders:
1040
+ return_number:
1041
+ return_quantity: "退貨數量"
1042
+ returned: "已退回"
1043
+ returns:
1044
+ review: Review
1045
+ risk:
1046
+ risk_analysis:
1047
+ risky:
1048
+ rma_credit: RMA 額度
1049
+ rma_number: RMA 數字
1050
+ rma_value: RMA 值
1051
+ roles: "角色"
1052
+ rules: "規則"
1053
+ safe:
1054
+ sales_total:
1055
+ sales_total_description:
1056
+ sales_totals:
1057
+ save_and_continue: "儲存後繼續"
1058
+ save_my_address:
1059
+ say_no: "不"
1060
+ say_yes: "是的"
1061
+ scope: "範圍"
1062
+ search: "搜尋"
1063
+ search_results: "%{keywords} 搜尋結果"
1064
+ searching: "搜尋中"
1065
+ secure_connection_type: "安全連線類型"
1066
+ security_settings: "安全設定"
1067
+ select: "選擇"
1068
+ select_a_return_authorization_reason:
1069
+ select_a_stock_location:
1070
+ select_from_prototype: "從商品原型選擇"
1071
+ select_stock: "選擇庫存"
1072
+ send_copy_of_all_mails_to: "將所有郵件的副本發送至"
1073
+ send_mails_as: "發送郵件作為"
1074
+ server: "伺服器"
1075
+ server_error: "伺服器回傳了錯誤訊息"
1076
+ settings: "設定"
1077
+ ship: "出貨"
1078
+ ship_address: "出貨地址"
1079
+ ship_total:
1080
+ shipment: "出貨資料"
1081
+ shipment_adjustments:
1082
+ shipment_details:
1083
+ shipment_mailer:
1084
+ shipped_email:
1085
+ dear_customer: "親愛的顧客,"
1086
+ instructions: "您的訂單已發貨"
1087
+ shipment_summary: "發貨概覽"
1088
+ subject: "出貨通知"
1089
+ thanks: "謝謝你的購物和信賴。"
1090
+ track_information: "貨運單號: %{tracking}"
1091
+ track_link: "追蹤連結: %{url}"
1092
+ shipment_state: "出貨狀態"
1093
+ shipment_states:
1094
+ backorder: "預購"
1095
+ canceled:
1096
+ partial: "部份出貨"
1097
+ pending: "擱置"
1098
+ ready: "準備出貨"
1099
+ shipped: "已出貨"
1100
+ shipment_transfer_error:
1101
+ shipment_transfer_success:
1102
+ shipments: "出貨資料"
1103
+ shipped: "已寄出"
1104
+ shipping: "運費"
1105
+ shipping_address: "出貨地址"
1106
+ shipping_categories: "出貨分類"
1107
+ shipping_category: "出貨分類"
1108
+ shipping_flat_rate_per_item: "以單項計固定費率"
1109
+ shipping_flat_rate_per_order: "固定費率"
1110
+ shipping_flexible_rate: "以每項計彈性價格"
1111
+ shipping_instructions: "配送嚮導"
1112
+ shipping_method: "出貨方式"
1113
+ shipping_methods: "出貨方式"
1114
+ shipping_price_sack:
1115
+ shipping_total:
1116
+ shop_by_taxonomy: "依照%{taxonomy}排序"
1117
+ shopping_cart: "購物車"
1118
+ show: "顯示"
1119
+ show_active: "顯示使用中的資料"
1120
+ show_deleted: "顯示被刪除的資料"
1121
+ show_only_complete_orders: "顯示已完成的訂單"
1122
+ show_only_considered_risky:
1123
+ show_rate_in_label:
1124
+ sku: "商品編號"
1125
+ skus:
1126
+ slug:
1127
+ source: "來源"
1128
+ special_instructions: "特殊說明"
1129
+ split: "分拆"
1130
+ spree_gateway_error_flash_for_checkout: "你的付費資訊有問題. 請檢查後再試一次."
1131
+ ssl:
1132
+ change_protocol:
1133
+ start: "開始"
1134
+ state: "省份"
1135
+ state_based: "依據省份"
1136
+ state_machine_states:
1137
+ accepted:
1138
+ address:
1139
+ authorized:
1140
+ awaiting:
1141
+ awaiting_return:
1142
+ backordered:
1143
+ canceled:
1144
+ cart:
1145
+ checkout:
1146
+ closed:
1147
+ complete:
1148
+ completed:
1149
+ confirm:
1150
+ delivery:
1151
+ errored:
1152
+ failed:
1153
+ given_to_customer:
1154
+ invalid:
1155
+ manual_intervention_required:
1156
+ on_hand:
1157
+ open:
1158
+ order:
1159
+ payment:
1160
+ pending:
1161
+ processing:
1162
+ ready:
1163
+ reimbursed:
1164
+ resumed:
1165
+ returned:
1166
+ shipped:
1167
+ void:
1168
+ states: "省份"
1169
+ states_required: "需要州別"
1170
+ status: "狀態"
1171
+ stock:
1172
+ stock_location: "庫存區域"
1173
+ stock_location_info: "庫存區域資訊"
1174
+ stock_locations: "庫存區域"
1175
+ stock_locations_need_a_default_country:
1176
+ stock_management: "庫存管理"
1177
+ stock_management_requires_a_stock_location: "請先新增庫存區域,才可使用庫存管理"
1178
+ stock_movements: "庫存動向"
1179
+ stock_movements_for_stock_location: "%{stock_location_name} 的庫存動向"
1180
+ stock_successfully_transferred: "庫存已成功在兩區域轉移"
1181
+ stock_transfer: "庫存轉移"
1182
+ stock_transfers: "庫存轉移"
1183
+ stop: "停止"
1184
+ store: "商店"
1185
+ street_address: "地址"
1186
+ street_address_2: "地址(繼續)"
1187
+ subtotal: "小計"
1188
+ subtract: "減去"
1189
+ success:
1190
+ successfully_created: "建立%{resource}成功!"
1191
+ successfully_refunded:
1192
+ successfully_removed: "刪除%{resource}成功!"
1193
+ successfully_signed_up_for_analytics:
1194
+ successfully_updated: "更新%{resource}成功!"
1195
+ summary:
1196
+ tax: "稅"
1197
+ tax_categories: "課稅類別"
1198
+ tax_category: "課稅類別"
1199
+ tax_code:
1200
+ tax_included:
1201
+ tax_rate_amount_explanation:
1202
+ tax_rates: "稅率"
1203
+ taxon: "分類"
1204
+ taxon_edit: "編輯分類"
1205
+ taxon_placeholder:
1206
+ taxon_rule:
1207
+ choose_taxons:
1208
+ label:
1209
+ match_all:
1210
+ match_any:
1211
+ taxonomies: "分類"
1212
+ taxonomy: Taxonomy
1213
+ taxonomy_edit: "編輯分類"
1214
+ taxonomy_tree_error: "請求的變更沒有被接受,樹會恢復到之前的狀態,請重新嘗試。"
1215
+ taxonomy_tree_instruction: "* 右鍵單擊一個樹的子結點以訪問添加、刪除或排序字節點的菜單。"
1216
+ taxons: "分類"
1217
+ test: "測試"
1218
+ test_mailer:
1219
+ test_email:
1220
+ greeting: Congratulations!
1221
+ message: If you have received this email, then your email settings are correct.
1222
+ subject: Testmail
1223
+ test_mode: "測試模式"
1224
+ thank_you_for_your_order:
1225
+ there_are_no_items_for_this_order:
1226
+ there_were_problems_with_the_following_fields:
1227
+ this_order_has_already_received_a_refund:
1228
+ thumbnail: "縮圖"
1229
+ tiered_flat_rate:
1230
+ tiered_percent:
1231
+ tiers:
1232
+ time: "時間"
1233
+ to_add_variants_you_must_first_define:
1234
+ total: "總金額"
1235
+ total_per_item:
1236
+ total_pre_tax_refund:
1237
+ total_price:
1238
+ total_sales:
1239
+ track_inventory:
1240
+ tracking: "物流追蹤碼"
1241
+ tracking_number: "追蹤號碼"
1242
+ tracking_url: "追蹤網址"
1243
+ tracking_url_placeholder: "例如: http://quickship.com/package?num=:tracking"
1244
+ transaction_id:
1245
+ transfer_from_location:
1246
+ transfer_stock:
1247
+ transfer_to_location:
1248
+ tree: "樹"
1249
+ type: "類型"
1250
+ type_to_search: "輸入搜尋關鍵字"
1251
+ unable_to_connect_to_gateway: "無法連上 gateway"
1252
+ unable_to_create_reimbursements:
1253
+ under_price: Under %{price}
1254
+ unlock: "解鎖"
1255
+ unrecognized_card_type: "無法辨識的信用卡類別"
1256
+ unshippable_items:
1257
+ update: "更新"
1258
+ updating: "更新中"
1259
+ usage_limit: "使用次數限制"
1260
+ use_app_default:
1261
+ use_billing_address: "使用帳單地址"
1262
+ use_new_cc: "使用新卡"
1263
+ use_s3: Use Amazon S3 For Images
1264
+ user: "使用者"
1265
+ user_rule:
1266
+ choose_users: "選擇使用者"
1267
+ users: "使用者"
1268
+ validation:
1269
+ cannot_be_less_than_shipped_units: "不能少於已配送的單位數。"
1270
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1271
+ exceeds_available_stock: "超出可用的庫存。請確認訂單項的有效的數量。"
1272
+ is_too_large: "數量太多了,現有庫存無法滿足您需要的數量!"
1273
+ must_be_int: "必須是整數"
1274
+ must_be_non_negative: "必須為非負數"
1275
+ unpaid_amount_not_zero:
1276
+ value: "值"
1277
+ variant: "具體型號"
1278
+ variant_placeholder: "選擇具体型号"
1279
+ variants: "款式系列"
1280
+ version: "版本"
1281
+ void: "無效"
1282
+ weight: "重"
1283
+ what_is_a_cvv: "什麼是 (CVV) 信用卡代碼?"
1284
+ what_is_this: "這是什麼?"
1285
+ width: "寬"
1286
+ year: "年"
1287
+ you_have_no_orders_yet: "您還沒有任何訂單"
1288
+ your_cart_is_empty: "購物車是空的"
1289
+ your_order_is_empty_add_product: "你的訂單是空的, 請搜尋並加入產品"
1290
+ zip: "郵遞區號"
1291
+ zipcode: "區域代碼"
1292
+ zone: "區域"
1293
+ zones: "區域"