solidus_i18n 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (92) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/.hound.yml +25 -0
  4. data/.rubocop.yml +7 -0
  5. data/.travis.yml +12 -0
  6. data/CONTRIBUTING.md +70 -0
  7. data/Gemfile +13 -0
  8. data/Guardfile +11 -0
  9. data/LICENSE.md +26 -0
  10. data/README.md +74 -0
  11. data/Rakefile +85 -0
  12. data/app/assets/javascripts/spree/backend/solidus_i18n.js +2 -0
  13. data/app/assets/javascripts/spree/backend/translations.js.coffee +5 -0
  14. data/app/assets/javascripts/spree/frontend/cart_decorator.js.coffee +5 -0
  15. data/app/assets/javascripts/spree/frontend/locale.js.coffee +3 -0
  16. data/app/assets/javascripts/spree/frontend/solidus_i18n.js +2 -0
  17. data/app/assets/stylesheets/spree/backend/solidus_i18n.css +8 -0
  18. data/app/assets/stylesheets/spree/frontend/solidus_i18n.css +8 -0
  19. data/app/controllers/spree/admin/general_settings_controller_decorator.rb +12 -0
  20. data/app/controllers/spree/api/base_controller_decorator.rb +3 -0
  21. data/app/controllers/spree/base_controller_decorator.rb +3 -0
  22. data/app/controllers/spree/locale_controller_decorator.rb +6 -0
  23. data/app/helpers/solidus_i18n/locale_helper.rb +31 -0
  24. data/app/overrides/spree/admin/general_settings/edit/localization_settings.html.erb.deface +20 -0
  25. data/app/overrides/spree/shared/_main_nav_bar/cart_link.html.erb.deface +9 -0
  26. data/app/overrides/spree/shared/_main_nav_bar/locale_selector.html.erb.deface +16 -0
  27. data/bin/rails +7 -0
  28. data/config/initializers/country_names.rb +51 -0
  29. data/config/initializers/routing_filter.rb +2 -0
  30. data/config/locales/bg.yml +1330 -0
  31. data/config/locales/ca.yml +1334 -0
  32. data/config/locales/cs.yml +1363 -0
  33. data/config/locales/da.yml +1336 -0
  34. data/config/locales/de-CH.yml +1288 -0
  35. data/config/locales/de.yml +1477 -0
  36. data/config/locales/en-AU.yml +1334 -0
  37. data/config/locales/en-GB.yml +1338 -0
  38. data/config/locales/en-IN.yml +1336 -0
  39. data/config/locales/en-NZ.yml +1334 -0
  40. data/config/locales/es-CL.yml +1398 -0
  41. data/config/locales/es-EC.yml +1338 -0
  42. data/config/locales/es-MX.yml +1337 -0
  43. data/config/locales/es.yml +1338 -0
  44. data/config/locales/et.yml +1316 -0
  45. data/config/locales/fa.yml +1163 -0
  46. data/config/locales/fi.yml +1352 -0
  47. data/config/locales/fr.yml +1588 -0
  48. data/config/locales/id.yml +1335 -0
  49. data/config/locales/it.yml +1395 -0
  50. data/config/locales/ja.yml +1336 -0
  51. data/config/locales/ko.yml +1294 -0
  52. data/config/locales/lv.yml +1328 -0
  53. data/config/locales/nb.yml +1339 -0
  54. data/config/locales/nl.yml +1338 -0
  55. data/config/locales/pl.yml +1345 -0
  56. data/config/locales/pt-BR.yml +1364 -0
  57. data/config/locales/pt.yml +1290 -0
  58. data/config/locales/ro.yml +1335 -0
  59. data/config/locales/ru.yml +1400 -0
  60. data/config/locales/sk.yml +1345 -0
  61. data/config/locales/sl-SI.yml +1288 -0
  62. data/config/locales/sv.yml +1372 -0
  63. data/config/locales/th.yml +1330 -0
  64. data/config/locales/tr.yml +1291 -0
  65. data/config/locales/uk.yml +1447 -0
  66. data/config/locales/vi.yml +1290 -0
  67. data/config/locales/zh-CN.yml +1345 -0
  68. data/config/locales/zh-TW.yml +1293 -0
  69. data/config/routes.rb +6 -0
  70. data/db/migrate/20150609154031_remove_translations_from_spree_tables.rb +65 -0
  71. data/lib/generators/solidus_i18n/install/install_generator.rb +27 -0
  72. data/lib/solidus_i18n/configuration.rb +9 -0
  73. data/lib/solidus_i18n/controller_locale_helper.rb +29 -0
  74. data/lib/solidus_i18n/engine.rb +45 -0
  75. data/lib/solidus_i18n/locale.rb +13 -0
  76. data/lib/solidus_i18n/utils.rb +56 -0
  77. data/lib/solidus_i18n/version.rb +18 -0
  78. data/lib/solidus_i18n.rb +8 -0
  79. data/lib/tasks/solidus_i18n/upgrade.rake +43 -0
  80. data/solidus_i18n.gemspec +46 -0
  81. data/spec/controllers/locales_controller_spec.rb +24 -0
  82. data/spec/features/admin/translations_spec.rb +33 -0
  83. data/spec/features/russian_errors_translation_spec.rb +17 -0
  84. data/spec/features/translation_spec.rb +31 -0
  85. data/spec/features/translations_spec.rb +28 -0
  86. data/spec/spec_helper.rb +31 -0
  87. data/spec/support/capybara.rb +11 -0
  88. data/spec/support/database_cleaner.rb +23 -0
  89. data/spec/support/factory_girl.rb +5 -0
  90. data/spec/support/i18n.rb +5 -0
  91. data/spec/support/spree.rb +12 -0
  92. metadata +411 -0
