Advertisement
Guest User

Untitled

a guest
Oct 30th, 2020
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 34.29 KB | None | 0 0
  1. <div class="product-template__container page-width"
  2. id="ProductSection-{{ section.id }}"
  3. data-section-id="{{ section.id }}"
  4. data-section-type="product"
  5. data-enable-history-state="true"
  6. data-ajax-enabled="{{ settings.enable_ajax }}"
  7. >
  8. {% comment %}
  9. Get first variant, or deep linked one
  10. {% endcomment %}
  11. {%- assign current_variant = product.selected_or_first_available_variant -%}
  12. {%- assign product_image_zoom_size = '1024x1024' -%}
  13. {%- assign product_image_scale = '2' -%}
  14. {%- assign enable_image_zoom = section.settings.enable_image_zoom -%}
  15. {%- assign compare_at_price = current_variant.compare_at_price -%}
  16. {%- assign price = current_variant.price -%}
  17.  
  18. {% case section.settings.media_size %}
  19. {% when 'small' %}
  20. {%- assign product_media_width = 'medium-up--one-third' -%}
  21. {%- assign product_description_width = 'medium-up--two-thirds' -%}
  22. {%- assign height = 345 -%}
  23. {% when 'medium' %}
  24. {%- assign product_media_width = 'medium-up--one-half' -%}
  25. {%- assign product_description_width = 'medium-up--one-half' -%}
  26. {%- assign height = 530 -%}
  27. {% when 'large' %}
  28. {%- assign product_media_width = 'medium-up--two-thirds' -%}
  29. {%- assign product_description_width = 'medium-up--one-third' -%}
  30. {%- assign height = 720 -%}
  31. {% when 'full' %}
  32. {%- assign product_media_width = '' -%}
  33. {%- assign product_description_width = '' -%}
  34. {%- assign height = 1090 -%}
  35. {%- assign enable_image_zoom = false -%}
  36. {% endcase %}
  37.  
  38. <div class="grid product-single{% if section.settings.enable_payment_button %} product-single--{{ section.settings.media_size }}-media{% endif %}">
  39. <div class="grid__item product-single__media-group {{ product_media_width }}{% if section.settings.media_size == 'full' %} product-single__media-group--full{% endif %}" data-product-single-media-group>
  40. {%- assign featured_media = product.selected_or_first_available_variant.featured_media | default: product.featured_media -%}
  41.  
  42. {%- for media in product.media -%}
  43. {% include 'media', media: media, featured_media: featured_media, height: height, enable_image_zoom: enable_image_zoom, image_zoom_size: product_image_zoom_size, image_scale: product_image_scale %}
  44. {%- endfor -%}
  45.  
  46. <noscript>
  47. {% capture product_image_size %}{{ height }}x{% endcapture %}
  48. <img src="{{ featured_media | img_url: product_image_size, scale: product_image_scale }}" alt="{{ featured_media.alt }}" id="FeaturedMedia-{{ section.id }}" class="product-featured-media" style="max-width: {{ height }}px;">
  49. </noscript>
  50.  
  51. {% assign first_3d_model = product.media | where: "media_type", "model" | first %}
  52.  
  53. {%- if first_3d_model -%}
  54. <button
  55. aria-label="{{ 'products.product.view_in_space_label' | t }}"
  56. class="product-single__view-in-space"
  57. data-shopify-xr
  58. data-shopify-model3d-id="{{ first_3d_model.id }}"
  59. data-shopify-title="{{ product.title | escape }}"
  60. data-shopify-xr-hidden
  61. >
  62. {% include 'icon-3d-badge-full-color' %}<span class='product-single__view-in-space-text'>{{ 'products.product.view_in_space' | t }}</span>
  63. </button>
  64. {%- endif -%}
  65.  
  66.  
  67. {% if product.media.size > 1 %}
  68. {% if product.media.size > 4 %}
  69. {%- assign enable_thumbnail_slides = true -%}
  70. {% endif %}
  71.  
  72. <div data-thumbnail-slider>
  73. <div class="thumbnails-wrapper{% if enable_thumbnail_slides == true %} slider-active{% endif %}" data-slider>
  74. {% if enable_thumbnail_slides == true %}
  75. <button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__prev thumbnails-slider__prev--{{ section.id }}" data-slider-button>
  76. {% include 'icon-chevron-left' %}
  77. <span class="icon__fallback-text">{{ 'sections.slideshow.previous_slide' | t }}</span>
  78. </button>
  79. {% endif %}
  80.  
  81. <ul class="product-single__thumbnails product-single__thumbnails-{{ section.id }}" data-slider-container>
  82. {% if enable_thumbnail_slides == true %}
  83. <div class="product-single__thumbnails-slider-track" data-slider-track>
  84. {% endif %}
  85.  
  86. {% for media in product.media %}
  87. <li class="product-single__thumbnails-item product-single__thumbnails-item--{{ section.settings.media_size }} {% if enable_thumbnail_slides == true %} product-single__thumbnails-item-slide{% endif %} js"{% if enable_thumbnail_slides == true %} data-slider-slide-index="{{ forloop.index0 }}" data-slider-item{% endif %}>
  88. <a href="{{ media.preview_image | img_url: product_image_zoom_size, scale: product_image_scale }}"
  89. class="text-link product-single__thumbnail product-single__thumbnail--{{ section.id }}"
  90. data-thumbnail-id="{{ section.id }}-{{ media.id }}"
  91. {% if enable_thumbnail_slides == true %} data-slider-item-link{% endif %}
  92. {% if enable_image_zoom %}data-zoom="{{ media.preview_image | img_url: product_image_zoom_size, scale: product_image_scale }}"{% endif %}>
  93.  
  94. {%- capture thumbnailAlt -%}
  95. {%- if media.media_type == 'video' or media.media_type == 'external_video' -%}
  96. {{ 'sections.featured_product.video_thumbnail_alt' | t: imageAlt: media.alt | escape }}
  97. {%- elsif media.media_type == 'model' -%}
  98. {{ 'sections.featured_product.model_thumbnail_alt' | t: imageAlt: media.alt | escape }}
  99. {%- else -%}
  100. {{ 'sections.featured_product.gallery_thumbnail_alt' | t: imageAlt: media.alt | escape }}
  101. {%- endif -%}
  102. {%- endcapture -%}
  103.  
  104. <img class="product-single__thumbnail-image" src="{{ media.preview_image | img_url: '110x110', scale: 2 }}" alt="{{ thumbnailAlt }}">
  105. {%- if media.media_type == 'video' or media.media_type =='external_video' -%}
  106. <div class="product-single__thumbnail-badge">
  107. {% include 'icon-video-badge-full-color' %}
  108. </div>
  109. {%- endif -%}
  110. {%- if media.media_type == 'model' -%}
  111. <div class="product-single__thumbnail-badge">
  112. {% include 'icon-3d-badge-full-color' %}
  113. </div>
  114. {%- endif -%}
  115. </a>
  116. </li>
  117. {% endfor %}
  118.  
  119. {% if enable_thumbnail_slides == true %}
  120. </div>
  121. {% endif %}
  122. </ul>
  123. {% if enable_thumbnail_slides == true %}
  124. <button type="button" class="btn btn--link medium-up--hide thumbnails-slider__btn thumbnails-slider__next thumbnails-slider__next--{{ section.id }}" data-slider-button data-slider-button-next>
  125. {% include 'icon-chevron-right' %}
  126. <span class="icon__fallback-text">{{ 'sections.slideshow.next_slide' | t }}</span>
  127. </button>
  128. {% endif %}
  129. </div>
  130. </div>
  131. {% endif %}
  132. </div>
  133.  
  134. <div class="grid__item {{ product_description_width }}">
  135. <div class="product-single__meta">
  136.  
  137. <h1 class="product-single__title">{{ product.title }}</h1>
  138. <script>window.performance.mark('debut:product:title_visible');</script>
  139.  
  140. <div class="product__price">
  141. {% include 'product-price', variant: current_variant, show_vendor: section.settings.show_vendor %}
  142. </div>
  143.  
  144. {%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
  145. <div class="product__policies rte" data-product-policies>
  146. {%- if shop.taxes_included -%}
  147. {{ 'products.product.include_taxes' | t }}
  148. {%- endif -%}
  149. {%- if shop.shipping_policy.body != blank -%}
  150. {{ 'products.product.shipping_policy_html' | t: link: shop.shipping_policy.url }}
  151. {%- endif -%}
  152. </div>
  153. {%- endif -%}
  154.  
  155. {% capture "form_classes" -%}
  156. product-form product-form-{{ section.id }}
  157. {%- if section.settings.enable_payment_button and product.has_only_default_variant %} product-form--payment-button-no-variants {%- endif -%}
  158. {%- if current_variant.available == false %} product-form--variant-sold-out {%- endif -%}
  159. {%- endcapture %}
  160.  
  161. {% form 'product', product, class:form_classes, novalidate: 'novalidate', data-product-form: '' %}
  162. {% unless product.has_only_default_variant %}
  163. <div class="product-form__controls-group">
  164. {% for option in product.options_with_values %}
  165. <div class="selector-wrapper js product-form__item">
  166. <label for="SingleOptionSelector-{{ forloop.index0 }}">
  167. {{ option.name }}
  168. </label>
  169. <select class="single-option-selector single-option-selector-{{ section.id }} product-form__input"
  170. id="SingleOptionSelector-{{ forloop.index0 }}"
  171. data-index="option{{ forloop.index }}"
  172. >
  173. {% for value in option.values %}
  174. <option value="{{ value | escape }}"{% if option.selected_value == value %} selected="selected"{% endif %}>{{ value }}</option>
  175. {% endfor %}
  176. </select>
  177. </div>
  178. {% endfor %}
  179. </div>
  180. {% endunless %}
  181.  
  182. <select name="id" id="ProductSelect-{{ section.id }}" class="product-form__variants no-js">
  183. {% for variant in product.variants %}
  184. <option value="{{ variant.id }}"
  185. {%- if variant == current_variant %} selected="selected" {%- endif -%}
  186. >
  187. {{ variant.title }} {%- if variant.available == false %} - {{ 'products.product.sold_out' | t }}{% endif %}
  188. </option>
  189. {% endfor %}
  190. </select>
  191.  
  192. {% if section.settings.show_quantity_selector %}
  193. <div class="product-form__controls-group">
  194. <div class="product-form__item">
  195. <label for="Quantity-{{ section.id }}">{{ 'products.product.quantity' | t }}</label>
  196. <input type="number" id="Quantity-{{ section.id }}"
  197. name="quantity" value="1" min="1" pattern="[0-9]*"
  198. class="product-form__input product-form__input--quantity" data-quantity-input
  199. >
  200. </div>
  201. </div>
  202. {% endif %}
  203.  
  204. <div class="product-form__error-message-wrapper product-form__error-message-wrapper--hidden{% if section.settings.enable_payment_button %} product-form__error-message-wrapper--has-payment-button{% endif %}"
  205. data-error-message-wrapper
  206. role="alert"
  207. >
  208. <span class="visually-hidden">{{ 'general.accessibility.error' | t }} </span>
  209. {% include 'icon-error' %}
  210. <span class="product-form__error-message" data-error-message>{{ 'products.product.quantity_minimum_message' | t }}</span>
  211. </div>
  212.  
  213. <div class="product-form__controls-group product-form__controls-group--submit">
  214. <div class="product-form__item product-form__item--submit
  215. {%- if section.settings.enable_payment_button %} product-form__item--payment-button {%- endif -%}
  216. {%- if product.has_only_default_variant %} product-form__item--no-variants {%- endif -%}"
  217. >
  218. <button type="submit" name="add"
  219. {% unless current_variant.available %} aria-disabled="true"{% endunless %}
  220. aria-label="{% unless current_variant.available %}{{ 'products.product.sold_out' | t }}{% else %}{{ 'products.product.add_to_cart' | t }}{% endunless %}"
  221. class="btn product-form__cart-submit{% if section.settings.enable_payment_button %} btn--secondary-accent{% endif %}"
  222. {% if settings.enable_ajax %}aria-haspopup="dialog"{% endif %}
  223. data-add-to-cart>
  224. <span data-add-to-cart-text>
  225. {% unless current_variant.available %}
  226. {{ 'products.product.sold_out' | t }}
  227. {% else %}
  228. {{ 'products.product.add_to_cart' | t }}
  229. {% endunless %}
  230. </span>
  231. <span class="hide" data-loader>
  232. {% include 'icon-spinner' %}
  233. </span>
  234. </button>
  235. {% if section.settings.enable_payment_button %}
  236. {{ form | payment_button }}
  237. {% endif %}
  238. </div>
  239. </div>
  240. {% endform %}
  241. </div>
  242.  
  243. {%- comment -%}
  244. Live region for announcing updated price and availability to screen readers
  245. {%- endcomment -%}
  246. <p class="visually-hidden" data-product-status
  247. aria-live="polite"
  248. role="status"
  249. ></p>
  250.  
  251. {%- comment -%}
  252. Live region for announcing that the product form has been submitted and the
  253. product is in the process being added to the cart
  254. {%- endcomment -%}
  255. <p class="visually-hidden" data-loader-status
  256. aria-live="assertive"
  257. role="alert"
  258. aria-hidden="true"
  259. >{{ 'products.product.loader_label' | t }}</p>
  260.  
  261. <div
  262. class="product-single__store-availability-container"
  263. data-store-availability-container
  264. data-product-title="{{ product.title | escape }}"
  265. data-has-only-default-variant="{{ product.has_only_default_variant }}"
  266. >
  267. </div>
  268.  
  269. <div class="product-single__description rte">
  270. {{ product.description }}
  271. </div>
  272.  
  273. {% if section.settings.show_share_buttons %}
  274. {% include 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product.featured_media %}
  275. {% endif %}
  276. </div>
  277. </div>
  278. </div>
  279.  
  280. {% unless product == empty %}
  281. <script type="application/json" id="ProductJson-{{ section.id }}">
  282. {{ product | json }}
  283. </script>
  284. <script type="application/json" id="ModelJson-{{ section.id }}">
  285. {{ product.media | where: 'media_type', 'model' | json }}
  286. </script>
  287. {% endunless %}
  288.  
  289.  
  290.  
  291. {% schema %}
  292. {
  293. "name": {
  294. "cs": "Stránky produktů",
  295. "da": "Produktsider",
  296. "de": "Produktseiten",
  297. "en": "Product pages",
  298. "es": "Páginas de productos",
  299. "fi": "Tuotesivut",
  300. "fr": "Pages de produits",
  301. "it": "Pagine di prodotto",
  302. "ja": "商品ページ",
  303. "ko": "제품 페이지",
  304. "nb": "Produktsider",
  305. "nl": "Productpagina's",
  306. "pl": "Strony produktu",
  307. "pt-BR": "Páginas de produtos",
  308. "pt-PT": "Páginas de produtos",
  309. "sv": "Produktsidor",
  310. "th": "หน้าสินค้า",
  311. "tr": "Ürün sayfaları",
  312. "vi": "Trang sản phẩm",
  313. "zh-CN": "产品页面",
  314. "zh-TW": "產品頁面"
  315. },
  316. "settings": [
  317. {
  318. "type": "checkbox",
  319. "id": "show_quantity_selector",
  320. "label": {
  321. "cs": "Zobrazit výběr množství",
  322. "da": "Vis antalsvælger",
  323. "de": "Mengenauswahl anzeigen",
  324. "en": "Show quantity selector",
  325. "es": "Mostrar selector de cantidad",
  326. "fi": "Näytä määrän valitsin",
  327. "fr": "Afficher le sélecteur de quantité",
  328. "it": "Mostra selettore quantità",
  329. "ja": "数量セレクターを表示する",
  330. "ko": "수량 선택기 표시",
  331. "nb": "Vis mengdevelger",
  332. "nl": "Hoeveelheidskiezer weergeven",
  333. "pl": "Pokaż selektor ilości",
  334. "pt-BR": "Exibir seletor de quantidade",
  335. "pt-PT": "Mostrar um seletor de quantidade",
  336. "sv": "Visa kvantitetsväljare",
  337. "th": "แสดงตัวเลือกจำนวน",
  338. "tr": "Adet seçiciyi göster",
  339. "vi": "Hiển thị hộp chọn số lượng",
  340. "zh-CN": "显示数量选择器",
  341. "zh-TW": "顯示數量選擇器"
  342. },
  343. "default": false
  344. },
  345. {
  346. "type": "checkbox",
  347. "id": "show_vendor",
  348. "label": {
  349. "cs": "Zobrazit dodavatele",
  350. "da": "Vis leverandør",
  351. "de": "Lieferanten anzeigen",
  352. "en": "Show vendor",
  353. "es": "Mostrar proveedor",
  354. "fi": "Näytä myyjä",
  355. "fr": "Afficher les vendeurs",
  356. "it": "Mostra fornitore",
  357. "ja": "販売元を表示する",
  358. "ko": "공급업체 표시",
  359. "nb": "Vis leverandør",
  360. "nl": "Leverancier weergeven",
  361. "pl": "Pokaż dostawcę",
  362. "pt-BR": "Exibir fornecedor",
  363. "pt-PT": "Mostrar fornecedor",
  364. "sv": "Visa säljare",
  365. "th": "แสดงผู้ขาย",
  366. "tr": "Satıcıyı göster",
  367. "vi": "Hiển thị nhà cung cấp",
  368. "zh-CN": "显示厂商",
  369. "zh-TW": "顯示廠商"
  370. },
  371. "default": false
  372. },
  373. {
  374. "type": "checkbox",
  375. "id": "enable_payment_button",
  376. "label": {
  377. "cs": "Zobrazit dynamické tlačítko pokladny",
  378. "da": "Vis dynamisk betalingsknap",
  379. "de": "Dynamischen Checkout Button anzeigen",
  380. "en": "Show dynamic checkout button",
  381. "es": "Mostrar botón de pago dinámico",
  382. "fi": "Näytä dynaaminen kassapainike",
  383. "fr": "Afficher le bouton de paiement dynamique",
  384. "it": "Mostra pulsante di check-out dinamico",
  385. "ja": "動的チェックアウトボタンを表示する",
  386. "ko": "동적 결제 버튼 표시",
  387. "nb": "Vis dynamisk knapp for å gå til kassen",
  388. "nl": "Dynamische betaalknop weergeven",
  389. "pl": "Pokaż dynamiczny przycisk realizacji zakupu",
  390. "pt-BR": "Exibir botão de checkout dinâmico",
  391. "pt-PT": "Mostrar o botão dinâmico de finalização da compra",
  392. "sv": "Visa dynamiska utcheckningsknappar",
  393. "th": "แสดงปุ่มชำระเงินแบบไดนามิก",
  394. "tr": "Dinamik ödeme düğmesini göster",
  395. "vi": "Hiển thị nút thanh toán động",
  396. "zh-CN": "显示动态结账按钮",
  397. "zh-TW": "顯示動態結帳按鈕"
  398. },
  399. "info": {
  400. "cs": "Každý zákazník uvidí platební metodu, kterou ze všech metod dostupných v obchodě (například PayPal nebo Apple Pay) nejvíce preferuje. [Další informace](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  401. "da": "Den enkelte kunde vil se sin foretrukne betalingsmetode blandt dem, der er tilgængelige i din butik, f.eks. PayPal eller Apple Pay. [Få mere at vide](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  402. "de": "Jeder Kunde sieht seine bevorzugte Zahlungsmethode aus den in deinem Shop verfügbaren Zahlungsmethoden wie PayPal oder Apple Pay. [Mehr Informationen](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  403. "en": "Each customer will see their preferred payment method from those available on your store, such as PayPal or Apple Pay. [Learn more](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  404. "es": "Cada cliente verá su forma de pago preferida entre las disponibles en tu tienda, como PayPal o Apple Pay. [Más información](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  405. "fi": "Kukin asiakas näkee ensisijaisen valintansa kauppasi tarjoamista maksutavoista, esim. PayPal tai Apple Pay. [Lisätietoja](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  406. "fr": "Chaque client verra son moyen de paiement préféré parmi ceux qui sont proposés sur votre boutique, tels que PayPal ou Apple Pay. [En savoir plus](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  407. "it": "Ogni cliente vedrà il suo metodo di pagamento preferito tra quelli disponibili nel tuo negozio, come PayPal o Apple Pay. [Maggiori informazioni](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  408. "ja": "PayPalやApple Payなど、ストアで利用可能な希望の決済方法がお客様に表示されます。[詳しくはこちら](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  409. "ko": "각 고객은 PayPal 또는 Apple Pay와 같이 스토어에서 사용 가능한 지불 방법을 확인할 수 있습니다. [자세히 알아보기](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  410. "nb": "Hver enkelt kunde vil se sin foretrukne betalingsmåte blant de som er tilgjengelig i butikken din, som PayPal eller Apple Pay. [Finn ut mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  411. "nl": "Elke klant ziet zijn of haar beschikbare voorkeursmethode om af te rekenen, zoals PayPal of Apple Pay. [Meer informatie](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  412. "pl": "Każdy klient zobaczy swoją preferowaną metodę płatności wśród metod dostępnych w Twoim sklepie, np. PayPal lub Apple Pay. [Dowiedz się więcej](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  413. "pt-BR": "Cada cliente verá a forma de pagamento preferencial dele dentre as disponíveis na loja, como PayPal ou Apple Pay. [Saiba mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  414. "pt-PT": "Cada cliente irá ver o seu método de pagamento preferido entre os disponíveis na loja, como o PayPal ou Apple Pay. [Saiba mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  415. "sv": "Varje kund kommer att se den föredragna betalningsmetoden från de som finns tillgängliga i din butik, till exempel PayPal eller Apple Pay. [Läs mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  416. "th": "ลูกค้าแต่ละรายจะเห็นวิธีการชำระเงินที่ต้องการจากวิธีที่ใช้ได้ในร้านค้าของคุณ เช่น PayPal หรือ Apple Pay [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  417. "tr": "Her müşteri, mağazanız sunulanlar arasından tercih ettikleri ödeme yöntemini görür (ör. PayPal veya Apple Pay). [Daha fazla bilgi edinin](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  418. "vi": "Mỗi khách hàng sẽ thấy phương thức thanh toán ưu tiên trong những phương thức thanh toán được hỗ trợ tại cửa hàng như PayPal hoặc Apple Pay. [Tìm hiểu thêm](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  419. "zh-CN": "每位客户都可在您商店提供的付款方式中看到他们的首选付款方式,例如 PayPal 或 Apple Pay。[了解详细信息](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)",
  420. "zh-TW": "每位顧客都可以在您商店內開放使用的付款方式中看見他們偏好使用的方式,如 PayPal、Apple Pay 等。[深入瞭解](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
  421. },
  422. "default": true
  423. },
  424. {
  425. "type": "checkbox",
  426. "id": "show_share_buttons",
  427. "label": {
  428. "cs": "Zobrazit tlačítka pro sdílení na sociálních sítích",
  429. "da": "Vis knapper til deling på sociale medier",
  430. "de": "Buttons für Social Media anzeigen",
  431. "en": "Show social sharing buttons",
  432. "es": "Mostrar botones para compartir en redes sociales",
  433. "fi": "Näytä sosiaalisen median jakamispainikkeet",
  434. "fr": "Affichez les boutons de partage sur les médias sociaux",
  435. "it": "Mostra i pulsanti per la condivisione sui social",
  436. "ja": "ソーシャルメディアでの共有ボタンを表示する",
  437. "ko": "소셜 공유 버튼 표시",
  438. "nb": "Vis knapper for deling på sosiale medier",
  439. "nl": "Knoppen voor sociaal delen weergeven",
  440. "pl": "Pokaż przyciski udostępniania w mediach społecznościowych",
  441. "pt-BR": "Exibir botões de compartilhamento em redes sociais",
  442. "pt-PT": "Mostrar botões de partilha nas redes sociais",
  443. "sv": "Visa knappar för delning i sociala medier",
  444. "th": "แสดงปุ่มสำหรับแชร์ลงโซเชียล",
  445. "tr": "Sosyal medya paylaşım düğmelerini göster",
  446. "vi": "Hiển thị nút chia sẻ qua mạng xã hội",
  447. "zh-CN": "显示社交分享按钮",
  448. "zh-TW": "顯示社群分享按鈕"
  449. },
  450. "default": true
  451. },
  452. {
  453. "type": "header",
  454. "content": {
  455. "cs": "Multimédia",
  456. "da": "Medie",
  457. "de": "Medien",
  458. "en": "Media",
  459. "es": "Elementos multimedia",
  460. "fi": "Media",
  461. "fr": "Support multimédia",
  462. "it": "Media",
  463. "ja": "メディア",
  464. "ko": "미디어",
  465. "nb": "Medier",
  466. "nl": "Media",
  467. "pl": "Multimedia",
  468. "pt-BR": "Mídia",
  469. "pt-PT": "Multimédia",
  470. "sv": "Media",
  471. "th": "สื่อ",
  472. "tr": "Medya",
  473. "vi": "Nội dung đa phương tiện",
  474. "zh-CN": "媒体",
  475. "zh-TW": "媒體"
  476. },
  477. "info": {
  478. "cs": "Další informace o [typech multimédií](https://help.shopify.com/manual/products/product-media)",
  479. "da": "Få mere at vide om [media types](https://help.shopify.com/manual/products/product-media)",
  480. "de": "Mehr Informationen über [Medientypen ](https://help.shopify.com/manual/products/product-media)",
  481. "en": "Learn more about [media types](https://help.shopify.com/manual/products/product-media)",
  482. "es": "Más información sobre [tipos de archivos multimedia](https://help.shopify.com/manual/products/product-media)",
  483. "fi": "Lue lisää [mediatyypeistä](https://help.shopify.com/manual/products/product-media)",
  484. "fr": "En savoir plus sur les [types de supports multimédia](https://help.shopify.com/manual/products/product-media)",
  485. "it": "Scopri di più sulle [tipologie di file multimediali](https://help.shopify.com/manual/products/product-media)",
  486. "ja": "[メディアのタイプ](https://help.shopify.com/manual/products/product-media) について詳しくはこちら",
  487. "ko": "[미디어 유형](https://help.shopify.com/manual/products/product-media)에 대해 자세히 알아보기",
  488. "nb": "Lær mer om [medietyper](https://help.shopify.com/manual/products/product-media)",
  489. "nl": "Meer informatie over [mediatypen](https://help.shopify.com/manual/products/product-media)",
  490. "pl": "Dowiedz się więcej o [typach multimediów](https://help.shopify.com/manual/products/product-media)",
  491. "pt-BR": "Saiba mais sobre [tipos de mídia](https://help.shopify.com/manual/products/product-media)",
  492. "pt-PT": "Saiba mais sobre [media types](https://help.shopify.com/manual/products/product-media)",
  493. "sv": "Läs mer om [mediatyper](https://help.shopify.com/manual/products/product-media)",
  494. "th": "ดูข้อมูลเพิ่มเติมเกี่ยวกับ [ประเภทของสื่อ](https://help.shopify.com/manual/products/product-media)",
  495. "tr": "[Medya türleri](https://help.shopify.com/manual/products/product-media) hakkında daha fazla bilgi edinin",
  496. "vi": "Tìm hiểu thêm về [loại phương tiện](https://help.shopify.com/manual/products/product-media)",
  497. "zh-CN": "详细了解[媒体类型](https://help.shopify.com/manual/products/product-media)",
  498. "zh-TW": "深入瞭解 [媒體類型](https://help.shopify.com/manual/products/product-media)"
  499. }
  500. },
  501. {
  502. "type": "select",
  503. "id": "media_size",
  504. "label": {
  505. "cs": "Velikost",
  506. "da": "Størrelse",
  507. "de": "Größe",
  508. "en": "Size",
  509. "es": "Tamaño",
  510. "fi": "Koko",
  511. "fr": "Taille",
  512. "it": "Dimensione",
  513. "ja": "サイズ",
  514. "ko": "사이즈",
  515. "nb": "Størrelse",
  516. "nl": "Grootte",
  517. "pl": "Rozmiar",
  518. "pt-BR": "Tamanho",
  519. "pt-PT": "Tamanho",
  520. "sv": "Storlek",
  521. "th": "ขนาด",
  522. "tr": "Boyut",
  523. "vi": "Cỡ",
  524. "zh-CN": "大小",
  525. "zh-TW": "尺寸"
  526. },
  527. "options": [
  528. {
  529. "value": "small",
  530. "label": {
  531. "cs": "Malá",
  532. "da": "Lille",
  533. "de": "Klein",
  534. "en": "Small",
  535. "es": "Pequeño",
  536. "fi": "Pieni",
  537. "fr": "Petit",
  538. "it": "Piccolo",
  539. "ja": "スモール",
  540. "ko": "스몰",
  541. "nb": "Liten",
  542. "nl": "Klein",
  543. "pl": "Mały",
  544. "pt-BR": "Pequeno",
  545. "pt-PT": "Pequeno",
  546. "sv": "Liten",
  547. "th": "เล็ก",
  548. "tr": "Küçük",
  549. "vi": "Nhỏ",
  550. "zh-CN": "小",
  551. "zh-TW": "小型"
  552. }
  553. },
  554. {
  555. "value": "medium",
  556. "label": {
  557. "cs": "Střední",
  558. "da": "Medium",
  559. "de": "Mittel",
  560. "en": "Medium",
  561. "es": "Mediano",
  562. "fi": "Keskisuuri",
  563. "fr": "Moyenne",
  564. "it": "Medio",
  565. "ja": "中",
  566. "ko": "보통",
  567. "nb": "Middels",
  568. "nl": "Gemiddeld",
  569. "pl": "Średni",
  570. "pt-BR": "Médio",
  571. "pt-PT": "Médio",
  572. "sv": "Medium",
  573. "th": "ปานกลาง",
  574. "tr": "Orta",
  575. "vi": "Trung bình",
  576. "zh-CN": "中等",
  577. "zh-TW": "中等"
  578. }
  579. },
  580. {
  581. "value": "large",
  582. "label": {
  583. "cs": "Velká",
  584. "da": "Stor",
  585. "de": "Groß",
  586. "en": "Large",
  587. "es": "Grande",
  588. "fi": "Suuri",
  589. "fr": "Grande",
  590. "it": "Grande",
  591. "ja": "大",
  592. "ko": "라지",
  593. "nb": "Stor",
  594. "nl": "Groot",
  595. "pl": "Duży",
  596. "pt-BR": "Grande",
  597. "pt-PT": "Grande",
  598. "sv": "Stor",
  599. "th": "ใหญ่",
  600. "tr": "Büyük",
  601. "vi": "Lớn",
  602. "zh-CN": "大",
  603. "zh-TW": "大型"
  604. }
  605. },
  606. {
  607. "value": "full",
  608. "label": {
  609. "cs": "Plná šířka",
  610. "da": "Fuld bredde",
  611. "de": "Volle Breite",
  612. "en": "Full-width",
  613. "es": "Ancho completo",
  614. "fi": "Täysi leveys",
  615. "fr": "Pleine largeur",
  616. "it": "Intera larghezza",
  617. "ja": "全幅",
  618. "ko": "전체 폭",
  619. "nb": "Full bredde",
  620. "nl": "Volledige breedte",
  621. "pl": "Pełna szerokość",
  622. "pt-BR": "Largura completa",
  623. "pt-PT": "Largura completa",
  624. "sv": "Full bredd",
  625. "th": "เต็มความกว้าง",
  626. "tr": "Tam genişlikli",
  627. "vi": "Độ rộng đầy đủ",
  628. "zh-CN": "全宽",
  629. "zh-TW": "完整寬度"
  630. }
  631. }
  632. ],
  633. "default": "medium"
  634. },
  635. {
  636. "type": "checkbox",
  637. "id": "enable_image_zoom",
  638. "label": {
  639. "cs": "Povolit zvětšení obrázku",
  640. "da": "Aktivér billedzoom",
  641. "de": "Foto-Zoom zulassen",
  642. "en": "Enable image zoom",
  643. "es": "Habilitar zoom de imagen",
  644. "fi": "Ota kuvan zoomaus käyttöön",
  645. "fr": "Activer le zoom d'image",
  646. "it": "Abilita lo zoom dell'immagine",
  647. "ja": "画像ズームを有効にする",
  648. "ko": "이미지 확대 사용",
  649. "nb": "Aktiver bildezoom",
  650. "nl": "Inzoomen op afbeelding inschakelen",
  651. "pl": "Włącz powiększenie obrazu",
  652. "pt-BR": "Habilitar o zoom da imagem",
  653. "pt-PT": "Ativar o zoom da imagem",
  654. "sv": "Aktivera bildzoom",
  655. "th": "เปิดใช้การซูมภาพ",
  656. "tr": "Görsel yakınlaştırmayı etkinleştir",
  657. "vi": "Bật thu phóng hình ảnh",
  658. "zh-CN": "启用图片缩放",
  659. "zh-TW": "啟用圖片縮放"
  660. },
  661. "default": true
  662. },
  663. {
  664. "type": "checkbox",
  665. "id": "enable_video_looping",
  666. "label": {
  667. "cs": "Povolit smyčky videa",
  668. "da": "Aktivér looping af videoer",
  669. "de": "Videoschleife aktivieren",
  670. "en": "Enable video looping",
  671. "es": "Habilitar la reproducción de video en bucle",
  672. "fi": "Ota käyttöön videosilmukka",
  673. "fr": "Activer le bouclage de la vidéo",
  674. "it": "Abilita la riproduzione in loop dei video",
  675. "ja": "ビデオのループを有効にする",
  676. "ko": "동영상 루프",
  677. "nb": "Aktiver løkkeavspilling av video",
  678. "nl": "Video-looping inschakelen",
  679. "pl": "Włącz zapętlanie wideo",
  680. "pt-BR": "Habilitar loop de vídeo",
  681. "pt-PT": "Ativar ciclo de vídeo",
  682. "sv": "Aktivera video-loopning",
  683. "th": "เปิดใช้การวนซ้ำวิดีโอ",
  684. "tr": "Video döngüsünü etkinleştir",
  685. "vi": "Bật vòng lặp video",
  686. "zh-CN": "启用视频循环",
  687. "zh-TW": "啟用影片循環功能"
  688. },
  689. "default": false
  690. }
  691. ]
  692. }
  693. {% endschema %}
  694.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement