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,1330 @@
1
+ th:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1: "ที่อยู่"
6
+ address2: "ที่อยู่ 2"
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 Name
24
+ name: "ชื่อประเทศ"
25
+ numcode: ISO Code
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: "หลายเลขไอพี"
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: Event Name
92
+ expires_at: "วันหมดอายุ"
93
+ name: "ชื่อ"
94
+ path: 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: Permalink
136
+ position: "ตำแหน่ง"
137
+ spree/taxonomy:
138
+ name: "ชื่อ"
139
+ spree/user:
140
+ email: "อีเมล"
141
+ password: "รหัสผ่าน"
142
+ password_confirmation: "ยืนยันรหัสผ่าน"
143
+ spree/variant:
144
+ cost_currency: "อัตราแลกเปลี่ยน"
145
+ cost_price: "ราคา"
146
+ depth: "ความลึก"
147
+ height: "ความสูง"
148
+ price: "ราคา"
149
+ sku: 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
+ one: "ที่อยู่"
204
+ other: "ที่อยู่"
205
+ spree/country:
206
+ one: "ประเทศ"
207
+ other: "ประเทศ"
208
+ spree/credit_card:
209
+ one: "บัตรเครดิต"
210
+ other: "บัตรเครดิต"
211
+ spree/customer_return:
212
+ spree/inventory_unit:
213
+ one: "จำนวนในคลัง"
214
+ other: "จำนวนในคลัง"
215
+ spree/line_item:
216
+ one: Line Item
217
+ other: Line Items
218
+ spree/option_type:
219
+ spree/option_value:
220
+ spree/order:
221
+ one: "สั่งซื้อ"
222
+ other: "สั่งซื้อ"
223
+ spree/payment:
224
+ one: "ชำระ"
225
+ other: "ชำระ"
226
+ spree/payment_method:
227
+ spree/product:
228
+ one: "สินค้า"
229
+ other: "สินค้า"
230
+ spree/promotion:
231
+ spree/promotion_category:
232
+ spree/property:
233
+ one: "คุณสมบัติ"
234
+ other: "คุณสมบัติ"
235
+ spree/prototype:
236
+ one: Prototype
237
+ other: Prototypes
238
+ spree/refund_reason:
239
+ spree/reimbursement:
240
+ spree/reimbursement_type:
241
+ spree/return_authorization:
242
+ one: "รายการคืน"
243
+ other: "รายการคืน"
244
+ spree/return_authorization_reason:
245
+ spree/role:
246
+ one: "หน้าที่"
247
+ other: "หน้าที่"
248
+ spree/shipment:
249
+ one: "การส่งสินค้า"
250
+ other: "การส่งสินค้า"
251
+ spree/shipping_category:
252
+ one: "ประเภทการจัดส่ง"
253
+ other: "ประเภทการจัดส่ง"
254
+ spree/shipping_method:
255
+ spree/state:
256
+ one: "จังหวัด"
257
+ other: "จังหวัด"
258
+ spree/state_change:
259
+ spree/stock_location:
260
+ spree/stock_movement:
261
+ spree/stock_transfer:
262
+ spree/tax_category:
263
+ one: "ประเภทภาษี"
264
+ other: "ประเภทภาษี"
265
+ spree/tax_rate:
266
+ one: "อัตราภาษีTax Rate"
267
+ other: "อัตราภาษี"
268
+ spree/taxon:
269
+ spree/taxonomy:
270
+ spree/tracker:
271
+ spree/user:
272
+ one: "ผู้ใช้งาน"
273
+ other: "ผู้ใช้งาน"
274
+ spree/variant:
275
+ one: "ตัวแปร"
276
+ other: "ตัวแปร"
277
+ spree/zone:
278
+ one: "เขต"
279
+ other: "เขต"
280
+ devise:
281
+ confirmations:
282
+ confirmed: "บัญชีของคุณได้ถูกยืนยันแล้ว ขณะนี้คุณได้เข้าระบบเรียบร้อย"
283
+ send_instructions: "คุณจะได้รับวิธีการยืนยันบัญชีของคุณที่ทางเราส่งไปทางอีเมลในอีกไม่กี่นาทีข้างหน้า"
284
+ failure:
285
+ inactive: "บัญชีของคุณยังไม่ได้รับการยืนยัน"
286
+ invalid: "อีเมลหรือรหัสผ่านไม่ถูกต้อง"
287
+ invalid_token: "รหัส token ไม่ถูกต้อง"
288
+ locked: "บัญชีของคุณถูกระงับ"
289
+ timeout: "เซสชั่นของคุณนั้นหมดอายุ กรุณาเข้าระบบใหม่อีกครั้ง"
290
+ unauthenticated: "คุณต้องเข้าระบบหรือสมัครสมาชิกก่อนเพื่อทำรายการต่อไป"
291
+ unconfirmed: "คุณต้องยืนยันบัญชีคุณก่อนถึงจะสามารถทำรายการต่อไปได้"
292
+ mailer:
293
+ confirmation_instructions:
294
+ subject: "วิธีการยืนยัน"
295
+ reset_password_instructions:
296
+ subject: "วิธีการเปลี่ยนรหัสผ่านใหม่"
297
+ unlock_instructions:
298
+ subject: "วิธีการปลดล๊อกบัญชี"
299
+ oauth_callbacks:
300
+ failure: "ไม่สามารถให้สิทธิคุณได้จาก %{kind} เพราะ %{reason}"
301
+ success: "ได้รับสิทธิจาก %{kind} ในบัญชี"
302
+ unlocks:
303
+ send_instructions: "คุณจะได้รับอีเมลวิธีการปลดล๊อกบัญชีของคุณภายในไม่กี่นาที"
304
+ unlocked: "บัญชีของคุณนั้นได้ปลดล๊อกแล้ว ได้เข้าระบบเป็นที่เรียบร้อย"
305
+ user_passwords:
306
+ user:
307
+ cannot_be_blank: "กรุณากรอกรหัสผ่าน"
308
+ send_instructions: "คุณจะได้รับอีเมลวิธีการเปลี่ยนรหัสผ่านของคุณภายในไม่กี่นาที"
309
+ updated: "เราได้ทำการเปลี่ย���รหัสผ่านของคุณแล้ว ได้เข้าระบบเป็นที่เรียบร้อย"
310
+ user_registrations:
311
+ destroyed: "ลาก่อน! บัญชีของคุณนั้นได้ทำการยกเลิกเป็นที่เรียบร้อย เราหวังว่าจะได้รับใช้คุณใหม่ในโอกาสต่อไป"
312
+ inactive_signed_up: "คุณได้ทำการสมัครเป็นที่เรียบร้อย อย่างไรก็ตาม เราไม่สามารถให้คุณเข้าระบบได้เนื่องจากบัญชีของคุณนั้น %{reason}"
313
+ signed_up: "ยินดีต้อนรับ! คุณได้สมัครสมาชิกเป็นที่เรียบร้อย"
314
+ updated: "คุณได้แก้ไขบัญชีคุณเป็นที่เรียบร้อย"
315
+ user_sessions:
316
+ signed_in: "เข้าสู่ระบบเรียบร้อย"
317
+ signed_out: "ออกจากระบบเรียบร้อย"
318
+ errors:
319
+ messages:
320
+ already_confirmed: "ได้ทำการยืนยันแล้ว"
321
+ not_found: "ไม่พบ"
322
+ not_locked: "ไม่ได้ล๊อก"
323
+ not_saved: "พบ %{count} ข้อผิดพลาดที่ทำให้ %{resource} ไม่สามารถบันทึกได้"
324
+ spree:
325
+ abbreviation: "คำย่อ"
326
+ accept:
327
+ acceptance_errors:
328
+ acceptance_status:
329
+ accepted:
330
+ account: "บัญชีผู้ใช้"
331
+ account_updated: "ปรับปรุงบัญชีผู้ใช้แล้ว"
332
+ action: "ทำการ"
333
+ actions:
334
+ cancel: "ยกเลิก"
335
+ continue: "ต่อไป"
336
+ create: "สร้าง"
337
+ destroy: "ทำลาย"
338
+ edit: "แก้ไข"
339
+ list: "แสดงรายการ"
340
+ listing: "รายการ"
341
+ new: "สร้าง"
342
+ refund:
343
+ save: "บันทึก"
344
+ update: "ปรับปรุง"
345
+ activate: "เริ่มใช้งาน"
346
+ active: "ใช้งาน"
347
+ add: "เพิ่ม"
348
+ add_action_of_type: "เพิ่มประเภท"
349
+ add_country: "เพิ่มประเทศ"
350
+ add_coupon_code:
351
+ add_new_header: "เพิ่ม Header"
352
+ add_new_style: "เพิ่ม Style"
353
+ add_one: "เพิ่ม"
354
+ add_option_value: "เพิ่มรายการตัวเลือก"
355
+ add_product: "เพิ่มสินค้า"
356
+ add_product_properties: "เพิ่มคุณสมบัติ"
357
+ add_rule_of_type: "เพิ่มกฏของประเภท"
358
+ add_state: "เพิ่มจังหวัด"
359
+ add_stock: "เพิ่มสต็อก"
360
+ add_stock_management: "เพิ่มการจัดการสต็อก"
361
+ add_to_cart: "เพิ่มลงตะกร้า"
362
+ add_variant: "เพิ่มตัวแปร"
363
+ additional_item: "ราคาเพิ่มเติม"
364
+ address1: "ที่อยู่"
365
+ address2: "ที่อยู่ (เพิ่มเติม)"
366
+ adjustable:
367
+ adjustment: "แก้ไขรายการ"
368
+ adjustment_amount: "จำนวน"
369
+ adjustment_successfully_closed: "รายการแก้ไขได้ทำการปิดเป็นที่เรียบร้อย"
370
+ adjustment_successfully_opened: "รายการแก้ไขได้ทำการเปิดเป็นที่เรียบร้อย"
371
+ adjustment_total: "ยอดรวมรายการที่แก้ไข"
372
+ adjustments: "แก้ไขรายการ"
373
+ admin:
374
+ tab:
375
+ configuration: "ตั้งค่า"
376
+ option_types:
377
+ orders: "สั่งซื้อ"
378
+ overview: "ภาพรวม"
379
+ products: "สินค้า"
380
+ promotions: "โปรโมชั่น"
381
+ promotion_categories:
382
+ properties:
383
+ prototypes:
384
+ reports: "รายงาน"
385
+ taxonomies:
386
+ taxons:
387
+ users: "ผู้ใช้"
388
+ user:
389
+ account:
390
+ addresses:
391
+ items:
392
+ items_purchased:
393
+ order_history:
394
+ order_num:
395
+ orders:
396
+ user_information:
397
+ administration: "การจัดการ"
398
+ advertise:
399
+ agree_to_privacy_policy: "ตกลงในนโยบายความเป็นส่วนตัว"
400
+ agree_to_terms_of_service: "ตกลงในข้อตกลงบริการ"
401
+ all: "ทั้งหมด"
402
+ all_adjustments_closed: "ทุกรายการแก้ไขนั้นได้ปิดลงแล้ว!"
403
+ all_adjustments_opened: "ทุกรายการแก้ไขนั้้นได้เปิดแล้ว!"
404
+ all_departments: "ทุกแผนก"
405
+ all_items_have_been_returned:
406
+ allow_ssl_in_development_and_test: "อนุญาตให้ใช้ SSL เมื่ออยู่ในโหมดของการพัฒนาและทดสอบ"
407
+ allow_ssl_in_production: "อนุญาต SSL ให้ทำงานบน Production"
408
+ allow_ssl_in_staging: "อนุณาต SSL ให้ทำงานบน Stagging"
409
+ already_signed_up_for_analytics: "คุณได้สมัครใช้งาน Spree Analytics"
410
+ alt_text: "ข้อความอื่นๆ"
411
+ alternative_phone: "เบอร์โทรอื่นๆ"
412
+ amount: "รวม"
413
+ analytics_desc_header_1: Spree Analytics
414
+ analytics_desc_header_2: "ข้อมูล analytics ได้ผนวกไปยังหน้า Dashboard ของคุณ"
415
+ analytics_desc_list_1: "ได้ข้อมูลการสั่งซื้อในทันที"
416
+ analytics_desc_list_2: "ต้องการเฉพาะบัญชีฟรีของ Spree เพื่อใช้งาน"
417
+ analytics_desc_list_3: "ไม่ต้องติดตั้งโค๊ดใดๆ"
418
+ analytics_desc_list_4: "มันฟรีจริงๆนะ!"
419
+ analytics_trackers: Analytics Trackers
420
+ and: "และ"
421
+ approve:
422
+ approved_at:
423
+ approver:
424
+ are_you_sure: "แน่ใจหรือไม่"
425
+ are_you_sure_delete: "คุณแน่ใจที่จะลบข้อมูลนี้หรือไม่?"
426
+ associated_adjustment_closed: "รายการที่เกี่ยวข้อกับรายการปรับปรุงนั้นได้ปิดแล้ว และจะไม่นำมาคำนวนใหม่ คุณต้องการที่จะเปิดหรือไม่?"
427
+ at_symbol: '@'
428
+ authorization_failure: "การขออนุญาต ไม่สำเร็จ"
429
+ authorized:
430
+ auto_capture:
431
+ available_on: "พร้อมเมื่อ"
432
+ average_order_value:
433
+ avs_response:
434
+ back: "กลับ"
435
+ back_end: Back End
436
+ back_to_payment:
437
+ back_to_resource_list:
438
+ back_to_rma_reason_list:
439
+ back_to_store: "กลับไปหน้าร้าน"
440
+ back_to_users_list: "กลับไปยังรายการลูกค้า"
441
+ backorderable: "สามารถสั่งซื้อล่วงหน้าได้"
442
+ backorderable_default:
443
+ backordered:
444
+ backorders_allowed:
445
+ balance_due: "ยอดที่ต้องชำระ"
446
+ base_amount:
447
+ base_percent:
448
+ bill_address: "ที่อยู่บนใบเสร็จรับเงิน"
449
+ billing: "ใบเสร็จรับเงิน"
450
+ billing_address: "ที่อยู่บนใบเสร็จรับเงิน"
451
+ both: "ทั้งสอง"
452
+ calculated_reimbursements:
453
+ calculator: "เครื่องคิดเลข"
454
+ calculator_settings_warning: "หากคุณต้องการเปลี่ยนวิธีการคำนวน คุณต้องบันทึกก่อนถึงจะสามารถแก้ไขการคำนวนได้"
455
+ cancel: "ยกเลิก"
456
+ canceled_at:
457
+ canceler:
458
+ cannot_create_customer_returns:
459
+ cannot_create_payment_without_payment_methods: "คุณไม่สามารถชำระรายการสั่งซื้อได้เนื่องจากไม่ได้กำหนดวิธีชำระสินค้า"
460
+ cannot_create_returns: "ไม่สามารถทำรายการคืนสินาได้เนื่องจากยังไม่ได้ส่งสินค้าดังกล่าว"
461
+ cannot_perform_operation: "ไม่สามารถทำรายการที่ต้องการได้"
462
+ cannot_set_shipping_method_without_address: "ไม่สามารถตั้งค่าประเภทการจัดส่งได้จนกว่าจะได้รับรายละเอียดของลูกค้า"
463
+ capture: capture
464
+ capture_events:
465
+ card_code: "รหัสบัตร"
466
+ card_number: "หมายเลขบัตร"
467
+ card_type:
468
+ card_type_is: "ชนิดของบัตร"
469
+ cart: "ตะกร้าสินค้า"
470
+ cart_subtotal:
471
+ categories: "หมวดหมู่"
472
+ category: "ชนิด"
473
+ charged:
474
+ check_for_spree_alerts: "ตรวจสอบการแจ้งเตือน Spree"
475
+ checkout: "สั่งซื้อ"
476
+ choose_a_customer: "เลือกลูกค้า"
477
+ choose_a_taxon_to_sort_products_for:
478
+ choose_currency: "เลือกสกุลเงิน"
479
+ choose_dashboard_locale: "เลือกภาษาของ Dashboard"
480
+ choose_location:
481
+ city: "เขต หรือ อำเภอ"
482
+ clear_cache:
483
+ clear_cache_ok:
484
+ clear_cache_warning:
485
+ click_and_drag_on_the_products_to_sort_them:
486
+ clone: Clone
487
+ close: "ปิด"
488
+ close_all_adjustments: "ปิดรายการปรับปรุงทั้งหมด"
489
+ code: Code
490
+ company: "บริษัท"
491
+ complete: "เสร็จสิ้น"
492
+ configuration: "จัดการระบบ"
493
+ configurations: "รายการจัดการ"
494
+ confirm: "ยืนยันรหัสผ่าน"
495
+ confirm_delete: "ยืนยันการลบ"
496
+ confirm_password: "ยืนยันรหัสผ่าน"
497
+ continue: "ดำเนินการต่อ"
498
+ continue_shopping: "เลือกซื้อสินค้าต่อ"
499
+ cost_currency: "ราคาสกุลเงิน"
500
+ cost_price: Cost Price
501
+ could_not_connect_to_jirafe: "ไม่สามารถเชื่อมต่อกับ Jirafe เพื่อรับข้อมูลได้ ระบบจะทดลองเชื่อมต่อใหม่อีกครั้ง"
502
+ could_not_create_customer_return:
503
+ could_not_create_stock_movement: "เกิดปัญหาขึ้นระหว่างทำการเคลื่อนย้ายสินค้า กรุณาลองใหม่อีกครั้ง"
504
+ count_on_hand: "จำนวนในมือ"
505
+ countries: "ประเทศ"
506
+ country: "ประเทศ"
507
+ country_based: "ยีดประเทศเป็นหลัก"
508
+ country_name: "ชื่อ"
509
+ country_names:
510
+ CA:
511
+ FRA:
512
+ ITA:
513
+ US:
514
+ coupon: "คูปอง"
515
+ coupon_code: "หมายเลขคูปอง"
516
+ coupon_code_already_applied: "คูปองใบนี้ได้ถูกใช้ในรายการสั่งซื้อนี้แล้ว"
517
+ coupon_code_applied: "คูปองใบนี้ได้ถูกใช้สิทธิร่วมกับรายการสั่งซื้อของคุณเป็นที่เรียบร้อย"
518
+ coupon_code_better_exists: "คูปองที่ได้ใช้นั้นทำให้ราคาถูกลง"
519
+ coupon_code_expired: "คูปองหมดอายุแล้ว"
520
+ coupon_code_max_usage: "คูปองได้ถูกใช้เกินกำหนดแล้ว"
521
+ coupon_code_not_eligible: "คูปองนี้ไม่สามารถใช้กับรายการสั่งซื้อดังกล่าวได้"
522
+ coupon_code_not_found: "ไม่พบหมายเลขคูปองนี้ กรุณาลองใหม่อีกครั้ง"
523
+ coupon_code_unknown_error:
524
+ create: "สร้าง"
525
+ create_a_new_account: "สร้างบัญชีผู้ใช้ใหม่"
526
+ create_new_order:
527
+ create_reimbursement:
528
+ created_at: "สร้างเมื่อ"
529
+ credit: "เครดิต"
530
+ credit_card: "บัตรเครดิต"
531
+ credit_cards: "บัตรเครดิต"
532
+ credit_owed: "ค้างเครดิตอยู่"
533
+ credits:
534
+ currency: "สกุลเงิน"
535
+ currency_decimal_mark: "จุดทศนิยมของสกุลเงิน"
536
+ currency_settings: "ตั้งค่าสกุลเงิน"
537
+ currency_symbol_position: "ใส่เครื่องหมายสกุลเงินก่อนหรือหลังจำนวน?"
538
+ currency_thousands_separator: "ตัวคั่นทุกหนึ่งพัน"
539
+ current: "ขณะนี้"
540
+ current_promotion_usage: "ใช้อยู่: %{count}"
541
+ customer: "ลูกค้า"
542
+ customer_details: "รายละเอียดลูกค้า"
543
+ customer_details_updated: "ได้ทำการปรับปรุงรายละเอียดของลูกค้าแล้ว"
544
+ customer_return:
545
+ customer_returns:
546
+ customer_search: "ค้นหาลูกค้า"
547
+ cut: Cut
548
+ cvv_response:
549
+ dash:
550
+ jirafe:
551
+ app_id: App ID
552
+ app_token: App Token
553
+ currently_unavailable: "ไม่สามารถใช้ Jirafe ได้ในขณะนี้ Spree จะลองเชื่อมต่อใหม่ภายหลัง"
554
+ explanation: Field ด้านล่างอาจสร้างขึ้นมาหากคุณเลือกที่จะลงทะเบียน Jirafe จากหน้า Dashboard ของ admin
555
+ header: "ตั้งค่า Jarafe Analytics"
556
+ site_id: Site ID
557
+ token: Token
558
+ jirafe_settings_updated: "ค่าของ Jirafe ได้ถูกปรับปรุงแล้ว"
559
+ date: "วันที่"
560
+ date_completed: "วันที่เสร็จสิ้น"
561
+ date_picker:
562
+ first_day:
563
+ format: "%Y/%m/%d"
564
+ js_format: yy/mm/dd
565
+ date_range: "ช่วงวันที่"
566
+ default: "ค่าเริ่มต้น"
567
+ default_refund_amount:
568
+ default_tax: "ค่าภาษีเริ่มต้น"
569
+ default_tax_zone: "ค่าโซนภาษีเริ่มต้น"
570
+ delete: "ลบ"
571
+ deleted_variants_present:
572
+ delivery: "จัดส่ง"
573
+ depth: "ลึก"
574
+ description: "รายละเอียด"
575
+ destination: "จุดหมาย"
576
+ destroy: "ทำลาย"
577
+ details:
578
+ discount_amount: "จำนวนส่วนลด"
579
+ dismiss_banner: "ไม่ ขอบคุณ! ฉันไม่สนใจ และไม่ต้องแสดงข้อความดังกล่าวอีก"
580
+ display: "แสดง"
581
+ display_currency: "แสดงสกุลเงิน"
582
+ doesnt_track_inventory:
583
+ edit: "แก้ไข"
584
+ editing_resource:
585
+ editing_rma_reason:
586
+ editing_user: "แก้ไขข้อมูลผู้ใช้"
587
+ eligibility_errors:
588
+ messages:
589
+ has_excluded_product:
590
+ item_total_less_than:
591
+ item_total_less_than_or_equal:
592
+ item_total_more_than:
593
+ item_total_more_than_or_equal:
594
+ limit_once_per_user:
595
+ missing_product:
596
+ missing_taxon:
597
+ no_applicable_products:
598
+ no_matching_taxons:
599
+ no_user_or_email_specified:
600
+ no_user_specified:
601
+ not_first_order:
602
+ email: "อีเมล"
603
+ empty: "ว่างเปล่า"
604
+ empty_cart: "ล้างตะกร้า"
605
+ enable_mail_delivery: "เปิดระบบส่งเมล"
606
+ end: "จบ"
607
+ ending_in: "จบภายใน"
608
+ environment: Environment
609
+ error: "ข้อผิดพลาด"
610
+ errors:
611
+ messages:
612
+ could_not_create_taxon: "ไม่สามารถสร้าง Taxon"
613
+ no_payment_methods_available: "ไม่พบวิธีการชำระเงินใน environment นี้"
614
+ no_shipping_methods_available: "ไม่พบวิธีจัดส่งสินค้าในสถานที่ดังกล่าว กรุณาเปลี่ยนที่อยู่ใหม่"
615
+ errors_prohibited_this_record_from_being_saved:
616
+ one: 1 ข้อผิดพลาดที่ไม่สามารถจัดเก็บข้อมูลได้
617
+ other: "%{count} ข้อผิดพลาดที่ไม่สามารถจัดเก็บข้อมูลได้"
618
+ event: "กรณี"
619
+ events:
620
+ spree:
621
+ cart:
622
+ add: "เพิ่มลงตะกร้า"
623
+ checkout:
624
+ coupon_code_added: "ได้เพิ่มหมายเลขคูปองแล้ว"
625
+ content:
626
+ visited: "ไปยังหน้า Static content"
627
+ order:
628
+ contents_changed: "รายการสั่งซื้อได้ทำการเปลี่ยนแปลง"
629
+ page_view: "ได้ดูหน้า Static page"
630
+ user:
631
+ signup: "สมัครสมาชิก"
632
+ exceptions:
633
+ count_on_hand_setter: "ไม่สามารถตั้งค่า count_on_hand ได้ด้วยตัวเอง เนื่องจากระบบได้ตั้งค่า recalculate_count_on_hand โดยอัตโนมัติ กรุณาใช้ `update_column(:count_on_hand, value)` แทน"
634
+ exchange_for:
635
+ excl:
636
+ existing_shipments:
637
+ expedited_exchanges_warning:
638
+ expiration: "หมดอายุ"
639
+ extension: "ส่วนขยาย"
640
+ failed_payment_attempts:
641
+ filename: "ชื่อไฟล์"
642
+ fill_in_customer_info: "กรุณากรอกข้อมูลลูกค้า"
643
+ filter_results: "กรอกผลลัพท์"
644
+ finalize: Finalize
645
+ finalized:
646
+ find_a_taxon:
647
+ first_item: "ราคาสินค้าชิ้นแรก"
648
+ first_name: "ชื่อจริง"
649
+ first_name_begins_with: "ชื่อจริงเริ่มต้นด้วย"
650
+ flat_percent: Flat Percent
651
+ flat_rate_per_order: Flat Rate (ต่อรายการสั่งซื้อ)
652
+ flexible_rate: Flexible Rate
653
+ forgot_password: "ลืมรหัสผ่าน"
654
+ free_shipping: Free Shipping
655
+ free_shipping_amount:
656
+ front_end: "หน้าขายสินค้า"
657
+ gateway: "ช่องทางการชำระเงิน"
658
+ gateway_config_unavailable: Gateway unavailable for environment
659
+ gateway_error: "เกิดข้อผิดพลาดที่ช่องทางการชำระเงิน"
660
+ general: "เบื้องต้น"
661
+ general_settings: "ข้อมูลเบื้องต้น"
662
+ google_analytics: Google Analytics
663
+ google_analytics_id: Analytics ID
664
+ guest_checkout: Guest Checkout
665
+ guest_user_account: Checkout as a Guest
666
+ has_no_shipped_units: has no shipped units
667
+ height: "สูง"
668
+ hide_cents: "ซ่อนเซ็น"
669
+ home: "หน้าแรก"
670
+ i18n:
671
+ available_locales: "ภาษาที่รองรับ"
672
+ language: "ภาษา"
673
+ localization_settings: "ตั้งค่าภาษา"
674
+ this_file_language: "ภาษาไทย (TH)"
675
+ icon: "ไอค่อน"
676
+ identifier:
677
+ image: "รูปภาพ"
678
+ images: "รูปภาพ"
679
+ implement_eligible_for_return:
680
+ implement_requires_manual_intervention:
681
+ inactive:
682
+ incl:
683
+ included_in_price: "รวมในราคา"
684
+ included_price_validation: "ไม่สามารถเลือกได้หากคุณยังไม่ได้ตั้งค่าเริ่มต้นของโซนภาษี"
685
+ incomplete:
686
+ info_number_of_skus_not_shown:
687
+ info_product_has_multiple_skus:
688
+ instructions_to_reset_password: "กรุณากรอกอีเมลของคุณในฟอร์มด้านล่าง"
689
+ insufficient_stock: "สินค้าในคลังไม่เพียงพอ เรามีแค่ %{on_hand} อยู่ในขณะนี้"
690
+ insufficient_stock_lines_present:
691
+ intercept_email_address: "ยับยั้งอีเมล"
692
+ intercept_email_instructions: "แก้ไขอีเมลผู้รับและแทนที่ด้วยอีเมลนี้"
693
+ internal_name:
694
+ invalid_credit_card:
695
+ invalid_exchange_variant:
696
+ invalid_payment_provider: "ผู้ให้บริการชำระเงินไม่ถูกต้อง"
697
+ invalid_promotion_action: "การตั้งค่าโปรโมชั่นไม่ถูกต้อง"
698
+ invalid_promotion_rule: "กฏของโปรโมชั่นไม่ถูกต้อง"
699
+ inventory: "คลัง"
700
+ inventory_adjustment: "ปรับแต่งคลังสินค้า"
701
+ inventory_error_flash_for_insufficient_quantity: "สินค้าในตะกร้าของคุณนั้นหมดเสียแล้ว"
702
+ inventory_state:
703
+ is_not_available_to_shipment_address: "นั้นไม่พร้อมที่ส่งไปยังที่อยู่ดังกล่าว"
704
+ iso_name: "ชื่อ ISO"
705
+ item: "สินค้า"
706
+ item_description: "รายละเอียดสินค้า"
707
+ item_total: "จำนวนทั้งหมด"
708
+ item_total_rule:
709
+ operators:
710
+ gt: "มากกว่า"
711
+ gte: "มากกว่าหรือเท่ากับ"
712
+ lt:
713
+ lte:
714
+ items_cannot_be_shipped: "เราไม่สามารถส่งสินค้าดังกล่าวไปยังสถานที่ของคุณได้ กรุณาเลือกสถานที่จัดส่งอื่น"
715
+ items_in_rmas:
716
+ items_reimbursed:
717
+ items_to_be_reimbursed:
718
+ jirafe: Jirafe
719
+ landing_page_rule:
720
+ path: Path
721
+ last_name: "นามสกุล"
722
+ last_name_begins_with: "นามสกุลเริ่มต้นด้วย"
723
+ learn_more: "เพิ่มเติม"
724
+ lifetime_stats:
725
+ line_item_adjustments:
726
+ list: "รายการ"
727
+ loading: "กำลังโหลด"
728
+ locale_changed: "เปลี่ยนภาษา"
729
+ location: "สถานที่"
730
+ lock: "ล๊อก"
731
+ log_entries:
732
+ logged_in_as: "เข้าสู่ระบบเป็น"
733
+ logged_in_succesfully: "เข้าสู่ระบบสำเร็จ"
734
+ logged_out: "คุณได้ออกจากระบบแล้ว"
735
+ login: "เข้าสู่ระบบ"
736
+ login_as_existing: "เข้าสู่ระบบจากบัญขีที่มีอยู่แล้ว"
737
+ login_failed: "ไม่สามารถเข้าสู่ระบบได้"
738
+ login_name: "เข้าสู่ระบบ"
739
+ logout: "ออกจากระบบ"
740
+ logs:
741
+ look_for_similar_items: "มองหาสินค้าที่คล้ายกัน"
742
+ make_refund: "ทำเรื่องขอคืนสินค้า"
743
+ make_sure_the_above_reimbursement_amount_is_correct:
744
+ manage_promotion_categories:
745
+ manage_variants:
746
+ manual_intervention_required:
747
+ master_price: "ราคาหลัก"
748
+ match_choices:
749
+ all: "ทั้งหมด"
750
+ none: "ไม่มี"
751
+ max_items: "มากสุด"
752
+ member_since:
753
+ memo:
754
+ meta_description: Meta Description
755
+ meta_keywords: Meta Keywords
756
+ meta_title:
757
+ metadata: Metadata
758
+ minimal_amount: "จำนวนต่ำสุด"
759
+ month: "เดือน"
760
+ more: "เพิ่มเติม"
761
+ move_stock_between_locations: "ย้ายสินค้าข้ามสถานที่"
762
+ my_account: "บัญชีของท่าน"
763
+ my_orders: "รายการสั่งซื้อ"
764
+ name: "ชื่อ"
765
+ name_on_card:
766
+ name_or_sku: "ชื่อหรือ SKU (กรุณาใส่ตัวอักษรอย่างน้อย 4 ตัวขึ้นไปของชื่อสินค้า)"
767
+ new: "ใหม่"
768
+ new_adjustment: New Adjustment
769
+ new_country:
770
+ new_customer: "สมัครสมาชิก"
771
+ new_customer_return:
772
+ new_image: "เพิ่มภาพ"
773
+ new_option_type: "เพิ่มรายการให้เลือก"
774
+ new_order: "สั่งซื้อสินค้า"
775
+ new_order_completed: "รายการสั่งซื้อเสร็จสิ้น"
776
+ new_payment: "ชำระใหม่"
777
+ new_payment_method: "เลือกวิธีการชำระใหม่"
778
+ new_product: "เพิ่มสินค้า"
779
+ new_promotion: "โปรโมชั่นใหม่"
780
+ new_promotion_category:
781
+ new_property: "เพิ่มคุณลักษณะ"
782
+ new_prototype: "เพิ่มต้นแบบ"
783
+ new_refund:
784
+ new_refund_reason:
785
+ new_return_authorization: "รายการคืนสินค้าใหม่"
786
+ new_rma_reason:
787
+ new_shipment_at_location:
788
+ new_shipping_category: "เพิ่มกลุ่มวิธีการจัดส่ง"
789
+ new_shipping_method: "เพิ่มวิธีจัดส่ง"
790
+ new_state: "เพิ่มรัฐหรือจังหวัด"
791
+ new_stock_location: "สร้างคลังสินค้าใหม่"
792
+ new_stock_movement: "เพิ่มรายการเคลื่อนไหวสินค้าใหม่"
793
+ new_stock_transfer: "เพิ่มรายการย้ายสินค้าใหม่"
794
+ new_tax_category: "เพิ่มรูปแบบการคิดภาษี"
795
+ new_tax_rate: "เพิ่มอัตราภาษี"
796
+ new_taxon: New Taxon
797
+ new_taxonomy: "เพิ่ม Taxonomy"
798
+ new_tracker: New Tracker
799
+ new_user: "สร้างผู้ใช้ใหม่"
800
+ new_variant: "เพิ่มตัวแปรใหม่"
801
+ new_zone: "เพิ่มเขตใหม่"
802
+ next: "ถัดไป"
803
+ no_actions_added: "ไม่พบการสั่งการ"
804
+ no_payment_found:
805
+ no_pending_payments: "ไม่พบรายการรอชำระ"
806
+ no_products_found: "ไม่พบสินค้า"
807
+ no_resource_found:
808
+ no_results: "ไม่พบผลลัพท์"
809
+ no_returns_found:
810
+ no_rules_added: "ไม่พบ rules"
811
+ no_shipping_method_selected:
812
+ no_state_changes:
813
+ no_tracking_present: "ไม่พบรายละเอียดของ Tracker"
814
+ none: "ว่าง"
815
+ none_selected:
816
+ normal_amount: "ราคาปรกติ"
817
+ not: "ไม่"
818
+ not_available: "ไม่มี"
819
+ not_enough_stock: "จำนวนรายการสินค้าไม่พอในคลังสินค้าดังกล่าว"
820
+ not_found: "%{resource} นั้นไม่พบ"
821
+ note:
822
+ notice_messages:
823
+ product_cloned: "สินค้าได้ถูกทำสำเนา"
824
+ product_deleted: "สินค้าได้ถูกลบแล้ว"
825
+ product_not_cloned: "สินค้าไม่สามารถทำสำเนาได้"
826
+ product_not_deleted: "สินค้าไม่สามารถถูกลบได้"
827
+ variant_deleted: Variant has been deleted
828
+ variant_not_deleted: "ตัวแปรไม่สามารถถูกลบได้"
829
+ num_orders:
830
+ on_hand: "สินค้าในคลัง"
831
+ open: "เปิด"
832
+ open_all_adjustments: "เปิดรายการปรับปรุงทั้งหมด"
833
+ option_type: "ประเภทตัวเลือก"
834
+ option_type_placeholder: "เลือกประเภทตัวเลือก"
835
+ option_types: "ประเภทตัวเลือก"
836
+ option_value: "ค่าของตัวเลือก"
837
+ option_values: "ค่าของตัวเลือก"
838
+ optional: "ตัวเลือก"
839
+ options: "ตัวเลือก"
840
+ or: "หรือ"
841
+ or_over_price: "%{price} หรือมากกว่า"
842
+ order: "รายการ"
843
+ order_adjustments: Order adjustments
844
+ order_already_updated:
845
+ order_approved:
846
+ order_canceled:
847
+ order_details: "รายละเอียดการสั่งซื้อ"
848
+ order_email_resent: "ส่งอีเมลการสั่งซื้อใหม่"
849
+ order_information: "ข้อมูลการสั่งซื้อ"
850
+ order_mailer:
851
+ cancel_email:
852
+ dear_customer: "ถึงคุณลูกค้า,\\n"
853
+ instructions: "สินค้าของคุณได้ถูกยกเลิกแล้ว กรุณาเก็บหลักฐานอีเมลฉบับนี้เอาไว้ เพื่อใช้ในการอ้างอิงในอนาคต"
854
+ order_summary_canceled: "รายการที่สั่งซื้อ [ยกเลิก]"
855
+ subject: "การยกเลิกการสั่งซื้อ"
856
+ subtotal:
857
+ total:
858
+ confirm_email:
859
+ dear_customer: "ถึงคุณลูกค้า,\\n"
860
+ instructions: "กรุณาตรวจสอบและเก็บรายละเอียดการสั่งซื้อนี้เอาไว้"
861
+ order_summary: "รายการที่สั่งซื้อ"
862
+ subject: "ยืนยันการสั่งซื้อ"
863
+ subtotal:
864
+ thanks: "ขอขอบคุณที่ได้รับใช้คุณ"
865
+ total:
866
+ order_not_found: "เราไม่พบรายการสั่งซื้อของคุณ กรุณาลองใหม่อีกครั้ง"
867
+ order_number: "รหัสสั่งซื้อ %{number}"
868
+ order_processed_successfully: "รายการสั่งซื้อของคุณถูกดำเนินการเรียบร้อยแล้ว"
869
+ order_resumed:
870
+ order_state:
871
+ address: "ที่อยู่"
872
+ awaiting_return: "อยู่ในระหว่างการคืน"
873
+ canceled: "ยกเลิก"
874
+ cart: "ตะกร้า"
875
+ complete: "เสร็จสิ้น"
876
+ confirm: "ยืนยัน"
877
+ considered_risky:
878
+ delivery: "ส่งสินค้า"
879
+ payment: "ชำระเงิน"
880
+ resumed: "ต่อไป"
881
+ returned: "คืน"
882
+ order_summary: "รายการที่สั่งซื้อ"
883
+ order_sure_want_to: "คุณยืนยันว่าต้องการ %{event} กับรายการสั่งซื้อนี้?"
884
+ order_total: "ราคารวม"
885
+ order_updated: "รายการสั่งซื้อได้ถูกปรับปรุงแล้ว"
886
+ orders: "รายการสั่งซื้อ"
887
+ other_items_in_other:
888
+ out_of_stock: "สินค้าหมด"
889
+ overview: "ภาพรวม"
890
+ package_from: "สินค้าจาก"
891
+ pagination:
892
+ next_page: "หน้าต่อไป »"
893
+ previous_page: "« ก่อนก่อนนี้"
894
+ truncate: "…"
895
+ password: "รหัสผ่าน"
896
+ paste: "แปะ"
897
+ path: Path
898
+ pay: "ชำระ"
899
+ payment: "ชำระ"
900
+ payment_could_not_be_created:
901
+ payment_identifier:
902
+ payment_information: "ข้อมูลการชำระเงิน"
903
+ payment_method: "วิธีชำระเงิน"
904
+ payment_method_not_supported:
905
+ payment_methods: "วิธีชำระเงิน"
906
+ payment_processing_failed: "ไม่สามารถชำระเงินได้ กรุณาตรวจสอบข้อมูลที่คุณได้กรอกใหม่"
907
+ payment_processor_choose_banner_text: "หากคุณต้องการความช่วยเหลือในการตัดเงิน กรุณาไปยัง"
908
+ payment_processor_choose_link: "หน้าชำระเงิน"
909
+ payment_state: "สถานะการชำระเงิน"
910
+ payment_states:
911
+ balance_due: "จำนวนที่ค้าง"
912
+ checkout: checkout
913
+ completed: "เสร็จสิ้น"
914
+ credit_owed: credit owed
915
+ failed: "ผิดพลาด"
916
+ paid: "ชำระแล้ว"
917
+ pending: "รอ"
918
+ processing: "กำลังดำเนินการ"
919
+ void: void
920
+ payment_updated: "ได้ปรับปรุงการชำระเงินแล้ว"
921
+ payments: "รายการชำระเงิน"
922
+ pending:
923
+ percent: "เปอร์เซ็น"
924
+ percent_per_item: "เปอร์เซ็นต่อชิ้น"
925
+ permalink: Permalink
926
+ phone: "เบอร์โทรศัพท์"
927
+ place_order: "สั่งซื้อ"
928
+ please_define_payment_methods: "กรุณาเลือกวิธีการชำระก่อน"
929
+ populate_get_error: "เกิดข้อผิดพลาด กรุณาเพิ่มสินค้าใหม่อีกครั้ง"
930
+ powered_by: "สนับสนุนโดย"
931
+ pre_tax_amount:
932
+ pre_tax_refund_amount:
933
+ pre_tax_total:
934
+ preferred_reimbursement_type:
935
+ presentation: "แสดง"
936
+ previous: "ก่อนหน้า"
937
+ previous_state_missing:
938
+ price: "ราคา"
939
+ price_range: "ราคาระหว่าง"
940
+ price_sack: Price Sack
941
+ process: Process
942
+ product: "สินค้า"
943
+ product_details: "รายละเอียดสินค้า"
944
+ product_has_no_description: "สินค้าไม่มีรายละเอียด"
945
+ product_not_available_in_this_currency: "สินค้านี้ไม่รองรับสกุลเงินนี้"
946
+ product_properties: "สรรพคุณของสินค้า"
947
+ product_rule:
948
+ choose_products: "เลือกสินค้า"
949
+ label:
950
+ match_all: "ทั้งหมด"
951
+ match_any: "อย่างน้อยหนึ่ง"
952
+ match_none:
953
+ product_source:
954
+ group: "จากกลุ่มของสินค้า"
955
+ manual: "เลือกเอง"
956
+ products: "สินค้า"
957
+ promotion: "โปรโมชั่น"
958
+ promotion_action: "ดำเนินการโปรโมชั่น"
959
+ promotion_action_types:
960
+ create_adjustment:
961
+ description: Creates a promotion credit adjustment on the order
962
+ name: "สร้างการปรับเปลี่ยน"
963
+ create_item_adjustments:
964
+ description:
965
+ name:
966
+ create_line_items:
967
+ description: "สร้างตะกร้าสินค้าด้วยจำนวนที่กำหนดจากตัวแปร"
968
+ name: "สร้าง line items"
969
+ free_shipping:
970
+ description:
971
+ name:
972
+ promotion_actions: "ดำเนินการ"
973
+ promotion_form:
974
+ match_policies:
975
+ all: "จับคู่ทั้งหมด"
976
+ any: "จับคู่อย่างใดอย่างหนึ่ง"
977
+ promotion_rule: "กฏของโปรโมชั่น"
978
+ promotion_rule_types:
979
+ first_order:
980
+ description: "ต้องเป็นรายการสั่งซื้อแรกเท่านั้น"
981
+ name: "รายการแรก"
982
+ item_total:
983
+ description: "จำนวนสั่งซื้อนั้นอยู่ในเกณฑ์ดังกล่าว"
984
+ name: "จำนวนทั้งหมด"
985
+ landing_page:
986
+ description: "ลูกค้าต้องไปยังหน้าที่กำหนด"
987
+ name: Landing Page
988
+ one_use_per_user:
989
+ description:
990
+ name:
991
+ option_value:
992
+ description:
993
+ name:
994
+ product:
995
+ description: "รายการนั้นรวมสินค้าที่กำหนด"
996
+ name: "สินค้า"
997
+ taxon:
998
+ description:
999
+ name:
1000
+ user:
1001
+ description: "เฉพาะลูกค้าที่กำหนด"
1002
+ name: "ผู้ใช้"
1003
+ user_logged_in:
1004
+ description: "เฉพาะลูกค้าที่เข้าระบบ"
1005
+ name: "ผู้ใช้ในระบบ"
1006
+ promotion_uses:
1007
+ promotionable:
1008
+ promotions: "โปรโมชั่น"
1009
+ propagate_all_variants:
1010
+ properties: "คุณสมบัติ"
1011
+ property: "คุณสมบัติ"
1012
+ prototype: Prototype
1013
+ prototypes: Prototypes
1014
+ provider: "ผู้ให้บริการ"
1015
+ provider_settings_warning: "หากคุณต้องการเปลี่ยนประเภทผู้ให้บริการ คุณจำเป็นต้องบันทึกรายการก่อนจึงจะสามารถแก้ไขค่าของผู้ให้บริการได้"
1016
+ qty: "จำนวน"
1017
+ quantity: "จำนวน"
1018
+ quantity_returned: "จำนวนที่คืน"
1019
+ quantity_shipped: "จำนวนที่ส่ง"
1020
+ quick_search:
1021
+ rate: "อัตรา"
1022
+ reason: "เหตุผล"
1023
+ receive: "ได้รับ"
1024
+ receive_stock: "ได้รับสินค้า"
1025
+ received: "ได้รับแล้ว"
1026
+ reception_status:
1027
+ reference: "อ้างอิง"
1028
+ refund: "คืนเงิน"
1029
+ refund_amount_must_be_greater_than_zero:
1030
+ refund_reasons:
1031
+ refunded_amount:
1032
+ refunds:
1033
+ register: "ลงทะเบียน"
1034
+ registration: "ลงทะเบียน"
1035
+ reimburse:
1036
+ reimbursed:
1037
+ reimbursement:
1038
+ reimbursement_mailer:
1039
+ reimbursement_email:
1040
+ days_to_send:
1041
+ dear_customer:
1042
+ exchange_summary:
1043
+ for:
1044
+ instructions:
1045
+ refund_summary:
1046
+ subject:
1047
+ total_refunded:
1048
+ reimbursement_perform_failed:
1049
+ reimbursement_status:
1050
+ reimbursement_type:
1051
+ reimbursement_type_override:
1052
+ reimbursement_types:
1053
+ reimbursements:
1054
+ reject:
1055
+ rejected:
1056
+ remember_me: "จำฉัน"
1057
+ remove: "ลบ"
1058
+ rename: "เปลี่ยนชื่อ"
1059
+ report:
1060
+ reports: "รายงาน"
1061
+ resend: "ส่งใหม่"
1062
+ reset_password: "ตั้งรหัสผ่านใหม่"
1063
+ response_code: "รหัสที่ได้รับ"
1064
+ resume: "ทำต่อ"
1065
+ resumed: "ทำต่อ"
1066
+ return: "กลับ"
1067
+ return_authorization: "รายการคืนสินค้า"
1068
+ return_authorization_reasons:
1069
+ return_authorization_updated: "รายการคืนสินค้าได้ปรับปรุงแล้ว"
1070
+ return_authorizations: "รายการคืนสินค้า"
1071
+ return_item_inventory_unit_ineligible:
1072
+ return_item_inventory_unit_reimbursed:
1073
+ return_item_rma_ineligible:
1074
+ return_item_time_period_ineligible:
1075
+ return_items:
1076
+ return_items_cannot_be_associated_with_multiple_orders:
1077
+ return_number:
1078
+ return_quantity: "จำนวนที่คืน"
1079
+ returned: "คืน"
1080
+ returns:
1081
+ review: "ตรวจสอบ"
1082
+ risk:
1083
+ risk_analysis:
1084
+ risky:
1085
+ rma_credit: RMA Credit
1086
+ rma_number: RMA Number
1087
+ rma_value: RMA Value
1088
+ roles: "หน้าที่"
1089
+ rules: "กฏ"
1090
+ safe:
1091
+ sales_total: "ยอดขายรวม"
1092
+ sales_total_description: "ยอดขายรวมสำหรับรายการที่สั่งซื้อทั้งหมด"
1093
+ sales_totals: "ยอดขายรวม"
1094
+ save_and_continue: "บันทึกและดำเนินการต่อ"
1095
+ save_my_address:
1096
+ say_no: "ไม่"
1097
+ say_yes: "ถูกต้อง"
1098
+ scope: Scope
1099
+ search: "ค้นหา"
1100
+ search_results: "ผลลัพท์การค้นหาของ '%{keywords}'"
1101
+ searching: "กำลังค้นหา"
1102
+ secure_connection_type: Secure Connection Type
1103
+ security_settings: "ตั้งค่าความปลอดภัย"
1104
+ select: "เลือก"
1105
+ select_a_return_authorization_reason:
1106
+ select_a_stock_location:
1107
+ select_from_prototype: "เลือกจาก Prototype"
1108
+ select_stock: "เลือกจากคลัง"
1109
+ send_copy_of_all_mails_to: "ส่งสำเนาไปยัง"
1110
+ send_mails_as: "ส่งเมลด้วย"
1111
+ server: "เซิร์ฟเวอร์"
1112
+ server_error: "เซิร์ฟเวอร์ส่งข้อผิดพลาด"
1113
+ settings: "ตั้งค่า"
1114
+ ship: "ส่ง"
1115
+ ship_address: "ที่อยู่���่งของ"
1116
+ ship_total: "ค่าจัดส่ง"
1117
+ shipment: "การส่ง"
1118
+ shipment_adjustments:
1119
+ shipment_details:
1120
+ shipment_mailer:
1121
+ shipped_email:
1122
+ dear_customer: "ถึงคุณลูกค้า,\\n"
1123
+ instructions: "รายการสั่งซื้อของคุณได้ทำการจัดส่งแล้ว"
1124
+ shipment_summary: "สรุปรายการส่งสินค้า"
1125
+ subject: "การแจ้งเตือนการส่งสินค้า"
1126
+ thanks: "ขอขอบพระคุณสำหรับการสั่งซื้อกับเรา"
1127
+ track_information: "หมายเลขการติดตามสถานะการส่งสินค้า: %{tracking}"
1128
+ track_link: "ลิ้งไปยังหน้าสถานะ: %{url}"
1129
+ shipment_state: "สถานะการจัดส่ง"
1130
+ shipment_states:
1131
+ backorder: "พร้อมจัดส่ง"
1132
+ canceled:
1133
+ partial: "บางส่วน"
1134
+ pending: "รอ"
1135
+ ready: "พร้อม"
1136
+ shipped: "ส่งแล้ว"
1137
+ shipment_transfer_error:
1138
+ shipment_transfer_success:
1139
+ shipments: "การจัดส่ง"
1140
+ shipped: "ส่งแล้ว"
1141
+ shipping: "ส่ง"
1142
+ shipping_address: "ที่อยู่การจัดส่ง"
1143
+ shipping_categories: "ประเภทการจัดส่ง"
1144
+ shipping_category: "ประเภทการจัดส่ง"
1145
+ shipping_flat_rate_per_item: "อัตราสุทธิต่อชิ้น"
1146
+ shipping_flat_rate_per_order: "อัตราสุทธิ"
1147
+ shipping_flexible_rate: "อัตราแปรผั่นต่อชิ้น"
1148
+ shipping_instructions: "ขั้นตอนการจัดส่ง"
1149
+ shipping_method: "วิธีการจัดส่ง"
1150
+ shipping_methods: "วิธีการจัดส่ง"
1151
+ shipping_price_sack: Price sack
1152
+ shipping_total:
1153
+ shop_by_taxonomy: "ซื้อโดย %{taxonomy}"
1154
+ shopping_cart: "ตะกร้าสินค้า"
1155
+ show: "แสดง"
1156
+ show_active: "แสดงที่ใช้งานอยู่"
1157
+ show_deleted: "แสดงที่ลบ"
1158
+ show_only_complete_orders: "แสดงรายการสั่งซื้อที่สมบูรณ์"
1159
+ show_only_considered_risky:
1160
+ show_rate_in_label: "แสดงอัตรา"
1161
+ sku:
1162
+ skus:
1163
+ slug:
1164
+ source: "จาก"
1165
+ special_instructions: "วิธี"
1166
+ split: "แยก"
1167
+ spree_gateway_error_flash_for_checkout: "เกิดปัญหาขึ้นกับข้อมูลการชำระเงินของคุณ กรุณาตรวจสอบข้อมูลการชำระเงินของคุณแล้วลองใหม่"
1168
+ ssl:
1169
+ change_protocol:
1170
+ start: "เริ่ม"
1171
+ state: "จังหวัด"
1172
+ state_based: "จังหวัดที่ตั้ง"
1173
+ state_machine_states:
1174
+ accepted:
1175
+ address:
1176
+ authorized:
1177
+ awaiting:
1178
+ awaiting_return:
1179
+ backordered:
1180
+ canceled:
1181
+ cart:
1182
+ checkout:
1183
+ closed:
1184
+ complete:
1185
+ completed:
1186
+ confirm:
1187
+ delivery:
1188
+ errored:
1189
+ failed:
1190
+ given_to_customer:
1191
+ invalid:
1192
+ manual_intervention_required:
1193
+ on_hand:
1194
+ open:
1195
+ order:
1196
+ payment:
1197
+ pending:
1198
+ processing:
1199
+ ready:
1200
+ reimbursed:
1201
+ resumed:
1202
+ returned:
1203
+ shipped:
1204
+ void:
1205
+ states: "จังหวัด"
1206
+ states_required: "จังหวัดที่ต้องการ"
1207
+ status: "สถานะ"
1208
+ stock:
1209
+ stock_location: "สถานที่ของคลังสินค้า"
1210
+ stock_location_info: "ข้อมูลของคลังสินค้า"
1211
+ stock_locations: "สถานที่ของคลังสินค้า"
1212
+ stock_locations_need_a_default_country:
1213
+ stock_management: "การจัดการคลังสินค้า"
1214
+ stock_management_requires_a_stock_location: "กรุณาสร้างคลังสินค้าเพื่อที่จะสามารถบริหารคลังได้"
1215
+ stock_movements: "สินค้าเคลื่อนไหว"
1216
+ stock_movements_for_stock_location: "สินค้าเคลื่อนไหวของ %{stock_location_name}"
1217
+ stock_successfully_transferred: "สินค้าได้ย้ายไปยังคลังที่ต้องการแล้ว"
1218
+ stock_transfer: "ย้ายสินค้า"
1219
+ stock_transfers: "ย้ายสินค้า"
1220
+ stop: "หยุด"
1221
+ store: Store
1222
+ street_address: "ที่อยู่"
1223
+ street_address_2: "ที่อยู่ (ต่อ)"
1224
+ subtotal: "ยอด"
1225
+ subtract: "หักออก"
1226
+ success:
1227
+ successfully_created: "%{resource} นั้นได้สร้างเรียบร้อยแล้ว"
1228
+ successfully_refunded:
1229
+ successfully_removed: "%{resource} นั้นได้ถูกลบเรียบร้อยแล้ว"
1230
+ successfully_signed_up_for_analytics: "ได้สมัคร Spree Analytics เป็นที่เรียบร้อย"
1231
+ successfully_updated: "%{resource} นั้นได้ปรับปรุงเรียบร้อยแล้ว"
1232
+ summary:
1233
+ tax: "ภาษี"
1234
+ tax_categories: "ประเภทภาษี"
1235
+ tax_category: "ประเภทภาษี"
1236
+ tax_code:
1237
+ tax_included:
1238
+ tax_rate_amount_explanation: "อัตราภาษีนั้นเป็นทศนิยมเพื่อง่ายในการคำนวน (ตัวอย่าง, หากภาษีคือ 7% ให้ใส่ 0.07)"
1239
+ tax_rates: "อัตราภาษี"
1240
+ taxon: Taxon
1241
+ taxon_edit: "แก้ไข Taxon"
1242
+ taxon_placeholder: "เพิ่ม Taxon"
1243
+ taxon_rule:
1244
+ choose_taxons:
1245
+ label:
1246
+ match_all:
1247
+ match_any:
1248
+ taxonomies: Taxonomies
1249
+ taxonomy: Taxonomy
1250
+ taxonomy_edit: "แก้ไข taxonomy"
1251
+ taxonomy_tree_error: "รายการที่ขอเปลี่ยนแปลงไม่สามารถทำได้ และได้ทำการแก้ไขคืนดังเดิม โปรดลองอีกครั้ง"
1252
+ taxonomy_tree_instruction: "* คลิกขวาที่ Child ใน Tree เพื่อเข้าเมนูในการเพิ่ม, ลบ หรือจัดรายการ Child"
1253
+ taxons: Taxons
1254
+ test: "ทดสอบ"
1255
+ test_mailer:
1256
+ test_email:
1257
+ greeting: "ยินดีด้วย!"
1258
+ message: "หากคุณได้รับอีเมลฉบับนี้ แสดงว่าการตั้งค่าอีเมลของคุณนั้นถูกต้อง"
1259
+ subject: "ทดสอบอีเมล"
1260
+ test_mode: "โหมดทดสอบ"
1261
+ thank_you_for_your_order: "ขอบคุณสำหรับการสั่งซื้อของคุณ กรุณาเก็บหน้านี้เอาไว้"
1262
+ there_are_no_items_for_this_order: "ไม่พบรายการสินค้าในการสั่งซื้อนี้ กรุณาเพิ่มรายการสินค้าเพื่อทำการต่อ"
1263
+ there_were_problems_with_the_following_fields: "เกิดปัญหากับ Field ดังกล่าว"
1264
+ this_order_has_already_received_a_refund:
1265
+ thumbnail: "รูป Thumnail"
1266
+ tiered_flat_rate:
1267
+ tiered_percent:
1268
+ tiers:
1269
+ time: "เวลา"
1270
+ to_add_variants_you_must_first_define: "หากเพิ่มตัวแปร คุณต้องกำหนด"
1271
+ total: "จำนวน"
1272
+ total_per_item:
1273
+ total_pre_tax_refund:
1274
+ total_price:
1275
+ total_sales:
1276
+ track_inventory:
1277
+ tracking: Tracking
1278
+ tracking_number: Tracking Number
1279
+ tracking_url: Tracking URL
1280
+ tracking_url_placeholder: "ตัวอย่าง http://quickship.com/package?num=:tracking"
1281
+ transaction_id:
1282
+ transfer_from_location: "ย้ายจาก"
1283
+ transfer_stock: "ย้ายสินค้า"
1284
+ transfer_to_location: "ย้ายไป"
1285
+ tree: Tree
1286
+ type: "ประเภท"
1287
+ type_to_search: "พิมพ์เพื่อค้นหา"
1288
+ unable_to_connect_to_gateway: "ไม่สามารถติดต่อกับ Gateway"
1289
+ unable_to_create_reimbursements:
1290
+ under_price: "ไม่เกิน %{price}"
1291
+ unlock: "ปลดล๊อก"
1292
+ unrecognized_card_type: "ไม่รู้จักบัตรประเภทนี้"
1293
+ unshippable_items: "สินค้าที่ไม่สามารถส่งได้"
1294
+ update: "แก้ไข"
1295
+ updating: "กำลังแก้ไข"
1296
+ usage_limit: "ลิมิตการใช้"
1297
+ use_app_default:
1298
+ use_billing_address: "ใช้ที่อยู่ที่ออกใบเสร็จ"
1299
+ use_new_cc: "ใช้บัตรใบใหม่"
1300
+ use_s3: "ใช้ Amazon S3 สำหรับรูปภาพ"
1301
+ user: "ผู้ใช้"
1302
+ user_rule:
1303
+ choose_users: "เลือกผู้ใช้"
1304
+ users: "ผู้ใช้"
1305
+ validation:
1306
+ cannot_be_less_than_shipped_units: "ไม่สามารถน้อยกว่าจำนวนในการจัดส่ง"
1307
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1308
+ exceeds_available_stock: exceeds available stock. Please ensure line items have a valid quantity.
1309
+ is_too_large: "นั้นใหญ่เกินไป -- สินค้าในมือไม่สามารถรองรับจำนวนที่ต้องการได้"
1310
+ must_be_int: "ต้องเป็นเลขจำนวนเต็ม"
1311
+ must_be_non_negative: "ต้องเป็นค่าที่ไม่ติดลบ"
1312
+ unpaid_amount_not_zero:
1313
+ value: "ค่า"
1314
+ variant: "ตัวแปร"
1315
+ variant_placeholder: "เลือกตัวแปร"
1316
+ variants: "ตัวแปร"
1317
+ version: "เวอร์ชั่น"
1318
+ void: Void
1319
+ weight: "น้ำหนัก"
1320
+ what_is_a_cvv: "อะไรคือ (CVV) บนบัตรเครดิต?"
1321
+ what_is_this: "นี่คืออะไร"
1322
+ width: "กว้าง"
1323
+ year: "ปี"
1324
+ you_have_no_orders_yet: "คุณยังไม่มีรายการสั่งซื้อ"
1325
+ your_cart_is_empty: "ตะกร้าคุณว่างเปล่า"
1326
+ your_order_is_empty_add_product: "คุณไม่มีรายการสั่งซื้อ กรุณาค้นหาและเพิ่มสินค้าด้านบน"
1327
+ zip: "รหัสไปรษณีย์"
1328
+ zipcode: "รหัสไปรษณีย์"
1329
+ zone: "โซน"
1330
+ zones: "โซน"