dugway 1.0.14 → 1.2.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 (58) hide show
  1. checksums.yaml +4 -4
  2. data/.bundle/config +2 -0
  3. data/.github/workflows/main.yml +1 -1
  4. data/.gitignore +1 -0
  5. data/README.md +9 -0
  6. data/lib/dugway/application.rb +5 -3
  7. data/lib/dugway/assets/big_cartel_logo.svg +4 -0
  8. data/lib/dugway/cli/build.rb +18 -1
  9. data/lib/dugway/cli/server.rb +2 -2
  10. data/lib/dugway/cli/templates/source/settings.json +8 -0
  11. data/lib/dugway/cli/validate.rb +20 -2
  12. data/lib/dugway/controller.rb +5 -1
  13. data/lib/dugway/liquid/drops/account_drop.rb +4 -0
  14. data/lib/dugway/liquid/drops/features_drop.rb +144 -0
  15. data/lib/dugway/liquid/drops/product_drop.rb +8 -0
  16. data/lib/dugway/liquid/drops/products_drop.rb +1 -1
  17. data/lib/dugway/liquid/drops/related_products_drop.rb +88 -0
  18. data/lib/dugway/liquid/drops/theme_drop.rb +23 -0
  19. data/lib/dugway/liquid/drops/translations_drop.rb +122 -0
  20. data/lib/dugway/liquifier.rb +44 -8
  21. data/lib/dugway/store.rb +7 -2
  22. data/lib/dugway/theme.rb +169 -3
  23. data/lib/dugway/version.rb +1 -1
  24. data/lib/dugway.rb +31 -1
  25. data/locales/storefront.de.yml +79 -0
  26. data/locales/storefront.en-CA.yml +79 -0
  27. data/locales/storefront.en-GB.yml +79 -0
  28. data/locales/storefront.en-US.yml +79 -0
  29. data/locales/storefront.es-ES.yml +79 -0
  30. data/locales/storefront.es-MX.yml +79 -0
  31. data/locales/storefront.fr-CA.yml +79 -0
  32. data/locales/storefront.fr-FR.yml +79 -0
  33. data/locales/storefront.id.yml +79 -0
  34. data/locales/storefront.it.yml +79 -0
  35. data/locales/storefront.ja.yml +79 -0
  36. data/locales/storefront.ko.yml +79 -0
  37. data/locales/storefront.nl.yml +79 -0
  38. data/locales/storefront.pl.yml +79 -0
  39. data/locales/storefront.pt-BR.yml +79 -0
  40. data/locales/storefront.pt-PT.yml +79 -0
  41. data/locales/storefront.ro.yml +79 -0
  42. data/locales/storefront.sv.yml +79 -0
  43. data/locales/storefront.tr.yml +79 -0
  44. data/locales/storefront.zh-CN.yml +79 -0
  45. data/locales/storefront.zh-TW.yml +79 -0
  46. data/log/dugway.log +1 -0
  47. data/spec/features/page_rendering_spec.rb +4 -4
  48. data/spec/fixtures/theme/layout.html +2 -0
  49. data/spec/fixtures/theme/settings.json +6 -0
  50. data/spec/spec_helper.rb +4 -0
  51. data/spec/units/dugway/liquid/drops/features_drop_spec.rb +182 -0
  52. data/spec/units/dugway/liquid/drops/product_drop_spec.rb +36 -0
  53. data/spec/units/dugway/liquid/drops/related_products_drop_spec.rb +80 -0
  54. data/spec/units/dugway/liquid/drops/theme_drop_spec.rb +45 -0
  55. data/spec/units/dugway/liquid/drops/translations_drop_spec.rb +292 -0
  56. data/spec/units/dugway/store_spec.rb +37 -0
  57. data/spec/units/dugway/theme_spec.rb +456 -0
  58. metadata +35 -2
