dugway 1.1.0 → 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.
- checksums.yaml +4 -4
- data/.bundle/config +2 -0
- data/.gitignore +1 -0
- data/lib/dugway/application.rb +5 -3
- data/lib/dugway/assets/big_cartel_logo.svg +4 -0
- data/lib/dugway/cli/build.rb +7 -1
- data/lib/dugway/cli/server.rb +2 -2
- data/lib/dugway/cli/templates/source/settings.json +8 -0
- data/lib/dugway/cli/validate.rb +9 -2
- data/lib/dugway/controller.rb +5 -1
- data/lib/dugway/liquid/drops/account_drop.rb +4 -0
- data/lib/dugway/liquid/drops/features_drop.rb +144 -0
- data/lib/dugway/liquid/drops/theme_drop.rb +23 -0
- data/lib/dugway/liquid/drops/translations_drop.rb +122 -0
- data/lib/dugway/liquifier.rb +44 -8
- data/lib/dugway/store.rb +7 -2
- data/lib/dugway/theme.rb +107 -10
- data/lib/dugway/version.rb +1 -1
- data/lib/dugway.rb +31 -1
- data/locales/storefront.de.yml +79 -0
- data/locales/storefront.en-CA.yml +79 -0
- data/locales/storefront.en-GB.yml +79 -0
- data/locales/storefront.en-US.yml +79 -0
- data/locales/storefront.es-ES.yml +79 -0
- data/locales/storefront.es-MX.yml +79 -0
- data/locales/storefront.fr-CA.yml +79 -0
- data/locales/storefront.fr-FR.yml +79 -0
- data/locales/storefront.id.yml +79 -0
- data/locales/storefront.it.yml +79 -0
- data/locales/storefront.ja.yml +79 -0
- data/locales/storefront.ko.yml +79 -0
- data/locales/storefront.nl.yml +79 -0
- data/locales/storefront.pl.yml +79 -0
- data/locales/storefront.pt-BR.yml +79 -0
- data/locales/storefront.pt-PT.yml +79 -0
- data/locales/storefront.ro.yml +79 -0
- data/locales/storefront.sv.yml +79 -0
- data/locales/storefront.tr.yml +79 -0
- data/locales/storefront.zh-CN.yml +79 -0
- data/locales/storefront.zh-TW.yml +79 -0
- data/log/dugway.log +1 -0
- data/spec/features/page_rendering_spec.rb +4 -4
- data/spec/fixtures/theme/layout.html +2 -0
- data/spec/fixtures/theme/settings.json +6 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/units/dugway/liquid/drops/features_drop_spec.rb +182 -0
- data/spec/units/dugway/liquid/drops/theme_drop_spec.rb +45 -0
- data/spec/units/dugway/liquid/drops/translations_drop_spec.rb +292 -0
- data/spec/units/dugway/store_spec.rb +37 -0
- data/spec/units/dugway/theme_spec.rb +297 -1
- metadata +32 -2
@@ -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"
|
@@ -0,0 +1,79 @@
|
|
1
|
+
pl:
|
2
|
+
storefront:
|
3
|
+
navigation:
|
4
|
+
all: "Wszystkie"
|
5
|
+
all_products: "Wszystkie produkty"
|
6
|
+
back_to_site: "Powrót do strony"
|
7
|
+
cart: "Koszyk"
|
8
|
+
categories: "Kategorie"
|
9
|
+
contact: "Kontakt"
|
10
|
+
home: "Strona główna"
|
11
|
+
item: "produkt"
|
12
|
+
items: "przedmioty"
|
13
|
+
more: "Więcej"
|
14
|
+
next: "Następny"
|
15
|
+
newest: "Najnowsze"
|
16
|
+
pages: "Strony"
|
17
|
+
previous: "Poprzedni"
|
18
|
+
products: "Produkty"
|
19
|
+
quick_view: "Szybki podgląd"
|
20
|
+
search: "Szukaj"
|
21
|
+
shop: "Sklep"
|
22
|
+
social: "Obserwuj nas"
|
23
|
+
subscribe: "Subskrybuj"
|
24
|
+
top_selling: "Najlepiej sprzedające się"
|
25
|
+
view: "Zobacz"
|
26
|
+
view_all: "Zobacz wszystko"
|
27
|
+
# "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
|
28
|
+
sort_by: Sortuj według
|
29
|
+
sort_by_featured: Polecane
|
30
|
+
sort_by_on_sale: W promocji
|
31
|
+
sort_by_top_selling: Najlepiej sprzedające się
|
32
|
+
sort_by_alphabetically_a_to_z: Alfabetycznie (A do Z)
|
33
|
+
sort_by_alphabetically_z_to_a: Alfabetycznie (Z do A)
|
34
|
+
sort_by_date_new_to_old: Data (od najnowszych)
|
35
|
+
sort_by_date_old_to_new: Data (od najstarszych)
|
36
|
+
sort_by_price_low_to_high: Cena (od najniższej)
|
37
|
+
sort_by_price_high_to_low: Cena (od najwyższej)
|
38
|
+
home:
|
39
|
+
all_products: "Wszystkie produkty"
|
40
|
+
featured: "Wyróżnione"
|
41
|
+
featured_categories: "Wyróżnione kategorie"
|
42
|
+
featured_products: "Wyróżnione produkty"
|
43
|
+
featured_video: ""
|
44
|
+
products:
|
45
|
+
add_to_cart: "Dodaj do koszyka"
|
46
|
+
added: "Dodano!" # Used in few themes, intentionally not exposed in theme settings
|
47
|
+
adding: "Dodawanie..." # Used in few themes, intentionally not exposed in theme settings
|
48
|
+
almost_sold_out: "Zostało tylko kilka!"
|
49
|
+
coming_soon: "Wkrótce dostępne"
|
50
|
+
description: "Opis"
|
51
|
+
in_stock: "w magazynie"
|
52
|
+
inventory: "Stan magazynowy"
|
53
|
+
low_inventory: "Ograniczona ilość"
|
54
|
+
no_products: "Nie znaleziono produktów"
|
55
|
+
on_sale: "W promocji"
|
56
|
+
related_products: "Może Ci się spodobać"
|
57
|
+
reset: "Resetuj"
|
58
|
+
search_results: "Wyniki wyszukiwania"
|
59
|
+
select: "Wybierz"
|
60
|
+
select_variant: "Wybierz opcję"
|
61
|
+
sold_out: "Wyprzedane"
|
62
|
+
cart:
|
63
|
+
checkout: "Do kasy"
|
64
|
+
continue_shopping: "Kontynuuj zakupy"
|
65
|
+
empty_cart: "Twój koszyk jest pusty"
|
66
|
+
quantity_abbreviated: "Szt."
|
67
|
+
quantity: "Sztuk"
|
68
|
+
remove: "Usuń"
|
69
|
+
share_this_cart: "Udostępnij ten koszyk"
|
70
|
+
share_this_cart_link_copy_success: "Link skopiowany!"
|
71
|
+
subtotal: "Suma częściowa"
|
72
|
+
view_cart: "Zobacz koszyk"
|
73
|
+
contact:
|
74
|
+
email: "E-mail"
|
75
|
+
form_success: "Dziękujemy! Twoja wiadomość została wysłana i wkrótce się z Tobą skontaktujemy."
|
76
|
+
message: "Wiadomość"
|
77
|
+
name: "Imię i nazwisko"
|
78
|
+
send_button: "Wyślij wiadomość"
|
79
|
+
subject: "Temat"
|
@@ -0,0 +1,79 @@
|
|
1
|
+
pt-BR:
|
2
|
+
storefront:
|
3
|
+
navigation:
|
4
|
+
all: "Todos"
|
5
|
+
all_products: "Todos os produtos"
|
6
|
+
back_to_site: "Voltar ao site"
|
7
|
+
cart: "Carrinho"
|
8
|
+
categories: "Categorias"
|
9
|
+
contact: "Contato"
|
10
|
+
home: "Início"
|
11
|
+
item: "item"
|
12
|
+
items: "itens"
|
13
|
+
more: "Mais"
|
14
|
+
next: "Próximo"
|
15
|
+
newest: "Mais recentes"
|
16
|
+
pages: "Páginas"
|
17
|
+
previous: "Anterior"
|
18
|
+
products: "Produtos"
|
19
|
+
quick_view: "Ver rápido"
|
20
|
+
search: "Buscar"
|
21
|
+
shop: "Loja"
|
22
|
+
social: "Siga-nos"
|
23
|
+
subscribe: "Assinar"
|
24
|
+
top_selling: "Mais vendidos"
|
25
|
+
view: "Ver"
|
26
|
+
view_all: "Ver tudo"
|
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: Em destaque
|
30
|
+
sort_by_on_sale: Em promoção
|
31
|
+
sort_by_top_selling: Mais vendidos
|
32
|
+
sort_by_alphabetically_a_to_z: Alfabética (A a Z)
|
33
|
+
sort_by_alphabetically_z_to_a: Alfabética (Z a A)
|
34
|
+
sort_by_date_new_to_old: Data (mais recente)
|
35
|
+
sort_by_date_old_to_new: Data (mais antigo)
|
36
|
+
sort_by_price_low_to_high: Preço (menor para maior)
|
37
|
+
sort_by_price_high_to_low: Preço (maior para menor)
|
38
|
+
home:
|
39
|
+
all_products: "Todos os produtos"
|
40
|
+
featured: "Destaque"
|
41
|
+
featured_categories: "Categorias em destaque"
|
42
|
+
featured_products: "Produtos em destaque"
|
43
|
+
featured_video: ""
|
44
|
+
products:
|
45
|
+
add_to_cart: "Adicionar"
|
46
|
+
added: "Adicionado!" # Used in few themes, intentionally not exposed in theme settings
|
47
|
+
adding: "Adicionando..." # Used in few themes, intentionally not exposed in theme settings
|
48
|
+
almost_sold_out: "Restam poucos!"
|
49
|
+
coming_soon: "Em breve"
|
50
|
+
description: "Descrição"
|
51
|
+
in_stock: "em estoque"
|
52
|
+
inventory: "Estoque"
|
53
|
+
low_inventory: "Quantidades limitadas"
|
54
|
+
no_products: "Nenhum produto encontrado"
|
55
|
+
on_sale: "Em promoção"
|
56
|
+
related_products: "Você também pode gostar"
|
57
|
+
reset: "Redefinir"
|
58
|
+
search_results: "Resultados da busca"
|
59
|
+
select: "Selecione"
|
60
|
+
select_variant: "Selecionar opção"
|
61
|
+
sold_out: "Esgotado"
|
62
|
+
cart:
|
63
|
+
checkout: "Comprar"
|
64
|
+
continue_shopping: "Continuar comprando"
|
65
|
+
empty_cart: "Seu carrinho está vazio"
|
66
|
+
quantity_abbreviated: "Qtd"
|
67
|
+
quantity: "Quantidade"
|
68
|
+
remove: "Remover"
|
69
|
+
share_this_cart: "Compartilhar este carrinho"
|
70
|
+
share_this_cart_link_copy_success: "Link copiado!"
|
71
|
+
subtotal: "Subtotal"
|
72
|
+
view_cart: "Ver carrinho"
|
73
|
+
contact:
|
74
|
+
email: "Email"
|
75
|
+
form_success: "Obrigado! Sua mensagem foi enviada e retornaremos em breve."
|
76
|
+
message: "Mensagem"
|
77
|
+
name: "Nome"
|
78
|
+
send_button: "Enviar mensagem"
|
79
|
+
subject: "Assunto"
|
@@ -0,0 +1,79 @@
|
|
1
|
+
pt-PT:
|
2
|
+
storefront:
|
3
|
+
navigation:
|
4
|
+
all: "Todos"
|
5
|
+
all_products: "Todos os produtos"
|
6
|
+
back_to_site: "Voltar ao site"
|
7
|
+
cart: "Carrinho"
|
8
|
+
categories: "Categorias"
|
9
|
+
contact: "Contacto"
|
10
|
+
home: "Início"
|
11
|
+
item: "item"
|
12
|
+
items: "itens"
|
13
|
+
more: "Mais"
|
14
|
+
next: "Seguinte"
|
15
|
+
newest: "Mais recentes"
|
16
|
+
pages: "Páginas"
|
17
|
+
previous: "Anterior"
|
18
|
+
products: "Produtos"
|
19
|
+
quick_view: "Vista rápida"
|
20
|
+
search: "Pesquisar"
|
21
|
+
shop: "Loja"
|
22
|
+
social: "Siga-nos"
|
23
|
+
subscribe: "Subscrever"
|
24
|
+
top_selling: "Mais vendidos"
|
25
|
+
view: "Ver"
|
26
|
+
view_all: "Ver tudo"
|
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: Em destaque
|
30
|
+
sort_by_on_sale: Em promoção
|
31
|
+
sort_by_top_selling: Mais vendidos
|
32
|
+
sort_by_alphabetically_a_to_z: Alfabética (A a Z)
|
33
|
+
sort_by_alphabetically_z_to_a: Alfabética (Z a A)
|
34
|
+
sort_by_date_new_to_old: Data (mais recente)
|
35
|
+
sort_by_date_old_to_new: Data (mais antigo)
|
36
|
+
sort_by_price_low_to_high: Preço (menor para maior)
|
37
|
+
sort_by_price_high_to_low: Preço (maior para menor)
|
38
|
+
home:
|
39
|
+
all_products: "Todos os produtos"
|
40
|
+
featured: "Em destaque"
|
41
|
+
featured_categories: "Categorias em destaque"
|
42
|
+
featured_products: "Produtos em destaque"
|
43
|
+
featured_video: ""
|
44
|
+
products:
|
45
|
+
add_to_cart: "Adicionar"
|
46
|
+
added: "Adicionado!" # Used in few themes, intentionally not exposed in theme settings
|
47
|
+
adding: "A adicionar..." # Used in few themes, intentionally not exposed in theme settings
|
48
|
+
almost_sold_out: "Restam poucos!"
|
49
|
+
coming_soon: "Brevemente"
|
50
|
+
description: "Descrição"
|
51
|
+
in_stock: "em stock"
|
52
|
+
inventory: "Stock"
|
53
|
+
low_inventory: "Quantidades limitadas"
|
54
|
+
no_products: "Nenhum produto encontrado"
|
55
|
+
on_sale: "Em saldo"
|
56
|
+
related_products: "Poderá também gostar"
|
57
|
+
reset: "Repor"
|
58
|
+
search_results: "Resultados da pesquisa"
|
59
|
+
select: "Selecione"
|
60
|
+
select_variant: "Selecionar opção"
|
61
|
+
sold_out: "Esgotado"
|
62
|
+
cart:
|
63
|
+
checkout: "Comprar"
|
64
|
+
continue_shopping: "Continuar a comprar"
|
65
|
+
empty_cart: "O seu carrinho está vazio"
|
66
|
+
quantity_abbreviated: "Qtd"
|
67
|
+
quantity: "Quantidade"
|
68
|
+
remove: "Remover"
|
69
|
+
share_this_cart: "Partilhar este carrinho"
|
70
|
+
share_this_cart_link_copy_success: "Link copiado!"
|
71
|
+
subtotal: "Subtotal"
|
72
|
+
view_cart: "Ver carrinho"
|
73
|
+
contact:
|
74
|
+
email: "Email"
|
75
|
+
form_success: "Obrigado! A sua mensagem foi enviada e responderemos brevemente."
|
76
|
+
message: "Mensagem"
|
77
|
+
name: "Nome"
|
78
|
+
send_button: "Enviar mensagem"
|
79
|
+
subject: "Assunto"
|
@@ -0,0 +1,79 @@
|
|
1
|
+
ro:
|
2
|
+
storefront:
|
3
|
+
navigation:
|
4
|
+
all: "Toate"
|
5
|
+
all_products: "Toate produsele"
|
6
|
+
back_to_site: "Înapoi la site"
|
7
|
+
cart: "Coș"
|
8
|
+
categories: "Categorii"
|
9
|
+
contact: "Contact"
|
10
|
+
home: "Acasă"
|
11
|
+
item: "articol"
|
12
|
+
items: "produse"
|
13
|
+
more: "Mai mult"
|
14
|
+
next: "Următorul"
|
15
|
+
newest: "Cele mai noi"
|
16
|
+
pages: "Pagini"
|
17
|
+
previous: "Anterior"
|
18
|
+
products: "Produse"
|
19
|
+
quick_view: "Vedere rapidă"
|
20
|
+
search: "Caută"
|
21
|
+
shop: "Magazin"
|
22
|
+
social: "Urmărește-ne"
|
23
|
+
subscribe: "Abonează-te"
|
24
|
+
top_selling: "Cele mai vândute"
|
25
|
+
view: "Vizualizare"
|
26
|
+
view_all: "Vizualizează toate"
|
27
|
+
# "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
|
28
|
+
sort_by: Sortează după
|
29
|
+
sort_by_featured: Recomandate
|
30
|
+
sort_by_on_sale: În ofertă
|
31
|
+
sort_by_top_selling: Cele mai vândute
|
32
|
+
sort_by_alphabetically_a_to_z: Alfabetic (A la Z)
|
33
|
+
sort_by_alphabetically_z_to_a: Alfabetic (Z la A)
|
34
|
+
sort_by_date_new_to_old: Dată (de la nou la vechi)
|
35
|
+
sort_by_date_old_to_new: Dată (de la vechi la nou)
|
36
|
+
sort_by_price_low_to_high: Preț (de la mic la mare)
|
37
|
+
sort_by_price_high_to_low: Preț (de la mare la mic)
|
38
|
+
home:
|
39
|
+
all_products: "Toate produsele"
|
40
|
+
featured: "Recomandate"
|
41
|
+
featured_categories: "Categorii recomandate"
|
42
|
+
featured_products: "Produse recomandate"
|
43
|
+
featured_video: ""
|
44
|
+
products:
|
45
|
+
add_to_cart: "Adaugă în coș"
|
46
|
+
added: "Adăugat!" # Used in few themes, intentionally not exposed in theme settings
|
47
|
+
adding: "Se adaugă..." # Used in few themes, intentionally not exposed in theme settings
|
48
|
+
almost_sold_out: "Aproape epuizat!"
|
49
|
+
coming_soon: "În curând"
|
50
|
+
description: "Descriere"
|
51
|
+
in_stock: "în stoc"
|
52
|
+
inventory: "Stoc"
|
53
|
+
low_inventory: "Stoc limitat"
|
54
|
+
no_products: "Nu s-au găsit produse"
|
55
|
+
on_sale: "La reducere"
|
56
|
+
related_products: "V-ar putea interesa"
|
57
|
+
reset: "Resetează"
|
58
|
+
search_results: "Rezultatele căutării"
|
59
|
+
select: "Selectează"
|
60
|
+
select_variant: "Alege opțiunea"
|
61
|
+
sold_out: "Epuizat"
|
62
|
+
cart:
|
63
|
+
checkout: "Comandă"
|
64
|
+
continue_shopping: "Continuă cumpărăturile"
|
65
|
+
empty_cart: "Coșul tău este gol"
|
66
|
+
quantity_abbreviated: "Cant."
|
67
|
+
quantity: "Cantitate"
|
68
|
+
remove: "Elimină"
|
69
|
+
share_this_cart: "Distribuie acest coș"
|
70
|
+
share_this_cart_link_copy_success: "Link copiat!"
|
71
|
+
subtotal: "Subtotal"
|
72
|
+
view_cart: "Vezi coșul"
|
73
|
+
contact:
|
74
|
+
email: "Email"
|
75
|
+
form_success: "Mulțumim! Mesajul tău a fost trimis și îți vom răspunde în curând."
|
76
|
+
message: "Mesaj"
|
77
|
+
name: "Nume"
|
78
|
+
send_button: "Trimite mesaj"
|
79
|
+
subject: "Subiect"
|
@@ -0,0 +1,79 @@
|
|
1
|
+
sv:
|
2
|
+
storefront:
|
3
|
+
navigation:
|
4
|
+
all: "Alla"
|
5
|
+
all_products: "Alla produkter"
|
6
|
+
back_to_site: "Tillbaka till hemsidan"
|
7
|
+
cart: "Varukorg"
|
8
|
+
categories: "Kategorier"
|
9
|
+
contact: "Kontakt"
|
10
|
+
home: "Hem"
|
11
|
+
item: "vara"
|
12
|
+
items: "artiklar"
|
13
|
+
more: "Mer"
|
14
|
+
next: "Nästa"
|
15
|
+
newest: "Senaste"
|
16
|
+
pages: "Sidor"
|
17
|
+
previous: "Föregående"
|
18
|
+
products: "Produkter"
|
19
|
+
quick_view: "Snabbvy"
|
20
|
+
search: "Sök"
|
21
|
+
shop: "Butik"
|
22
|
+
social: "Följ oss"
|
23
|
+
subscribe: "Prenumerera"
|
24
|
+
top_selling: "Mest sålda"
|
25
|
+
view: "Visa"
|
26
|
+
view_all: "Visa alla"
|
27
|
+
# "Sort By" translations are used in very few themes, and are not exposed in theme settings for sellers to configure
|
28
|
+
sort_by: Sortera efter
|
29
|
+
sort_by_featured: Utvalda
|
30
|
+
sort_by_on_sale: Rea
|
31
|
+
sort_by_top_selling: Populära
|
32
|
+
sort_by_alphabetically_a_to_z: Alfabetisk (A till Z)
|
33
|
+
sort_by_alphabetically_z_to_a: Alfabetisk (Z till A)
|
34
|
+
sort_by_date_new_to_old: Datum (nyast först)
|
35
|
+
sort_by_date_old_to_new: Datum (äldst först)
|
36
|
+
sort_by_price_low_to_high: Pris (lägst först)
|
37
|
+
sort_by_price_high_to_low: Pris (högst först)
|
38
|
+
home:
|
39
|
+
all_products: "Alla produkter"
|
40
|
+
featured: "Utvalda"
|
41
|
+
featured_categories: "Utvalda kategorier"
|
42
|
+
featured_products: "Utvalda produkter"
|
43
|
+
featured_video: ""
|
44
|
+
products:
|
45
|
+
add_to_cart: "Lägg till"
|
46
|
+
added: "Tillagd!" # Used in few themes, intentionally not exposed in theme settings
|
47
|
+
adding: "Lägger till..." # Used in few themes, intentionally not exposed in theme settings
|
48
|
+
almost_sold_out: "Endast få kvar!"
|
49
|
+
coming_soon: "Kommer snart"
|
50
|
+
description: "Beskrivning"
|
51
|
+
in_stock: "i lager"
|
52
|
+
inventory: "Lagerstatus"
|
53
|
+
low_inventory: "Begränsat antal"
|
54
|
+
no_products: "Inga produkter hittades"
|
55
|
+
on_sale: "På rea"
|
56
|
+
related_products: "Du kanske också gillar"
|
57
|
+
reset: "Återställ"
|
58
|
+
search_results: "Sökresultat"
|
59
|
+
select: "Välj"
|
60
|
+
select_variant: "Välj alternativ"
|
61
|
+
sold_out: "Slutsåld"
|
62
|
+
cart:
|
63
|
+
checkout: "Till kassan"
|
64
|
+
continue_shopping: "Fortsätt handla"
|
65
|
+
empty_cart: "Din varukorg är tom"
|
66
|
+
quantity_abbreviated: "Ant."
|
67
|
+
quantity: "Antal"
|
68
|
+
remove: "Ta bort"
|
69
|
+
share_this_cart: "Dela denna varukorg"
|
70
|
+
share_this_cart_link_copy_success: "Länk kopierad!"
|
71
|
+
subtotal: "Delsumma"
|
72
|
+
view_cart: "Visa varukorg"
|
73
|
+
contact:
|
74
|
+
email: "E-post"
|
75
|
+
form_success: "Tack! Ditt meddelande har skickats och vi återkommer till dig snart."
|
76
|
+
message: "Meddelande"
|
77
|
+
name: "Namn"
|
78
|
+
send_button: "Skicka meddelande"
|
79
|
+
subject: "Ämne"
|