@@ -0,0 +1,1294 @@
1
+ ko:
2
+ activerecord:
3
+ attributes:
4
+ spree/address:
5
+ address1:
6
+ address2:
7
+ city:
8
+ country:
9
+ firstname:
10
+ lastname:
11
+ phone:
12
+ state:
13
+ zipcode:
14
+ spree/calculator/tiered_flat_rate:
15
+ preferred_base_amount:
16
+ preferred_tiers:
17
+ spree/calculator/tiered_percent:
18
+ preferred_base_percent:
19
+ preferred_tiers:
20
+ spree/country:
21
+ iso:
22
+ iso3:
23
+ iso_name:
24
+ name:
25
+ numcode:
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:
92
+ expires_at:
93
+ name:
94
+ path:
95
+ starts_at:
96
+ usage_limit:
97
+ spree/promotion_category:
98
+ name:
99
+ spree/property:
100
+ name:
101
+ presentation:
102
+ spree/prototype:
103
+ name:
104
+ spree/return_authorization:
105
+ amount:
106
+ spree/role:
107
+ name:
108
+ spree/state:
109
+ abbr:
110
+ name:
111
+ spree/state_change:
112
+ state_changes:
113
+ state_from:
114
+ state_to:
115
+ timestamp:
116
+ type:
117
+ updated:
118
+ user:
119
+ spree/store:
120
+ mail_from_address:
121
+ meta_description:
122
+ meta_keywords:
123
+ name:
124
+ seo_title:
125
+ url:
126
+ spree/tax_category:
127
+ description:
128
+ name:
129
+ spree/tax_rate:
130
+ amount:
131
+ included_in_price:
132
+ show_rate_in_label:
133
+ spree/taxon:
134
+ name:
135
+ permalink:
136
+ position:
137
+ spree/taxonomy:
138
+ name:
139
+ spree/user:
140
+ email:
141
+ password:
142
+ password_confirmation:
143
+ spree/variant:
144
+ cost_currency:
145
+ cost_price:
146
+ depth:
147
+ height:
148
+ price:
149
+ sku:
150
+ weight:
151
+ width:
152
+ spree/zone:
153
+ description:
154
+ name:
155
+ errors:
156
+ models:
157
+ spree/calculator/tiered_flat_rate:
158
+ attributes:
159
+ base:
160
+ keys_should_be_positive_number:
161
+ preferred_tiers:
162
+ should_be_hash:
163
+ spree/calculator/tiered_percent:
164
+ attributes:
165
+ base:
166
+ keys_should_be_positive_number:
167
+ values_should_be_percent:
168
+ preferred_tiers:
169
+ should_be_hash:
170
+ spree/classification:
171
+ attributes:
172
+ taxon_id:
173
+ already_linked:
174
+ spree/credit_card:
175
+ attributes:
176
+ base:
177
+ card_expired:
178
+ expiry_invalid:
179
+ spree/line_item:
180
+ attributes:
181
+ currency:
182
+ must_match_order_currency:
183
+ spree/refund:
184
+ attributes:
185
+ amount:
186
+ greater_than_allowed:
187
+ spree/reimbursement:
188
+ attributes:
189
+ base:
190
+ return_items_order_id_does_not_match:
191
+ spree/return_item:
192
+ attributes:
193
+ inventory_unit:
194
+ other_completed_return_item_exists:
195
+ reimbursement:
196
+ cannot_be_associated_unless_accepted:
197
+ spree/store:
198
+ attributes:
199
+ base:
200
+ cannot_destroy_default_store:
201
+ models:
202
+ spree/address:
203
+ spree/country:
204
+ spree/credit_card:
205
+ spree/customer_return:
206
+ spree/inventory_unit:
207
+ spree/line_item:
208
+ spree/option_type:
209
+ spree/option_value:
210
+ spree/order:
211
+ spree/payment:
212
+ spree/payment_method:
213
+ spree/product:
214
+ spree/promotion:
215
+ spree/promotion_category:
216
+ spree/property:
217
+ spree/prototype:
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:
243
+ send_instructions:
244
+ failure:
245
+ inactive:
246
+ invalid:
247
+ invalid_token:
248
+ locked:
249
+ timeout:
250
+ unauthenticated:
251
+ unconfirmed:
252
+ mailer:
253
+ confirmation_instructions:
254
+ subject:
255
+ reset_password_instructions:
256
+ subject:
257
+ unlock_instructions:
258
+ subject:
259
+ oauth_callbacks:
260
+ failure:
261
+ success:
262
+ unlocks:
263
+ send_instructions:
264
+ unlocked:
265
+ user_passwords:
266
+ user:
267
+ cannot_be_blank:
268
+ send_instructions:
269
+ updated:
270
+ user_registrations:
271
+ destroyed:
272
+ inactive_signed_up:
273
+ signed_up:
274
+ updated:
275
+ user_sessions:
276
+ signed_in:
277
+ signed_out:
278
+ errors:
279
+ messages:
280
+ already_confirmed:
281
+ not_found:
282
+ not_locked:
283
+ not_saved:
284
+ spree:
285
+ abbreviation: "생략"
286
+ accept:
287
+ acceptance_errors:
288
+ acceptance_status:
289
+ accepted:
290
+ account: "계정"
291
+ account_updated: "계정 정보가 수정되었습니다!"
292
+ action: "행동"
293
+ actions:
294
+ cancel: "취소"
295
+ continue:
296
+ create: "생성"
297
+ destroy: "삭제"
298
+ edit:
299
+ list: "목록"
300
+ listing: "목록"
301
+ new:
302
+ refund:
303
+ save:
304
+ update: "수정"
305
+ activate:
306
+ active: "활성"
307
+ add: "추가"
308
+ add_action_of_type:
309
+ add_country: "국가 추가"
310
+ add_coupon_code:
311
+ add_new_header:
312
+ add_new_style:
313
+ add_one:
314
+ add_option_value: "옵션 값 추가"
315
+ add_product: "상품 추가"
316
+ add_product_properties: "상품 속성 추가"
317
+ add_rule_of_type:
318
+ add_state:
319
+ add_stock:
320
+ add_stock_management:
321
+ add_to_cart: "장바구니에 추가"
322
+ add_variant:
323
+ additional_item: "추가 된 아이템 비용"
324
+ address1:
325
+ address2:
326
+ adjustable:
327
+ adjustment: "정산"
328
+ adjustment_amount:
329
+ adjustment_successfully_closed:
330
+ adjustment_successfully_opened:
331
+ adjustment_total: "정산 합계"
332
+ adjustments: "정산"
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: "관리"
358
+ advertise:
359
+ agree_to_privacy_policy:
360
+ agree_to_terms_of_service:
361
+ all: "전체"
362
+ all_adjustments_closed:
363
+ all_adjustments_opened:
364
+ all_departments:
365
+ all_items_have_been_returned:
366
+ allow_ssl_in_development_and_test:
367
+ allow_ssl_in_production:
368
+ allow_ssl_in_staging:
369
+ already_signed_up_for_analytics:
370
+ alt_text: "대체 텍스트"
371
+ alternative_phone: "휴대폰 번호"
372
+ amount: "액수"
373
+ analytics_desc_header_1:
374
+ analytics_desc_header_2:
375
+ analytics_desc_list_1:
376
+ analytics_desc_list_2:
377
+ analytics_desc_list_3:
378
+ analytics_desc_list_4:
379
+ analytics_trackers: "애날리틱스 트래커"
380
+ and:
381
+ approve:
382
+ approved_at:
383
+ approver:
384
+ are_you_sure: "확실합니까?"
385
+ are_you_sure_delete: "기록을 삭제하시겠습니까?"
386
+ associated_adjustment_closed:
387
+ at_symbol: '@'
388
+ authorization_failure: "인증 실패"
389
+ authorized:
390
+ auto_capture:
391
+ available_on: "시작일"
392
+ average_order_value:
393
+ avs_response:
394
+ back: "뒤로"
395
+ back_end:
396
+ back_to_payment:
397
+ back_to_resource_list:
398
+ back_to_rma_reason_list:
399
+ back_to_store: "스토어로 돌아가기"
400
+ back_to_users_list:
401
+ backorderable:
402
+ backorderable_default:
403
+ backordered:
404
+ backorders_allowed:
405
+ balance_due: "부족"
406
+ base_amount:
407
+ base_percent:
408
+ bill_address: "청구서 주소"
409
+ billing: "청구서"
410
+ billing_address: "청구서 주소"
411
+ both: "양 쪽 모두"
412
+ calculated_reimbursements:
413
+ calculator: "계산기"
414
+ calculator_settings_warning:
415
+ cancel: "취소"
416
+ canceled_at:
417
+ canceler:
418
+ cannot_create_customer_returns:
419
+ cannot_create_payment_without_payment_methods:
420
+ cannot_create_returns:
421
+ cannot_perform_operation: "요청한 명령을 실핼 할 수 없습니다"
422
+ cannot_set_shipping_method_without_address:
423
+ capture: "캡쳐"
424
+ capture_events:
425
+ card_code: "카드 코드"
426
+ card_number: "카드 번호"
427
+ card_type:
428
+ card_type_is: "카드 종료는 입니다"
429
+ cart: "장바구니"
430
+ cart_subtotal:
431
+ categories:
432
+ category:
433
+ charged:
434
+ check_for_spree_alerts:
435
+ checkout:
436
+ choose_a_customer:
437
+ choose_a_taxon_to_sort_products_for:
438
+ choose_currency:
439
+ choose_dashboard_locale:
440
+ choose_location:
441
+ city:
442
+ clear_cache:
443
+ clear_cache_ok:
444
+ clear_cache_warning:
445
+ click_and_drag_on_the_products_to_sort_them:
446
+ clone: "복사"
447
+ close:
448
+ close_all_adjustments:
449
+ code: "코드"
450
+ company:
451
+ complete: "완료"
452
+ configuration: "설정"
453
+ configurations: "설정"
454
+ confirm: "확인"
455
+ confirm_delete:
456
+ confirm_password: "비밀번호 확인"
457
+ continue: "계속"
458
+ continue_shopping: "계속 쇼핑"
459
+ cost_currency:
460
+ cost_price: "비용"
461
+ could_not_connect_to_jirafe:
462
+ could_not_create_customer_return:
463
+ could_not_create_stock_movement:
464
+ count_on_hand:
465
+ countries:
466
+ country: "국가"
467
+ country_based: "국가 기반"
468
+ country_name:
469
+ country_names:
470
+ CA:
471
+ FRA:
472
+ ITA:
473
+ US:
474
+ coupon: "쿠폰"
475
+ coupon_code: "쿠폰 코드"
476
+ coupon_code_already_applied:
477
+ coupon_code_applied:
478
+ coupon_code_better_exists:
479
+ coupon_code_expired:
480
+ coupon_code_max_usage:
481
+ coupon_code_not_eligible:
482
+ coupon_code_not_found:
483
+ coupon_code_unknown_error:
484
+ create: "생성"
485
+ create_a_new_account: "새 계정 생성"
486
+ create_new_order:
487
+ create_reimbursement:
488
+ created_at:
489
+ credit:
490
+ credit_card: "신용카드"
491
+ credit_cards:
492
+ credit_owed:
493
+ credits:
494
+ currency:
495
+ currency_decimal_mark:
496
+ currency_settings:
497
+ currency_symbol_position:
498
+ currency_thousands_separator:
499
+ current: "현재"
500
+ current_promotion_usage:
501
+ customer: "고객"
502
+ customer_details: "고객 정보"
503
+ customer_details_updated:
504
+ customer_return:
505
+ customer_returns:
506
+ customer_search: "고객 검색"
507
+ cut:
508
+ cvv_response:
509
+ dash:
510
+ jirafe:
511
+ app_id:
512
+ app_token:
513
+ currently_unavailable:
514
+ explanation:
515
+ header:
516
+ site_id:
517
+ token:
518
+ jirafe_settings_updated:
519
+ date:
520
+ date_completed:
521
+ date_picker:
522
+ first_day:
523
+ format:
524
+ js_format:
525
+ date_range: "날짜 범위"
526
+ default: "기본"
527
+ default_refund_amount:
528
+ default_tax:
529
+ default_tax_zone:
530
+ delete: "삭제"
531
+ deleted_variants_present:
532
+ delivery:
533
+ depth: "높이"
534
+ description: "설명"
535
+ destination:
536
+ destroy: "삭제"
537
+ details:
538
+ discount_amount: "할인액"
539
+ dismiss_banner:
540
+ display: "표시"
541
+ display_currency:
542
+ doesnt_track_inventory:
543
+ edit: "편집"
544
+ editing_resource:
545
+ editing_rma_reason:
546
+ editing_user: "사용자 편집"
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: "장바구니 비우기"
565
+ enable_mail_delivery:
566
+ end:
567
+ ending_in:
568
+ environment: "환경"
569
+ error: "에러"
570
+ errors:
571
+ messages:
572
+ could_not_create_taxon:
573
+ no_payment_methods_available:
574
+ no_shipping_methods_available:
575
+ errors_prohibited_this_record_from_being_saved:
576
+ one: "저장하는 중에 문제가 발생했습니다."
577
+ other: "저장하는 중에 문제가 %{count}개 발생했습니다."
578
+ event: "이벤트"
579
+ events:
580
+ spree:
581
+ cart:
582
+ add:
583
+ checkout:
584
+ coupon_code_added:
585
+ content:
586
+ visited:
587
+ order:
588
+ contents_changed:
589
+ page_view:
590
+ user:
591
+ signup:
592
+ exceptions:
593
+ count_on_hand_setter:
594
+ exchange_for:
595
+ excl:
596
+ existing_shipments:
597
+ expedited_exchanges_warning:
598
+ expiration: "유효 기간"
599
+ extension: "확장"
600
+ failed_payment_attempts:
601
+ filename: "파일이름"
602
+ fill_in_customer_info:
603
+ filter_results:
604
+ finalize:
605
+ finalized:
606
+ find_a_taxon:
607
+ first_item: "첫 아이템 비용"
608
+ first_name: "이름"
609
+ first_name_begins_with: "이름으로 시작"
610
+ flat_percent:
611
+ flat_rate_per_order:
612
+ flexible_rate:
613
+ forgot_password:
614
+ free_shipping: "무료 배송"
615
+ free_shipping_amount:
616
+ front_end:
617
+ gateway: "게이트웨이"
618
+ gateway_config_unavailable:
619
+ gateway_error: "게이트웨이 에러"
620
+ general:
621
+ general_settings: "일반 설정"
622
+ google_analytics: "구글 애날리스틱"
623
+ google_analytics_id: "애날리스틱 ID"
624
+ guest_checkout: "비회원 주문"
625
+ guest_user_account: "비회원으로 결제"
626
+ has_no_shipped_units:
627
+ height: "세로"
628
+ hide_cents:
629
+ home: Home
630
+ i18n:
631
+ available_locales:
632
+ language:
633
+ localization_settings:
634
+ this_file_language: "한국어 (KO)"
635
+ icon: "아이콘"
636
+ identifier:
637
+ image: "이미지"
638
+ images: "이미지"
639
+ implement_eligible_for_return:
640
+ implement_requires_manual_intervention:
641
+ inactive:
642
+ incl:
643
+ included_in_price:
644
+ included_price_validation:
645
+ incomplete:
646
+ info_number_of_skus_not_shown:
647
+ info_product_has_multiple_skus:
648
+ instructions_to_reset_password:
649
+ insufficient_stock:
650
+ insufficient_stock_lines_present:
651
+ intercept_email_address:
652
+ intercept_email_instructions:
653
+ internal_name:
654
+ invalid_credit_card:
655
+ invalid_exchange_variant:
656
+ invalid_payment_provider:
657
+ invalid_promotion_action:
658
+ invalid_promotion_rule:
659
+ inventory: "인벤토리"
660
+ inventory_adjustment: "인벤토리 정산"
661
+ inventory_error_flash_for_insufficient_quantity:
662
+ inventory_state:
663
+ is_not_available_to_shipment_address:
664
+ iso_name:
665
+ item: "아이템"
666
+ item_description: "아이템 설명"
667
+ item_total: "아이템 합계"
668
+ item_total_rule:
669
+ operators:
670
+ gt: "보다 큰"
671
+ gte: "보다 크거나 같은"
672
+ lt:
673
+ lte:
674
+ items_cannot_be_shipped:
675
+ items_in_rmas:
676
+ items_reimbursed:
677
+ items_to_be_reimbursed:
678
+ jirafe:
679
+ landing_page_rule:
680
+ path: Path
681
+ last_name: "성"
682
+ last_name_begins_with: "성으로 시작"
683
+ learn_more: Learn More
684
+ lifetime_stats:
685
+ line_item_adjustments:
686
+ list: "목록"
687
+ loading: "로딩"
688
+ locale_changed: "지역이 변경됨"
689
+ location:
690
+ lock:
691
+ log_entries:
692
+ logged_in_as:
693
+ logged_in_succesfully: "로그인 성공"
694
+ logged_out: "로그아웃 되었습니다."
695
+ login: "로그인"
696
+ login_as_existing:
697
+ login_failed:
698
+ login_name: "로그인"
699
+ logout: "로그아웃"
700
+ logs:
701
+ look_for_similar_items: "비슷한 상품들"
702
+ make_refund:
703
+ make_sure_the_above_reimbursement_amount_is_correct:
704
+ manage_promotion_categories:
705
+ manage_variants:
706
+ manual_intervention_required:
707
+ master_price: "기본 가격"
708
+ match_choices:
709
+ all:
710
+ none:
711
+ max_items: "최대 아이템"
712
+ member_since:
713
+ memo:
714
+ meta_description: "메타 설명"
715
+ meta_keywords: "메타 키워드"
716
+ meta_title:
717
+ metadata: "메타데이터"
718
+ minimal_amount: "최소량"
719
+ month:
720
+ more:
721
+ move_stock_between_locations:
722
+ my_account: "내 계정"
723
+ my_orders: "내 주문"
724
+ name: "이름"
725
+ name_on_card:
726
+ name_or_sku: "이름 또는 SKU"
727
+ new:
728
+ new_adjustment: "새 정산"
729
+ new_country:
730
+ new_customer: "새 고객"
731
+ new_customer_return:
732
+ new_image: "새 이미지"
733
+ new_option_type: "새 옵션 타입"
734
+ new_order: "새 주문"
735
+ new_order_completed:
736
+ new_payment: "새 결제"
737
+ new_payment_method: "새 결제 방법"
738
+ new_product: "새 상품"
739
+ new_promotion: "새 프로모션"
740
+ new_promotion_category:
741
+ new_property: "새 속성"
742
+ new_prototype: "새 견본"
743
+ new_refund:
744
+ new_refund_reason:
745
+ new_return_authorization:
746
+ new_rma_reason:
747
+ new_shipment_at_location:
748
+ new_shipping_category:
749
+ new_shipping_method:
750
+ new_state:
751
+ new_stock_location:
752
+ new_stock_movement:
753
+ new_stock_transfer:
754
+ new_tax_category: "새 세금 분류"
755
+ new_tax_rate: "새로운 세율"
756
+ new_taxon: "새 분류군"
757
+ new_taxonomy: "새 분류계"
758
+ new_tracker: "새 트랙커"
759
+ new_user: "새 사용자"
760
+ new_variant: "새 품종"
761
+ new_zone: "새 지역"
762
+ next: "다음"
763
+ no_actions_added:
764
+ no_payment_found:
765
+ no_pending_payments:
766
+ no_products_found: "찾는 상품이 없음"
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:
774
+ none: "없음"
775
+ none_selected:
776
+ normal_amount:
777
+ not:
778
+ not_available:
779
+ not_enough_stock:
780
+ not_found:
781
+ note:
782
+ notice_messages:
783
+ product_cloned:
784
+ product_deleted:
785
+ product_not_cloned:
786
+ product_not_deleted:
787
+ variant_deleted: "품종이 삭제됐습니다"
788
+ variant_not_deleted: "품종을 삭제할 수 없습니다"
789
+ num_orders:
790
+ on_hand: "재고"
791
+ open:
792
+ open_all_adjustments:
793
+ option_type: "옵션 타입"
794
+ option_type_placeholder:
795
+ option_types: "옵션 타입"
796
+ option_value: "옵션 값"
797
+ option_values: "옵션 값"
798
+ optional:
799
+ options: "옵션"
800
+ or: "또는"
801
+ or_over_price:
802
+ order: "주문"
803
+ order_adjustments:
804
+ order_already_updated:
805
+ order_approved:
806
+ order_canceled:
807
+ order_details: "주문 상세"
808
+ order_email_resent: "주문 확인 메일 재발송"
809
+ order_information:
810
+ order_mailer:
811
+ cancel_email:
812
+ dear_customer:
813
+ instructions:
814
+ order_summary_canceled:
815
+ subject: "주문 취소"
816
+ subtotal:
817
+ total:
818
+ confirm_email:
819
+ dear_customer:
820
+ instructions:
821
+ order_summary:
822
+ subject: "주문 확인"
823
+ subtotal:
824
+ thanks:
825
+ total:
826
+ order_not_found:
827
+ order_number:
828
+ order_populator:
829
+ out_of_stock:
830
+ please_enter_reasonable_quantity:
831
+ selected_quantity_not_available:
832
+ order_processed_successfully:
833
+ order_resumed:
834
+ order_state:
835
+ address: "주소"
836
+ awaiting_return:
837
+ canceled: "취소됨"
838
+ cart: "장바구니"
839
+ complete: "완료"
840
+ confirm: "확인"
841
+ considered_risky:
842
+ delivery:
843
+ payment: "지불"
844
+ resumed:
845
+ returned:
846
+ order_summary: "주문 요약"
847
+ order_sure_want_to:
848
+ order_total: "주문 합계"
849
+ order_updated: "주문이 수정됨"
850
+ orders: "주문"
851
+ other_items_in_other:
852
+ out_of_stock: "품절"
853
+ overview: Overiew
854
+ package_from:
855
+ pagination:
856
+ next_page:
857
+ previous_page:
858
+ truncate: "…"
859
+ password: "비밀번호"
860
+ paste:
861
+ path: "경로"
862
+ pay:
863
+ payment: "지불"
864
+ payment_could_not_be_created:
865
+ payment_identifier:
866
+ payment_information: "지불 정보"
867
+ payment_method: "결제 방법"
868
+ payment_method_not_supported:
869
+ payment_methods: "결제 방법"
870
+ payment_processing_failed: "결제 중에 문제가 발생했습니다. 잠시 후에 다시 해보시기 바랍니다."
871
+ payment_processor_choose_banner_text:
872
+ payment_processor_choose_link:
873
+ payment_state: "지불 상태"
874
+ payment_states:
875
+ balance_due: "부족"
876
+ checkout:
877
+ completed: "완료"
878
+ credit_owed:
879
+ failed:
880
+ paid: "지불"
881
+ pending: "보류"
882
+ processing:
883
+ void:
884
+ payment_updated:
885
+ payments: "지불"
886
+ pending:
887
+ percent:
888
+ percent_per_item:
889
+ permalink: "퍼마링크"
890
+ phone: "전화번호"
891
+ place_order:
892
+ please_define_payment_methods:
893
+ populate_get_error:
894
+ powered_by:
895
+ pre_tax_amount:
896
+ pre_tax_refund_amount:
897
+ pre_tax_total:
898
+ preferred_reimbursement_type:
899
+ presentation: "표시"
900
+ previous: "이전"
901
+ previous_state_missing:
902
+ price: "가격"
903
+ price_range:
904
+ price_sack:
905
+ process: "과정"
906
+ product: "상품"
907
+ product_details: "상품 상세"
908
+ product_has_no_description:
909
+ product_not_available_in_this_currency:
910
+ product_properties: "상품 속성"
911
+ product_rule:
912
+ choose_products: "상품 선택"
913
+ label:
914
+ match_all: "모두"
915
+ match_any: "최소 하나"
916
+ match_none:
917
+ product_source:
918
+ group: "상품군에서"
919
+ manual:
920
+ products: "상품"
921
+ promotion:
922
+ promotion_action:
923
+ promotion_action_types:
924
+ create_adjustment:
925
+ description:
926
+ name:
927
+ create_item_adjustments:
928
+ description:
929
+ name:
930
+ create_line_items:
931
+ description:
932
+ name:
933
+ free_shipping:
934
+ description:
935
+ name:
936
+ promotion_actions:
937
+ promotion_form:
938
+ match_policies:
939
+ all: "이 규칙에 모두 일치"
940
+ any: "이 규칙에 하나라도 일치"
941
+ promotion_rule: Promotion Rule
942
+ promotion_rule_types:
943
+ first_order:
944
+ description:
945
+ name: "첫 주문"
946
+ item_total:
947
+ description:
948
+ name:
949
+ landing_page:
950
+ description:
951
+ name:
952
+ one_use_per_user:
953
+ description:
954
+ name:
955
+ option_value:
956
+ description:
957
+ name:
958
+ product:
959
+ description:
960
+ name:
961
+ taxon:
962
+ description:
963
+ name:
964
+ user:
965
+ description:
966
+ name:
967
+ user_logged_in:
968
+ description:
969
+ name:
970
+ promotion_uses:
971
+ promotionable:
972
+ promotions:
973
+ propagate_all_variants:
974
+ properties: "속성"
975
+ property: "속성"
976
+ prototype: "견본"
977
+ prototypes: "견본"
978
+ provider: "제공자"
979
+ provider_settings_warning:
980
+ qty: "수량"
981
+ quantity:
982
+ quantity_returned:
983
+ quantity_shipped:
984
+ quick_search:
985
+ rate:
986
+ reason: "이유"
987
+ receive:
988
+ receive_stock:
989
+ received:
990
+ reception_status:
991
+ reference:
992
+ refund:
993
+ refund_amount_must_be_greater_than_zero:
994
+ refund_reasons:
995
+ refunded_amount:
996
+ refunds:
997
+ register:
998
+ registration: "등록"
999
+ reimburse:
1000
+ reimbursed:
1001
+ reimbursement:
1002
+ reimbursement_mailer:
1003
+ reimbursement_email:
1004
+ days_to_send:
1005
+ dear_customer:
1006
+ exchange_summary:
1007
+ for:
1008
+ instructions:
1009
+ refund_summary:
1010
+ subject:
1011
+ total_refunded:
1012
+ reimbursement_perform_failed:
1013
+ reimbursement_status:
1014
+ reimbursement_type:
1015
+ reimbursement_type_override:
1016
+ reimbursement_types:
1017
+ reimbursements:
1018
+ reject:
1019
+ rejected:
1020
+ remember_me: "이메일 저장"
1021
+ remove: "삭제"
1022
+ rename:
1023
+ report:
1024
+ reports: "리포트"
1025
+ resend: "재발송"
1026
+ reset_password: "비밀번호 재설정"
1027
+ response_code: "응답 코드"
1028
+ resume:
1029
+ resumed:
1030
+ return:
1031
+ return_authorization:
1032
+ return_authorization_reasons:
1033
+ return_authorization_updated:
1034
+ return_authorizations:
1035
+ return_item_inventory_unit_ineligible:
1036
+ return_item_inventory_unit_reimbursed:
1037
+ return_item_rma_ineligible:
1038
+ return_item_time_period_ineligible:
1039
+ return_items:
1040
+ return_items_cannot_be_associated_with_multiple_orders:
1041
+ return_number:
1042
+ return_quantity:
1043
+ returned:
1044
+ returns:
1045
+ review:
1046
+ risk:
1047
+ risk_analysis:
1048
+ risky:
1049
+ rma_credit:
1050
+ rma_number: "RMA 번호"
1051
+ rma_value: "RMA 값"
1052
+ roles:
1053
+ rules: "규칙"
1054
+ safe:
1055
+ sales_total:
1056
+ sales_total_description:
1057
+ sales_totals:
1058
+ save_and_continue: "저장하고 계속"
1059
+ save_my_address:
1060
+ say_no: false
1061
+ say_yes: true
1062
+ scope: "범위"
1063
+ search: "검색"
1064
+ search_results: "%{keywords}의 검색 결과"
1065
+ searching: "검색중"
1066
+ secure_connection_type:
1067
+ security_settings:
1068
+ select: "선택"
1069
+ select_a_return_authorization_reason:
1070
+ select_a_stock_location:
1071
+ select_from_prototype: "견본에서 선택"
1072
+ select_stock:
1073
+ send_copy_of_all_mails_to: "모든 메일 사본을 다음 주소로 보냄"
1074
+ send_mails_as:
1075
+ server: "서버"
1076
+ server_error:
1077
+ settings: "설정"
1078
+ ship:
1079
+ ship_address: "배송 주소"
1080
+ ship_total:
1081
+ shipment: "배송"
1082
+ shipment_adjustments:
1083
+ shipment_details:
1084
+ shipment_mailer:
1085
+ shipped_email:
1086
+ dear_customer:
1087
+ instructions:
1088
+ shipment_summary:
1089
+ subject:
1090
+ thanks:
1091
+ track_information:
1092
+ track_link:
1093
+ shipment_state: "배송 상태"
1094
+ shipment_states:
1095
+ backorder:
1096
+ canceled:
1097
+ partial:
1098
+ pending: "보류"
1099
+ ready: "대기"
1100
+ shipped:
1101
+ shipment_transfer_error:
1102
+ shipment_transfer_success:
1103
+ shipments: "배송"
1104
+ shipped: "배송됨"
1105
+ shipping: "배송료"
1106
+ shipping_address: "배송 주소"
1107
+ shipping_categories: "배송 분류"
1108
+ shipping_category: "배송 분류"
1109
+ shipping_flat_rate_per_item:
1110
+ shipping_flat_rate_per_order:
1111
+ shipping_flexible_rate:
1112
+ shipping_instructions:
1113
+ shipping_method:
1114
+ shipping_methods:
1115
+ shipping_price_sack:
1116
+ shipping_total:
1117
+ shop_by_taxonomy:
1118
+ shopping_cart: "장바구니"
1119
+ show: "보기"
1120
+ show_active:
1121
+ show_deleted: "삭제 된 상품까지 보기"
1122
+ show_only_complete_orders: "완료 된 주문만 보기"
1123
+ show_only_considered_risky:
1124
+ show_rate_in_label:
1125
+ sku:
1126
+ skus:
1127
+ slug:
1128
+ source:
1129
+ special_instructions:
1130
+ split:
1131
+ spree_gateway_error_flash_for_checkout:
1132
+ ssl:
1133
+ change_protocol:
1134
+ start: "시작"
1135
+ state:
1136
+ state_based:
1137
+ state_machine_states:
1138
+ accepted:
1139
+ address:
1140
+ authorized:
1141
+ awaiting:
1142
+ awaiting_return:
1143
+ backordered:
1144
+ canceled:
1145
+ cart:
1146
+ checkout:
1147
+ closed:
1148
+ complete:
1149
+ completed:
1150
+ confirm:
1151
+ delivery:
1152
+ errored:
1153
+ failed:
1154
+ given_to_customer:
1155
+ invalid:
1156
+ manual_intervention_required:
1157
+ on_hand:
1158
+ open:
1159
+ order:
1160
+ payment:
1161
+ pending:
1162
+ processing:
1163
+ ready:
1164
+ reimbursed:
1165
+ resumed:
1166
+ returned:
1167
+ shipped:
1168
+ void:
1169
+ states:
1170
+ states_required:
1171
+ status: "상태"
1172
+ stock:
1173
+ stock_location:
1174
+ stock_location_info:
1175
+ stock_locations:
1176
+ stock_locations_need_a_default_country:
1177
+ stock_management:
1178
+ stock_management_requires_a_stock_location:
1179
+ stock_movements:
1180
+ stock_movements_for_stock_location:
1181
+ stock_successfully_transferred:
1182
+ stock_transfer:
1183
+ stock_transfers:
1184
+ stop: "끝"
1185
+ store: "상점"
1186
+ street_address: Street 주소
1187
+ street_address_2: Street 주소 (cont'd)
1188
+ subtotal:
1189
+ subtract:
1190
+ success:
1191
+ successfully_created:
1192
+ successfully_refunded:
1193
+ successfully_removed:
1194
+ successfully_signed_up_for_analytics:
1195
+ successfully_updated:
1196
+ summary:
1197
+ tax: "세금"
1198
+ tax_categories: "세금 분류"
1199
+ tax_category: "세금 분류"
1200
+ tax_code:
1201
+ tax_included:
1202
+ tax_rate_amount_explanation:
1203
+ tax_rates: "세율"
1204
+ taxon: "분류군"
1205
+ taxon_edit: "분류군 편집"
1206
+ taxon_placeholder:
1207
+ taxon_rule:
1208
+ choose_taxons:
1209
+ label:
1210
+ match_all:
1211
+ match_any:
1212
+ taxonomies: "분류계"
1213
+ taxonomy: "분류군"
1214
+ taxonomy_edit:
1215
+ taxonomy_tree_error:
1216
+ taxonomy_tree_instruction:
1217
+ taxons: "종류"
1218
+ test: "테스트"
1219
+ test_mailer:
1220
+ test_email:
1221
+ greeting:
1222
+ message:
1223
+ subject:
1224
+ test_mode: "테스트 모드"
1225
+ thank_you_for_your_order:
1226
+ there_are_no_items_for_this_order:
1227
+ there_were_problems_with_the_following_fields: "다음 값들에 문제가 있습니다"
1228
+ this_order_has_already_received_a_refund:
1229
+ thumbnail: "미리보기"
1230
+ tiered_flat_rate:
1231
+ tiered_percent:
1232
+ tiers:
1233
+ time:
1234
+ to_add_variants_you_must_first_define: "품종을 추가하려면 먼저 정의해야 합니다"
1235
+ total: "합계"
1236
+ total_per_item:
1237
+ total_pre_tax_refund:
1238
+ total_price:
1239
+ total_sales:
1240
+ track_inventory:
1241
+ tracking:
1242
+ tracking_number:
1243
+ tracking_url:
1244
+ tracking_url_placeholder:
1245
+ transaction_id:
1246
+ transfer_from_location:
1247
+ transfer_stock:
1248
+ transfer_to_location:
1249
+ tree:
1250
+ type:
1251
+ type_to_search:
1252
+ unable_to_connect_to_gateway:
1253
+ unable_to_create_reimbursements:
1254
+ under_price:
1255
+ unlock:
1256
+ unrecognized_card_type:
1257
+ unshippable_items:
1258
+ update: "수정"
1259
+ updating:
1260
+ usage_limit:
1261
+ use_app_default:
1262
+ use_billing_address: "배송받으실 분이 주문자와 동일합니다."
1263
+ use_new_cc:
1264
+ use_s3:
1265
+ user: "사용자"
1266
+ user_rule:
1267
+ choose_users:
1268
+ users: "사용자"
1269
+ validation:
1270
+ cannot_be_less_than_shipped_units:
1271
+ cannot_destroy_line_item_as_inventory_units_have_shipped:
1272
+ exceeds_available_stock:
1273
+ is_too_large:
1274
+ must_be_int:
1275
+ must_be_non_negative:
1276
+ unpaid_amount_not_zero:
1277
+ value: "값"
1278
+ variant:
1279
+ variant_placeholder:
1280
+ variants: "품종"
1281
+ version: "버전"
1282
+ void:
1283
+ weight: "무게"
1284
+ what_is_a_cvv: "신용카드 코드(CVV)란?"
1285
+ what_is_this:
1286
+ width: "가로"
1287
+ year: "년"
1288
+ you_have_no_orders_yet:
1289
+ your_cart_is_empty: "장바구니가 비었습니다"
1290
+ your_order_is_empty_add_product:
1291
+ zip: "우편번호"
1292
+ zipcode: "우편번호"
1293
+ zone: "지역"
1294
+ zones: "지역"