@@ -0,0 +1,79 @@
1
+ es-MX:
2
+ storefront:
3
+ navigation:
4
+ all: "Todo"
5
+ all_products: "Todos los productos"
6
+ back_to_site: "Volver al sitio"
7
+ cart: "Carrito"
8
+ categories: "Categorías"
9
+ contact: "Contáctanos"
10
+ home: "Inicio"
11
+ item: "artículo"
12
+ items: "artículos"
13
+ more: "Más"
14
+ next: "Siguiente"
15
+ newest: "Lo más nuevo"
16
+ pages: "Páginas"
17
+ previous: "Anterior"
18
+ products: "Productos"
19
+ quick_view: "Vista rápida"
20
+ search: "Buscar"
21
+ shop: "Tienda"
22
+ social: "Síguenos"
23
+ subscribe: "Suscribirse"
24
+ top_selling: "Más vendidos"
25
+ view: "Ver"
26
+ view_all: "Ver todo"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: Ordenar por
29
+ sort_by_featured: Destacados
30
+ sort_by_on_sale: En rebaja
31
+ sort_by_top_selling: Más vendidos
32
+ sort_by_alphabetically_a_to_z: Alfabético (A a Z)
33
+ sort_by_alphabetically_z_to_a: Alfabético (Z a A)
34
+ sort_by_date_new_to_old: Fecha (más reciente)
35
+ sort_by_date_old_to_new: Fecha (más antiguo)
36
+ sort_by_price_low_to_high: Precio (menor a mayor)
37
+ sort_by_price_high_to_low: Precio (mayor a menor)
38
+ home:
39
+ all_products: "Todos los productos"
40
+ featured: "Destacado"
41
+ featured_categories: "Categorías destacadas"
42
+ featured_products: "Productos destacados"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "Agregar"
46
+ added: "¡Agregado!" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "Agregando..." # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "¡Quedan pocos!"
49
+ coming_soon: "Próximamente"
50
+ description: "Descripción"
51
+ in_stock: "disponible"
52
+ inventory: "Inventario"
53
+ low_inventory: "Cantidades limitadas"
54
+ no_products: "No se encuentran productos"
55
+ on_sale: "En oferta"
56
+ related_products: "Te podría gustar"
57
+ reset: "Restablecer"
58
+ search_results: "Resultados de búsqueda"
59
+ select: "Selecciona"
60
+ select_variant: "Seleccionar opción"
61
+ sold_out: "Agotado"
62
+ cart:
63
+ checkout: "Pagar"
64
+ continue_shopping: "Continuar comprando"
65
+ empty_cart: "Tu carrito está vacío"
66
+ quantity_abbreviated: "Cant."
67
+ quantity: "Cantidad"
68
+ remove: "Eliminar"
69
+ share_this_cart: "Compartir este carrito"
70
+ share_this_cart_link_copy_success: "¡Enlace copiado!"
71
+ subtotal: "Subtotal"
72
+ view_cart: "Ver carrito"
73
+ contact:
74
+ email: "Correo electrónico"
75
+ form_success: "¡Gracias! Tu mensaje ha sido enviado y te responderemos pronto."
76
+ message: "Mensaje"
77
+ name: "Nombre"
78
+ send_button: "Enviar mensaje"
79
+ subject: "Asunto"
@@ -0,0 +1,79 @@
1
+ fr-CA:
2
+ storefront:
3
+ navigation:
4
+ all: "Tous"
5
+ all_products: "Tous les produits"
6
+ back_to_site: "Retour au site"
7
+ cart: "Panier d'achat"
8
+ categories: "Catégories"
9
+ contact: "Contact"
10
+ home: "Accueil"
11
+ item: "article"
12
+ items: "articles"
13
+ more: "Plus"
14
+ next: "Suivant"
15
+ newest: "Plus récents"
16
+ pages: "Pages"
17
+ previous: "Précédent"
18
+ products: "Produits"
19
+ quick_view: "Aperçu rapide"
20
+ search: "Rechercher"
21
+ shop: "Boutique"
22
+ social: "Suivez-nous"
23
+ subscribe: "S’abonner"
24
+ top_selling: "Meilleures ventes"
25
+ view: "Voir"
26
+ view_all: "Voir tout"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: Trier par
29
+ sort_by_featured: En vedette
30
+ sort_by_on_sale: En solde
31
+ sort_by_top_selling: Meilleures ventes
32
+ sort_by_alphabetically_a_to_z: Alphabétique (A à Z)
33
+ sort_by_alphabetically_z_to_a: Alphabétique (Z à A)
34
+ sort_by_date_new_to_old: Date (récent à ancien)
35
+ sort_by_date_old_to_new: Date (ancien à récent)
36
+ sort_by_price_low_to_high: Prix (bas à élevé)
37
+ sort_by_price_high_to_low: Prix (élevé à bas)
38
+ home:
39
+ all_products: "Tous les produits"
40
+ featured: "En vedette"
41
+ featured_categories: "Catégories en vedette"
42
+ featured_products: "Produits en vedette"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "Ajouter au panier"
46
+ added: "Ajouté" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "Ajout..." # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "Presque épuisé!"
49
+ coming_soon: "Bientôt disponible"
50
+ description: "Description"
51
+ in_stock: "en inventaire"
52
+ inventory: "Inventaire"
53
+ low_inventory: "Stock limité"
54
+ no_products: "Aucun produit trouvé"
55
+ on_sale: "En rabais"
56
+ related_products: "Vous aimerez aussi"
57
+ reset: "Réinitialiser"
58
+ search_results: "Résultats de recherche"
59
+ select: "Sélectionner"
60
+ select_variant: "Choisir une option"
61
+ sold_out: "Épuisé"
62
+ cart:
63
+ checkout: "Commander"
64
+ continue_shopping: "Continuer à magasiner"
65
+ empty_cart: "Votre panier est vide"
66
+ quantity_abbreviated: "Qté"
67
+ quantity: "Quantité"
68
+ remove: "Retirer"
69
+ share_this_cart: "Partager ce panier"
70
+ share_this_cart_link_copy_success: "Lien copié !"
71
+ subtotal: "Sous-total"
72
+ view_cart: "Voir le panier"
73
+ contact:
74
+ email: "Courriel"
75
+ form_success: "Merci ! Votre message a été envoyé et nous vous répondrons bientôt."
76
+ message: "Message"
77
+ name: "Nom"
78
+ send_button: "Envoyer le message"
79
+ subject: "Sujet"
@@ -0,0 +1,79 @@
1
+ fr-FR:
2
+ storefront:
3
+ navigation:
4
+ all: "Tous"
5
+ all_products: "Tous les produits"
6
+ back_to_site: "Retour au site"
7
+ cart: "Panier"
8
+ categories: "Catégories"
9
+ contact: "Contact"
10
+ home: "Accueil"
11
+ item: "article"
12
+ items: "articles"
13
+ more: "Plus"
14
+ next: "Suivant"
15
+ newest: "Nouveautés"
16
+ pages: "Pages"
17
+ previous: "Précédent"
18
+ products: "Produits"
19
+ quick_view: "Aperçu rapide"
20
+ search: "Rechercher"
21
+ shop: "Boutique"
22
+ social: "Suivez-nous"
23
+ subscribe: "S’abonner"
24
+ top_selling: "Meilleures ventes"
25
+ view: "Voir"
26
+ view_all: "Voir tout"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: Trier par
29
+ sort_by_featured: En vedette
30
+ sort_by_on_sale: En promotion
31
+ sort_by_top_selling: Meilleures ventes
32
+ sort_by_alphabetically_a_to_z: Alphabétique (A à Z)
33
+ sort_by_alphabetically_z_to_a: Alphabétique (Z à A)
34
+ sort_by_date_new_to_old: Date (récent à ancien)
35
+ sort_by_date_old_to_new: Date (ancien à récent)
36
+ sort_by_price_low_to_high: Prix (croissant)
37
+ sort_by_price_high_to_low: Prix (décroissant)
38
+ home:
39
+ all_products: "Tous les produits"
40
+ featured: "En vedette"
41
+ featured_categories: "Catégories en vedette"
42
+ featured_products: "Produits en vedette"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "Ajouter au panier"
46
+ added: "Ajouté" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "Ajout..." # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "Plus que quelques-uns!"
49
+ coming_soon: "Bientôt disponible"
50
+ description: "Description"
51
+ in_stock: "en stock"
52
+ inventory: "Stock"
53
+ low_inventory: "Quantités limitées disponibles"
54
+ no_products: "Aucun produit trouvé"
55
+ on_sale: "En solde"
56
+ related_products: "Vous aimerez aussi"
57
+ reset: "Réinitialiser"
58
+ search_results: "Résultats de recherche"
59
+ select: "Sélectionner"
60
+ select_variant: "Choisir une option"
61
+ sold_out: "Épuisé"
62
+ cart:
63
+ checkout: "Commander"
64
+ continue_shopping: "Continuer les achats"
65
+ empty_cart: "Votre panier est vide"
66
+ quantity_abbreviated: "Qté"
67
+ quantity: "Quantité"
68
+ remove: "Retirer"
69
+ share_this_cart: "Partager ce panier"
70
+ share_this_cart_link_copy_success: "Lien copié !"
71
+ subtotal: "Sous-total"
72
+ view_cart: "Voir le panier"
73
+ contact:
74
+ email: "E-mail"
75
+ form_success: "Merci ! Votre message a été envoyé et nous vous répondrons bientôt."
76
+ message: "Message"
77
+ name: "Nom"
78
+ send_button: "Envoyer le message"
79
+ subject: "Sujet"
@@ -0,0 +1,79 @@
1
+ id:
2
+ storefront:
3
+ navigation:
4
+ all: "Semua"
5
+ all_products: "Semua produk"
6
+ back_to_site: "Kembali ke situs"
7
+ cart: "Keranjang"
8
+ categories: "Kategori"
9
+ contact: "Kontak"
10
+ home: "Beranda"
11
+ item: "barang"
12
+ items: "barang"
13
+ more: "Lainnya"
14
+ next: "Selanjutnya"
15
+ newest: "Terbaru"
16
+ pages: "Halaman"
17
+ previous: "Sebelumnya"
18
+ products: "Produk"
19
+ quick_view: "Lihat cepat"
20
+ search: "Cari"
21
+ shop: "Toko"
22
+ social: "Ikuti kami"
23
+ subscribe: "Berlangganan"
24
+ top_selling: "Terlaris"
25
+ view: "Lihat"
26
+ view_all: "Lihat semua"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: Urutkan berdasarkan
29
+ sort_by_featured: Unggulan
30
+ sort_by_on_sale: Sedang Diskon
31
+ sort_by_top_selling: Terlaris
32
+ sort_by_alphabetically_a_to_z: Alfabetis (A ke Z)
33
+ sort_by_alphabetically_z_to_a: Alfabetis (Z ke A)
34
+ sort_by_date_new_to_old: Tanggal (Terbaru ke Terlama)
35
+ sort_by_date_old_to_new: Tanggal (Terlama ke Terbaru)
36
+ sort_by_price_low_to_high: Harga (Rendah ke Tinggi)
37
+ sort_by_price_high_to_low: Harga (Tinggi ke Rendah)
38
+ home:
39
+ all_products: "Semua produk"
40
+ featured: "Unggulan"
41
+ featured_categories: "Kategori unggulan"
42
+ featured_products: "Produk unggulan"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "Tambahkan ke keranjang"
46
+ added: "Ditambah" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "Menambah..." # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "Hampir habis!"
49
+ coming_soon: "Segera hadir"
50
+ description: "Deskripsi"
51
+ in_stock: "tersedia"
52
+ inventory: "Stok Barang"
53
+ low_inventory: "Stok terbatas"
54
+ no_products: "Tidak ada produk ditemukan"
55
+ on_sale: "Diskon"
56
+ related_products: "Mungkin Anda suka"
57
+ reset: "Atur ulang"
58
+ search_results: "Hasil pencarian"
59
+ select: "Pilih"
60
+ select_variant: "Pilih varian"
61
+ sold_out: "Habis terjual"
62
+ cart:
63
+ checkout: "Pembayaran"
64
+ continue_shopping: "Lanjutkan belanja"
65
+ empty_cart: "Keranjang Anda kosong"
66
+ quantity_abbreviated: "Jml"
67
+ quantity: "Jumlah"
68
+ remove: "Hapus"
69
+ share_this_cart: "Bagikan keranjang ini"
70
+ share_this_cart_link_copy_success: "Tautan disalin!"
71
+ subtotal: "Subtotal"
72
+ view_cart: "Lihat keranjang"
73
+ contact:
74
+ email: "Email"
75
+ form_success: "Terima kasih! Pesan Anda telah dikirim dan kami akan segera menghubungi Anda."
76
+ message: "Pesan"
77
+ name: "Nama"
78
+ send_button: "Kirim pesan"
79
+ subject: "Subjek"
@@ -0,0 +1,79 @@
1
+ it:
2
+ storefront:
3
+ navigation:
4
+ all: "Tutti"
5
+ all_products: "Tutti i prodotti"
6
+ back_to_site: "Torna al sito"
7
+ cart: "Carrello"
8
+ categories: "Categorie"
9
+ contact: "Contattaci"
10
+ home: "Home"
11
+ item: "articolo"
12
+ items: "articoli"
13
+ more: "Altro"
14
+ next: "Successivo"
15
+ newest: "Novità"
16
+ pages: "Pagine"
17
+ previous: "Precedente"
18
+ products: "Prodotti"
19
+ quick_view: "Anteprima"
20
+ search: "Cerca"
21
+ shop: "Negozio"
22
+ social: "Seguici"
23
+ subscribe: "Abbonati"
24
+ top_selling: "Più venduti"
25
+ view: "Vedi"
26
+ view_all: "Vedi tutto"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: Ordina per
29
+ sort_by_featured: In evidenza
30
+ sort_by_on_sale: In offerta
31
+ sort_by_top_selling: Più venduti
32
+ sort_by_alphabetically_a_to_z: Alfabetico (A-Z)
33
+ sort_by_alphabetically_z_to_a: Alfabetico (Z-A)
34
+ sort_by_date_new_to_old: Data (dal più recente)
35
+ sort_by_date_old_to_new: Data (dal più vecchio)
36
+ sort_by_price_low_to_high: Prezzo (dal più basso)
37
+ sort_by_price_high_to_low: Prezzo (dal più alto)
38
+ home:
39
+ all_products: "Tutti i prodotti"
40
+ featured: "In evidenza"
41
+ featured_categories: "Categorie in evidenza"
42
+ featured_products: "Prodotti in evidenza"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "Aggiungi al carrello"
46
+ added: "Aggiunto!" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "Aggiunta..." # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "Ne restano pochi!"
49
+ coming_soon: "Prossimamente"
50
+ description: "Descrizione"
51
+ in_stock: "disponibile"
52
+ inventory: "Inventario"
53
+ low_inventory: "Quantità limitate"
54
+ no_products: "Nessun prodotto trovato"
55
+ on_sale: "In saldo"
56
+ related_products: "Ti potrebbe piacere"
57
+ reset: "Reimposta"
58
+ search_results: "Risultati di ricerca"
59
+ select: "Seleziona"
60
+ select_variant: "Seleziona opzione"
61
+ sold_out: "Esaurito"
62
+ cart:
63
+ checkout: "Cassa"
64
+ continue_shopping: "Continua lo shopping"
65
+ empty_cart: "Il tuo carrello è vuoto"
66
+ quantity_abbreviated: "Qtà"
67
+ quantity: "Quantità"
68
+ remove: "Rimuovi"
69
+ share_this_cart: "Condividi questo carrello"
70
+ share_this_cart_link_copy_success: "Link copiato!"
71
+ subtotal: "Subtotale"
72
+ view_cart: "Vedi carrello"
73
+ contact:
74
+ email: "Email"
75
+ form_success: "Grazie! Il tuo messaggio è stato inviato e ti risponderemo presto."
76
+ message: "Messaggio"
77
+ name: "Nome"
78
+ send_button: "Invia messaggio"
79
+ subject: "Oggetto"
@@ -0,0 +1,79 @@
1
+ ja:
2
+ storefront:
3
+ navigation:
4
+ all: "全ての商品"
5
+ all_products: "全ての商品"
6
+ back_to_site: "サイトに戻る"
7
+ cart: "カート"
8
+ categories: "カテゴリー"
9
+ contact: "お問い合わせ"
10
+ home: "ホーム"
11
+ item: "個"
12
+ items: "個"
13
+ more: "さらに表示"
14
+ next: "次へ"
15
+ newest: "新着"
16
+ pages: "ページ"
17
+ previous: "前へ"
18
+ products: "商品"
19
+ quick_view: "クイックビュー"
20
+ search: "検索"
21
+ shop: "メニュー"
22
+ social: "SNS"
23
+ subscribe: "定期便"
24
+ top_selling: "人気"
25
+ view: "表示"
26
+ view_all: "すべて表示"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: 並び替え
29
+ sort_by_featured: おすすめ
30
+ sort_by_on_sale: セール中
31
+ sort_by_top_selling: 人気商品
32
+ sort_by_alphabetically_a_to_z: アルファベット順 (A-Z)
33
+ sort_by_alphabetically_z_to_a: アルファベット順 (Z-A)
34
+ sort_by_date_new_to_old: 追加日 (新しい順)
35
+ sort_by_date_old_to_new: 追加日 (古い順)
36
+ sort_by_price_low_to_high: 価格 (安い順)
37
+ sort_by_price_high_to_low: 価格 (高い順)
38
+ home:
39
+ all_products: "全ての商品"
40
+ featured: "おすすめ"
41
+ featured_categories: "おすすめのカテゴリー"
42
+ featured_products: "おすすめの商品"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "カートに追加"
46
+ added: "追加完了" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "追加中" # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "残りわずか!"
49
+ coming_soon: "近日公開"
50
+ description: "商品説明"
51
+ in_stock: "点在庫あり"
52
+ inventory: "在庫"
53
+ low_inventory: "在庫限り"
54
+ no_products: "商品が見つかりません"
55
+ on_sale: "セール"
56
+ related_products: "関連商品"
57
+ reset: "リセット"
58
+ search_results: "検索結果"
59
+ select: "選択"
60
+ select_variant: "詳細を選択"
61
+ sold_out: "売り切れ"
62
+ cart:
63
+ checkout: "レジに進む"
64
+ continue_shopping: "買い物を続ける"
65
+ empty_cart: "カートに商品が入っていません"
66
+ quantity_abbreviated: "数量"
67
+ quantity: "数量"
68
+ remove: "削除"
69
+ share_this_cart: "カートをシェアする"
70
+ share_this_cart_link_copy_success: "リンクをコピーしました!"
71
+ subtotal: "小計"
72
+ view_cart: "カートを見る"
73
+ contact:
74
+ email: "メールアドレス"
75
+ form_success: "お問い合わせ、ありがとうございます!"
76
+ message: "メッセージ"
77
+ name: "お名前"
78
+ send_button: "送信する"
79
+ subject: "件名"
@@ -0,0 +1,79 @@
1
+ ko:
2
+ storefront:
3
+ navigation:
4
+ all: "전체 보기"
5
+ all_products: "전체 보기"
6
+ back_to_site: "사이트로 돌아가기"
7
+ cart: "장바구니"
8
+ categories: "카테고리"
9
+ contact: "문의하기"
10
+ home: "홈"
11
+ item: "개"
12
+ items: "개"
13
+ more: "더보기"
14
+ next: "다음"
15
+ newest: "최신"
16
+ pages: "페이지"
17
+ previous: "이전"
18
+ products: "제품"
19
+ quick_view: "빠른 보기"
20
+ search: "검색"
21
+ shop: "메뉴"
22
+ social: "SNS"
23
+ subscribe: "정기구독"
24
+ top_selling: "인기 상품"
25
+ view: "보기"
26
+ view_all: "모두 보기"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: 정렬기준
29
+ sort_by_featured: 추천상품
30
+ sort_by_on_sale: 할인상품
31
+ sort_by_top_selling: 인기상품
32
+ sort_by_alphabetically_a_to_z: 알파벳순 (A-Z)
33
+ sort_by_alphabetically_z_to_a: 알파벳순 (Z-A)
34
+ sort_by_date_new_to_old: 등록일순 (최신순)
35
+ sort_by_date_old_to_new: 등록일순 (오래된순)
36
+ sort_by_price_low_to_high: 가격순 (낮은순)
37
+ sort_by_price_high_to_low: 가격순 (높은순)
38
+ home:
39
+ all_products: "모든 제품"
40
+ featured: "추천상품"
41
+ featured_categories: "추천 카테고리"
42
+ featured_products: "추천상품"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "장바구니에 추가"
46
+ added: "추가됨" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "추가 중" # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "한정수량"
49
+ coming_soon: "준비중"
50
+ description: "상품 설명"
51
+ in_stock: "개 남음"
52
+ inventory: "재고"
53
+ low_inventory: "재고 한정"
54
+ no_products: "제품을 찾을 수 없습니다"
55
+ on_sale: "할인중"
56
+ related_products: "관련 제품"
57
+ reset: "초기화"
58
+ search_results: "검색 결과"
59
+ select: "선택"
60
+ select_variant: "옵션 선택"
61
+ sold_out: "품절"
62
+ cart:
63
+ checkout: "결제하기"
64
+ continue_shopping: "계속 쇼핑하기"
65
+ empty_cart: "장바구니가 비어 있습니다"
66
+ quantity_abbreviated: "수량"
67
+ quantity: "수량"
68
+ remove: "삭제"
69
+ share_this_cart: "장바구니 공유"
70
+ share_this_cart_link_copy_success: "링크가 복사되었습니다!"
71
+ subtotal: "소계"
72
+ view_cart: "장바구니 보기"
73
+ contact:
74
+ email: "이메일"
75
+ form_success: "문의해 주셔서 감사합니다. 곧 답변 드리겠습니다."
76
+ message: "메시지"
77
+ name: "이름"
78
+ send_button: "보내기"
79
+ subject: "제목"
@@ -0,0 +1,79 @@
1
+ nl:
2
+ storefront:
3
+ navigation:
4
+ all: "Alle"
5
+ all_products: "Alle producten"
6
+ back_to_site: "Terug naar site"
7
+ cart: "Winkelwagen"
8
+ categories: "Categorieën"
9
+ contact: "Contact"
10
+ home: "Home"
11
+ item: "artikel"
12
+ items: "artikelen"
13
+ more: "Meer"
14
+ next: "Volgende"
15
+ newest: "Nieuwste"
16
+ pages: "Pagina's"
17
+ previous: "Vorige"
18
+ products: "Producten"
19
+ quick_view: "Snel bekijken"
20
+ search: "Zoeken"
21
+ shop: "Winkel"
22
+ social: "Volg ons"
23
+ subscribe: "Abonneren"
24
+ top_selling: "Bestverkocht"
25
+ view: "Bekijken"
26
+ view_all: "Alles bekijken"
27
+ # "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
28
+ sort_by: Sorteren op
29
+ sort_by_featured: Uitgelicht
30
+ sort_by_on_sale: In de aanbieding
31
+ sort_by_top_selling: Populair
32
+ sort_by_alphabetically_a_to_z: Alfabetisch (A tot Z)
33
+ sort_by_alphabetically_z_to_a: Alfabetisch (Z tot A)
34
+ sort_by_date_new_to_old: Datum (nieuw naar oud)
35
+ sort_by_date_old_to_new: Datum (oud naar nieuw)
36
+ sort_by_price_low_to_high: Prijs (laag naar hoog)
37
+ sort_by_price_high_to_low: Prijs (hoog naar laag)
38
+ home:
39
+ all_products: "Alle producten"
40
+ featured: "Uitgelicht"
41
+ featured_categories: "Uitgelichte categorieën"
42
+ featured_products: "Uitgelichte producten"
43
+ featured_video: ""
44
+ products:
45
+ add_to_cart: "In winkelwagen"
46
+ added: "Toegevoegd!" # Used in few themes, intentionally not exposed in theme settings
47
+ adding: "Toevoegen..." # Used in few themes, intentionally not exposed in theme settings
48
+ almost_sold_out: "Nog maar enkele over!"
49
+ coming_soon: "Binnenkort beschikbaar"
50
+ description: "Beschrijving"
51
+ in_stock: "op voorraad"
52
+ inventory: "Voorraad"
53
+ low_inventory: "Beperkte voorraad"
54
+ no_products: "Geen producten gevonden"
55
+ on_sale: "In de aanbieding"
56
+ related_products: "Ook interessant"
57
+ reset: "Resetten"
58
+ search_results: "Zoekresultaten"
59
+ select: "Selecteren"
60
+ select_variant: "Kies optie"
61
+ sold_out: "Uitverkocht"
62
+ cart:
63
+ checkout: "Afrekenen"
64
+ continue_shopping: "Verder winkelen"
65
+ empty_cart: "Je winkelwagen is leeg"
66
+ quantity_abbreviated: "Aant."
67
+ quantity: "Aantal"
68
+ remove: "Verwijderen"
69
+ share_this_cart: "Deze winkelwagen delen"
70
+ share_this_cart_link_copy_success: "Link gekopieerd!"
71
+ subtotal: "Subtotaal"
72
+ view_cart: "Winkelwagen bekijken"
73
+ contact:
74
+ email: "E-mail"
75
+ form_success: "Bedankt! Je bericht is verzonden en we nemen binnenkort contact met je op."
76
+ message: "Bericht"
77
+ name: "Naam"
78
+ send_button: "Bericht versturen"
79
+ subject: "Onderwerp"