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,1290 @@
1
+ vi:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: "Địa chỉ"
6
+ address2: "Địa chỉ (tiếp)"
7
+ city: Thành phố
8
+ country: Quốc gia
9
+ firstname: Tên
10
+ lastname: Họ
11
+ phone: "Điện thoại"
12
+ state: Bang
13
+ zipcode: Mã Zip
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: Tên ISO
24
+ name: Tên
25
+ numcode: Mã ISO
26
+ spree/credit_card:
27
+ base:
28
+ cc_type: Kiểu
29
+ month: Tháng
30
+ name:
31
+ number: Số
32
+ verification_value: Thông số kiểm tra
33
+ year: Năm
34
+ spree/inventory_unit:
35
+ state: Bang
36
+ spree/line_item:
37
+ price: Giá
38
+ quantity: Số lượng
39
+ spree/option_type:
40
+ name: Tên
41
+ presentation: Thể hiện
42
+ spree/order:
43
+ checkout_complete: Thanh toán hoàn tất
44
+ completed_at: Hoàn tất lúc
45
+ considered_risky:
46
+ coupon_code:
47
+ created_at: Ngày đặt hàng
48
+ email: Email của khách hàng
49
+ ip_address: "Địa chỉ IP"
50
+ item_total: Tổng sản phẩm
51
+ number: Số
52
+ payment_state: Trạng thái thanh toán
53
+ shipment_state: Trạng thái giao hàng
54
+ special_instructions: Chỉ dẫn đặc biệt
55
+ state: Bang
56
+ total: Tổng
57
+ spree/order/bill_address:
58
+ address1: "Đỉa chị thanh toán - tên đường"
59
+ city: "Đỉa chị thanh toán - thành phố"
60
+ firstname: "Đỉa chị thanh toán - tên"
61
+ lastname: "Đỉa chị thanh toán - họ"
62
+ phone: "Đỉa chị thanh toán - ĐT"
63
+ state: "Đỉa chị thanh toán - bang"
64
+ zipcode: "Đỉa chị thanh toán - mã zip"
65
+ spree/order/ship_address:
66
+ address1: "Đỉa chị giao hàng - tên đường"
67
+ city: "Đỉa chị giao hàng - thành phố"
68
+ firstname: "Đỉa chị giao hàng - tên"
69
+ lastname: "Đỉa chị giao hàng - họ"
70
+ phone: "Đỉa chị giao hàng - ĐT"
71
+ state: "Đỉa chị giao hàng - bang"
72
+ zipcode: "Đỉa chị giao hàng - mã zip"
73
+ spree/payment:
74
+ amount: Giá trị
75
+ spree/payment_method:
76
+ name:
77
+ spree/product:
78
+ available_on: Available On
79
+ cost_currency: Tiền giá
80
+ cost_price:
81
+ description:
82
+ master_price:
83
+ name:
84
+ on_hand:
85
+ shipping_category:
86
+ tax_category: Mục thuế
87
+ spree/promotion:
88
+ advertise: Quảng cáo
89
+ code: Mã
90
+ description: Chú thích
91
+ event_name: Tên sự kiện
92
+ expires_at: Hết hạn lúc
93
+ name: Tên
94
+ path: "Đường dẫn"
95
+ starts_at: Bắt đầu lúc
96
+ usage_limit: Giới hạn sử dụng
97
+ spree/promotion_category:
98
+ name:
99
+ spree/property:
100
+ name: Tên
101
+ presentation: Thể hiện
102
+ spree/prototype:
103
+ name: Tên
104
+ spree/return_authorization:
105
+ amount: Giá trị
106
+ spree/role:
107
+ name: Tên
108
+ spree/state:
109
+ abbr: Viết tắt
110
+ name: Tên
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: Chú thích
128
+ name: Tên
129
+ spree/tax_rate:
130
+ amount: Mức giá
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:
141
+ password: Mật khẩu
142
+ password_confirmation: Xác nhận mật khẩu
143
+ spree/variant:
144
+ cost_currency: Tiền giá
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: "Địa chỉ"
203
+ spree/country: Quốc gia
204
+ spree/credit_card: Thẻ tín dụng
205
+ spree/customer_return:
206
+ spree/inventory_unit: "Đơn vị hàng"
207
+ spree/line_item:
208
+ spree/option_type:
209
+ spree/option_value:
210
+ spree/order: "Đơn đặt hàng"
211
+ spree/payment: Thanh toán
212
+ spree/payment_method:
213
+ spree/product: Sản phẩm
214
+ spree/promotion:
215
+ spree/promotion_category:
216
+ spree/property: Thuộc tính
217
+ spree/prototype: Mẫu hàng
218
+ spree/refund_reason:
219
+ spree/reimbursement:
220
+ spree/reimbursement_type:
221
+ spree/return_authorization:
222
+ spree/return_authorization_reason:
223
+ spree/role:
224
+ spree/shipment:
225
+ spree/shipping_category:
226
+ spree/shipping_method:
227
+ spree/state:
228
+ spree/state_change:
229
+ spree/stock_location:
230
+ spree/stock_movement:
231
+ spree/stock_transfer:
232
+ spree/tax_category:
233
+ spree/tax_rate:
234
+ spree/taxon:
235
+ spree/taxonomy:
236
+ spree/tracker:
237
+ spree/user:
238
+ spree/variant:
239
+ spree/zone:
240
+ devise:
241
+ confirmations:
242
+ confirmed: Tài khoản của bạn đã được xác nhận thành công. Bạn đang đăng nhập vào.
243
+ send_instructions: Bạn sẽ nhận được thư hướng dẫn xác nhận tài khoản của mình trong một vài phút tới.
244
+ failure:
245
+ inactive: Tài khoản của bạn chưa được kích hoạt.
246
+ invalid: "Địa chỉ hòm thư hoặc mật khẩu không hợp lệ."
247
+ invalid_token: Token ủy quyền không đúng.
248
+ locked: Tài khoản của bạn đang bị khoá.
249
+ timeout: Session hết hạn, xin vui lòng đăng nhập lại.
250
+ unauthenticated: Bạn cần đăng nhập hoặc đăng kí trước khi tiếp tục.
251
+ unconfirmed: Bạn phải xác nhận tài khoản của mình trước khi tiếp tục.
252
+ mailer:
253
+ confirmation_instructions:
254
+ subject: Hướng dẫn chứng thực
255
+ reset_password_instructions:
256
+ subject: Hướng dẫn thiết lập lại mật khẩu.
257
+ unlock_instructions:
258
+ subject: Hướng dẫn mở khoá
259
+ oauth_callbacks:
260
+ failure: Không thể ủy quyền bạn từ %{kind} vì %{reason}.
261
+ success: Thành công ủy quyền từ tài khoản %{kind}.
262
+ unlocks:
263
+ send_instructions: Bạn sẽ nhận được email với hướng dẫn cách mở khoá tài khoản trong ít phút nữa.
264
+ unlocked: Tài khoản đã được mở khoá. Bạn bây giờ đã đăng nhập.
265
+ user_passwords:
266
+ user:
267
+ cannot_be_blank: Mật khẩu của bạn không được bỏ trống.
268
+ send_instructions: Bạn sẽ nhận được email với hướng dẫn cách cài lại mật khẩu trong ít phút nữa.
269
+ updated: Mật mã đã thành công thay đổi. Bạn bây giờ đã được đăng nhập.
270
+ user_registrations:
271
+ destroyed: Tạm biệt! Tài khoản đã bị huỷ. Hẹn gặp lại.
272
+ inactive_signed_up: Bạn đã thành công đăng kí. Nhưng bạn chưa thể đăng nhập vì tài khoản bị %{reason}
273
+ signed_up: Chào mừng! Bạn đã thành công đăng kí.
274
+ updated: Bạn đã thành công cập nhật tài khoản.
275
+ user_sessions:
276
+ signed_in: "Đăng nhập thành công."
277
+ signed_out: "Đăng xuất thành công."
278
+ errors:
279
+ messages:
280
+ already_confirmed: "đã được chứng nhận"
281
+ not_found: không tìm thấy
282
+ not_locked: không bị khoá
283
+ not_saved: "%{count} lỗi cấm %{resource} này lưu:"
284
+ spree:
285
+ abbreviation: Từ khóa tắt
286
+ accept:
287
+ acceptance_errors:
288
+ acceptance_status:
289
+ accepted:
290
+ account: Tài khoản
291
+ account_updated: Tải khoản được cập nhật!
292
+ action: Lệnh
293
+ actions:
294
+ cancel: Hủy
295
+ continue: Tiếp
296
+ create: Tạo
297
+ destroy: Xóa
298
+ edit: Chỉnh sửa
299
+ list: Liệt kê
300
+ listing: Lên danh sách
301
+ new: Mới
302
+ refund:
303
+ save: Lưu
304
+ update: Cập nhật
305
+ activate: Kích hoạt
306
+ active: Có hiệu lực
307
+ add: Thêm
308
+ add_action_of_type: Thêm hành động loại
309
+ add_country: Thêm quốc gia
310
+ add_coupon_code:
311
+ add_new_header: Tạo Header mới
312
+ add_new_style: Tạo style mới
313
+ add_one: Tạo một
314
+ add_option_value: Thêm giá trị của tùy chọn
315
+ add_product: Thêm sản phẩm
316
+ add_product_properties: Thêm đặc tính sản phẩm
317
+ add_rule_of_type: Tạo luật kiểu
318
+ add_state: Thêm bang
319
+ add_stock: Thêm hàng hoá
320
+ add_stock_management: Tạo quản lý hàng
321
+ add_to_cart: Cho vào sọt
322
+ add_variant: Tạo biến thể
323
+ additional_item: Giá phải trả thêm
324
+ address1: "Địa chỉ"
325
+ address2: "Địa chỉ (tiếp)"
326
+ adjustable:
327
+ adjustment: "Điều chỉnh"
328
+ adjustment_amount: Giá trị
329
+ adjustment_successfully_closed: "Điều chỉnh đã được đóng!"
330
+ adjustment_successfully_opened: "Điều chỉnh đã được mở!"
331
+ adjustment_total: Tổng Điều chỉnh
332
+ adjustments: "Điều chỉnh"
333
+ admin:
334
+ tab:
335
+ configuration:
336
+ option_types:
337
+ orders:
338
+ overview:
339
+ products:
340
+ promotions:
341
+ promotion_categories:
342
+ properties:
343
+ prototypes:
344
+ reports:
345
+ taxonomies:
346
+ taxons:
347
+ users:
348
+ user:
349
+ account:
350
+ addresses:
351
+ items:
352
+ items_purchased:
353
+ order_history:
354
+ order_num:
355
+ orders:
356
+ user_information:
357
+ administration: Quản trị
358
+ advertise:
359
+ agree_to_privacy_policy: "Đồng ý với Điều khoản riêng tư"
360
+ agree_to_terms_of_service: "Đồng ý với Điều khoản dịch vụ"
361
+ all: Tất cả
362
+ all_adjustments_closed: Tất cả điều chỉnh đã được đóng!
363
+ all_adjustments_opened: Tất cả điều chỉnh đã được mở!
364
+ all_departments: Tất cả các mục
365
+ all_items_have_been_returned:
366
+ allow_ssl_in_development_and_test: Cho phép dùng SSL trong môi trường development và test
367
+ allow_ssl_in_production: Cho phép dùng SSL trong môi trường production
368
+ allow_ssl_in_staging: Cho phép dùng SSL trong môi trường staging
369
+ already_signed_up_for_analytics: Bạn đã đăng kí với Spree Analytics rồi
370
+ alt_text: Chú thích khác
371
+ alternative_phone: "Điện thoại khác"
372
+ amount: Giá trị
373
+ analytics_desc_header_1: Thống kê Spree
374
+ analytics_desc_header_2: Các thông số thống kê được tích hợp vào Spree dashboard
375
+ analytics_desc_list_1: Lấy thông số bán hàng trưc tiếp
376
+ analytics_desc_list_2: Yêu cầu một tài khoản Spree miễn phí để kích hoạt
377
+ analytics_desc_list_3: Không cần mã để cài đặt
378
+ analytics_desc_list_4: Hoàn toàn miễn phí!
379
+ analytics_trackers: Theo dõi thông số thống kê
380
+ and: và
381
+ approve:
382
+ approved_at:
383
+ approver:
384
+ are_you_sure: Bạn có chắn chắn không?
385
+ are_you_sure_delete: Bạn có chắc bạn muốn xóa hồ sơ này không?
386
+ associated_adjustment_closed: "Điều chỉnh liên đới đã bị đóng và không thể tính lại. Bạn có muốn mở nó không?"
387
+ at_symbol: '@'
388
+ authorization_failure: Không được ủy quyền truy cập
389
+ authorized:
390
+ auto_capture:
391
+ available_on: Có hàng vào ngày
392
+ average_order_value:
393
+ avs_response:
394
+ back: Quay lại
395
+ back_end:
396
+ back_to_payment:
397
+ back_to_resource_list:
398
+ back_to_rma_reason_list:
399
+ back_to_store: Quay lại cửa hàng
400
+ back_to_users_list: Quay lại Liệt kê người dùng
401
+ backorderable: Có thể đặt chỗ
402
+ backorderable_default:
403
+ backordered:
404
+ backorders_allowed:
405
+ balance_due: Tiền cần thanh toán
406
+ base_amount:
407
+ base_percent:
408
+ bill_address: "Địa chỉ thanh toán"
409
+ billing: Thanh Toán
410
+ billing_address: "Địa chỉ thanh toán"
411
+ both: Both
412
+ calculated_reimbursements:
413
+ calculator: Máy tính
414
+ calculator_settings_warning: Nếu bạn đang thay đổi loại máy tính, bạn phải lưu trước khi thay đổi cấu hình máy tính
415
+ cancel: Hủy
416
+ canceled_at:
417
+ canceler:
418
+ cannot_create_customer_returns:
419
+ cannot_create_payment_without_payment_methods:
420
+ cannot_create_returns: Không thể trả hàng vì đơn hàng chưa được gửi.
421
+ cannot_perform_operation:
422
+ cannot_set_shipping_method_without_address: Không thể cài cách thức vận chuyển đến khi thông tin cách hàng được cung cấp.
423
+ capture: Lấy tiền
424
+ capture_events:
425
+ card_code: Mã thẻ
426
+ card_number: Số thẻ
427
+ card_type:
428
+ card_type_is: Loại thẻ là
429
+ cart: Sọt hàng
430
+ cart_subtotal:
431
+ categories: Loại mặt hàng
432
+ category: Loại mặt hàng
433
+ charged:
434
+ check_for_spree_alerts: Kiểm tra thông báo
435
+ checkout: Thủ tục mua hàng
436
+ choose_a_customer: Chọn một khách hàng
437
+ choose_a_taxon_to_sort_products_for:
438
+ choose_currency: Chọn đơn vi tiền tệ
439
+ choose_dashboard_locale: Chọn địa hoá cho Dashboard
440
+ choose_location:
441
+ city: Thành phố
442
+ clear_cache:
443
+ clear_cache_ok:
444
+ clear_cache_warning:
445
+ click_and_drag_on_the_products_to_sort_them:
446
+ clone: Nhân bản
447
+ close: "Đóng"
448
+ close_all_adjustments: "Đóng tất cả chỉnh sửa"
449
+ code: Mã
450
+ company: Công ty
451
+ complete: hoàn tất
452
+ configuration: Cấu hình
453
+ configurations: Cấu hình
454
+ confirm: Xác nhận
455
+ confirm_delete: Xác nhận xóa
456
+ confirm_password: Xác nhận mật khẩu
457
+ continue: Tiếp tục
458
+ continue_shopping: Tiếp tục mua sắm
459
+ cost_currency: Tiền giá
460
+ cost_price: Giá
461
+ could_not_connect_to_jirafe: Không thể kết nối với Jirafe để đồnng bộ hoá dữ liệu. Sẽ tự động thử lại sau.
462
+ could_not_create_customer_return:
463
+ could_not_create_stock_movement: Có một vấn đề lưu cái di chuyển hàng này. Xin vui lòng thử lại.
464
+ count_on_hand: Số hàng có trong tay
465
+ countries: Quốc gia
466
+ country: Quốc gia
467
+ country_based: Dựa trên quốc gia
468
+ country_name: Tên
469
+ country_names:
470
+ CA:
471
+ FRA:
472
+ ITA:
473
+ US:
474
+ coupon:
475
+ coupon_code:
476
+ coupon_code_already_applied: Mã khuyến mại đã được dùng cho đơn hàng khác
477
+ coupon_code_applied: The coupon code was successfully applied to your order.
478
+ coupon_code_better_exists: Mã khuyến mại trước đó có nhiều khuyến mại hơn
479
+ coupon_code_expired: Mã khuyến mại bị hết hạn
480
+ coupon_code_max_usage: Mã khuyến mại bị vượt qua số lần cho phép sử dụng
481
+ coupon_code_not_eligible: Mã khuyến mại không cho đơn hàng này được
482
+ coupon_code_not_found: Mã khuyến mại bạn nhập vào không tồn tại. Vui lòng thử lại.
483
+ coupon_code_unknown_error:
484
+ create: Tạo
485
+ create_a_new_account: Tạo một tài khoản mới
486
+ create_new_order:
487
+ create_reimbursement:
488
+ created_at: Tạo lúc
489
+ credit: Tín dụng
490
+ credit_card: Thẻ tín dụng
491
+ credit_cards:
492
+ credit_owed: Nợ tín dụng
493
+ credits:
494
+ currency:
495
+ currency_decimal_mark: "Điểm phân cách tiền hàng số lẻ"
496
+ currency_settings:
497
+ currency_symbol_position:
498
+ currency_thousands_separator: Phân cách số hàng nghìn
499
+ current: Hiện thời
500
+ current_promotion_usage: "Đang dùng: %{count}"
501
+ customer: Khách hàng
502
+ customer_details: Thông tin khách hàng
503
+ customer_details_updated: The customer's details have been updated.
504
+ customer_return:
505
+ customer_returns:
506
+ customer_search: Tìm kiếm khách hàng
507
+ cut:
508
+ cvv_response:
509
+ dash:
510
+ jirafe:
511
+ app_id:
512
+ app_token:
513
+ currently_unavailable:
514
+ explanation: Các mục dưới đây có thể đã được điền nếu bạn chọn đăng kí với Jirafe từ admin dashboard.
515
+ header:
516
+ site_id:
517
+ token:
518
+ jirafe_settings_updated: Cấu hình Jirafe đã được cập nhật.
519
+ date: Ngày
520
+ date_completed:
521
+ date_picker:
522
+ first_day:
523
+ format: "%d/%m/%Y"
524
+ js_format: dd/mm/yy
525
+ date_range: Giới hạn ngày
526
+ default:
527
+ default_refund_amount:
528
+ default_tax:
529
+ default_tax_zone:
530
+ delete: Xóa
531
+ deleted_variants_present:
532
+ delivery: Delivery
533
+ depth: Sâu
534
+ description: Miêu tả
535
+ destination: "Đích đến"
536
+ destroy: Hủy diệt
537
+ details:
538
+ discount_amount:
539
+ dismiss_banner:
540
+ display:
541
+ display_currency:
542
+ doesnt_track_inventory:
543
+ edit: Sửa đổi
544
+ editing_resource:
545
+ editing_rma_reason:
546
+ editing_user: Sửa đổi người dùng
547
+ eligibility_errors:
548
+ messages:
549
+ has_excluded_product:
550
+ item_total_less_than:
551
+ item_total_less_than_or_equal:
552
+ item_total_more_than:
553
+ item_total_more_than_or_equal:
554
+ limit_once_per_user:
555
+ missing_product:
556
+ missing_taxon:
557
+ no_applicable_products:
558
+ no_matching_taxons:
559
+ no_user_or_email_specified:
560
+ no_user_specified:
561
+ not_first_order:
562
+ email:
563
+ empty:
564
+ empty_cart: Làm rỗng sọt
565
+ enable_mail_delivery: Cho phép vận chuyển thư
566
+ end: Kết thúc
567
+ ending_in: Kết thúc trong
568
+ environment: Môi trường
569
+ error: lỗi
570
+ errors:
571
+ messages:
572
+ could_not_create_taxon: Không thể tạo phân loại
573
+ no_payment_methods_available: Không có cách thức thanh toán cho môi trường này
574
+ no_shipping_methods_available: Không có cách thức vận chuyển cho địa điểm chọn, xin thay đổi địa chỉ và thử lại.
575
+ errors_prohibited_this_record_from_being_saved:
576
+ one: 1 lỗi cấm hồ sơ không lưu
577
+ other: "%{count} errors prohibited this record from being saved"
578
+ event: Sự kiện
579
+ events:
580
+ spree:
581
+ cart:
582
+ add: Cho vào sọt
583
+ checkout:
584
+ coupon_code_added: Mã coupon đã được thêm vào
585
+ content:
586
+ visited: Xem trang tĩnh
587
+ order:
588
+ contents_changed: Nội dung đơn hàng đã thay đổi
589
+ page_view: Trang tĩnh đã được xem
590
+ user:
591
+ signup: Người dùng đăng kí
592
+ exceptions:
593
+ count_on_hand_setter: Không thể thay count_on_hand vì giá trị này được tự động thay bởi recalculate_count_on_hand callback. Xin dùng `update_column(:count_on_hand, value)`.
594
+ exchange_for:
595
+ excl:
596
+ existing_shipments:
597
+ expedited_exchanges_warning:
598
+ expiration: Mãn hạn
599
+ extension: Gói mở rộng
600
+ failed_payment_attempts:
601
+ filename: Tên tệp tin
602
+ fill_in_customer_info: Xin điền vào thông tin khách hàng
603
+ filter_results: Kết quả lọc
604
+ finalize: Hoành thành
605
+ finalized:
606
+ find_a_taxon:
607
+ first_item: Món hàng đầu tiên giá
608
+ first_name: Tên
609
+ first_name_begins_with: Tên bắt đầu với
610
+ flat_percent: "Định mức phần trăm"
611
+ flat_rate_per_order: Lãi suất sàn (cho từng đơn hàng)
612
+ flexible_rate: Lãi suất dao động
613
+ forgot_password: Quên mật khẩu
614
+ free_shipping: Giao hàng miễn phí
615
+ free_shipping_amount:
616
+ front_end: Front End
617
+ gateway: Gateway
618
+ gateway_config_unavailable: Không có Gateway cho môi trường này
619
+ gateway_error: Lỗi Gateway
620
+ general: Tổng quan
621
+ general_settings: Cấu hình chung
622
+ google_analytics: Google Analytics
623
+ google_analytics_id: Analytics ID
624
+ guest_checkout: Thanh toán kiểu khách vãng lai
625
+ guest_user_account: Hoàn tất thanh toán với tài khoản khách
626
+ has_no_shipped_units: không có hàng nào đã gửi đi
627
+ height: Cao
628
+ hide_cents: Dẫu đơn vị cent
629
+ home: Trang chủ
630
+ i18n:
631
+ available_locales:
632
+ language:
633
+ localization_settings:
634
+ this_file_language: tiếng Việt (VN)
635
+ icon: Biểu tượng
636
+ identifier:
637
+ image: Hình ảnh
638
+ images: Hình ảnh
639
+ implement_eligible_for_return:
640
+ implement_requires_manual_intervention:
641
+ inactive:
642
+ incl:
643
+ included_in_price: Kèm trong giá
644
+ included_price_validation: không thể chọn trừ khi bạn đã cài Mã vùng thuế mặc định
645
+ incomplete:
646
+ info_number_of_skus_not_shown:
647
+ info_product_has_multiple_skus:
648
+ instructions_to_reset_password: "Điền vào mẫu phía dưới và hướng dẫn cách thay đổi mật khẩu sẽ được gửi qua email đến bạn:"
649
+ insufficient_stock: Không đủ hàng, chỉ còn lại %{on_hand}
650
+ insufficient_stock_lines_present:
651
+ intercept_email_address: Can thiệp địa chỉ email
652
+ intercept_email_instructions: Ghi đè người nhận email với địa chỉ này
653
+ internal_name:
654
+ invalid_credit_card:
655
+ invalid_exchange_variant:
656
+ invalid_payment_provider: Nhà cung cấp thanh toán không đúng.
657
+ invalid_promotion_action: Hành động khuyến mại không đúng.
658
+ invalid_promotion_rule: Luật khuyến mại không đúng.
659
+ inventory: Hàng
660
+ inventory_adjustment: "Điều chỉnh hàng tồn"
661
+ inventory_error_flash_for_insufficient_quantity: Một sản phẩm trong sọt của bạn đã cháy hàng.
662
+ inventory_state:
663
+ is_not_available_to_shipment_address: không thể chuyển đến địa chỉ chỉ định
664
+ iso_name: Tên ISO
665
+ item: Món
666
+ item_description: Miêu tả món hàng
667
+ item_total: Tổng số món
668
+ item_total_rule:
669
+ operators:
670
+ gt: lớn hơn
671
+ gte: lớn hơn hoặc bằng
672
+ lt:
673
+ lte:
674
+ items_cannot_be_shipped:
675
+ items_in_rmas:
676
+ items_reimbursed:
677
+ items_to_be_reimbursed:
678
+ jirafe: Jirafe
679
+ landing_page_rule:
680
+ path: "Đường dẫn"
681
+ last_name: Họ
682
+ last_name_begins_with: Tên họ bắt đầu với
683
+ learn_more: "Đọc thêm"
684
+ lifetime_stats:
685
+ line_item_adjustments:
686
+ list: Liệt kê
687
+ loading: "Đang tải"
688
+ locale_changed: Thay đổi địa hóa
689
+ location: "Địa điểm"
690
+ lock: Khoá
691
+ log_entries:
692
+ logged_in_as: "Đã đăng nhập với"
693
+ logged_in_succesfully: "Đăng nhập thành công"
694
+ logged_out: Bạn đã đăng xuất
695
+ login: "Đăng nhập"
696
+ login_as_existing: "Đăng nhập như khách hàng cũ"
697
+ login_failed: "Đăng nhập không uy quyền."
698
+ login_name: "Đăng nhập"
699
+ logout: "Đăng xuất"
700
+ logs:
701
+ look_for_similar_items: Tìm sản phẩm tương tự
702
+ make_refund: Thối tiền
703
+ make_sure_the_above_reimbursement_amount_is_correct:
704
+ manage_promotion_categories:
705
+ manage_variants:
706
+ manual_intervention_required:
707
+ master_price: Giá chủ
708
+ match_choices:
709
+ all: Tất cả
710
+ none: Không có
711
+ max_items: Số hàng tối đa
712
+ member_since:
713
+ memo:
714
+ meta_description: Meta miểu tả
715
+ meta_keywords: Meta danh sách từ khóa
716
+ meta_title:
717
+ metadata: Metadata
718
+ minimal_amount: Giá trị tối thiểu
719
+ month: Tháng
720
+ more: Hơn nữa
721
+ move_stock_between_locations: Dời hàng giữa kho
722
+ my_account: Tài khoản của tôi
723
+ my_orders: "Đơn đặt hàng của tôi"
724
+ name: Tên
725
+ name_on_card:
726
+ name_or_sku: Tên hoặc SKU
727
+ new: Mới
728
+ new_adjustment: Thông số điều chỉnh mới
729
+ new_country:
730
+ new_customer: Khách hàng mới
731
+ new_customer_return:
732
+ new_image: Hình mới
733
+ new_option_type: Kiểu tùy chọn mới
734
+ new_order: "Đơn đặt hàng mới"
735
+ new_order_completed: Thanh toán mới hoàn tất
736
+ new_payment: Thanh toán mới
737
+ new_payment_method: Phương thức thanh toán mới
738
+ new_product: Sản phẩm mới
739
+ new_promotion: Khuyến mại mới
740
+ new_promotion_category:
741
+ new_property: "Đặc tính mới"
742
+ new_prototype: Nguyên mẫu mới
743
+ new_refund:
744
+ new_refund_reason:
745
+ new_return_authorization: "Ủy quyền trả về mới"
746
+ new_rma_reason:
747
+ new_shipment_at_location:
748
+ new_shipping_category: Loại hình vận chuyển mới
749
+ new_shipping_method: Phương pháp vận chuyển mới
750
+ new_state: Bang mới
751
+ new_stock_location: Kho hàng mới
752
+ new_stock_movement: Di chuyển hàng mới
753
+ new_stock_transfer: Di chuyển hàng mới
754
+ new_tax_category: Biểu thuế mới
755
+ new_tax_rate: Lãi suất mới
756
+ new_taxon: "Đơn vị Phân loại mới"
757
+ new_taxonomy: Phân loại mới
758
+ new_tracker: Tracker mới
759
+ new_user: Người dùng mới
760
+ new_variant: Biến thể mới
761
+ new_zone: Vùng mới
762
+ next: Tiếp
763
+ no_actions_added: Không cần làm gì
764
+ no_payment_found:
765
+ no_pending_payments:
766
+ no_products_found: Không tìm thấy sản phẩm
767
+ no_resource_found:
768
+ no_results:
769
+ no_returns_found:
770
+ no_rules_added:
771
+ no_shipping_method_selected:
772
+ no_state_changes:
773
+ no_tracking_present: Không có thông tin theo dõi được cung cấp.
774
+ none: Rỗng
775
+ none_selected:
776
+ normal_amount: Normal Amount
777
+ not: không
778
+ not_available: N/A
779
+ not_enough_stock: Không đủ hàng tại địa điểm gốc để hoàn tất thủ tục di chuyển.
780
+ not_found:
781
+ note:
782
+ notice_messages:
783
+ product_cloned: "Đã nhân bản sản phẩm"
784
+ product_deleted: "Đã xóa sản phẩm"
785
+ product_not_cloned: Không thể nhân bản sản phẩm
786
+ product_not_deleted: Không thể xóa sản phẩm
787
+ variant_deleted: Biến thể đã được xóa
788
+ variant_not_deleted: Không thể xóa biến thể
789
+ num_orders:
790
+ on_hand: Có hàng
791
+ open: Mở
792
+ open_all_adjustments: Mở tất cả Chỉnh sửa
793
+ option_type: Option Type
794
+ option_type_placeholder:
795
+ option_types: Kiểu tùy chọn
796
+ option_value: Option Value
797
+ option_values: Giá trị tùy chọn
798
+ optional: Không bắt buộc
799
+ options: Tùy chọn
800
+ or: hoặc
801
+ or_over_price: "%{price} or over"
802
+ order: "Đơn hàng"
803
+ order_adjustments:
804
+ order_already_updated:
805
+ order_approved:
806
+ order_canceled:
807
+ order_details: Chi tiết đơn hàng
808
+ order_email_resent: "Đơn hàng đã được gửi email lại"
809
+ order_information: Thông tin đơn hàng
810
+ order_mailer:
811
+ cancel_email:
812
+ dear_customer: Kính chào quý khách,\n
813
+ instructions: "Đơn đặt hàng của quý khách bị hủy. Vui lòng kiểm tra lại đơn hàng của bạn."
814
+ order_summary_canceled:
815
+ subject:
816
+ subtotal:
817
+ total:
818
+ confirm_email:
819
+ dear_customer: Kính chào quý khách,\n
820
+ instructions: Vui lòng kiểm tra đơn đặt hàng của bạn.
821
+ order_summary:
822
+ subject:
823
+ subtotal:
824
+ thanks:
825
+ total:
826
+ order_not_found: Không tìm thấy đơn hàng. Xin vui lòng thử hành động khác.
827
+ order_number:
828
+ order_processed_successfully: "Đơn đặt hàng của bạn đã được xử lý thành công"
829
+ order_resumed:
830
+ order_state:
831
+ address:
832
+ awaiting_return:
833
+ canceled:
834
+ cart:
835
+ complete:
836
+ confirm:
837
+ considered_risky:
838
+ delivery:
839
+ payment:
840
+ resumed:
841
+ returned:
842
+ order_summary: Tóm tắt đơn đặt hàng
843
+ order_sure_want_to: Bạn có chắc bạn muốn %{event} đơn hàng này?
844
+ order_total: Tổng giá sau thuế
845
+ order_updated: "Đơn hàng được cập nhật"
846
+ orders: "Đơn hàng"
847
+ other_items_in_other:
848
+ out_of_stock: Hết hàng
849
+ overview: Tổng kết
850
+ package_from: gói từ
851
+ pagination:
852
+ next_page:
853
+ previous_page:
854
+ truncate: "…"
855
+ password: Mật khẩu
856
+ paste: Paste
857
+ path: "Đường dẫn"
858
+ pay: thanh toán
859
+ payment: Thanh toán
860
+ payment_could_not_be_created:
861
+ payment_identifier:
862
+ payment_information: Thông tin thanh toán
863
+ payment_method: Phương thức thanh toán
864
+ payment_method_not_supported:
865
+ payment_methods: Phương thức thanh toán
866
+ payment_processing_failed:
867
+ payment_processor_choose_banner_text:
868
+ payment_processor_choose_link:
869
+ payment_state:
870
+ payment_states:
871
+ balance_due:
872
+ checkout:
873
+ completed:
874
+ credit_owed:
875
+ failed:
876
+ paid:
877
+ pending:
878
+ processing:
879
+ void:
880
+ payment_updated: Thanh toán đã được cập nhật
881
+ payments: Thanh toán
882
+ pending:
883
+ percent: Phần trăm
884
+ percent_per_item:
885
+ permalink:
886
+ phone: "Điện thoại"
887
+ place_order: "Đặt hàng"
888
+ please_define_payment_methods:
889
+ populate_get_error:
890
+ powered_by: Tiếp sức bởi
891
+ pre_tax_amount:
892
+ pre_tax_refund_amount:
893
+ pre_tax_total:
894
+ preferred_reimbursement_type:
895
+ presentation: Trình bày
896
+ previous: Trước
897
+ previous_state_missing:
898
+ price: Giá
899
+ price_range: Loại giá
900
+ price_sack: Price Sack
901
+ process: Quá trình
902
+ product: Sản phẩm
903
+ product_details: Chi tiết sản phẩm
904
+ product_has_no_description: Sản phẩm không có chú thích
905
+ product_not_available_in_this_currency: Sản phẩm này không được cung cấp ở tiền tệ được chọn.
906
+ product_properties: "Đặc tính sản phẩm"
907
+ product_rule:
908
+ choose_products:
909
+ label:
910
+ match_all:
911
+ match_any:
912
+ match_none:
913
+ product_source:
914
+ group:
915
+ manual:
916
+ products: Sản phẩm
917
+ promotion:
918
+ promotion_action:
919
+ promotion_action_types:
920
+ create_adjustment:
921
+ description:
922
+ name:
923
+ create_item_adjustments:
924
+ description:
925
+ name:
926
+ create_line_items:
927
+ description:
928
+ name:
929
+ free_shipping:
930
+ description:
931
+ name:
932
+ promotion_actions:
933
+ promotion_form:
934
+ match_policies:
935
+ all:
936
+ any:
937
+ promotion_rule:
938
+ promotion_rule_types:
939
+ first_order:
940
+ description:
941
+ name:
942
+ item_total:
943
+ description:
944
+ name:
945
+ landing_page:
946
+ description:
947
+ name:
948
+ one_use_per_user:
949
+ description:
950
+ name:
951
+ option_value:
952
+ description:
953
+ name:
954
+ product:
955
+ description:
956
+ name:
957
+ taxon:
958
+ description:
959
+ name:
960
+ user:
961
+ description:
962
+ name:
963
+ user_logged_in:
964
+ description:
965
+ name:
966
+ promotion_uses:
967
+ promotionable:
968
+ promotions:
969
+ propagate_all_variants:
970
+ properties: "Đặc tính"
971
+ property: "Đặc tính"
972
+ prototype: Nguyên mẫu
973
+ prototypes: Nguyên mẫu
974
+ provider: Nhà cung cấp
975
+ provider_settings_warning: Nếu thay đổi nhà cung cấp, bạn phải lưu trước khi sửa đổi cấu hình nhà cung cấp
976
+ qty: Số lượng
977
+ quantity: Số lượng
978
+ quantity_returned:
979
+ quantity_shipped: Tổng hàng đã chuyển
980
+ quick_search:
981
+ rate: Lãi suất
982
+ reason: Lí do
983
+ receive: nhận
984
+ receive_stock: Nhận hàng
985
+ received: "Đã nhận"
986
+ reception_status:
987
+ reference: Tham khảo
988
+ refund: Thối
989
+ refund_amount_must_be_greater_than_zero:
990
+ refund_reasons:
991
+ refunded_amount:
992
+ refunds:
993
+ register: "Đăng ký như một thành viên mới"
994
+ registration: "Đăng ký"
995
+ reimburse:
996
+ reimbursed:
997
+ reimbursement:
998
+ reimbursement_mailer:
999
+ reimbursement_email:
1000
+ days_to_send:
1001
+ dear_customer:
1002
+ exchange_summary:
1003
+ for:
1004
+ instructions:
1005
+ refund_summary:
1006
+ subject:
1007
+ total_refunded:
1008
+ reimbursement_perform_failed:
1009
+ reimbursement_status:
1010
+ reimbursement_type:
1011
+ reimbursement_type_override:
1012
+ reimbursement_types:
1013
+ reimbursements:
1014
+ reject:
1015
+ rejected:
1016
+ remember_me: Nhớ tôi
1017
+ remove: Xóa
1018
+ rename:
1019
+ report:
1020
+ reports: Báo cáo
1021
+ resend: Gửi lại
1022
+ reset_password: Khởi tạo lại mật khẩu
1023
+ response_code: Mã phản hồi
1024
+ resume: tiếp tục
1025
+ resumed: "Đã tiếp tục"
1026
+ return: trở về
1027
+ return_authorization: "Ủy Quyền Trả Về"
1028
+ return_authorization_reasons:
1029
+ return_authorization_updated: "Ủy Quyền Trả Về đã được cập nhật"
1030
+ return_authorizations: "Ủy Quyền Trả Về"
1031
+ return_item_inventory_unit_ineligible:
1032
+ return_item_inventory_unit_reimbursed:
1033
+ return_item_rma_ineligible:
1034
+ return_item_time_period_ineligible:
1035
+ return_items:
1036
+ return_items_cannot_be_associated_with_multiple_orders:
1037
+ return_number:
1038
+ return_quantity: Số lượng trả về
1039
+ returned: "Đã trả về"
1040
+ returns:
1041
+ review:
1042
+ risk:
1043
+ risk_analysis:
1044
+ risky:
1045
+ rma_credit:
1046
+ rma_number: Số RMA
1047
+ rma_value: Giá trị RMA
1048
+ roles: Vai trò
1049
+ rules: Rules
1050
+ safe:
1051
+ sales_total: Tổng giá trị
1052
+ sales_total_description:
1053
+ sales_totals: Tổng doanh số
1054
+ save_and_continue: Lưu và tiếp tục
1055
+ save_my_address:
1056
+ say_no:
1057
+ say_yes:
1058
+ scope: Phạm vi
1059
+ search: Tìm kiếm
1060
+ search_results: Kết quả tìm kiếm cho '%{keywords}'
1061
+ searching: Searching
1062
+ secure_connection_type: Kiệu kết nối bảo mật
1063
+ security_settings:
1064
+ select: Lựa chọn
1065
+ select_a_return_authorization_reason:
1066
+ select_a_stock_location:
1067
+ select_from_prototype: Lựa chọn từ nguyên mẫu
1068
+ select_stock: Chọn hàng
1069
+ send_copy_of_all_mails_to: Gửi bản sao tất cả thư đến
1070
+ send_mails_as: Gửi thư như
1071
+ server: Server
1072
+ server_error: Máy chủ bị lỗi
1073
+ settings: Cấu hình
1074
+ ship: Gửi
1075
+ ship_address: "Địa chỉ giao hàng"
1076
+ ship_total: Tổng chuyển hàng
1077
+ shipment: Vận chuyển
1078
+ shipment_adjustments:
1079
+ shipment_details:
1080
+ shipment_mailer:
1081
+ shipped_email:
1082
+ dear_customer: Kính chào quý khách,\n
1083
+ instructions:
1084
+ shipment_summary:
1085
+ subject:
1086
+ thanks:
1087
+ track_information:
1088
+ track_link: 'Link để theo dõi: %{url}'
1089
+ shipment_state:
1090
+ shipment_states:
1091
+ backorder:
1092
+ canceled:
1093
+ partial:
1094
+ pending:
1095
+ ready:
1096
+ shipped:
1097
+ shipment_transfer_error:
1098
+ shipment_transfer_success:
1099
+ shipments: Vận chuyển
1100
+ shipped: "Đã chuyển phát"
1101
+ shipping: Vận chuyển
1102
+ shipping_address: "Địa chỉ giao hàng"
1103
+ shipping_categories: Loại vận chuyển
1104
+ shipping_category: Loại vận chuyển
1105
+ shipping_flat_rate_per_item: Giá thấp nhất với từng mục gói
1106
+ shipping_flat_rate_per_order: Giá thấp nhất
1107
+ shipping_flexible_rate: Suất linh hoạt với từng mục gói
1108
+ shipping_instructions: Các chỉ dẫn vận chuyển
1109
+ shipping_method: Phương thức vận chuyển
1110
+ shipping_methods: Phương thức vận chuyển
1111
+ shipping_price_sack: Xô giá
1112
+ shipping_total:
1113
+ shop_by_taxonomy: Mua theo %{taxonomy}
1114
+ shopping_cart: Sọt mua sắm
1115
+ show: Xem
1116
+ show_active: Liệt kê đơn còn hiệu lực
1117
+ show_deleted: Hiện đơn hàng đã xóa
1118
+ show_only_complete_orders: Chỉ hiện đơn hàng đã hoàn tất
1119
+ show_only_considered_risky:
1120
+ show_rate_in_label: Hiện suất giá với nhãn mác
1121
+ sku: SKU
1122
+ skus:
1123
+ slug:
1124
+ source: Nguồn
1125
+ special_instructions:
1126
+ split:
1127
+ spree_gateway_error_flash_for_checkout:
1128
+ ssl:
1129
+ change_protocol:
1130
+ start: Bắt đầu
1131
+ state: Bang
1132
+ state_based: Dựa trên bang
1133
+ state_machine_states:
1134
+ accepted:
1135
+ address:
1136
+ authorized:
1137
+ awaiting:
1138
+ awaiting_return:
1139
+ backordered:
1140
+ canceled:
1141
+ cart:
1142
+ checkout:
1143
+ closed:
1144
+ complete:
1145
+ completed:
1146
+ confirm:
1147
+ delivery:
1148
+ errored:
1149
+ failed:
1150
+ given_to_customer:
1151
+ invalid:
1152
+ manual_intervention_required:
1153
+ on_hand:
1154
+ open:
1155
+ order:
1156
+ payment:
1157
+ pending:
1158
+ processing:
1159
+ ready:
1160
+ reimbursed:
1161
+ resumed:
1162
+ returned:
1163
+ shipped:
1164
+ void:
1165
+ states: Bang
1166
+ states_required: Yêu cầu bang
1167
+ status: Tình trạng
1168
+ stock:
1169
+ stock_location: "Địa điểm hàng"
1170
+ stock_location_info: Thông tin địa điểm hàng
1171
+ stock_locations: "Địa điểm hàng"
1172
+ stock_locations_need_a_default_country:
1173
+ stock_management: Quản lý hàng
1174
+ stock_management_requires_a_stock_location:
1175
+ stock_movements: Chuyển động của hàng
1176
+ stock_movements_for_stock_location: Chuyển động của hàng cho %{stock_location_name}
1177
+ stock_successfully_transferred: Hàng đã thành công chuyển giữa dịa điểm.
1178
+ stock_transfer: Chuyển hàng
1179
+ stock_transfers: Chuyển hàng
1180
+ stop: Kết thúc
1181
+ store: Cửa hàng
1182
+ street_address: "Địa chỉ"
1183
+ street_address_2: "Địa chỉ (tiếp)"
1184
+ subtotal: Tổng giá trước thuế
1185
+ subtract: Trừ đi
1186
+ success:
1187
+ successfully_created: "%{resource} has been successfully created!"
1188
+ successfully_refunded:
1189
+ successfully_removed: "%{resource} has been successfully removed!"
1190
+ successfully_signed_up_for_analytics: Thành công đăng kí cho Spree Analytics
1191
+ successfully_updated: "%{resource} has been successfully updated!"
1192
+ summary:
1193
+ tax: Thuế
1194
+ tax_categories: Loại thuế
1195
+ tax_category: Biểu thuế
1196
+ tax_code:
1197
+ tax_included:
1198
+ tax_rate_amount_explanation: Mức thuế ở số thập phân để trợ giúp cách tính, (nghĩa là; nếu mức thuế là 5% thì nhập vào 0.05
1199
+ tax_rates: Lãi suất thuế
1200
+ taxon: "Đơn vị phân loại"
1201
+ taxon_edit: Sửa đổi đơn vị phân loại
1202
+ taxon_placeholder: Thêm vào một phân loại
1203
+ taxon_rule:
1204
+ choose_taxons:
1205
+ label:
1206
+ match_all:
1207
+ match_any:
1208
+ taxonomies: Phân loại
1209
+ taxonomy: Taxonomy
1210
+ taxonomy_edit: Sửa đổi phân loại
1211
+ taxonomy_tree_error: Thay đồi theo yêu cầu không được chấp nhận và hệ cây đã quay trở về trạng thái như trước, xin hay thử lại lần nữa.
1212
+ taxonomy_tree_instruction: "* Nhấp chuột phải vào 1 phần tử con trong hệ cây để truy cập thực đơn để thêm, xóa và sắp xếp một phần tử con."
1213
+ taxons: "Đơn vị phân loại"
1214
+ test: Kiểm tra
1215
+ test_mailer:
1216
+ test_email:
1217
+ greeting:
1218
+ message:
1219
+ subject:
1220
+ test_mode: Chế độ kiểm tra
1221
+ thank_you_for_your_order: Cảm ơn đã mua hàng. Xin hãy in ra một bản của trang này để tiện cho việc chứng thực nếu cần.
1222
+ there_are_no_items_for_this_order:
1223
+ there_were_problems_with_the_following_fields:
1224
+ this_order_has_already_received_a_refund:
1225
+ thumbnail: Hình nhỏ
1226
+ tiered_flat_rate:
1227
+ tiered_percent:
1228
+ tiers:
1229
+ time: Thời gian
1230
+ to_add_variants_you_must_first_define: "Để thêm biến thể, bạn phải định nghĩa trước"
1231
+ total: Giá trị
1232
+ total_per_item:
1233
+ total_pre_tax_refund:
1234
+ total_price:
1235
+ total_sales:
1236
+ track_inventory:
1237
+ tracking: Theo dõi
1238
+ tracking_number: Số theo dõi
1239
+ tracking_url: URL theo dõi
1240
+ tracking_url_placeholder:
1241
+ transaction_id:
1242
+ transfer_from_location: Chuyển từ
1243
+ transfer_stock: Chuyển hàng
1244
+ transfer_to_location: Chuyển tới
1245
+ tree: Cây
1246
+ type: Loại
1247
+ type_to_search:
1248
+ unable_to_connect_to_gateway: Không thề kết nối với gateway.
1249
+ unable_to_create_reimbursements:
1250
+ under_price:
1251
+ unlock: Mở khoá
1252
+ unrecognized_card_type: Không nhận ra được loại thẻ
1253
+ unshippable_items: Sản phẩm không vận chuyển được
1254
+ update: Cập nhật
1255
+ updating: "Đang cập nhật"
1256
+ usage_limit: Giới hạn sử dụng
1257
+ use_app_default:
1258
+ use_billing_address: Dùng địa chỉ thanh toán
1259
+ use_new_cc: Dùng thẻ mới
1260
+ use_s3: Use Amazon S3 For Images
1261
+ user: Người dùng
1262
+ user_rule:
1263
+ choose_users: Choose users
1264
+ users: Người dùng
1265
+ validation:
1266
+ cannot_be_less_than_shipped_units:
1267
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1268
+ exceeds_available_stock: Vượt quá lượng hàng hiện có. Xin hãy chắc chắn mục dòng có một số lượng hợp lệ.
1269
+ is_too_large: quá lớn -- số hàng hiện có không đủ đáp ứng!
1270
+ must_be_int: phải là số nguyên
1271
+ must_be_non_negative: phải là số dương
1272
+ unpaid_amount_not_zero:
1273
+ value: Giá trị
1274
+ variant: Variant
1275
+ variant_placeholder:
1276
+ variants: Biến thể
1277
+ version: Phiên bản
1278
+ void: Vô hiệu hóa
1279
+ weight: Khối lượng
1280
+ what_is_a_cvv: Mã thẻ tín dụng (CVV) là gì?
1281
+ what_is_this: Cái gì đây?
1282
+ width: Rộng
1283
+ year: Năm
1284
+ you_have_no_orders_yet: You have no orders yet.
1285
+ your_cart_is_empty: Sọt hàng rỗng
1286
+ your_order_is_empty_add_product: "Đơn hàng của bạn rỗng, xin hay tìm và thêm vào sản phảm như trên"
1287
+ zip: Mã bưu điện
1288
+ zipcode: Mã Zip
1289
+ zone: Vùng
1290
+ zones: Vùng