diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8bfaac4
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+# OS generated files #
+######################
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000..a7785df
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,12 @@
+{
+ "printWidth": 120,
+ "singleQuote": true,
+ "overrides": [
+ {
+ "files": "*.liquid",
+ "options": {
+ "singleQuote": false
+ }
+ }
+ ]
+}
diff --git a/.theme-check.yml b/.theme-check.yml
new file mode 100644
index 0000000..f905bd4
--- /dev/null
+++ b/.theme-check.yml
@@ -0,0 +1,4 @@
+MatchingTranslations:
+ enabled: false
+TemplateLength:
+ enabled: false
diff --git a/LICENSE.md b/LICENSE.md
new file mode 100644
index 0000000..7edb8f4
--- /dev/null
+++ b/LICENSE.md
@@ -0,0 +1,9 @@
+Copyright (c) 2021-present Shopify Inc.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, sell and/or create derivative works of the Software or any part thereof, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The rights granted above may only be exercised to develop themes that integrate or interoperate with Shopify software or services, and, if applicable, to distribute, offer for sale or otherwise make available any such themes via the Shopify Theme Store. All other uses of the Software are strictly prohibited.
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..dca149e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,100 @@
+# Dawn
+
+[![Build status](https://github.com/shopify/dawn/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/Shopify/dawn/actions/workflows/ci.yml?query=branch%3Amain)
+[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?color=informational)](/.github/CONTRIBUTING.md)
+
+[Getting started](#getting-started) |
+[Staying up to date with Dawn changes](#staying-up-to-date-with-dawn-changes) |
+[Developer tools](#developer-tools) |
+[Contributing](#contributing) |
+[Code of conduct](#code-of-conduct) |
+[Theme Store submission](#theme-store-submission) |
+[License](#license)
+
+Dawn represents a HTML-first, JavaScript-only-as-needed approach to theme development. It's Shopify's first source available theme with performance, flexibility, and [Online Store 2.0 features](https://www.shopify.com/partners/blog/shopify-online-store) built-in and acts as a reference for building Shopify themes.
+
+* **Web-native in its purest form:** Themes run on the [evergreen web](https://www.w3.org/2001/tag/doc/evergreen-web/). We leverage the latest web browsers to their fullest, while maintaining support for the older ones through progressive enhancement—not polyfills.
+* **Lean, fast, and reliable:** Functionality and design defaults to “no” until it meets this requirement. Code ships on quality. Themes must be built with purpose. They shouldn’t support each and every feature in Shopify.
+* **JavaScript not required, fails gracefully:** We extract every bit of speed and functionality out of HTTP, semantic HTML, and CSS before writing our first line of JavaScript. JavaScript can only be used to progressively enhance features.
+* **Server-rendered:** HTML must be rendered by Shopify servers using Liquid. Business logic and platform primitives such as translations and money formatting don’t belong on the client. Async and on-demand rendering of parts of the page is OK, but we do it sparingly as a progressive enhancement.
+* **Functional, not pixel-perfect:** The Web doesn’t require each page to be rendered pixel-perfect by each browser engine. Using semantic markup, progressive enhancement, and clever design, we ensure that themes remain functional regardless of the browser.
+
+You can find a more detailed version of our theme code principles in the [contribution guide](https://github.com/Shopify/dawn/blob/main/.github/CONTRIBUTING.md#theme-code-principles).
+
+## Getting started
+We recommend using Dawn as a starting point for theme development. [Learn more on Shopify.dev](https://shopify.dev/themes/getting-started/create).
+
+> If you're building a theme for the Shopify Theme Store, then you can use Dawn as a starting point. However, the theme that you submit needs to be [substantively different from Dawn](https://shopify.dev/themes/store/requirements#uniqueness) so that it provides added value for merchants. Learn about the [ways that you can use Dawn](https://shopify.dev/themes/tools/dawn#ways-to-use-dawn).
+
+Please note that the main branch may include code for features not yet released. The "stable" version of Dawn is available in the theme store.
+
+## Staying up to date with Dawn changes
+
+Say you're building a new theme off Dawn but you still want to be able to pull in the latest changes, you can add a remote `upstream` pointing to this Dawn repository.
+
+1. Navigate to your local theme folder.
+2. Verify the list of remotes and validate that you have both an `origin` and `upstream`:
+```sh
+git remote -v
+```
+3. If you don't see an `upstream`, you can add one that points to Shopify's Dawn repository:
+```sh
+git remote add upstream https://github.com/Shopify/dawn.git
+```
+4. Pull in the latest Dawn changes into your repository:
+```sh
+git fetch upstream
+git pull upstream main
+```
+
+## Developer tools
+
+There are a number of really useful tools that the Shopify Themes team uses during development. Dawn is already set up to work with these tools.
+
+### Shopify CLI
+
+[Shopify CLI](https://github.com/Shopify/shopify-cli) helps you build Shopify themes faster and is used to automate and enhance your local development workflow. It comes bundled with a suite of commands for developing Shopify themes—everything from working with themes on a Shopify store (e.g. creating, publishing, deleting themes) or launching a development server for local theme development.
+
+You can follow this [quick start guide for theme developers](https://github.com/Shopify/shopify-cli#quick-start-guide-for-theme-developers) to get started.
+
+### Theme Check
+
+We recommend using [Theme Check](https://github.com/shopify/theme-check) as a way to validate and lint your Shopify themes.
+
+We've added Theme Check to Dawn's [list of VS Code extensions](/.vscode/extensions.json) so if you're using Visual Studio Code as your code editor of choice, you'll be prompted to install the [Theme Check VS Code](https://marketplace.visualstudio.com/items?itemName=Shopify.theme-check-vscode) extension upon opening VS Code after you've forked and cloned Dawn.
+
+You can also run it from a terminal with the following Shopify CLI command:
+
+```bash
+shopify theme check
+```
+
+### Continuous Integration
+
+Dawn uses [GitHub Actions](https://github.com/features/actions) to maintain the quality of the theme. [This is a starting point](https://github.com/Shopify/dawn/blob/main/.github/workflows/ci.yml) and what we suggest to use in order to ensure you're building better themes. Feel free to build off of it!
+
+#### Shopify/lighthouse-ci-action
+
+We love fast websites! Which is why we created [Shopify/lighthouse-ci-action](https://github.com/Shopify/lighthouse-ci-action). This runs a series of [Google Lighthouse](https://developers.google.com/web/tools/lighthouse) audits for the home, product and collections pages on a store to ensure code that gets added doesn't degrade storefront performance over time.
+
+#### Shopify/theme-check-action
+
+Dawn runs [Theme Check](#Theme-Check) on every commit via [Shopify/theme-check-action](https://github.com/Shopify/theme-check-action).
+
+## Contributing
+
+Want to make commerce better for everyone by contributing to Dawn? We'd love your help! Please read our [contributing guide](https://github.com/Shopify/dawn/blob/main/.github/CONTRIBUTING.md) to learn about our development process, how to propose bug fixes and improvements, and how to build for Dawn.
+
+## Code of conduct
+
+All developers who wish to contribute through code or issues, please first read our [Code of Conduct](https://github.com/Shopify/dawn/blob/main/.github/CODE_OF_CONDUCT.md).
+
+## Theme Store submission
+
+The [Shopify Theme Store](https://themes.shopify.com/) is the place where Shopify merchants find the themes that they'll use to showcase and support their business. As a theme partner, you can create themes for the Shopify Theme Store and reach an international audience of an ever-growing number of entrepreneurs.
+
+Ensure that you follow the list of [theme store requirements](https://shopify.dev/themes/store/requirements) if you're interested in becoming a [Shopify Theme Partner](https://themes.shopify.com/services/themes/guidelines) and building themes for the Shopify platform.
+
+## License
+
+Copyright (c) 2021-present Shopify Inc. See [LICENSE](/LICENSE.md) for further details.
diff --git a/assets/animations.js b/assets/animations.js
new file mode 100644
index 0000000..2622f60
--- /dev/null
+++ b/assets/animations.js
@@ -0,0 +1,102 @@
+const SCROLL_ANIMATION_TRIGGER_CLASSNAME = 'scroll-trigger';
+const SCROLL_ANIMATION_OFFSCREEN_CLASSNAME = 'scroll-trigger--offscreen';
+const SCROLL_ZOOM_IN_TRIGGER_CLASSNAME = 'animate--zoom-in';
+const SCROLL_ANIMATION_CANCEL_CLASSNAME = 'scroll-trigger--cancel';
+
+// Scroll in animation logic
+function onIntersection(elements, observer) {
+ elements.forEach((element, index) => {
+ if (element.isIntersecting) {
+ const elementTarget = element.target;
+ if (elementTarget.classList.contains(SCROLL_ANIMATION_OFFSCREEN_CLASSNAME)) {
+ elementTarget.classList.remove(SCROLL_ANIMATION_OFFSCREEN_CLASSNAME);
+ if (elementTarget.hasAttribute('data-cascade'))
+ elementTarget.setAttribute('style', `--animation-order: ${index};`);
+ }
+ observer.unobserve(elementTarget);
+ } else {
+ element.target.classList.add(SCROLL_ANIMATION_OFFSCREEN_CLASSNAME);
+ element.target.classList.remove(SCROLL_ANIMATION_CANCEL_CLASSNAME);
+ }
+ });
+}
+
+function initializeScrollAnimationTrigger(rootEl = document, isDesignModeEvent = false) {
+ const animationTriggerElements = Array.from(rootEl.getElementsByClassName(SCROLL_ANIMATION_TRIGGER_CLASSNAME));
+ if (animationTriggerElements.length === 0) return;
+
+ if (isDesignModeEvent) {
+ animationTriggerElements.forEach((element) => {
+ element.classList.add('scroll-trigger--design-mode');
+ });
+ return;
+ }
+
+ const observer = new IntersectionObserver(onIntersection, {
+ rootMargin: '0px 0px -50px 0px',
+ });
+ animationTriggerElements.forEach((element) => observer.observe(element));
+}
+
+// Zoom in animation logic
+function initializeScrollZoomAnimationTrigger() {
+ if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return;
+
+ const animationTriggerElements = Array.from(document.getElementsByClassName(SCROLL_ZOOM_IN_TRIGGER_CLASSNAME));
+
+ if (animationTriggerElements.length === 0) return;
+
+ const scaleAmount = 0.2 / 100;
+
+ animationTriggerElements.forEach((element) => {
+ let elementIsVisible = false;
+ const observer = new IntersectionObserver((elements) => {
+ elements.forEach((entry) => {
+ elementIsVisible = entry.isIntersecting;
+ });
+ });
+ observer.observe(element);
+
+ element.style.setProperty('--zoom-in-ratio', 1 + scaleAmount * percentageSeen(element));
+
+ window.addEventListener(
+ 'scroll',
+ throttle(() => {
+ if (!elementIsVisible) return;
+
+ element.style.setProperty('--zoom-in-ratio', 1 + scaleAmount * percentageSeen(element));
+ }),
+ { passive: true }
+ );
+ });
+}
+
+function percentageSeen(element) {
+ const viewportHeight = window.innerHeight;
+ const scrollY = window.scrollY;
+ const elementPositionY = element.getBoundingClientRect().top + scrollY;
+ const elementHeight = element.offsetHeight;
+
+ if (elementPositionY > scrollY + viewportHeight) {
+ // If we haven't reached the image yet
+ return 0;
+ } else if (elementPositionY + elementHeight < scrollY) {
+ // If we've completely scrolled past the image
+ return 100;
+ }
+
+ // When the image is in the viewport
+ const distance = scrollY + viewportHeight - elementPositionY;
+ let percentage = distance / ((viewportHeight + elementHeight) / 100);
+ return Math.round(percentage);
+}
+
+window.addEventListener('DOMContentLoaded', () => {
+ initializeScrollAnimationTrigger();
+ initializeScrollZoomAnimationTrigger();
+});
+
+if (Shopify.designMode) {
+ document.addEventListener('shopify:section:load', (event) => initializeScrollAnimationTrigger(event.target, true));
+ document.addEventListener('shopify:section:reorder', () => initializeScrollAnimationTrigger(document, true));
+}
diff --git a/assets/base.css b/assets/base.css
new file mode 100644
index 0000000..0aca2b6
--- /dev/null
+++ b/assets/base.css
@@ -0,0 +1,3501 @@
+:root {
+ --alpha-button-background: 1;
+ --alpha-button-border: 1;
+ --alpha-link: 0.85;
+ --alpha-badge-border: 0.1;
+}
+
+.product-card-wrapper .card,
+.contains-card--product {
+ --border-radius: var(--product-card-corner-radius);
+ --border-width: var(--product-card-border-width);
+ --border-opacity: var(--product-card-border-opacity);
+ --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
+ --shadow-blur-radius: var(--product-card-shadow-blur-radius);
+ --shadow-opacity: var(--product-card-shadow-opacity);
+ --shadow-visible: var(--product-card-shadow-visible);
+ --image-padding: var(--product-card-image-padding);
+ --text-alignment: var(--product-card-text-alignment);
+}
+
+.collection-card-wrapper .card,
+.contains-card--collection {
+ --border-radius: var(--collection-card-corner-radius);
+ --border-width: var(--collection-card-border-width);
+ --border-opacity: var(--collection-card-border-opacity);
+ --shadow-horizontal-offset: var(--collection-card-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--collection-card-shadow-vertical-offset);
+ --shadow-blur-radius: var(--collection-card-shadow-blur-radius);
+ --shadow-opacity: var(--collection-card-shadow-opacity);
+ --shadow-visible: var(--collection-card-shadow-visible);
+ --image-padding: var(--collection-card-image-padding);
+ --text-alignment: var(--collection-card-text-alignment);
+}
+
+.article-card-wrapper .card,
+.contains-card--article {
+ --border-radius: var(--blog-card-corner-radius);
+ --border-width: var(--blog-card-border-width);
+ --border-opacity: var(--blog-card-border-opacity);
+ --shadow-horizontal-offset: var(--blog-card-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--blog-card-shadow-vertical-offset);
+ --shadow-blur-radius: var(--blog-card-shadow-blur-radius);
+ --shadow-opacity: var(--blog-card-shadow-opacity);
+ --shadow-visible: var(--blog-card-shadow-visible);
+ --image-padding: var(--blog-card-image-padding);
+ --text-alignment: var(--blog-card-text-alignment);
+}
+
+.contains-content-container,
+.content-container {
+ --border-radius: var(--text-boxes-radius);
+ --border-width: var(--text-boxes-border-width);
+ --border-opacity: var(--text-boxes-border-opacity);
+ --shadow-horizontal-offset: var(--text-boxes-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--text-boxes-shadow-vertical-offset);
+ --shadow-blur-radius: var(--text-boxes-shadow-blur-radius);
+ --shadow-opacity: var(--text-boxes-shadow-opacity);
+ --shadow-visible: var(--text-boxes-shadow-visible);
+}
+
+.contains-media,
+.global-media-settings {
+ --border-radius: var(--media-radius);
+ --border-width: var(--media-border-width);
+ --border-opacity: var(--media-border-opacity);
+ --shadow-horizontal-offset: var(--media-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--media-shadow-vertical-offset);
+ --shadow-blur-radius: var(--media-shadow-blur-radius);
+ --shadow-opacity: var(--media-shadow-opacity);
+ --shadow-visible: var(--media-shadow-visible);
+}
+
+/* base */
+
+.no-js:not(html) {
+ display: none !important;
+}
+
+html.no-js .no-js:not(html) {
+ display: block !important;
+}
+
+.no-js-inline {
+ display: none !important;
+}
+
+html.no-js .no-js-inline {
+ display: inline-block !important;
+}
+
+html.no-js .no-js-hidden {
+ display: none !important;
+}
+
+.page-width {
+ max-width: var(--page-width);
+ margin: 0 auto;
+ padding: 0 1.5rem;
+}
+
+body:has(.section-header .drawer-menu) .announcement-bar-section .page-width {
+ max-width: 100%;
+}
+
+.page-width.drawer-menu {
+ max-width: 100%;
+}
+
+.page-width-desktop {
+ padding: 0;
+ margin: 0 auto;
+}
+
+.utility-bar__grid.page-width {
+ padding-left: 3rem;
+ padding-right: 3rem;
+}
+
+@media screen and (min-width: 750px) {
+ .page-width {
+ padding: 0 5rem;
+ }
+
+ .header.page-width,
+ .utility-bar__grid.page-width {
+ padding-left: 3.2rem;
+ padding-right: 3.2rem;
+ }
+
+ .page-width--narrow {
+ padding: 0 9rem;
+ }
+
+ .page-width-desktop {
+ padding: 0;
+ }
+
+ .page-width-tablet {
+ padding: 0 5rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .header:not(.drawer-menu).page-width {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+
+ .page-width--narrow {
+ max-width: 72.6rem;
+ padding: 0;
+ }
+
+ .page-width-desktop {
+ max-width: var(--page-width);
+ padding: 0 5rem;
+ }
+}
+
+.isolate {
+ position: relative;
+ z-index: 0;
+}
+
+.section + .section {
+ margin-top: var(--spacing-sections-mobile);
+}
+
+@media screen and (min-width: 750px) {
+ .section + .section {
+ margin-top: var(--spacing-sections-desktop);
+ }
+}
+
+.element-margin-top {
+ margin-top: 5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .element-margin {
+ margin-top: calc(5rem + var(--page-width-margin));
+ }
+}
+
+.background-secondary {
+ background-color: rgba(var(--color-foreground), 0.04);
+}
+
+.grid-auto-flow {
+ display: grid;
+ grid-auto-flow: column;
+}
+
+.page-margin,
+.shopify-challenge__container {
+ margin: 7rem auto;
+}
+
+.rte-width {
+ max-width: 82rem;
+ margin: 0 auto 2rem;
+}
+
+.list-unstyled {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+.hidden {
+ display: none !important;
+}
+
+.visually-hidden {
+ position: absolute !important;
+ overflow: hidden;
+ width: 1px;
+ height: 1px;
+ margin: -1px;
+ padding: 0;
+ border: 0;
+ clip: rect(0 0 0 0);
+ word-wrap: normal !important;
+}
+
+.visually-hidden--inline {
+ margin: 0;
+ height: 1em;
+}
+
+.overflow-hidden {
+ overflow: hidden;
+}
+
+.skip-to-content-link:focus {
+ z-index: 9999;
+ position: inherit;
+ overflow: auto;
+ width: auto;
+ height: auto;
+ clip: auto;
+}
+
+.full-width-link {
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 2;
+}
+
+::selection {
+ background-color: rgba(var(--color-foreground), 0.2);
+}
+
+.text-body {
+ font-size: 1.5rem;
+ letter-spacing: 0.06rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ font-weight: var(--font-body-weight);
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+.h0,
+.h1,
+.h2,
+.h3,
+.h4,
+.h5 {
+ font-family: var(--font-heading-family);
+ font-style: var(--font-heading-style);
+ font-weight: var(--font-heading-weight);
+ letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
+ color: rgb(var(--color-foreground));
+ line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
+ word-break: break-word;
+}
+
+.hxl {
+ font-size: calc(var(--font-heading-scale) * 5rem);
+}
+
+@media only screen and (min-width: 750px) {
+ .hxl {
+ font-size: calc(var(--font-heading-scale) * 6.2rem);
+ }
+}
+
+.h0 {
+ font-size: calc(var(--font-heading-scale) * 4rem);
+}
+
+@media only screen and (min-width: 750px) {
+ .h0 {
+ font-size: calc(var(--font-heading-scale) * 5.2rem);
+ }
+}
+
+h1,
+.h1 {
+ font-size: calc(var(--font-heading-scale) * 3rem);
+}
+
+@media only screen and (min-width: 750px) {
+ h1,
+ .h1 {
+ font-size: calc(var(--font-heading-scale) * 4rem);
+ }
+}
+
+h2,
+.h2 {
+ font-size: calc(var(--font-heading-scale) * 2rem);
+}
+
+@media only screen and (min-width: 750px) {
+ h2,
+ .h2 {
+ font-size: calc(var(--font-heading-scale) * 2.4rem);
+ }
+}
+
+h3,
+.h3 {
+ font-size: calc(var(--font-heading-scale) * 1.7rem);
+}
+
+@media only screen and (min-width: 750px) {
+ h3,
+ .h3 {
+ font-size: calc(var(--font-heading-scale) * 1.8rem);
+ }
+}
+
+h4,
+.h4 {
+ font-family: var(--font-heading-family);
+ font-style: var(--font-heading-style);
+ font-size: calc(var(--font-heading-scale) * 1.5rem);
+}
+
+h5,
+.h5 {
+ font-size: calc(var(--font-heading-scale) * 1.2rem);
+}
+
+@media only screen and (min-width: 750px) {
+ h5,
+ .h5 {
+ font-size: calc(var(--font-heading-scale) * 1.3rem);
+ }
+}
+
+h6,
+.h6 {
+ color: rgba(var(--color-foreground), 0.75);
+ margin-block-start: 1.67em;
+ margin-block-end: 1.67em;
+}
+
+blockquote {
+ font-style: italic;
+ color: rgba(var(--color-foreground), 0.75);
+ border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
+ padding-left: 1rem;
+}
+
+@media screen and (min-width: 750px) {
+ blockquote {
+ padding-left: 1.5rem;
+ }
+}
+
+.caption {
+ font-size: 1rem;
+ letter-spacing: 0.07rem;
+ line-height: calc(1 + 0.7 / var(--font-body-scale));
+}
+
+@media screen and (min-width: 750px) {
+ .caption {
+ font-size: 1.2rem;
+ }
+}
+
+.caption-with-letter-spacing {
+ font-size: 1rem;
+ letter-spacing: 0.13rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ text-transform: uppercase;
+}
+
+.caption-with-letter-spacing--medium {
+ font-size: 1.2rem;
+ letter-spacing: 0.16rem;
+}
+
+.caption-with-letter-spacing--large {
+ font-size: 1.4rem;
+ letter-spacing: 0.18rem;
+}
+
+.caption-large,
+.customer .field input,
+.customer select,
+.field__input,
+.form__label,
+.select__select {
+ font-size: 1.3rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+ letter-spacing: 0.04rem;
+}
+
+.color-foreground {
+ color: rgb(var(--color-foreground));
+}
+
+table:not([class]) {
+ table-layout: fixed;
+ border-collapse: collapse;
+ font-size: 1.4rem;
+ border-style: hidden;
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
+ /* draws the table border */
+}
+
+table:not([class]) td,
+table:not([class]) th {
+ padding: 1em;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.2);
+}
+
+@media screen and (max-width: 749px) {
+ .small-hide {
+ display: none !important;
+ }
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .medium-hide {
+ display: none !important;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .large-up-hide {
+ display: none !important;
+ }
+}
+
+.left {
+ text-align: left;
+}
+
+.center {
+ text-align: center;
+}
+
+.right {
+ text-align: right;
+}
+
+.uppercase {
+ text-transform: uppercase;
+}
+
+.light {
+ opacity: 0.7;
+}
+
+a:empty,
+ul:empty,
+dl:empty,
+div:empty,
+section:empty,
+article:empty,
+p:empty,
+h1:empty,
+h2:empty,
+h3:empty,
+h4:empty,
+h5:empty,
+h6:empty {
+ display: none;
+}
+
+.link,
+.customer a {
+ cursor: pointer;
+ display: inline-block;
+ border: none;
+ box-shadow: none;
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+ color: rgb(var(--color-link));
+ background-color: transparent;
+ font-size: 1.4rem;
+ font-family: inherit;
+}
+
+.link--text {
+ color: rgb(var(--color-foreground));
+}
+
+.link--text:hover {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.link-with-icon {
+ display: inline-flex;
+ font-size: 1.4rem;
+ font-weight: 600;
+ letter-spacing: 0.1rem;
+ text-decoration: none;
+ margin-bottom: 4.5rem;
+ white-space: nowrap;
+}
+
+.link-with-icon .icon {
+ width: 1.5rem;
+ margin-left: 1rem;
+}
+
+a:not([href]) {
+ cursor: not-allowed;
+}
+
+.circle-divider::after {
+ content: '\2022';
+ margin: 0 1.3rem 0 1.5rem;
+}
+
+.circle-divider:last-of-type::after {
+ display: none;
+}
+
+hr {
+ border: none;
+ height: 0.1rem;
+ background-color: rgba(var(--color-foreground), 0.2);
+ display: block;
+ margin: 5rem 0;
+}
+
+@media screen and (min-width: 750px) {
+ hr {
+ margin: 7rem 0;
+ }
+}
+
+.full-unstyled-link {
+ text-decoration: none;
+ color: currentColor;
+ display: block;
+}
+
+.placeholder {
+ background-color: rgba(var(--color-foreground), 0.04);
+ color: rgba(var(--color-foreground), 0.55);
+ fill: rgba(var(--color-foreground), 0.55);
+}
+
+details > * {
+ box-sizing: border-box;
+}
+
+.break {
+ word-break: break-word;
+}
+
+.visibility-hidden {
+ visibility: hidden;
+}
+
+@media (prefers-reduced-motion) {
+ .motion-reduce {
+ transition: none !important;
+ animation: none !important;
+ }
+}
+
+:root {
+ --duration-short: 100ms;
+ --duration-default: 200ms;
+ --duration-announcement-bar: 250ms;
+ --duration-medium: 300ms;
+ --duration-long: 500ms;
+ --duration-extra-long: 600ms;
+ --duration-extended: 3s;
+ --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
+ --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
+ --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow);
+}
+
+.underlined-link,
+.customer a,
+.inline-richtext a {
+ text-underline-offset: 0.3rem;
+ text-decoration-thickness: 0.1rem;
+ transition: text-decoration-thickness ease 100ms;
+}
+
+.underlined-link,
+.customer a {
+ color: rgba(var(--color-link), var(--alpha-link));
+}
+
+.inline-richtext a,
+.rte.inline-richtext a {
+ color: currentColor;
+}
+
+.underlined-link:hover,
+.customer a:hover,
+.inline-richtext a:hover {
+ color: rgb(var(--color-link));
+ text-decoration-thickness: 0.2rem;
+}
+
+.icon-arrow {
+ width: 1.5rem;
+}
+
+h3 .icon-arrow,
+.h3 .icon-arrow {
+ width: calc(var(--font-heading-scale) * 1.5rem);
+}
+
+/* arrow animation */
+.animate-arrow .icon-arrow path {
+ transform: translateX(-0.25rem);
+ transition: transform var(--duration-short) ease;
+}
+
+.animate-arrow:hover .icon-arrow path {
+ transform: translateX(-0.05rem);
+}
+
+/* base-details-summary */
+summary {
+ cursor: pointer;
+ list-style: none;
+ position: relative;
+}
+
+summary .icon-caret {
+ position: absolute;
+ height: 0.6rem;
+ right: 1.5rem;
+ top: calc(50% - 0.2rem);
+}
+
+summary::-webkit-details-marker {
+ display: none;
+}
+
+.disclosure-has-popup {
+ position: relative;
+}
+
+.disclosure-has-popup[open] > summary::before {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: 2;
+ display: block;
+ cursor: default;
+ content: ' ';
+ background: transparent;
+}
+
+.disclosure-has-popup > summary::before {
+ display: none;
+}
+
+.disclosure-has-popup[open] > summary + * {
+ z-index: 100;
+}
+
+@media screen and (min-width: 750px) {
+ .disclosure-has-popup[open] > summary + * {
+ z-index: 4;
+ }
+
+ .facets .disclosure-has-popup[open] > summary + * {
+ z-index: 2;
+ }
+}
+
+/* base-focus */
+/*
+ Focus ring - default (with offset)
+*/
+
+*:focus {
+ outline: 0;
+ box-shadow: none;
+}
+
+*:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
+.focused,
+.no-js *:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+/* Negate the fallback side-effect for browsers that support :focus-visible */
+.no-js *:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none;
+}
+
+/*
+ Focus ring - inset
+*/
+
+.focus-inset:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: -0.2rem;
+ box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
+}
+
+.focused.focus-inset,
+.no-js .focus-inset:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: -0.2rem;
+ box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
+}
+
+.no-js .focus-inset:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none;
+}
+
+/*
+ Focus ring - none
+*/
+
+/* Dangerous for a11y - Use with care */
+.focus-none {
+ box-shadow: none !important;
+ outline: 0 !important;
+}
+
+.focus-offset:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 1rem;
+ box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
+}
+
+.focus-offset.focused,
+.no-js .focus-offset:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 1rem;
+ box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
+}
+
+.no-js .focus-offset:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none;
+}
+
+/* component-title */
+.title,
+.title-wrapper-with-link {
+ margin: 3rem 0 2rem;
+}
+
+.title-wrapper-with-link .title {
+ margin: 0;
+}
+
+.title .link {
+ font-size: inherit;
+}
+
+.title-wrapper {
+ margin-bottom: 3rem;
+}
+
+.title-wrapper-with-link {
+ display: flex;
+ justify-content: space-between;
+ align-items: flex-end;
+ gap: 1rem;
+ margin-bottom: 3rem;
+ flex-wrap: wrap;
+}
+
+.title--primary {
+ margin: 4rem 0;
+}
+
+.title-wrapper--self-padded-tablet-down,
+.title-wrapper--self-padded-mobile {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .title-wrapper--self-padded-mobile {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .title,
+ .title-wrapper-with-link {
+ margin: 5rem 0 3rem;
+ }
+
+ .title--primary {
+ margin: 2rem 0;
+ }
+
+ .title-wrapper-with-link {
+ align-items: center;
+ }
+
+ .title-wrapper-with-link .title {
+ margin-bottom: 0;
+ }
+
+ .title-wrapper--self-padded-tablet-down {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+
+.title-wrapper-with-link .link-with-icon {
+ margin: 0;
+ flex-shrink: 0;
+ display: flex;
+ align-items: center;
+}
+
+.title-wrapper-with-link .link-with-icon svg {
+ width: 1.5rem;
+}
+
+.title-wrapper-with-link a {
+ margin-top: 0;
+ flex-shrink: 0;
+}
+
+.title-wrapper--no-top-margin {
+ margin-top: 0;
+}
+
+.title-wrapper--no-top-margin > .title {
+ margin-top: 0;
+}
+
+.subtitle {
+ font-size: 1.8rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ letter-spacing: 0.06rem;
+ color: rgba(var(--color-foreground), 0.7);
+}
+
+.subtitle--small {
+ font-size: 1.4rem;
+ letter-spacing: 0.1rem;
+}
+
+.subtitle--medium {
+ font-size: 1.6rem;
+ letter-spacing: 0.08rem;
+}
+
+/* component-grid */
+.grid {
+ display: flex;
+ flex-wrap: wrap;
+ margin-bottom: 2rem;
+ padding: 0;
+ list-style: none;
+ column-gap: var(--grid-mobile-horizontal-spacing);
+ row-gap: var(--grid-mobile-vertical-spacing);
+}
+
+@media screen and (min-width: 750px) {
+ .grid {
+ column-gap: var(--grid-desktop-horizontal-spacing);
+ row-gap: var(--grid-desktop-vertical-spacing);
+ }
+}
+
+.grid:last-child {
+ margin-bottom: 0;
+}
+
+.grid__item {
+ width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
+ max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
+ flex-grow: 1;
+ flex-shrink: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .grid__item {
+ width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
+ max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+}
+
+.grid--gapless.grid {
+ column-gap: 0;
+ row-gap: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .grid__item.slider__slide--full-width {
+ width: 100%;
+ max-width: none;
+ }
+}
+
+.grid--1-col .grid__item {
+ max-width: 100%;
+ width: 100%;
+}
+
+.grid--3-col .grid__item {
+ width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
+}
+
+@media screen and (min-width: 750px) {
+ .grid--3-col .grid__item {
+ width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
+ }
+}
+
+.grid--2-col .grid__item {
+ width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
+}
+
+@media screen and (min-width: 750px) {
+ .grid--2-col .grid__item {
+ width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .grid--4-col-tablet .grid__item {
+ width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
+ }
+
+ .grid--3-col-tablet .grid__item {
+ width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
+ }
+
+ .grid--2-col-tablet .grid__item {
+ width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .grid--1-col-tablet-down .grid__item {
+ width: 100%;
+ max-width: 100%;
+ }
+
+ .slider--tablet.grid--peek {
+ margin: 0;
+ width: 100%;
+ }
+
+ .slider--tablet.grid--peek .grid__item {
+ box-sizing: content-box;
+ margin: 0;
+ }
+
+ .slider.slider--tablet .scroll-trigger.animate--slide-in,
+ .slider.slider--mobile .scroll-trigger.animate--slide-in {
+ animation: none;
+ opacity: 1;
+ transform: inherit;
+ }
+
+ .scroll-trigger:not(.scroll-trigger--offscreen) .slider--tablet {
+ animation: var(--animation-slide-in);
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .grid--6-col-desktop .grid__item {
+ width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
+ max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
+ }
+
+ .grid--5-col-desktop .grid__item {
+ width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
+ max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
+ }
+
+ .grid--4-col-desktop .grid__item {
+ width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
+ max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
+ }
+
+ .grid--3-col-desktop .grid__item {
+ width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
+ max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
+ }
+
+ .grid--2-col-desktop .grid__item {
+ width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .slider.slider--desktop .scroll-trigger.animate--slide-in {
+ animation: none;
+ opacity: 1;
+ transform: inherit;
+ }
+
+ .scroll-trigger:not(.scroll-trigger--offscreen) .slider--desktop {
+ animation: var(--animation-slide-in);
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .grid--1-col-desktop {
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+
+ .grid--1-col-desktop .grid__item {
+ width: 100%;
+ max-width: 100%;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .grid--peek.slider--mobile {
+ margin: 0;
+ width: 100%;
+ }
+
+ .grid--peek.slider--mobile .grid__item {
+ box-sizing: content-box;
+ margin: 0;
+ }
+
+ .grid--peek .grid__item {
+ min-width: 35%;
+ }
+
+ .grid--peek.slider .grid__item:first-of-type {
+ margin-left: 1.5rem;
+ }
+
+ /* Fix to show some space at the end of our sliders in all browsers */
+ .grid--peek.slider:after {
+ margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
+ }
+
+ .grid--2-col-tablet-down .grid__item {
+ width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
+ }
+
+ .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item,
+ .grid--peek .grid__item {
+ width: calc(50% - var(--grid-mobile-horizontal-spacing) - 3rem);
+ }
+
+ .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item,
+ .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
+ width: calc(100% - var(--grid-mobile-horizontal-spacing) - 3rem);
+ }
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .slider--tablet.grid--peek .grid__item {
+ width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
+ }
+
+ .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
+ width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
+ }
+
+ .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
+ .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
+ width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
+ }
+
+ .slider--tablet.grid--peek .grid__item:first-of-type {
+ margin-left: 1.5rem;
+ }
+
+ .grid--2-col-tablet-down .grid__item {
+ width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .grid--1-col-tablet-down.grid--peek .grid__item {
+ width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
+ }
+}
+
+/* component-media */
+.media {
+ display: block;
+ background-color: rgba(var(--color-foreground), 0.1);
+ position: relative;
+ overflow: hidden;
+}
+
+.media--transparent {
+ background-color: transparent;
+}
+
+.media > *:not(.zoom):not(.deferred-media__poster-button),
+.media model-viewer {
+ display: block;
+ max-width: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ height: 100%;
+ width: 100%;
+}
+
+.media > img {
+ object-fit: cover;
+ object-position: center center;
+ transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
+}
+
+.media--square {
+ padding-bottom: 100%;
+}
+
+.media--portrait {
+ padding-bottom: 125%;
+}
+
+.media--landscape {
+ padding-bottom: 66.6%;
+}
+
+.media--cropped {
+ padding-bottom: 56%;
+}
+
+.media--16-9 {
+ padding-bottom: 56.25%;
+}
+
+.media--circle {
+ padding-bottom: 100%;
+ border-radius: 50%;
+}
+
+.media.media--hover-effect > img + img {
+ opacity: 0;
+}
+
+@media screen and (min-width: 990px) {
+ .media--cropped {
+ padding-bottom: 63%;
+ }
+}
+
+deferred-media {
+ display: block;
+}
+
+/* component-button */
+/* Button - default */
+
+.button--secondary,
+.button--tertiary {
+ --color-button: var(--color-secondary-button);
+ --color-button-text: var(--color-secondary-button-text);
+}
+
+.button--tertiary {
+ --alpha-button-background: 0;
+ --alpha-button-border: 0.2;
+}
+
+.button,
+.shopify-challenge__button,
+.customer button,
+button.shopify-payment-button__button--unbranded,
+.shopify-payment-button [role='button'],
+.cart__dynamic-checkout-buttons [role='button'],
+.cart__dynamic-checkout-buttons iframe {
+ --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
+ --shadow-blur-radius: var(--buttons-shadow-blur-radius);
+ --shadow-opacity: var(--buttons-shadow-opacity);
+ --shadow-visible: var(--buttons-shadow-visible);
+ --border-offset: var(--buttons-border-offset); /* reduce radius edge artifacts */
+ --border-opacity: calc(1 - var(--buttons-border-opacity));
+ border-radius: var(--buttons-radius-outset);
+ position: relative;
+}
+
+.button,
+.shopify-challenge__button,
+.customer button,
+button.shopify-payment-button__button--unbranded {
+ min-width: calc(12rem + var(--buttons-border-width) * 2);
+ min-height: calc(4.5rem + var(--buttons-border-width) * 2);
+}
+
+.shopify-payment-button__button--branded {
+ z-index: auto;
+}
+
+.cart__dynamic-checkout-buttons iframe {
+ box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
+ rgba(var(--color-shadow), var(--shadow-opacity));
+}
+
+.button,
+.shopify-challenge__button,
+.customer button {
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ border: 0;
+ padding: 0 3rem;
+ cursor: pointer;
+ font: inherit;
+ font-size: 1.5rem;
+ text-decoration: none;
+ color: rgb(var(--color-button-text));
+ transition: box-shadow var(--duration-short) ease;
+ -webkit-appearance: none;
+ appearance: none;
+ background-color: rgba(var(--color-button), var(--alpha-button-background));
+}
+
+.button:before,
+.shopify-challenge__button:before,
+.customer button:before,
+.shopify-payment-button__button--unbranded:before,
+.shopify-payment-button [role='button']:before,
+.cart__dynamic-checkout-buttons [role='button']:before {
+ content: '';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ z-index: -1;
+ border-radius: var(--buttons-radius-outset);
+ box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
+ rgba(var(--color-shadow), var(--shadow-opacity));
+}
+
+.button:after,
+.shopify-challenge__button:after,
+.customer button:after,
+.shopify-payment-button__button--unbranded:after {
+ content: '';
+ position: absolute;
+ top: var(--buttons-border-width);
+ right: var(--buttons-border-width);
+ bottom: var(--buttons-border-width);
+ left: var(--buttons-border-width);
+ z-index: 1;
+ border-radius: var(--buttons-radius);
+ box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
+ rgba(var(--color-button-text), var(--border-opacity)),
+ 0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
+ transition: box-shadow var(--duration-short) ease;
+}
+
+.button:not([disabled]):hover::after,
+.shopify-challenge__button:hover::after,
+.customer button:hover::after,
+.shopify-payment-button__button--unbranded:hover::after {
+ --border-offset: 1.3px;
+ box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
+ rgba(var(--color-button-text), var(--border-opacity)),
+ 0 0 0 calc(var(--buttons-border-width) + 1px) rgba(var(--color-button), var(--alpha-button-background));
+}
+
+.button--secondary:after {
+ --border-opacity: var(--buttons-border-opacity);
+}
+
+.button:focus-visible,
+.button:focus,
+.button.focused,
+.shopify-payment-button__button--unbranded:focus-visible,
+.shopify-payment-button [role='button']:focus-visible,
+.shopify-payment-button__button--unbranded:focus,
+.shopify-payment-button [role='button']:focus {
+ outline: 0;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
+ 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.button:focus:not(:focus-visible):not(.focused),
+.shopify-payment-button__button--unbranded:focus:not(:focus-visible):not(.focused),
+.shopify-payment-button [role='button']:focus:not(:focus-visible):not(.focused) {
+ box-shadow: inherit;
+}
+
+.button::selection,
+.shopify-challenge__button::selection,
+.customer button::selection {
+ background-color: rgba(var(--color-button-text), 0.3);
+}
+
+.button,
+.button-label,
+.shopify-challenge__button,
+.customer button {
+ font-size: 1.5rem;
+ letter-spacing: 0.1rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+}
+
+.button--tertiary {
+ font-size: 1.2rem;
+ padding: 1rem 1.5rem;
+ min-width: calc(9rem + var(--buttons-border-width) * 2);
+ min-height: calc(3.5rem + var(--buttons-border-width) * 2);
+}
+
+.button--small {
+ padding: 1.2rem 2.6rem;
+}
+
+/* Button - other */
+
+.button:disabled,
+.button[aria-disabled='true'],
+.button.disabled,
+.customer button:disabled,
+.customer button[aria-disabled='true'],
+.customer button.disabled,
+.quantity__button.disabled {
+ cursor: not-allowed;
+ opacity: 0.5;
+}
+
+.button--full-width {
+ display: flex;
+ width: 100%;
+}
+
+.button.loading {
+ color: transparent;
+ position: relative;
+}
+
+@media screen and (forced-colors: active) {
+ .button.loading {
+ color: rgb(var(--color-foreground));
+ }
+}
+
+.button.loading > .loading__spinner {
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ position: absolute;
+ height: 100%;
+ display: flex;
+ align-items: center;
+}
+
+.button.loading > .loading__spinner .spinner {
+ width: fit-content;
+}
+
+.button.loading > .loading__spinner .path {
+ stroke: rgb(var(--color-button-text));
+}
+
+/* Button - social share */
+
+.share-button {
+ display: block;
+ position: relative;
+}
+
+.share-button details {
+ width: fit-content;
+}
+
+.share-button__button {
+ font-size: 1.4rem;
+ display: flex;
+ align-items: center;
+ color: rgb(var(--color-link));
+ margin-left: 0;
+ padding-left: 0;
+ min-height: 4.4rem;
+}
+
+details[open] > .share-button__fallback {
+ animation: animateMenuOpen var(--duration-default) ease;
+}
+
+.share-button__button:hover {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.share-button__button,
+.share-button__fallback button {
+ cursor: pointer;
+ background-color: transparent;
+ border: none;
+}
+
+.share-button__button .icon-share {
+ height: 1.2rem;
+ margin-right: 1rem;
+ min-width: 1.3rem;
+}
+
+.share-button__fallback {
+ display: flex;
+ align-items: center;
+ position: absolute;
+ top: 3rem;
+ left: 0.1rem;
+ z-index: 3;
+ width: 100%;
+ min-width: max-content;
+ border-radius: var(--inputs-radius);
+ border: 0;
+}
+
+.share-button__fallback:after {
+ pointer-events: none;
+ content: '';
+ position: absolute;
+ top: var(--inputs-border-width);
+ right: var(--inputs-border-width);
+ bottom: var(--inputs-border-width);
+ left: var(--inputs-border-width);
+ border: 0.1rem solid transparent;
+ border-radius: var(--inputs-radius);
+ box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
+ transition: box-shadow var(--duration-short) ease;
+ z-index: 1;
+}
+
+.share-button__fallback:before {
+ background: rgb(var(--color-background));
+ pointer-events: none;
+ content: '';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border-radius: var(--inputs-radius-outset);
+ box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
+ var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
+ z-index: -1;
+}
+
+.share-button__fallback button {
+ width: 4.4rem;
+ height: 4.4rem;
+ padding: 0;
+ flex-shrink: 0;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ right: var(--inputs-border-width);
+}
+
+.share-button__fallback button:hover {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.share-button__fallback button:hover svg {
+ transform: scale(1.07);
+}
+
+.share-button__close:not(.hidden) + .share-button__copy {
+ display: none;
+}
+
+.share-button__close,
+.share-button__copy {
+ background-color: transparent;
+ color: rgb(var(--color-foreground));
+}
+
+.share-button__copy:focus-visible,
+.share-button__close:focus-visible {
+ background-color: rgb(var(--color-background));
+ z-index: 2;
+}
+
+.share-button__copy:focus,
+.share-button__close:focus {
+ background-color: rgb(var(--color-background));
+ z-index: 2;
+}
+
+.field:not(:focus-visible):not(.focused) + .share-button__copy:not(:focus-visible):not(.focused),
+.field:not(:focus-visible):not(.focused) + .share-button__close:not(:focus-visible):not(.focused) {
+ background-color: inherit;
+}
+
+.share-button__fallback .field:after,
+.share-button__fallback .field:before {
+ content: none;
+}
+
+.share-button__fallback .field {
+ border-radius: 0;
+ min-width: auto;
+ min-height: auto;
+ transition: none;
+}
+
+.share-button__fallback .field__input:focus,
+.share-button__fallback .field__input:-webkit-autofill {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.1rem;
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.share-button__fallback .field__input {
+ box-shadow: none;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ overflow: hidden;
+ filter: none;
+ min-width: auto;
+ min-height: auto;
+}
+
+.share-button__fallback .field__input:hover {
+ box-shadow: none;
+}
+
+.share-button__fallback .icon {
+ width: 1.5rem;
+ height: 1.5rem;
+}
+
+.share-button__message:not(:empty) {
+ display: flex;
+ align-items: center;
+ width: 100%;
+ height: 100%;
+ margin-top: 0;
+ padding: 0.8rem 0 0.8rem 1.5rem;
+ margin: var(--inputs-border-width);
+}
+
+.share-button__message:not(:empty):not(.hidden) ~ * {
+ display: none;
+}
+
+/* component-form */
+.field__input,
+.select__select,
+.customer .field input,
+.customer select {
+ -webkit-appearance: none;
+ appearance: none;
+ background-color: rgb(var(--color-background));
+ color: rgb(var(--color-foreground));
+ font-size: 1.6rem;
+ width: 100%;
+ box-sizing: border-box;
+ transition: box-shadow var(--duration-short) ease;
+ border-radius: var(--inputs-radius);
+ height: 4.5rem;
+ min-height: calc(var(--inputs-border-width) * 2);
+ min-width: calc(7rem + (var(--inputs-border-width) * 2));
+ position: relative;
+ border: 0;
+}
+
+.field:before,
+.select:before,
+.customer .field:before,
+.customer select:before,
+.localization-form__select:before {
+ pointer-events: none;
+ content: '';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border-radius: var(--inputs-radius-outset);
+ box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
+ var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
+ z-index: -1;
+}
+
+.field:after,
+.select:after,
+.customer .field:after,
+.customer select:after,
+.localization-form__select:after {
+ pointer-events: none;
+ content: '';
+ position: absolute;
+ top: var(--inputs-border-width);
+ right: var(--inputs-border-width);
+ bottom: var(--inputs-border-width);
+ left: var(--inputs-border-width);
+ border: 0.1rem solid transparent;
+ border-radius: var(--inputs-radius);
+ box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
+ transition: box-shadow var(--duration-short) ease;
+ z-index: 1;
+}
+
+.select__select {
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ font-weight: var(--font-body-weight);
+ font-size: 1.2rem;
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.field:hover.field:after,
+.select:hover.select:after,
+.select__select:hover.select__select:after,
+.customer .field:hover.field:after,
+.customer select:hover.select:after,
+.localization-form__select:hover.localization-form__select:after {
+ box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
+ rgba(var(--color-foreground), var(--inputs-border-opacity));
+ outline: 0;
+ border-radius: var(--inputs-radius);
+}
+
+.field__input:focus-visible,
+.select__select:focus-visible,
+.customer .field input:focus-visible,
+.customer select:focus-visible,
+.localization-form__select:focus-visible.localization-form__select:after {
+ box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
+ outline: 0;
+ border-radius: var(--inputs-radius);
+}
+
+.field__input:focus,
+.select__select:focus,
+.customer .field input:focus,
+.customer select:focus,
+.localization-form__select:focus.localization-form__select:after {
+ box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
+ outline: 0;
+ border-radius: var(--inputs-radius);
+}
+
+.localization-form__select:focus {
+ outline: 0;
+ box-shadow: none;
+}
+
+.text-area,
+.select {
+ display: flex;
+ position: relative;
+ width: 100%;
+}
+
+/* Select */
+
+.select .icon-caret,
+.customer select + svg {
+ height: 0.6rem;
+ pointer-events: none;
+ position: absolute;
+ top: calc(50% - 0.2rem);
+ right: calc(var(--inputs-border-width) + 1.5rem);
+}
+
+.select__select,
+.customer select {
+ cursor: pointer;
+ line-height: calc(1 + 0.6 / var(--font-body-scale));
+ padding: 0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
+ margin: var(--inputs-border-width);
+ min-height: calc(var(--inputs-border-width) * 2);
+}
+
+/* Field */
+
+.field {
+ position: relative;
+ width: 100%;
+ display: flex;
+ transition: box-shadow var(--duration-short) ease;
+}
+
+.customer .field {
+ display: flex;
+}
+
+.field--with-error {
+ flex-wrap: wrap;
+}
+
+.field__input,
+.customer .field input {
+ flex-grow: 1;
+ text-align: left;
+ padding: 1.5rem;
+ margin: var(--inputs-border-width);
+ transition: box-shadow var(--duration-short) ease;
+}
+
+.field__label,
+.customer .field label {
+ font-size: 1.6rem;
+ left: calc(var(--inputs-border-width) + 2rem);
+ top: calc(1rem + var(--inputs-border-width));
+ margin-bottom: 0;
+ pointer-events: none;
+ position: absolute;
+ transition: top var(--duration-short) ease, font-size var(--duration-short) ease;
+ color: rgba(var(--color-foreground), 0.75);
+ letter-spacing: 0.1rem;
+ line-height: 1.5;
+}
+
+.field__input:focus ~ .field__label,
+.field__input:not(:placeholder-shown) ~ .field__label,
+.field__input:-webkit-autofill ~ .field__label,
+.customer .field input:focus ~ label,
+.customer .field input:not(:placeholder-shown) ~ label,
+.customer .field input:-webkit-autofill ~ label {
+ font-size: 1rem;
+ top: calc(var(--inputs-border-width) + 0.5rem);
+ left: calc(var(--inputs-border-width) + 2rem);
+ letter-spacing: 0.04rem;
+}
+
+.field__input:focus,
+.field__input:not(:placeholder-shown),
+.field__input:-webkit-autofill,
+.customer .field input:focus,
+.customer .field input:not(:placeholder-shown),
+.customer .field input:-webkit-autofill {
+ padding: 2.2rem 1.5rem 0.8rem 2rem;
+ margin: var(--inputs-border-width);
+}
+
+.field__input::-webkit-search-cancel-button,
+.customer .field input::-webkit-search-cancel-button {
+ display: none;
+}
+
+.field__input::placeholder,
+.customer .field input::placeholder {
+ opacity: 0;
+}
+
+.field__button {
+ align-items: center;
+ background-color: transparent;
+ border: 0;
+ color: currentColor;
+ cursor: pointer;
+ display: flex;
+ height: 4.4rem;
+ justify-content: center;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 4.4rem;
+}
+
+.field__button > svg {
+ height: 2.5rem;
+ width: 2.5rem;
+}
+
+.field__input:-webkit-autofill ~ .field__button,
+.field__input:-webkit-autofill ~ .field__label,
+.customer .field input:-webkit-autofill ~ label {
+ color: rgb(0, 0, 0);
+}
+
+/* Text area */
+
+.text-area {
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ font-weight: var(--font-body-weight);
+ min-height: 10rem;
+ resize: none;
+}
+
+input[type='checkbox'] {
+ display: inline-block;
+ width: auto;
+ margin-right: 0.5rem;
+}
+
+/* Form global */
+
+.form__label {
+ display: block;
+ margin-bottom: 0.6rem;
+}
+
+.form__message {
+ align-items: center;
+ display: flex;
+ font-size: 1.4rem;
+ line-height: 1;
+ margin-top: 1rem;
+}
+
+.form__message--large {
+ font-size: 1.6rem;
+}
+
+.customer .field .form__message {
+ font-size: 1.4rem;
+ text-align: left;
+}
+
+.form__message .icon,
+.customer .form__message svg {
+ flex-shrink: 0;
+ height: 1.3rem;
+ margin-right: 0.5rem;
+ width: 1.3rem;
+}
+
+.form__message--large .icon,
+.customer .form__message svg {
+ height: 1.5rem;
+ width: 1.5rem;
+ margin-right: 1rem;
+}
+
+.customer .field .form__message svg {
+ align-self: start;
+}
+
+.form-status {
+ margin: 0;
+ font-size: 1.6rem;
+}
+
+.form-status-list {
+ padding: 0;
+ margin: 2rem 0 4rem;
+}
+
+.form-status-list li {
+ list-style-position: inside;
+}
+
+.form-status-list .link::first-letter {
+ text-transform: capitalize;
+}
+
+/* component-quantity */
+.quantity {
+ color: rgba(var(--color-foreground));
+ position: relative;
+ width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
+ display: flex;
+ border-radius: var(--inputs-radius);
+ min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
+}
+
+.quantity:after {
+ pointer-events: none;
+ content: '';
+ position: absolute;
+ top: var(--inputs-border-width);
+ right: var(--inputs-border-width);
+ bottom: var(--inputs-border-width);
+ left: var(--inputs-border-width);
+ border: 0.1rem solid transparent;
+ border-radius: var(--inputs-radius);
+ box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
+ transition: box-shadow var(--duration-short) ease;
+ z-index: 1;
+}
+
+.quantity:before {
+ background: rgb(var(--color-background));
+ pointer-events: none;
+ content: '';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ border-radius: var(--inputs-radius-outset);
+ box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
+ var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
+ z-index: -1;
+}
+
+.quantity__input {
+ color: currentColor;
+ font-size: 1.6rem;
+ font-weight: 500;
+ opacity: 0.85;
+ text-align: center;
+ background-color: transparent;
+ border: 0;
+ padding: 0 0.5rem;
+ width: 100%;
+ flex-grow: 1;
+ -webkit-appearance: none;
+ appearance: none;
+}
+
+.quantity__button {
+ width: calc(4.5rem / var(--font-body-scale));
+ flex-shrink: 0;
+ font-size: 1.8rem;
+ border: 0;
+ background-color: transparent;
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ color: rgb(var(--color-foreground));
+ padding: 0;
+}
+
+.quantity__button:first-child {
+ margin-left: calc(var(--inputs-border-width));
+}
+
+.quantity__button:last-child {
+ margin-right: calc(var(--inputs-border-width));
+}
+
+.quantity__button svg {
+ width: 1rem;
+ pointer-events: none;
+}
+
+.quantity__button:focus-visible,
+.quantity__input:focus-visible {
+ background-color: rgb(var(--color-background));
+ z-index: 2;
+}
+
+.quantity__button:focus,
+.quantity__input:focus {
+ background-color: rgb(var(--color-background));
+ z-index: 2;
+}
+
+.quantity__button:not(:focus-visible):not(.focused),
+.quantity__input:not(:focus-visible):not(.focused) {
+ box-shadow: inherit;
+ background-color: inherit;
+}
+
+.quantity__input:-webkit-autofill,
+.quantity__input:-webkit-autofill:hover,
+.quantity__input:-webkit-autofill:active {
+ box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
+ -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
+}
+
+.quantity__input::-webkit-outer-spin-button,
+.quantity__input::-webkit-inner-spin-button {
+ -webkit-appearance: none;
+ margin: 0;
+}
+
+.quantity__input[type='number'] {
+ -moz-appearance: textfield;
+}
+
+.quantity__rules {
+ margin-top: 0.5rem;
+ position: relative;
+ font-size: 1.2rem;
+}
+
+.quantity__rules .caption {
+ display: inline-block;
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.quantity__rules .divider + .divider::before {
+ content: '\2022';
+ margin: 0 0.5rem;
+}
+
+.quantity__rules-cart {
+ position: relative;
+}
+
+product-info .loading__spinner:not(.hidden) ~ *,
+.quantity__rules-cart .loading__spinner:not(.hidden) ~ * {
+ visibility: hidden;
+}
+
+/* component-modal */
+.modal__toggle {
+ list-style-type: none;
+}
+
+.no-js details[open] .modal__toggle {
+ position: absolute;
+ z-index: 5;
+}
+
+.modal__toggle-close {
+ display: none;
+}
+
+.no-js details[open] svg.modal__toggle-close {
+ display: flex;
+ z-index: 1;
+ height: 1.7rem;
+ width: 1.7rem;
+}
+
+.modal__toggle-open {
+ display: flex;
+}
+
+.no-js details[open] .modal__toggle-open {
+ display: none;
+}
+
+.no-js .modal__close-button.link {
+ display: none;
+}
+
+.modal__close-button.link {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ padding: 0rem;
+ height: 4.4rem;
+ width: 4.4rem;
+ background-color: transparent;
+}
+
+.modal__close-button .icon {
+ width: 1.7rem;
+ height: 1.7rem;
+}
+
+.modal__content {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ background: rgb(var(--color-background));
+ z-index: 4;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.media-modal {
+ cursor: zoom-out;
+}
+
+.media-modal .deferred-media {
+ cursor: initial;
+}
+
+/* component-cart-count-bubble */
+.cart-count-bubble:empty {
+ display: none;
+}
+
+.cart-count-bubble {
+ position: absolute;
+ background-color: rgb(var(--color-button));
+ color: rgb(var(--color-button-text));
+ height: 1.7rem;
+ width: 1.7rem;
+ border-radius: 100%;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ font-size: 0.9rem;
+ bottom: 0.8rem;
+ left: 2.2rem;
+ line-height: calc(1 + 0.1 / var(--font-body-scale));
+}
+
+/* utility-bar */
+.utility-bar {
+ height: 100%;
+}
+
+.utility-bar--bottom-border {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+@media screen and (min-width: 990px) {
+ .utility-bar--bottom-border-social-only {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ }
+}
+
+.utility-bar__grid {
+ display: grid;
+ grid-template-columns: 1fr;
+ grid-template-areas: 'announcements';
+}
+
+.utility-bar__grid .list-social {
+ justify-content: flex-start;
+ align-content: center;
+ margin-left: -1.2rem;
+ grid-area: social-icons;
+}
+
+@media screen and (max-width: 989px) {
+ .utility-bar .utility-bar__grid .list-social {
+ display: none;
+ }
+}
+
+.utility-bar .list-social__item .icon {
+ scale: 0.9;
+}
+
+@media screen and (min-width: 990px) {
+ .utility-bar__grid--3-col {
+ grid-template-columns: 3fr 4fr 3fr;
+ grid-template-areas: 'social-icons announcements language-currency';
+ }
+
+ .utility-bar__grid--2-col {
+ grid-template-columns: 1fr 1fr;
+ grid-template-areas: 'social-icons language-currency';
+ }
+
+ .announcement-bar.announcement-bar--one-announcement,
+ .announcement-bar--one-announcement .announcement-bar__link {
+ width: fit-content;
+ margin: auto;
+ }
+}
+
+.announcement-bar,
+.announcement-bar__announcement {
+ color: rgb(var(--color-foreground));
+ width: 100%;
+ height: 100%;
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ align-content: center;
+ grid-area: announcements;
+}
+
+.announcement-bar .slider--everywhere {
+ margin-bottom: 0;
+ scroll-behavior: auto;
+}
+
+.utility-bar__grid .announcement-bar-slider {
+ width: 100%;
+}
+
+.utility-bar__grid .announcement-bar-slider {
+ width: 100%;
+}
+
+.announcement-bar-slider,
+.announcement-bar-slider .slider {
+ width: 100%;
+}
+
+.announcement-bar .slider-button--next {
+ margin-right: -1.5rem;
+ min-width: 44px;
+}
+
+.announcement-bar .slider-button--prev {
+ margin-left: -1.5rem;
+ min-width: 44px;
+}
+
+.announcement-bar .slider-button--next:focus-visible,
+.announcement-bar .slider-button--prev:focus-visible,
+.utility-bar .list-social__link:focus-visible {
+ outline-offset: -0.3rem;
+ box-shadow: 0 0 0 -0.2rem rgb(var(--color-foreground));
+}
+
+.localization-wrapper {
+ grid-area: language-currency;
+ align-self: center;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.localization-wrapper .localization-selector + .disclosure__list-wrapper {
+ animation: animateMenuOpen var(--duration-default) ease;
+}
+
+.utility-bar .localization-wrapper .disclosure .localization-form__select,
+.utility-bar .localization-wrapper .disclosure__link {
+ font-size: calc(var(--font-heading-scale) * 1.3rem);
+}
+
+@media screen and (min-width: 990px) {
+ body:has(.section-header .header:not(.drawer-menu)) .utility-bar .page-width {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+
+ .announcement-bar-slider {
+ width: 60%;
+ }
+
+ .announcement-bar .slider-button {
+ height: 3.8rem;
+ }
+}
+
+.announcement-bar__link {
+ display: flex;
+ width: 100%;
+ text-decoration: none;
+ height: 100%;
+ justify-content: center;
+ align-items: center;
+}
+
+.announcement-bar__link:hover {
+ text-decoration: underline;
+}
+
+.announcement-bar__link .icon-arrow {
+ display: inline-block;
+ pointer-events: none;
+ margin-left: 0.8rem;
+ vertical-align: middle;
+ margin-bottom: 0.2rem;
+}
+
+.announcement-bar__message {
+ text-align: center;
+ padding: 1rem 0;
+ margin: 0;
+ letter-spacing: 0.1rem;
+ min-height: 3.8rem;
+}
+
+.announcement-bar-slider--fade-in-next .announcement-bar__message,
+.announcement-bar-slider--fade-in-previous .announcement-bar__message,
+.announcement-bar-slider--fade-out-next .announcement-bar__message,
+.announcement-bar-slider--fade-out-previous .announcement-bar__message {
+ animation-duration: var(--duration-announcement-bar);
+ animation-timing-function: ease-in-out;
+ animation-fill-mode: forwards;
+}
+
+.announcement-bar-slider--fade-in-next .announcement-bar__message {
+ --announcement-translate-from: -1.5rem;
+ /* Prevent flicker */
+ opacity: 0;
+ animation-name: translateAnnouncementSlideIn;
+ animation-delay: var(--duration-announcement-bar);
+}
+
+.announcement-bar-slider--fade-in-previous .announcement-bar__message {
+ --announcement-translate-from: 1.5rem;
+ /* Prevent flicker */
+ opacity: 0;
+ animation-name: translateAnnouncementSlideIn;
+ animation-delay: var(--duration-announcement-bar);
+}
+
+.announcement-bar-slider--fade-out-next .announcement-bar__message {
+ --announcement-translate-to: 1.5rem;
+ animation-name: translateAnnouncementSlideOut;
+}
+
+.announcement-bar-slider--fade-out-previous .announcement-bar__message {
+ --announcement-translate-to: -1.5rem;
+ animation-name: translateAnnouncementSlideOut;
+}
+
+@keyframes translateAnnouncementSlideIn {
+ 0% {opacity: 0; transform: translateX(var(--announcement-translate-from))}
+ 100% {opacity: 1; transform: translateX(0)}
+}
+
+@keyframes translateAnnouncementSlideOut {
+ 0% {opacity: 1; transform: translateX(0)}
+ 100% {opacity: 0; transform: translateX(var(--announcement-translate-to))}
+}
+
+/* section-header */
+.section-header.shopify-section-group-header-group {
+ z-index: 3;
+}
+
+.shopify-section-header-sticky {
+ position: sticky;
+ top: 0;
+}
+
+.shopify-section-header-hidden {
+ top: calc(-1 * var(--header-height));
+}
+
+.shopify-section-header-hidden.menu-open {
+ top: 0;
+}
+
+.section-header.animate {
+ transition: top 0.15s ease-out;
+}
+
+.shopify-section-group-header-group {
+ z-index: 4;
+}
+
+.section-header ~ .shopify-section-group-header-group {
+ z-index: initial;
+}
+
+/* Main Header Layout */
+.header-wrapper {
+ display: block;
+ position: relative;
+ background-color: rgb(var(--color-background));
+}
+
+.header-wrapper--border-bottom {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.header {
+ display: grid;
+ grid-template-areas: 'left-icons heading icons';
+ grid-template-columns: 1fr 2fr 1fr;
+ align-items: center;
+}
+
+@media screen and (max-width: 749px) {
+ .header--has-app {
+ grid-template-columns: auto 1fr auto;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .header {
+ grid-template-columns: 1fr auto 1fr;
+ }
+
+ .header--top-left,
+ .header--middle-left:not(.header--has-menu) {
+ grid-template-areas:
+ 'heading icons'
+ 'navigation navigation';
+ grid-template-columns: 1fr auto;
+ }
+
+ .header--top-left.drawer-menu,
+ .header--middle-left.drawer-menu {
+ grid-template-areas: 'navigation heading icons';
+ grid-template-columns: auto 1fr auto;
+ column-gap: 1rem;
+ }
+
+ .header--middle-left {
+ grid-template-areas: 'heading navigation icons';
+ grid-template-columns: auto auto 1fr;
+ column-gap: 2rem;
+ }
+
+ .header--middle-center:not(.drawer-menu) {
+ grid-template-areas: 'navigation heading icons';
+ grid-template-columns: 1fr auto 1fr;
+ column-gap: 2rem;
+ }
+
+ .header--middle-center a.header__heading-link {
+ text-align: center;
+ }
+
+ .header--top-center {
+ grid-template-areas:
+ 'left-icons heading icons'
+ 'navigation navigation navigation';
+ }
+
+ .header--top-center.drawer-menu {
+ grid-template-areas: 'left-icons heading icons';
+ grid-template-columns: 1fr auto 1fr;
+ }
+
+ .header:not(.header--middle-left, .header--middle-center) .header__inline-menu {
+ margin-top: 1.05rem;
+ }
+}
+
+.header *[tabindex='-1']:focus {
+ outline: none;
+}
+
+.header__heading {
+ margin: 0;
+ line-height: 0;
+}
+
+.header > .header__heading-link {
+ line-height: 0;
+}
+
+.header__heading,
+.header__heading-link {
+ grid-area: heading;
+ justify-self: center;
+}
+
+.header__heading-link {
+ display: inline-block;
+ padding: 0.75rem;
+ text-decoration: none;
+ word-break: break-word;
+}
+
+.header__heading-link:hover .h2 {
+ color: rgb(var(--color-foreground));
+}
+
+.header__heading-link .h2 {
+ line-height: 1;
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.header__heading-logo {
+ height: auto;
+ max-width: 100%;
+}
+
+.header__heading-logo-wrapper {
+ width: 100%;
+ display: inline-block;
+ transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
+}
+
+@media screen and (max-width: 989px) {
+ .header__heading,
+ .header__heading-link {
+ text-align: center;
+ }
+
+ .header--mobile-left .header__heading,
+ .header--mobile-left .header__heading-link {
+ text-align: left;
+ justify-self: start;
+ }
+
+ .header--mobile-left {
+ grid-template-columns: auto 2fr 1fr;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .header--middle-left .header__heading-link,
+ .header--top-left .header__heading-link {
+ margin-left: -0.75rem;
+ }
+
+ .header__heading,
+ .header__heading-link {
+ justify-self: start;
+ }
+
+ .header--middle-center .header__heading-link,
+ .header--middle-center .header__heading {
+ justify-self: center;
+ text-align: center;
+ }
+
+ .header--top-center .header__heading-link,
+ .header--top-center .header__heading {
+ justify-self: center;
+ text-align: center;
+ }
+}
+
+/* Header icons */
+.header__icons {
+ display: flex;
+ grid-area: icons;
+ justify-self: end;
+ padding-right: 0.8rem;
+}
+
+.header__icons .shopify-app-block {
+ max-width: 4.4rem;
+ max-height: 4.4rem;
+ overflow: hidden;
+}
+
+.header__icon:not(.header__icon--summary),
+.header__icon span {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.header__icon {
+ color: rgb(var(--color-foreground));
+}
+
+.header__icon span {
+ height: 100%;
+}
+
+.header__icon::after {
+ content: none;
+}
+
+.header__icon:hover .icon,
+.modal__close-button:hover .icon {
+ transform: scale(1.07);
+}
+
+.header__icon .icon {
+ height: 2rem;
+ width: 2rem;
+ fill: none;
+ vertical-align: middle;
+}
+
+.header__icon,
+.header__icon--cart .icon {
+ height: 4.4rem;
+ width: 4.4rem;
+ padding: 0;
+}
+
+.header__icon--cart {
+ position: relative;
+ margin-right: -1.2rem;
+}
+
+.header__icon--menu[aria-expanded='true']::before {
+ content: '';
+ top: 100%;
+ left: 0;
+ height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
+ width: 100%;
+ display: block;
+ position: absolute;
+ background: rgba(var(--color-foreground), 0.5);
+}
+
+/* Search */
+menu-drawer + .header__search {
+ display: none;
+}
+
+.header > .header__search {
+ grid-area: left-icons;
+ justify-self: start;
+}
+
+.header--top-center.drawer-menu > .header__search {
+ margin-left: 3.2rem;
+}
+
+.header--top-center header-drawer {
+ grid-area: left-icons;
+}
+
+.header:not(.header--has-menu) * > .header__search {
+ display: none;
+}
+
+.header__search {
+ display: inline-flex;
+ line-height: 0;
+}
+
+.header--top-center > .header__search {
+ display: none;
+}
+
+.header--top-center * > .header__search {
+ display: inline-flex;
+}
+
+@media screen and (min-width: 990px) {
+ .header:not(.header--top-center) * > .header__search,
+ .header--top-center > .header__search {
+ display: inline-flex;
+ }
+
+ .header:not(.header--top-center) > .header__search,
+ .header--top-center * > .header__search {
+ display: none;
+ }
+}
+
+.no-js .predictive-search {
+ display: none;
+}
+
+details[open] > .search-modal {
+ opacity: 1;
+ animation: animateMenuOpen var(--duration-default) ease;
+}
+
+details[open] .modal-overlay {
+ display: block;
+}
+
+details[open] .modal-overlay::after {
+ position: absolute;
+ content: '';
+ background-color: rgb(var(--color-foreground), 0.5);
+ top: 100%;
+ left: 0;
+ right: 0;
+ height: 100vh;
+}
+
+.no-js details[open] > .header__icon--search {
+ top: 1rem;
+ right: 0.5rem;
+}
+
+.search-modal {
+ opacity: 0;
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ min-height: calc(100% + var(--inputs-margin-offset) + (2 * var(--inputs-border-width)));
+ height: 100%;
+}
+
+.search-modal__content {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 100%;
+ height: 100%;
+ padding: 0 5rem 0 1rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ position: relative;
+}
+
+.search-modal__content-bottom {
+ bottom: calc((var(--inputs-margin-offset) / 2));
+}
+
+.search-modal__content-top {
+ top: calc((var(--inputs-margin-offset) / 2));
+}
+
+.search-modal__form {
+ width: 100%;
+}
+
+.search-modal__close-button {
+ position: absolute;
+ right: 0.3rem;
+}
+
+@media screen and (min-width: 750px) {
+ .search-modal__close-button {
+ right: 1rem;
+ }
+
+ .search-modal__content {
+ padding: 0 6rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .search-modal__form {
+ max-width: 74.2rem;
+ }
+
+ .search-modal__close-button {
+ position: initial;
+ margin-left: 0.5rem;
+ }
+}
+
+/* Header menu drawer */
+.header__icon--menu .icon {
+ display: block;
+ position: absolute;
+ opacity: 1;
+ transform: scale(1);
+ transition: transform 150ms ease, opacity 150ms ease;
+}
+
+details:not([open]) > .header__icon--menu .icon-close,
+details[open] > .header__icon--menu .icon-hamburger {
+ visibility: hidden;
+ opacity: 0;
+ transform: scale(0.8);
+}
+
+.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close {
+ visibility: hidden;
+}
+
+.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
+ visibility: visible;
+ opacity: 1;
+ transform: scale(1.07);
+}
+
+.js details > .header__submenu {
+ opacity: 0;
+ transform: translateY(-1.5rem);
+}
+
+details[open] > .header__submenu {
+ animation: animateMenuOpen var(--duration-default) ease;
+ animation-fill-mode: forwards;
+ z-index: 1;
+}
+
+@media (prefers-reduced-motion) {
+ details[open] > .header__submenu {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+/* Header menu */
+.header__inline-menu {
+ margin-left: -1.2rem;
+ grid-area: navigation;
+ display: none;
+}
+
+.header--top-center .header__inline-menu,
+.header--top-center .header__heading-link {
+ margin-left: 0;
+}
+
+@media screen and (min-width: 990px) {
+ .header__inline-menu {
+ display: block;
+ }
+
+ .header--top-center .header__inline-menu {
+ justify-self: center;
+ }
+
+ .header--top-center .header__inline-menu > .list-menu--inline {
+ justify-content: center;
+ }
+
+ .header--middle-left .header__inline-menu {
+ margin-left: 0;
+ }
+}
+
+.header__menu {
+ padding: 0 1rem;
+}
+
+.header__menu-item {
+ padding: 1.2rem;
+ text-decoration: none;
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.header__menu-item:hover {
+ color: rgb(var(--color-foreground));
+}
+
+.header__menu-item span {
+ transition: text-decoration var(--duration-short) ease;
+}
+
+.header__menu-item:hover span {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+details[open] > .header__menu-item {
+ text-decoration: underline;
+}
+
+details[open]:hover > .header__menu-item {
+ text-decoration-thickness: 0.2rem;
+}
+
+details[open] > .header__menu-item .icon-caret {
+ transform: rotate(180deg);
+}
+
+.header__active-menu-item {
+ transition: text-decoration-thickness var(--duration-short) ease;
+ color: rgb(var(--color-foreground));
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.header__menu-item:hover .header__active-menu-item {
+ text-decoration-thickness: 0.2rem;
+}
+
+.header__submenu {
+ transition: opacity var(--duration-default) ease, transform var(--duration-default) ease;
+}
+
+.global-settings-popup,
+.header__submenu.global-settings-popup {
+ border-radius: var(--popup-corner-radius);
+ border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
+ border-style: solid;
+ border-width: var(--popup-border-width);
+ box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+ z-index: -1;
+}
+
+.header__submenu.list-menu {
+ padding: 1rem 0;
+}
+
+.header__submenu .header__submenu {
+ background-color: rgba(var(--color-foreground), 0.03);
+ padding: 1rem 0;
+ margin: 1rem 0;
+}
+
+.header__submenu .header__menu-item:after {
+ right: 2rem;
+}
+
+.header__submenu .header__menu-item {
+ justify-content: space-between;
+ padding: 0.8rem 2rem;
+}
+
+.header__submenu .header__menu-item:hover {
+ text-decoration-line: underline;
+}
+
+.header__menu-item .icon-caret {
+ right: 0.8rem;
+}
+
+.header__submenu .icon-caret {
+ flex-shrink: 0;
+ margin-left: 1rem;
+ position: static;
+}
+
+header-menu > details,
+details-disclosure > details {
+ position: relative;
+}
+
+@keyframes animateMenuOpen {
+ 0% {
+ opacity: 0;
+ transform: translateY(-1.5rem);
+ }
+
+ 100% {
+ opacity: 1;
+ transform: translateY(0);
+ }
+}
+
+.overflow-hidden-mobile,
+.overflow-hidden-tablet,
+.overflow-hidden-desktop {
+ overflow: hidden;
+}
+
+@media screen and (min-width: 750px) {
+ .overflow-hidden-mobile {
+ overflow: auto;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .overflow-hidden-tablet {
+ overflow: auto;
+ }
+}
+
+.badge {
+ border: 1px solid transparent;
+ border-radius: var(--badge-corner-radius);
+ display: inline-block;
+ font-size: 1.2rem;
+ letter-spacing: 0.1rem;
+ line-height: 1;
+ padding: 0.5rem 1.3rem 0.6rem 1.3rem;
+ text-align: center;
+ background-color: rgb(var(--color-badge-background));
+ border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
+ color: rgb(var(--color-badge-foreground));
+ word-break: break-word;
+}
+
+.gradient {
+ background: rgb(var(--color-background));
+ background: var(--gradient-background);
+ background-attachment: fixed;
+}
+
+@media screen and (forced-colors: active) {
+ .icon {
+ color: CanvasText;
+ fill: CanvasText !important;
+ }
+
+ .icon-close-small path {
+ stroke: CanvasText;
+ }
+}
+
+.ratio {
+ display: flex;
+ position: relative;
+ align-items: stretch;
+}
+
+.ratio::before {
+ content: '';
+ width: 0;
+ height: 0;
+ padding-bottom: var(--ratio-percent);
+}
+
+.content-container {
+ border-radius: var(--text-boxes-radius);
+ border: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
+ position: relative;
+}
+
+.content-container:after {
+ content: '';
+ position: absolute;
+ top: calc(var(--text-boxes-border-width) * -1);
+ right: calc(var(--text-boxes-border-width) * -1);
+ bottom: calc(var(--text-boxes-border-width) * -1);
+ left: calc(var(--text-boxes-border-width) * -1);
+ border-radius: var(--text-boxes-radius);
+ box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
+ var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
+ z-index: -1;
+}
+
+.content-container--full-width:after {
+ left: 0;
+ right: 0;
+ border-radius: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .content-container--full-width-mobile {
+ border-left: none;
+ border-right: none;
+ border-radius: 0;
+ }
+ .content-container--full-width-mobile:after {
+ display: none;
+ }
+}
+
+.global-media-settings {
+ position: relative;
+ border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
+ border-radius: var(--media-radius);
+ overflow: visible !important;
+ background-color: rgb(var(--color-background));
+}
+
+.global-media-settings:after {
+ content: '';
+ position: absolute;
+ top: calc(var(--media-border-width) * -1);
+ right: calc(var(--media-border-width) * -1);
+ bottom: calc(var(--media-border-width) * -1);
+ left: calc(var(--media-border-width) * -1);
+ border-radius: var(--media-radius);
+ box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--media-shadow-opacity));
+ z-index: -1;
+ pointer-events: none;
+}
+
+.global-media-settings--no-shadow {
+ overflow: hidden !important;
+}
+
+.global-media-settings--no-shadow:after {
+ content: none;
+}
+
+.global-media-settings img,
+.global-media-settings iframe,
+.global-media-settings model-viewer,
+.global-media-settings video,
+.global-media-settings .placeholder-svg {
+ border-radius: calc(var(--media-radius) - var(--media-border-width));
+}
+
+.content-container--full-width,
+.global-media-settings--full-width,
+.global-media-settings--full-width img,
+.global-media-settings--full-width video,
+.global-media-settings--full-width iframe,
+.global-media-settings--full-width .placeholder-svg {
+ border-radius: 0;
+ border-left: none;
+ border-right: none;
+}
+
+/* check for flexbox gap in older Safari versions */
+@supports not (inset: 10px) {
+ .grid {
+ margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
+ }
+
+ .grid__item {
+ padding-left: var(--grid-mobile-horizontal-spacing);
+ padding-bottom: var(--grid-mobile-vertical-spacing);
+ }
+
+ @media screen and (min-width: 750px) {
+ .grid {
+ margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
+ }
+
+ .grid__item {
+ padding-left: var(--grid-desktop-horizontal-spacing);
+ padding-bottom: var(--grid-desktop-vertical-spacing);
+ }
+ }
+
+ .grid--gapless .grid__item {
+ padding-left: 0;
+ padding-bottom: 0;
+ }
+
+ @media screen and (min-width: 749px) {
+ .grid--peek .grid__item {
+ padding-left: var(--grid-mobile-horizontal-spacing);
+ }
+ }
+
+ .product-grid .grid__item {
+ padding-bottom: var(--grid-mobile-vertical-spacing);
+ }
+
+ @media screen and (min-width: 750px) {
+ .product-grid .grid__item {
+ padding-bottom: var(--grid-desktop-vertical-spacing);
+ }
+ }
+}
+
+.font-body-bold {
+ font-weight: var(--font-body-weight-bold);
+}
+
+/* outline and border styling for Windows High Contrast Mode */
+@media (forced-colors: active) {
+ .button,
+ .shopify-challenge__button,
+ .customer button {
+ border: transparent solid 1px;
+ }
+
+ .button:focus-visible,
+ .button:focus,
+ .button.focused,
+ .shopify-payment-button__button--unbranded:focus-visible,
+ .shopify-payment-button [role='button']:focus-visible,
+ .shopify-payment-button__button--unbranded:focus,
+ .shopify-payment-button [role='button']:focus {
+ outline: solid transparent 1px;
+ }
+
+ .field__input:focus,
+ .select__select:focus,
+ .customer .field input:focus,
+ .customer select:focus,
+ .localization-form__select:focus.localization-form__select:after {
+ outline: transparent solid 1px;
+ }
+
+ .localization-form__select:focus {
+ outline: transparent solid 1px;
+ }
+}
+
+.rte:after {
+ clear: both;
+ content: '';
+ display: block;
+}
+
+.rte > *:first-child {
+ margin-top: 0;
+}
+
+.rte > *:last-child {
+ margin-bottom: 0;
+}
+
+.rte table {
+ table-layout: fixed;
+}
+
+@media screen and (min-width: 750px) {
+ .rte table td {
+ padding-left: 1.2rem;
+ padding-right: 1.2rem;
+ }
+}
+
+.rte img {
+ height: auto;
+ max-width: 100%;
+ border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
+ border-radius: var(--media-radius);
+ box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--media-shadow-opacity));
+ margin-bottom: var(--media-shadow-vertical-offset);
+}
+
+.rte ul,
+.rte ol {
+ list-style-position: inside;
+ padding-left: 2rem;
+}
+
+.rte li {
+ list-style: inherit;
+}
+
+.rte li:last-child {
+ margin-bottom: 0;
+}
+
+.rte a {
+ color: rgba(var(--color-link), var(--alpha-link));
+ text-underline-offset: 0.3rem;
+ text-decoration-thickness: 0.1rem;
+ transition: text-decoration-thickness var(--duration-short) ease;
+}
+
+.rte a:hover {
+ color: rgb(var(--color-link));
+ text-decoration-thickness: 0.2rem;
+}
+
+.rte blockquote {
+ display: inline-flex;
+}
+
+.rte blockquote > * {
+ margin: -0.5rem 0 -0.5rem 0;
+}
+
+/* Image mask global styles */
+
+.shape--mask {
+ display: block;
+ height: 0;
+ width: 0;
+}
+
+.shape--arch {
+ clip-path: url('#Shape-Arch');
+}
+
+.shape--blob {
+ clip-path: polygon(var(--shape--blob-1));
+}
+
+.shape--chevronleft {
+ clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 15% 100%, 0% 50%, 15% 0%);
+}
+
+.shape--chevronright {
+ clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
+}
+
+.shape--circle {
+ clip-path: circle(closest-side);
+}
+
+.shape--diamond {
+ clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
+}
+
+.shape--parallelogram {
+ clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
+}
+
+.shape--round {
+ clip-path: ellipse(45% 45% at 50% 50%);
+}
+
+/* Fixed background */
+.animate--fixed {
+ clip-path: inset(0);
+}
+
+.animate--fixed > img:not(.zoom):not(.deferred-media__poster-button),
+.animate--fixed > svg:not(.zoom):not(.deferred-media__poster-button) {
+ position: fixed;
+ height: 100vh;
+}
+
+/* Zoom in image on scroll */
+.animate--zoom-in {
+ --zoom-in-ratio: 1;
+}
+
+.animate--zoom-in > img,
+.animate--zoom-in > svg {
+ transition: scale var(--duration-short) linear;
+ scale: var(--zoom-in-ratio);
+}
+
+/* Animations */
+
+@media (prefers-reduced-motion: no-preference) {
+ .animate--ambient > img,
+ .animate--ambient > svg {
+ animation: animateAmbient 30s linear infinite;
+ }
+
+ @keyframes animateAmbient {
+ 0% {
+ transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
+ }
+ 100% {
+ transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
+ }
+ }
+
+ .scroll-trigger.animate--fade-in,
+ .scroll-trigger.animate--slide-in {
+ opacity: 0.01;
+ }
+
+ .scroll-trigger.animate--slide-in {
+ transform: translateY(2rem);
+ }
+
+ .scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
+ opacity: 1;
+ animation: var(--animation-fade-in);
+ }
+
+ .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
+ animation: var(--animation-slide-in);
+ animation-delay: calc(var(--animation-order) * 75ms);
+ }
+
+ .scroll-trigger.scroll-trigger--design-mode.animate--fade-in,
+ .scroll-trigger.scroll-trigger--design-mode.animate--slide-in,
+ .scroll-trigger.scroll-trigger--design-mode .slider,
+ .scroll-trigger:not(.scroll-trigger--offscreen).scroll-trigger--cancel {
+ opacity: 1;
+ animation: none;
+ transition: none;
+ }
+
+ .scroll-trigger.scroll-trigger--design-mode.animate--slide-in {
+ transform: translateY(0);
+ }
+
+ @keyframes slideIn {
+ from {
+ transform: translateY(2rem);
+ opacity: 0.01;
+ }
+ to {
+ transform: translateY(0);
+ opacity: 1;
+ }
+ }
+
+ @keyframes fadeIn {
+ from {
+ opacity: 0.01;
+ }
+ to {
+ opacity: 1;
+ }
+ }
+}
+
+/* Element Hovers: Vertical Lift, 3d Lift */
+
+@media (prefers-reduced-motion: no-preference) and (hover: hover) {
+ .animate--hover-3d-lift .card-wrapper .card--card,
+ .animate--hover-3d-lift .card-wrapper .card--standard .card__inner,
+ .animate--hover-3d-lift .button:not(.button--tertiary),
+ .animate--hover-3d-lift .shopify-challenge__button,
+ .animate--hover-3d-lift .customer button,
+ .animate--hover-3d-lift .shopify-payment-button__button,
+ .animate--hover-3d-lift .deferred-media .deferred-media__poster-button {
+ transition: transform var(--duration-long) ease, box-shadow var(--duration-long) ease;
+ transform-origin: center;
+ }
+
+ .animate--hover-3d-lift .card-wrapper:hover .card--card,
+ .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__inner,
+ .animate--hover-3d-lift .button:not(.button--tertiary):not([disabled]):hover,
+ .animate--hover-3d-lift .shopify-challenge__button:not([disabled]):hover,
+ .animate--hover-3d-lift .customer button:not([disabled]):hover,
+ .animate--hover-3d-lift .shopify-payment-button__button:hover,
+ .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button {
+ transition: transform var(--duration-extended) ease, box-shadow var(--duration-long) ease; /* Slow the card transition speed while hover is active. */
+ transform: rotate(1deg);
+ box-shadow: -1rem -1rem 1rem -1rem rgba(0, 0, 0, 0.05), 1rem 1rem 1rem -1rem rgba(0, 0, 0, 0.05),
+ 0 0 0.5rem 0 rgba(255, 255, 255, 0), 0 2rem 3.5rem -2rem rgba(0, 0, 0, 0.5);
+ }
+
+ .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button {
+ transform: translate(-50%, -50%) scale(1.05); /* Apply a specialized transform to the video play button. */
+ }
+
+ .animate--hover-3d-lift .collage__item .card-wrapper:hover .card--card,
+ .animate--hover-3d-lift .collage__item .card-wrapper:hover .card--standard .card__inner {
+ transform: rotate(0.5deg); /* Less intense rotation for collage items. */
+ }
+
+ .animate--hover-3d-lift .product-grid .grid__item:hover,
+ .animate--hover-3d-lift .collection-list .grid__item:hover,
+ .animate--hover-3d-lift .collage__item:hover,
+ .animate--hover-3d-lift .blog-articles .article:hover,
+ .animate--hover-3d-lift .complementary-slide li:hover {
+ z-index: 2; /* Make sure the hovered card is the topmost card. */
+ }
+
+ .animate--hover-3d-lift .product-grid {
+ isolation: isolate; /* Ensure z-index changes here don't negatively effect other UI stacking. */
+ }
+
+ .animate--hover-3d-lift .card-wrapper .card--shape.card--standard:not(.card--text) .card__inner {
+ box-shadow: none;
+ transition: transform var(--duration-long) ease, filter var(--duration-long) ease;
+ }
+
+ .animate--hover-3d-lift .card-wrapper:hover .card--shape.card--standard:not(.card--text) .card__inner {
+ transition: transform calc(2 * var(--duration-extended)) ease, filter var(--duration-long) ease; /* Slow the card transition speed while hover is active. */
+ filter: drop-shadow(0rem 2rem 2rem rgba(0, 0, 0, 0.15)) drop-shadow(0rem 1rem 1rem rgba(0, 0, 0, 0.15));
+ }
+
+ .animate--hover-3d-lift .card-wrapper:hover .card--card:after,
+ .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__inner:after,
+ .animate--hover-3d-lift
+ .card-wrapper:hover
+ .card--shape.card--standard:not(.card--text)
+ .card__inner
+ .card__media:before {
+ background-image: var(--easter-egg);
+ background-size: 250px 250px;
+ mix-blend-mode: color-dodge;
+ pointer-events: none;
+ z-index: 2;
+ }
+
+ .animate--hover-3d-lift
+ .card-wrapper:hover
+ .card--shape.card--standard:not(.card--text)
+ .card__inner
+ .card__media:before {
+ content: '';
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ }
+
+ .animate--hover-3d-lift .card-wrapper .card--card:before,
+ .animate--hover-3d-lift .card-wrapper .card--standard .card__media:after {
+ content: '';
+ position: absolute;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ opacity: 0;
+ pointer-events: none;
+ transition: background-position calc(2 * var(--duration-extended)) ease, opacity var(--duration-default) ease;
+ mix-blend-mode: overlay;
+ background-size: 400% 100%;
+ background-position: 90% 0;
+ background-repeat: no-repeat;
+ background-image: linear-gradient(
+ 135deg,
+ rgba(255, 255, 255, 0) 45%,
+ rgba(255, 255, 255, 1) 50%,
+ rgba(255, 255, 255, 0) 55%
+ );
+ }
+
+ .animate--hover-3d-lift .card-wrapper:hover .card--card:before,
+ .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__media:after {
+ opacity: 0.2;
+ transition: background-position 6s ease, opacity var(--duration-long) ease;
+ background-position: left;
+ z-index: 2;
+ }
+
+ :root {
+ --easter-egg: none;
+ --sparkle: url('./sparkle.gif');
+ }
+
+ .animate--hover-vertical-lift .button:not(.button--tertiary),
+ .animate--hover-vertical-lift .shopify-challenge__button,
+ .animate--hover-vertical-lift .customer button,
+ .animate--hover-vertical-lift .shopify-payment-button__button {
+ transition: transform var(--duration-default) var(--ease-out-slow);
+ }
+
+ .animate--hover-vertical-lift .card-wrapper .card--card,
+ .animate--hover-vertical-lift .card-wrapper .card--standard .card__inner {
+ transition: transform var(--duration-medium) var(--ease-out-slow);
+ }
+
+ .animate--hover-vertical-lift .card-wrapper:hover .card--card,
+ .animate--hover-vertical-lift .card-wrapper:hover .card--standard .card__inner {
+ transform: translateY(-0.75rem);
+ }
+
+ .animate--hover-vertical-lift .card-wrapper:active .card--card,
+ .animate--hover-vertical-lift .card-wrapper:active .card--standard .card__inner {
+ transform: translateY(-0.5rem);
+ }
+
+ .animate--hover-vertical-lift .button:not(.button--tertiary):not([disabled]):hover,
+ .animate--hover-vertical-lift .shopify-challenge__button:not([disabled]):hover,
+ .animate--hover-vertical-lift .customer button:not([disabled]):hover,
+ .animate--hover-vertical-lift .shopify-payment-button__button:hover {
+ transform: translateY(-0.25rem);
+ }
+
+ .animate--hover-vertical-lift .button:not(.button--tertiary):not([disabled]):active,
+ .animate--hover-vertical-lift .shopify-challenge__button:not([disabled]):active,
+ .animate--hover-vertical-lift .customer button:not([disabled]):active,
+ .animate--hover-vertical-lift .shopify-payment-button__button:active {
+ transform: translateY(0);
+ }
+
+ .animate--hover-vertical-lift .button:not([disabled]):hover:after,
+ .animate--hover-vertical-lift .customer button:not([disabled]):hover:after,
+ .animate--hover-vertical-lift .shopify-payment-button__button:not([disabled]):hover:after {
+ --border-offset: 0.3px; /* Default is 1.3px as defined above in this file. This removes 1px to prevent the border from growing on buttons when this effect is on. */
+ box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
+ rgba(var(--color-button-text), var(--border-opacity)),
+ 0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
+ }
+
+ .animate--hover-vertical-lift .button:not([disabled]).button--secondary:hover:after {
+ --border-offset: 0px; /* Prevent the border from growing on buttons when this effect is on. */
+ }
+}
diff --git a/assets/cart-drawer.js b/assets/cart-drawer.js
new file mode 100644
index 0000000..048e432
--- /dev/null
+++ b/assets/cart-drawer.js
@@ -0,0 +1,132 @@
+class CartDrawer extends HTMLElement {
+ constructor() {
+ super();
+
+ this.addEventListener('keyup', (evt) => evt.code === 'Escape' && this.close());
+ this.querySelector('#CartDrawer-Overlay').addEventListener('click', this.close.bind(this));
+ this.setHeaderCartIconAccessibility();
+ }
+
+ setHeaderCartIconAccessibility() {
+ const cartLink = document.querySelector('#cart-icon-bubble');
+ cartLink.setAttribute('role', 'button');
+ cartLink.setAttribute('aria-haspopup', 'dialog');
+ cartLink.addEventListener('click', (event) => {
+ event.preventDefault();
+ this.open(cartLink);
+ });
+ cartLink.addEventListener('keydown', (event) => {
+ if (event.code.toUpperCase() === 'SPACE') {
+ event.preventDefault();
+ this.open(cartLink);
+ }
+ });
+ }
+
+ open(triggeredBy) {
+ if (triggeredBy) this.setActiveElement(triggeredBy);
+ const cartDrawerNote = this.querySelector('[id^="Details-"] summary');
+ if (cartDrawerNote && !cartDrawerNote.hasAttribute('role')) this.setSummaryAccessibility(cartDrawerNote);
+ // here the animation doesn't seem to always get triggered. A timeout seem to help
+ setTimeout(() => {
+ this.classList.add('animate', 'active');
+ });
+
+ this.addEventListener(
+ 'transitionend',
+ () => {
+ const containerToTrapFocusOn = this.classList.contains('is-empty')
+ ? this.querySelector('.drawer__inner-empty')
+ : document.getElementById('CartDrawer');
+ const focusElement = this.querySelector('.drawer__inner') || this.querySelector('.drawer__close');
+ trapFocus(containerToTrapFocusOn, focusElement);
+ },
+ { once: true }
+ );
+
+ document.body.classList.add('overflow-hidden');
+ }
+
+ close() {
+ this.classList.remove('active');
+ removeTrapFocus(this.activeElement);
+ document.body.classList.remove('overflow-hidden');
+ }
+
+ setSummaryAccessibility(cartDrawerNote) {
+ cartDrawerNote.setAttribute('role', 'button');
+ cartDrawerNote.setAttribute('aria-expanded', 'false');
+
+ if (cartDrawerNote.nextElementSibling.getAttribute('id')) {
+ cartDrawerNote.setAttribute('aria-controls', cartDrawerNote.nextElementSibling.id);
+ }
+
+ cartDrawerNote.addEventListener('click', (event) => {
+ event.currentTarget.setAttribute('aria-expanded', !event.currentTarget.closest('details').hasAttribute('open'));
+ });
+
+ cartDrawerNote.parentElement.addEventListener('keyup', onKeyUpEscape);
+ }
+
+ renderContents(parsedState) {
+ this.querySelector('.drawer__inner').classList.contains('is-empty') &&
+ this.querySelector('.drawer__inner').classList.remove('is-empty');
+ this.productId = parsedState.id;
+ this.getSectionsToRender().forEach((section) => {
+ const sectionElement = section.selector
+ ? document.querySelector(section.selector)
+ : document.getElementById(section.id);
+ sectionElement.innerHTML = this.getSectionInnerHTML(parsedState.sections[section.id], section.selector);
+ });
+
+ setTimeout(() => {
+ this.querySelector('#CartDrawer-Overlay').addEventListener('click', this.close.bind(this));
+ this.open();
+ });
+ }
+
+ getSectionInnerHTML(html, selector = '.shopify-section') {
+ return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML;
+ }
+
+ getSectionsToRender() {
+ return [
+ {
+ id: 'cart-drawer',
+ selector: '#CartDrawer',
+ },
+ {
+ id: 'cart-icon-bubble',
+ },
+ ];
+ }
+
+ getSectionDOM(html, selector = '.shopify-section') {
+ return new DOMParser().parseFromString(html, 'text/html').querySelector(selector);
+ }
+
+ setActiveElement(element) {
+ this.activeElement = element;
+ }
+}
+
+customElements.define('cart-drawer', CartDrawer);
+
+class CartDrawerItems extends CartItems {
+ getSectionsToRender() {
+ return [
+ {
+ id: 'CartDrawer',
+ section: 'cart-drawer',
+ selector: '.drawer__inner',
+ },
+ {
+ id: 'cart-icon-bubble',
+ section: 'cart-icon-bubble',
+ selector: '.shopify-section',
+ },
+ ];
+ }
+}
+
+customElements.define('cart-drawer-items', CartDrawerItems);
diff --git a/assets/cart-notification.js b/assets/cart-notification.js
new file mode 100644
index 0000000..7e8a06c
--- /dev/null
+++ b/assets/cart-notification.js
@@ -0,0 +1,83 @@
+class CartNotification extends HTMLElement {
+ constructor() {
+ super();
+
+ this.notification = document.getElementById('cart-notification');
+ this.header = document.querySelector('sticky-header');
+ this.onBodyClick = this.handleBodyClick.bind(this);
+
+ this.notification.addEventListener('keyup', (evt) => evt.code === 'Escape' && this.close());
+ this.querySelectorAll('button[type="button"]').forEach((closeButton) =>
+ closeButton.addEventListener('click', this.close.bind(this))
+ );
+ }
+
+ open() {
+ this.notification.classList.add('animate', 'active');
+
+ this.notification.addEventListener(
+ 'transitionend',
+ () => {
+ this.notification.focus();
+ trapFocus(this.notification);
+ },
+ { once: true }
+ );
+
+ document.body.addEventListener('click', this.onBodyClick);
+ }
+
+ close() {
+ this.notification.classList.remove('active');
+ document.body.removeEventListener('click', this.onBodyClick);
+
+ removeTrapFocus(this.activeElement);
+ }
+
+ renderContents(parsedState) {
+ this.cartItemKey = parsedState.key;
+ this.getSectionsToRender().forEach((section) => {
+ document.getElementById(section.id).innerHTML = this.getSectionInnerHTML(
+ parsedState.sections[section.id],
+ section.selector
+ );
+ });
+
+ if (this.header) this.header.reveal();
+ this.open();
+ }
+
+ getSectionsToRender() {
+ return [
+ {
+ id: 'cart-notification-product',
+ selector: `[id="cart-notification-product-${this.cartItemKey}"]`,
+ },
+ {
+ id: 'cart-notification-button',
+ },
+ {
+ id: 'cart-icon-bubble',
+ },
+ ];
+ }
+
+ getSectionInnerHTML(html, selector = '.shopify-section') {
+ return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML;
+ }
+
+ handleBodyClick(evt) {
+ const target = evt.target;
+ if (target !== this.notification && !target.closest('cart-notification')) {
+ const disclosure = target.closest('details-disclosure, header-menu');
+ this.activeElement = disclosure ? disclosure.querySelector('summary') : null;
+ this.close();
+ }
+ }
+
+ setActiveElement(element) {
+ this.activeElement = element;
+ }
+}
+
+customElements.define('cart-notification', CartNotification);
diff --git a/assets/cart.js b/assets/cart.js
new file mode 100644
index 0000000..76ed47a
--- /dev/null
+++ b/assets/cart.js
@@ -0,0 +1,246 @@
+class CartRemoveButton extends HTMLElement {
+ constructor() {
+ super();
+
+ this.addEventListener('click', (event) => {
+ event.preventDefault();
+ const cartItems = this.closest('cart-items') || this.closest('cart-drawer-items');
+ cartItems.updateQuantity(this.dataset.index, 0);
+ });
+ }
+}
+
+customElements.define('cart-remove-button', CartRemoveButton);
+
+class CartItems extends HTMLElement {
+ constructor() {
+ super();
+ this.lineItemStatusElement =
+ document.getElementById('shopping-cart-line-item-status') || document.getElementById('CartDrawer-LineItemStatus');
+
+ const debouncedOnChange = debounce((event) => {
+ this.onChange(event);
+ }, ON_CHANGE_DEBOUNCE_TIMER);
+
+ this.addEventListener('change', debouncedOnChange.bind(this));
+ }
+
+ cartUpdateUnsubscriber = undefined;
+
+ connectedCallback() {
+ this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (event) => {
+ if (event.source === 'cart-items') {
+ return;
+ }
+ this.onCartUpdate();
+ });
+ }
+
+ disconnectedCallback() {
+ if (this.cartUpdateUnsubscriber) {
+ this.cartUpdateUnsubscriber();
+ }
+ }
+
+ onChange(event) {
+ this.updateQuantity(event.target.dataset.index, event.target.value, document.activeElement.getAttribute('name'), event.target.dataset.quantityVariantId);
+ }
+
+ onCartUpdate() {
+ if (this.tagName === 'CART-DRAWER-ITEMS') {
+ fetch(`${routes.cart_url}?section_id=cart-drawer`)
+ .then((response) => response.text())
+ .then((responseText) => {
+ const html = new DOMParser().parseFromString(responseText, 'text/html');
+ const selectors = ['cart-drawer-items', '.cart-drawer__footer'];
+ for (const selector of selectors) {
+ const targetElement = document.querySelector(selector);
+ const sourceElement = html.querySelector(selector);
+ if (targetElement && sourceElement) {
+ targetElement.replaceWith(sourceElement);
+ }
+ }
+ })
+ .catch((e) => {
+ console.error(e);
+ });
+ } else {
+ fetch(`${routes.cart_url}?section_id=main-cart-items`)
+ .then((response) => response.text())
+ .then((responseText) => {
+ const html = new DOMParser().parseFromString(responseText, 'text/html');
+ const sourceQty = html.querySelector('cart-items');
+ this.innerHTML = sourceQty.innerHTML;
+ })
+ .catch((e) => {
+ console.error(e);
+ });
+ }
+ }
+
+ getSectionsToRender() {
+ return [
+ {
+ id: 'main-cart-items',
+ section: document.getElementById('main-cart-items').dataset.id,
+ selector: '.js-contents',
+ },
+ {
+ id: 'cart-icon-bubble',
+ section: 'cart-icon-bubble',
+ selector: '.shopify-section',
+ },
+ {
+ id: 'cart-live-region-text',
+ section: 'cart-live-region-text',
+ selector: '.shopify-section',
+ },
+ {
+ id: 'main-cart-footer',
+ section: document.getElementById('main-cart-footer').dataset.id,
+ selector: '.js-contents',
+ },
+ ];
+ }
+
+ updateQuantity(line, quantity, name, variantId) {
+ this.enableLoading(line);
+
+ const body = JSON.stringify({
+ line,
+ quantity,
+ sections: this.getSectionsToRender().map((section) => section.section),
+ sections_url: window.location.pathname,
+ });
+
+ fetch(`${routes.cart_change_url}`, { ...fetchConfig(), ...{ body } })
+ .then((response) => {
+ return response.text();
+ })
+ .then((state) => {
+ const parsedState = JSON.parse(state);
+ const quantityElement =
+ document.getElementById(`Quantity-${line}`) || document.getElementById(`Drawer-quantity-${line}`);
+ const items = document.querySelectorAll('.cart-item');
+
+ if (parsedState.errors) {
+ quantityElement.value = quantityElement.getAttribute('value');
+ this.updateLiveRegions(line, parsedState.errors);
+ return;
+ }
+
+ this.classList.toggle('is-empty', parsedState.item_count === 0);
+ const cartDrawerWrapper = document.querySelector('cart-drawer');
+ const cartFooter = document.getElementById('main-cart-footer');
+
+ if (cartFooter) cartFooter.classList.toggle('is-empty', parsedState.item_count === 0);
+ if (cartDrawerWrapper) cartDrawerWrapper.classList.toggle('is-empty', parsedState.item_count === 0);
+
+ this.getSectionsToRender().forEach((section) => {
+ const elementToReplace =
+ document.getElementById(section.id).querySelector(section.selector) || document.getElementById(section.id);
+ elementToReplace.innerHTML = this.getSectionInnerHTML(
+ parsedState.sections[section.section],
+ section.selector
+ );
+ });
+ const updatedValue = parsedState.items[line - 1] ? parsedState.items[line - 1].quantity : undefined;
+ let message = '';
+ if (items.length === parsedState.items.length && updatedValue !== parseInt(quantityElement.value)) {
+ if (typeof updatedValue === 'undefined') {
+ message = window.cartStrings.error;
+ } else {
+ message = window.cartStrings.quantityError.replace('[quantity]', updatedValue);
+ }
+ }
+ this.updateLiveRegions(line, message);
+
+ const lineItem =
+ document.getElementById(`CartItem-${line}`) || document.getElementById(`CartDrawer-Item-${line}`);
+ if (lineItem && lineItem.querySelector(`[name="${name}"]`)) {
+ cartDrawerWrapper
+ ? trapFocus(cartDrawerWrapper, lineItem.querySelector(`[name="${name}"]`))
+ : lineItem.querySelector(`[name="${name}"]`).focus();
+ } else if (parsedState.item_count === 0 && cartDrawerWrapper) {
+ trapFocus(cartDrawerWrapper.querySelector('.drawer__inner-empty'), cartDrawerWrapper.querySelector('a'));
+ } else if (document.querySelector('.cart-item') && cartDrawerWrapper) {
+ trapFocus(cartDrawerWrapper, document.querySelector('.cart-item__name'));
+ }
+
+ publish(PUB_SUB_EVENTS.cartUpdate, { source: 'cart-items', cartData: parsedState, variantId: variantId });
+ })
+ .catch(() => {
+ this.querySelectorAll('.loading__spinner').forEach((overlay) => overlay.classList.add('hidden'));
+ const errors = document.getElementById('cart-errors') || document.getElementById('CartDrawer-CartErrors');
+ errors.textContent = window.cartStrings.error;
+ })
+ .finally(() => {
+ this.disableLoading(line);
+ });
+ }
+
+ updateLiveRegions(line, message) {
+ const lineItemError =
+ document.getElementById(`Line-item-error-${line}`) || document.getElementById(`CartDrawer-LineItemError-${line}`);
+ if (lineItemError) lineItemError.querySelector('.cart-item__error-text').innerHTML = message;
+
+ this.lineItemStatusElement.setAttribute('aria-hidden', true);
+
+ const cartStatus =
+ document.getElementById('cart-live-region-text') || document.getElementById('CartDrawer-LiveRegionText');
+ cartStatus.setAttribute('aria-hidden', false);
+
+ setTimeout(() => {
+ cartStatus.setAttribute('aria-hidden', true);
+ }, 1000);
+ }
+
+ getSectionInnerHTML(html, selector) {
+ return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML;
+ }
+
+ enableLoading(line) {
+ const mainCartItems = document.getElementById('main-cart-items') || document.getElementById('CartDrawer-CartItems');
+ mainCartItems.classList.add('cart__items--disabled');
+
+ const cartItemElements = this.querySelectorAll(`#CartItem-${line} .loading__spinner`);
+ const cartDrawerItemElements = this.querySelectorAll(`#CartDrawer-Item-${line} .loading__spinner`);
+
+ [...cartItemElements, ...cartDrawerItemElements].forEach((overlay) => overlay.classList.remove('hidden'));
+
+ document.activeElement.blur();
+ this.lineItemStatusElement.setAttribute('aria-hidden', false);
+ }
+
+ disableLoading(line) {
+ const mainCartItems = document.getElementById('main-cart-items') || document.getElementById('CartDrawer-CartItems');
+ mainCartItems.classList.remove('cart__items--disabled');
+
+ const cartItemElements = this.querySelectorAll(`#CartItem-${line} .loading__spinner`);
+ const cartDrawerItemElements = this.querySelectorAll(`#CartDrawer-Item-${line} .loading__spinner`);
+
+ cartItemElements.forEach((overlay) => overlay.classList.add('hidden'));
+ cartDrawerItemElements.forEach((overlay) => overlay.classList.add('hidden'));
+ }
+}
+
+customElements.define('cart-items', CartItems);
+
+if (!customElements.get('cart-note')) {
+ customElements.define(
+ 'cart-note',
+ class CartNote extends HTMLElement {
+ constructor() {
+ super();
+
+ this.addEventListener(
+ 'change',
+ debounce((event) => {
+ const body = JSON.stringify({ note: event.target.value });
+ fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } });
+ }, ON_CHANGE_DEBOUNCE_TIMER)
+ );
+ }
+ }
+ );
+}
diff --git a/assets/collage.css b/assets/collage.css
new file mode 100644
index 0000000..67618cc
--- /dev/null
+++ b/assets/collage.css
@@ -0,0 +1,202 @@
+.collage-wrapper-title {
+ margin-top: 0;
+ margin-bottom: 3rem;
+}
+
+.collage {
+ display: grid;
+}
+
+.collage__item > * {
+ width: 100%;
+}
+
+.collage__item .card__content {
+ flex-grow: initial;
+}
+
+@media screen and (max-width: 749px) {
+ .collage {
+ grid-column-gap: var(--grid-mobile-horizontal-spacing);
+ grid-row-gap: var(--grid-mobile-vertical-spacing);
+ }
+
+ .collage--mobile {
+ grid-template-columns: repeat(2, minmax(0, 1fr));
+ }
+
+ .collage--mobile .collage__item--left:nth-child(3n - 2) {
+ grid-column: span 2;
+ }
+
+ .collage--mobile .collage__item--left:nth-child(3n - 2):nth-last-child(2) {
+ grid-column: span 1;
+ }
+
+ .collage--mobile .collage__item--left:nth-child(3n) {
+ grid-column-start: 2;
+ }
+
+ .collage--mobile .collage__item--right:nth-child(3n - 2) {
+ grid-column-start: 1;
+ }
+
+ .collage--mobile .collage__item--right:nth-child(3n - 2):last-child {
+ grid-column: span 2;
+ }
+
+ .collage--mobile .collage__item--right:nth-child(3n - 1) {
+ grid-column-start: 2;
+ }
+
+ .collage--mobile .collage__item--right:nth-child(3n) {
+ grid-column: 1 / span 2;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .collage {
+ grid-auto-flow: column;
+ grid-column-gap: var(--grid-desktop-horizontal-spacing);
+ grid-row-gap: var(--grid-desktop-vertical-spacing);
+ grid-template-columns: repeat(3, minmax(0, 1fr));
+ }
+
+ .collage__item--left:nth-child(3n - 2) {
+ grid-column: 1 / span 2;
+ grid-row: span 2;
+ }
+
+ .collage__item--left:nth-child(3n - 2):last-child {
+ grid-column: 1 / span 3;
+ }
+
+ .collage__item--left:nth-child(3n - 1),
+ .collage__item--left:nth-child(3n) {
+ grid-column-start: 3;
+ }
+
+ .collage__item--left:nth-child(3n - 1):last-child {
+ grid-row: span 2;
+ }
+
+ .collage__item--right:nth-child(3n - 2) {
+ grid-column: 1 / span 1;
+ grid-row: span 1;
+ }
+
+ .collage__item--right:nth-child(3n - 2):last-child {
+ grid-column: 1 / span 3;
+ }
+
+ .collage__item--right:nth-child(3n - 1) {
+ grid-column-start: 1;
+ }
+
+ .collage__item--right:nth-child(3n-1):last-child {
+ grid-column: span 2;
+ }
+
+ .collage__item--right:nth-child(3n) {
+ grid-column: 2 / span 2;
+ grid-row: span 2;
+ }
+
+ .collage__item--collection:only-child,
+ .collage__item--product:only-child {
+ justify-self: center;
+ max-width: 73rem;
+ width: 100%;
+ }
+}
+
+.collage-card {
+ height: 100%;
+ position: relative;
+ border-radius: var(--border-radius);
+ border: var(--border-width) solid rgba(var(--color-foreground), var(--border-opacity));
+ padding: var(--image-padding);
+}
+
+/* Needed for gradient continuity with or without animation, background-attachment: local scopes the gradient to its container which happens automatically when a transform is applied (animation on scroll) */
+.collage-card.gradient {
+ transform: perspective(0);
+}
+
+.collage-card:after {
+ content: '';
+ position: absolute;
+ z-index: -1;
+ border-radius: var(--border-radius);
+ box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
+ rgba(var(--color-shadow), var(--shadow-opacity));
+ width: calc(var(--border-width) * 2 + 100%);
+ height: calc(var(--border-width) * 2 + 100%);
+ top: calc(var(--border-width) * -1);
+ left: calc(var(--border-width) * -1);
+}
+
+.collage-card.product-card-wrapper {
+ --border-radius: var(--product-card-corner-radius);
+ --border-width: var(--product-card-border-width);
+ --border-opacity: var(--product-card-border-opacity);
+ --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
+ --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
+ --shadow-blur-radius: var(--product-card-shadow-blur-radius);
+ --shadow-opacity: var(--product-card-shadow-opacity);
+ --shadow-visible: var(--product-card-shadow-visible);
+ --image-padding: var(--product-card-image-padding);
+}
+
+.collage-card .media {
+ height: 100%;
+ overflow: hidden;
+ border-radius: calc(var(--border-radius) - var(--border-width) - var(--image-padding));
+}
+
+.collage-card .deferred-media {
+ height: 100%;
+ overflow: visible;
+}
+
+.collage-card__link {
+ display: block;
+ height: 100%;
+}
+
+.collage-card .deferred-media__poster {
+ background-color: transparent;
+ border: 0;
+}
+
+.collage-card .deferred-media__poster:after {
+ content: '';
+ position: absolute;
+ z-index: 1;
+ outline-offset: 0.3rem;
+ bottom: calc(var(--border-width) * -1);
+ left: calc(var(--border-width) * -1);
+ right: calc(var(--border-width) * -1);
+ top: calc(var(--border-width) * -1);
+}
+
+.collage-card .deferred-media__poster:focus:after {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+}
+
+.collage-card .deferred-media__poster:focus-visible:after {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+}
+
+.collage-card .deferred-media__poster:focus:not(:focus-visible),
+.collage-card .deferred-media__poster:focus:not(:focus-visible):after {
+ outline: none;
+ box-shadow: none;
+}
+
+.collage-card .deferred-media__poster:focus {
+ outline: none;
+ box-shadow: none;
+}
diff --git a/assets/collapsible-content.css b/assets/collapsible-content.css
new file mode 100644
index 0000000..28a3713
--- /dev/null
+++ b/assets/collapsible-content.css
@@ -0,0 +1,128 @@
+.collapsible-content {
+ position: relative;
+ z-index: 0;
+}
+
+.collapsible-section-layout {
+ padding-bottom: 5rem;
+ padding-top: 5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .collapsible-section-layout {
+ padding-bottom: 7rem;
+ padding-top: 7rem;
+ }
+}
+
+/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
+.collapsible-content__media {
+ background: transparent;
+}
+
+.collapsible-content__media--small {
+ height: 19.4rem;
+}
+
+.collapsible-content__media--large {
+ height: 43.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .collapsible-content__media--small {
+ height: 31.4rem;
+ }
+
+ .collapsible-content__media--large {
+ height: 69.5rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .collapsible-content__grid--reverse {
+ flex-direction: row-reverse;
+ }
+}
+
+.collapsible-content-wrapper-narrow {
+ margin: 0 auto;
+ padding-right: 1.5rem;
+ padding-left: 1.5rem;
+ max-width: 73.4rem;
+}
+
+.collapsible-content__header {
+ word-break: break-word;
+}
+
+.collapsible-content__heading {
+ margin-bottom: 2rem;
+ margin-top: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .collapsible-content__heading {
+ margin-bottom: 3rem;
+ }
+}
+
+.collapsible-none-layout .accordion + .accordion {
+ border-top: 0;
+}
+
+.collapsible-row-layout .accordion:not(:first-child):not(.color-background-1) {
+ margin-top: 1rem;
+}
+
+.caption-with-letter-spacing + h2 {
+ margin-top: 1rem;
+}
+
+@media screen and (min-width: 750px) {
+ .collapsible-content .accordion {
+ margin-top: 0;
+ }
+}
+
+.collapsible-row-layout .accordion {
+ border: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
+ margin-bottom: 1.5rem;
+ /* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
+ transform: perspective(0);
+}
+
+.collapsible-row-layout .accordion summary,
+.collapsible-row-layout .accordion .accordion__content {
+ padding: 1.5rem;
+}
+
+.collapsible-row-layout .accordion .accordion__content {
+ padding-top: 0;
+}
+
+.collapsible-content summary:hover {
+ background: rgba(var(--color-foreground), 0.04);
+}
+
+.collapsible-content summary:hover .accordion__title {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+/* check for flexbox gap in older Safari versions */
+@supports not (inset: 10px) {
+ @media screen and (min-width: 750px) {
+ .collapsible-content__grid:not(.collapsible-content__grid--reverse) .grid__item:last-child,
+ .collapsible-content__grid--reverse .collapsible-content__grid-item {
+ padding-left: 5rem;
+ padding-right: 0;
+ }
+ }
+
+ @media screen and (min-width: 990px) {
+ .collapsible-content__grid:not(.collapsible-content__grid--reverse) .grid__item:last-child,
+ .collapsible-content__grid--reverse .collapsible-content__grid-item {
+ padding-left: 7rem;
+ }
+ }
+}
diff --git a/assets/component-accordion.css b/assets/component-accordion.css
new file mode 100644
index 0000000..f2acd3c
--- /dev/null
+++ b/assets/component-accordion.css
@@ -0,0 +1,58 @@
+.accordion summary {
+ display: flex;
+ position: relative;
+ line-height: 1;
+ padding: 1.5rem 0;
+}
+
+.accordion .summary__title {
+ display: flex;
+ flex: 1;
+}
+
+.accordion .summary__title + .icon-caret {
+ height: calc(var(--font-heading-scale) * 0.6rem);
+}
+
+.accordion + .accordion {
+ margin-top: 0;
+ border-top: none;
+}
+
+.accordion {
+ margin-top: 2.5rem;
+ margin-bottom: 0;
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.accordion__title {
+ display: inline-block;
+ max-width: calc(100% - 6rem);
+ min-height: 1.6rem;
+ margin: 0;
+ word-break: break-word;
+}
+
+.accordion .icon-accordion {
+ align-self: center;
+ fill: rgb(var(--color-foreground));
+ height: calc(var(--font-heading-scale) * 2rem);
+ margin-right: calc(var(--font-heading-scale) * 1rem);
+ width: calc(var(--font-heading-scale) * 2rem);
+}
+
+.accordion details[open] > summary .icon-caret {
+ transform: rotate(180deg);
+}
+
+.accordion__content {
+ margin-bottom: 1.5rem;
+ word-break: break-word;
+ overflow-x: auto;
+ padding: 0 0.6rem;
+}
+
+.accordion__content img {
+ max-width: 100%;
+}
diff --git a/assets/component-article-card.css b/assets/component-article-card.css
new file mode 100644
index 0000000..998f100
--- /dev/null
+++ b/assets/component-article-card.css
@@ -0,0 +1,142 @@
+@media screen and (max-width: 749px) {
+ .articles-wrapper .article {
+ width: 100%;
+ }
+}
+
+.article {
+ display: flex;
+ align-items: center;
+}
+
+.article.grid__item {
+ padding: 0;
+}
+
+.grid--peek .article-card {
+ box-sizing: border-box;
+}
+
+.article-card__image-wrapper > a {
+ display: block;
+}
+
+.article-card__title {
+ text-decoration: none;
+ word-break: break-word;
+}
+
+.article-card__title a:after {
+ bottom: 0;
+ content: '';
+ height: 100%;
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100%;
+ z-index: 1;
+}
+
+.article-card__link.link {
+ padding: 0;
+}
+
+.article-card__link {
+ text-underline-offset: 0.3rem;
+}
+
+.article-card .card__heading {
+ margin-bottom: 0.6rem;
+}
+
+.blog-articles .article-card .card__information,
+.blog__posts .article-card .card__information {
+ padding-left: 2rem;
+ padding-right: 2rem;
+}
+
+.article-card__info {
+ padding-top: 0.4rem;
+}
+
+.article-card__footer {
+ letter-spacing: 0.1rem;
+ font-size: 1.4rem;
+}
+
+.article-card__footer:not(:last-child) {
+ margin-bottom: 1rem;
+}
+
+.article-card__footer:last-child {
+ margin-top: auto;
+}
+
+.article-card__excerpt {
+ width: 100%;
+ margin-top: 1.2rem;
+}
+
+.article-card__link:not(:only-child) {
+ margin-right: 3rem;
+}
+
+@media screen and (min-width: 990px) {
+ .article-card__link:not(:only-child) {
+ margin-right: 4rem;
+ }
+}
+
+.article-card__image--small .ratio::before {
+ padding-bottom: 11rem;
+}
+
+.article-card__image--medium .ratio::before {
+ padding-bottom: 22rem;
+}
+
+.article-card__image--large .ratio::before {
+ padding-bottom: 33rem;
+}
+
+@media screen and (min-width: 750px) {
+ .article-card__image--small .ratio::before {
+ padding-bottom: 14.3rem;
+ }
+
+ .article-card__image--medium .ratio::before {
+ padding-bottom: 21.9rem;
+ }
+
+ .article-card__image--large .ratio::before {
+ padding-bottom: 27.5rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .article-card__image--small .ratio::before {
+ padding-bottom: 17.7rem;
+ }
+
+ .article-card__image--medium .ratio::before {
+ padding-bottom: 30.7rem;
+ }
+
+ .article-card__image--large .ratio::before {
+ padding-bottom: 40.7rem;
+ }
+}
+
+/* check for flexbox gap in older Safari versions */
+@supports not (inset: 10px) {
+ .articles-wrapper.grid {
+ margin: 0 0 5rem 0;
+ }
+
+ @media screen and (min-width: 750px) {
+ .articles-wrapper.grid {
+ margin-bottom: 7rem;
+ }
+ }
+}
diff --git a/assets/component-card.css b/assets/component-card.css
new file mode 100644
index 0000000..eb84168
--- /dev/null
+++ b/assets/component-card.css
@@ -0,0 +1,469 @@
+.card-wrapper {
+ color: inherit;
+ height: 100%;
+ position: relative;
+ text-decoration: none;
+}
+
+.card {
+ text-decoration: none;
+ text-align: var(--text-alignment);
+}
+
+.card:not(.ratio) {
+ display: flex;
+ flex-direction: column;
+ height: 100%;
+}
+
+.card.card--horizontal {
+ --text-alignment: left;
+ --image-padding: 0rem;
+ flex-direction: row;
+ align-items: flex-start;
+ gap: 1.5rem;
+}
+
+.card--horizontal.ratio:before {
+ padding-bottom: 0;
+}
+
+.card--card.card--horizontal {
+ padding: 1.2rem;
+}
+
+.card--card.card--horizontal.card--text {
+ column-gap: 0;
+}
+
+.card--card {
+ height: 100%;
+}
+
+.card--card,
+.card--standard .card__inner {
+ position: relative;
+ box-sizing: border-box;
+ border-radius: var(--border-radius);
+ border: var(--border-width) solid rgba(var(--color-foreground), var(--border-opacity));
+}
+
+.card--card:after,
+.card--standard .card__inner:after {
+ content: '';
+ position: absolute;
+ z-index: -1;
+ width: calc(var(--border-width) * 2 + 100%);
+ height: calc(var(--border-width) * 2 + 100%);
+ top: calc(var(--border-width) * -1);
+ left: calc(var(--border-width) * -1);
+ border-radius: var(--border-radius);
+ box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity));
+}
+
+/* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
+.card--card.gradient,
+.card__inner.gradient {
+ transform: perspective(0);
+}
+
+/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
+.card__inner.color-background-1 {
+ background: transparent;
+}
+
+.card .card__inner .card__media {
+ overflow: hidden;
+ /* Fix for Safari border bug on hover */
+ z-index: 0;
+ border-radius: calc(var(--border-radius) - var(--border-width) - var(--image-padding));
+}
+
+.card--card .card__inner .card__media {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+.card--standard.card--text {
+ background-color: transparent;
+}
+
+.card-information {
+ text-align: var(--text-alignment);
+}
+
+.card__media,
+.card .media {
+ bottom: 0;
+ position: absolute;
+ top: 0;
+}
+
+.card .media {
+ width: 100%;
+}
+
+.card__media {
+ margin: var(--image-padding);
+ width: calc(100% - 2 * var(--image-padding));
+}
+
+.card--standard .card__media {
+ margin: var(--image-padding);
+}
+
+.card__inner {
+ width: 100%;
+}
+
+.card--media .card__inner .card__content {
+ position: relative;
+ padding: calc(var(--image-padding) + 1rem);
+}
+
+.card__content {
+ display: grid;
+ grid-template-rows: minmax(0, 1fr) max-content minmax(0, 1fr);
+ padding: 1rem;
+ width: 100%;
+ flex-grow: 1;
+}
+
+.card__content--auto-margins {
+ grid-template-rows: minmax(0, auto) max-content minmax(0, auto);
+}
+
+.card__information {
+ grid-row-start: 2;
+ padding: 1.3rem 1rem;
+}
+
+.card:not(.ratio)>.card__content {
+ grid-template-rows: max-content minmax(0, 1fr) max-content auto;
+}
+
+.card-information .card__information-volume-pricing-note {
+ margin-top: 0.6rem;
+ line-height: calc(0.5 + .4 / var(--font-body-scale));
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+@media screen and (min-width: 750px) {
+ .card__information {
+ padding-bottom: 1.7rem;
+ padding-top: 1.7rem;
+ }
+}
+
+.card__badge {
+ align-self: flex-end;
+ grid-row-start: 3;
+ justify-self: flex-start;
+}
+
+.card__badge.top {
+ align-self: flex-start;
+ grid-row-start: 1;
+}
+
+.card__badge.right {
+ justify-self: flex-end;
+}
+
+.card:not(.card--horizontal)>.card__content>.card__badge {
+ margin: 1.3rem;
+}
+
+.card__media .media img {
+ height: 100%;
+ object-fit: cover;
+ object-position: center center;
+ width: 100%;
+}
+
+.card__inner:not(.ratio)>.card__content {
+ height: 100%;
+}
+
+.card__heading {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.card__heading:last-child {
+ margin-bottom: 0;
+}
+
+.card--horizontal .card__heading,
+.card--horizontal .price__container .price-item,
+.card--horizontal__quick-add {
+ font-size: calc(var(--font-heading-scale) * 1.2rem);
+}
+
+.card--horizontal .card-information>*:not(.visually-hidden:first-child)+*:not(.rating):not(.card__information-volume-pricing-note) {
+ margin-top: 0;
+}
+
+.card--horizontal__quick-add:before {
+ box-shadow: none;
+}
+
+@media only screen and (min-width: 750px) {
+
+ .card--horizontal .card__heading,
+ .card--horizontal .price__container .price-item,
+ .card--horizontal__quick-add {
+ font-size: calc(var(--font-heading-scale) * 1.3rem);
+ }
+}
+
+.card--card.card--media>.card__content {
+ margin-top: calc(0rem - var(--image-padding));
+}
+
+.card--standard.card--text a::after,
+.card--card .card__heading a::after {
+ bottom: calc(var(--border-width) * -1);
+ left: calc(var(--border-width) * -1);
+ right: calc(var(--border-width) * -1);
+ top: calc(var(--border-width) * -1);
+}
+
+.card__heading a::after {
+ bottom: 0;
+ content: '';
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+ z-index: 1;
+}
+
+.card__heading a:after {
+ outline-offset: 0.3rem;
+}
+
+.card__heading a:focus:after {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+}
+
+.card__heading a:focus-visible:after {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+}
+
+.card__heading a:focus:not(:focus-visible):after {
+ box-shadow: none;
+ outline: 0;
+}
+
+.card__heading a:focus {
+ box-shadow: none;
+ outline: 0;
+}
+
+@media screen and (min-width: 990px) {
+
+ .card .media.media--hover-effect>img:only-child,
+ .card-wrapper .media.media--hover-effect>img:only-child {
+ transition: transform var(--duration-long) ease;
+ }
+
+ .card:hover .media.media--hover-effect>img:first-child:only-child,
+ .card-wrapper:hover .media.media--hover-effect>img:first-child:only-child {
+ transform: scale(1.03);
+ }
+
+ .card-wrapper:hover .media.media--hover-effect>img:first-child:not(:only-child) {
+ opacity: 0;
+ }
+
+ .card-wrapper:hover .media.media--hover-effect>img+img {
+ opacity: 1;
+ transition: transform var(--duration-long) ease;
+ transform: scale(1.03);
+ }
+
+ .underline-links-hover:hover a {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+ }
+}
+
+.card--standard.card--media .card__inner .card__information,
+.card--standard.card--text:not(.card--horizontal)>.card__content .card__heading:not(.card__heading--placeholder),
+.card--standard:not(.card--horizontal)>.card__content .card__badge,
+.card--standard.card--text.article-card>.card__content .card__information,
+.card--standard>.card__content .card__caption {
+ display: none;
+}
+
+.card--standard:not(.card--horizontal) .placeholder-svg {
+ height: auto;
+ width: 100%;
+}
+
+.card--standard>.card__content {
+ padding: 0;
+}
+
+.card--standard>.card__content .card__information {
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.card--card.card--media .card__inner .card__information,
+.card--card.card--text .card__inner,
+.card--card.card--media>.card__content .card__badge {
+ display: none;
+}
+
+.card--horizontal .card__badge,
+.card--horizontal.card--text .card__inner {
+ display: none;
+}
+
+.card--extend-height {
+ height: 100%;
+}
+
+.card--extend-height.card--standard.card--text,
+.card--extend-height.card--media {
+ display: flex;
+ flex-direction: column;
+}
+
+.card--extend-height.card--standard.card--text .card__inner,
+.card--extend-height.card--media .card__inner {
+ flex-grow: 1;
+}
+
+.card .icon-wrap {
+ margin-left: 0.8rem;
+ white-space: nowrap;
+ transition: transform var(--duration-short) ease;
+ overflow: hidden;
+}
+
+.card-information>*+* {
+ margin-top: 0.5rem;
+}
+
+.card-information {
+ width: 100%;
+}
+
+.card-information>* {
+ line-height: calc(1 + 0.4 / var(--font-body-scale));
+ color: rgb(var(--color-foreground));
+}
+
+.card-information>.price {
+ color: rgb(var(--color-foreground));
+}
+
+.card--horizontal .card-information>.price {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.card-information>.rating {
+ margin-top: 0.4rem;
+}
+
+.card-information>*:not(.visually-hidden:first-child)+*:not(.rating):not(.card__information-volume-pricing-note) {
+ margin-top: 0.7rem;
+}
+
+.card-information .caption {
+ letter-spacing: 0.07rem;
+}
+
+.card-article-info {
+ margin-top: 1rem;
+}
+
+/* Card Shapes */
+
+.card--shape .card__content {
+ padding-top: 0;
+}
+
+.card--shape.card--standard:not(.card--text) .card__inner {
+ border: 0;
+ /* Border is not currently compatible with image shapes for standard cards. */
+ background-color: transparent;
+ filter: drop-shadow(var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) rgba(var(--color-shadow), var(--shadow-opacity)));
+}
+
+.card--shape.card--standard:not(.card--text) .card__inner:after {
+ display: none;
+}
+
+.grid__item:nth-child(2n) .shape--blob {
+ clip-path: polygon(var(--shape--blob-2));
+}
+
+.grid__item:nth-child(3n) .shape--blob {
+ clip-path: polygon(var(--shape--blob-3));
+}
+
+.grid__item:nth-child(4n) .shape--blob {
+ clip-path: polygon(var(--shape--blob-4));
+}
+
+.grid__item:nth-child(5n) .shape--blob {
+ clip-path: polygon(var(--shape--blob-5));
+}
+
+.grid__item:nth-child(7n) .shape--blob {
+ clip-path: polygon(var(--shape--blob-6));
+}
+
+.grid__item:nth-child(8n) .shape--blob {
+ clip-path: polygon(var(--shape--blob-1));
+}
+
+/* Card Shape Hover Rules */
+
+@media (prefers-reduced-motion: no-preference) {
+ .product-card-wrapper .shape--round {
+ transition: clip-path var(--duration-long) ease;
+ }
+
+ .product-card-wrapper:hover .shape--round {
+ clip-path: ellipse(47% 47% at 50% 50%);
+ }
+
+ .product-card-wrapper .shape--blob {
+ transition: clip-path var(--duration-long) ease-in-out;
+ }
+
+ .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-5));
+ }
+
+ .grid__item:nth-child(2n) .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-6));
+ }
+
+ .grid__item:nth-child(3n) .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-1));
+ }
+
+ .grid__item:nth-child(4n) .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-2));
+ }
+
+ .grid__item:nth-child(5n) .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-3));
+ }
+
+ .grid__item:nth-child(7n) .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-4));
+ }
+
+ .grid__item:nth-child(8n) .product-card-wrapper:hover .shape--blob {
+ clip-path: polygon(var(--shape--blob-5));
+ }
+}
diff --git a/assets/component-cart-drawer.css b/assets/component-cart-drawer.css
new file mode 100644
index 0000000..c3d7629
--- /dev/null
+++ b/assets/component-cart-drawer.css
@@ -0,0 +1,408 @@
+.drawer {
+ position: fixed;
+ z-index: 1000;
+ left: 0;
+ top: 0;
+ width: 100vw;
+ height: 100%;
+ display: flex;
+ justify-content: flex-end;
+ background-color: rgba(var(--color-foreground), 0.5);
+ transition: visibility var(--duration-default) ease;
+}
+
+.drawer.active {
+ visibility: visible;
+}
+
+.drawer__inner {
+ height: 100%;
+ width: 40rem;
+ max-width: calc(100vw - 3rem);
+ padding: 0 1.5rem;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.2);
+ border-right: 0;
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+ transform: translateX(100%);
+ transition: transform var(--duration-default) ease;
+}
+
+.drawer__inner-empty {
+ height: 100%;
+ padding: 0 1.5rem;
+ overflow: hidden;
+ display: flex;
+ flex-direction: column;
+}
+
+.cart-drawer__warnings {
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+ justify-content: center;
+}
+
+cart-drawer.is-empty .drawer__inner {
+ display: grid;
+ grid-template-rows: 1fr;
+ align-items: center;
+ padding: 0;
+}
+
+cart-drawer.is-empty .drawer__header {
+ display: none;
+}
+
+cart-drawer:not(.is-empty) .cart-drawer__warnings,
+cart-drawer:not(.is-empty) .cart-drawer__collection {
+ display: none;
+}
+
+.cart-drawer__warnings--has-collection .cart__login-title {
+ margin-top: 2.5rem;
+}
+
+.drawer.active .drawer__inner {
+ transform: translateX(0);
+}
+
+.drawer__header {
+ position: relative;
+ padding: 1.5rem 0;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+}
+
+.drawer__heading {
+ margin: 0 0 1rem;
+}
+
+.drawer__close {
+ display: inline-block;
+ padding: 0;
+ min-width: 4.4rem;
+ min-height: 4.4rem;
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
+ position: absolute;
+ top: 10px;
+ right: -10px;
+ color: rgb(var(--color-foreground));
+ background-color: transparent;
+ border: none;
+ cursor: pointer;
+}
+
+.cart-drawer__warnings .drawer__close {
+ right: 5px;
+}
+
+.drawer__close svg {
+ height: 2.4rem;
+ width: 2.4rem;
+}
+
+.drawer__contents {
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+}
+
+.drawer__footer {
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.2);
+ padding: 1.5rem 0;
+}
+
+cart-drawer-items.is-empty + .drawer__footer {
+ display: none;
+}
+
+.drawer__footer > details {
+ margin-top: -1.5rem;
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
+}
+
+.drawer__footer > details[open] {
+ padding-bottom: 1.5rem;
+}
+
+.drawer__footer summary {
+ display: flex;
+ position: relative;
+ line-height: 1;
+ padding: 1.5rem 0;
+}
+
+.drawer__footer > details + .cart-drawer__footer {
+ padding-top: 1.5rem;
+}
+
+cart-drawer {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100vw;
+ height: 100%;
+}
+
+.cart-drawer__overlay {
+ position: fixed;
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+}
+
+.cart-drawer__overlay:empty {
+ display: block;
+}
+
+.cart-drawer__form {
+ flex-grow: 1;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.cart-drawer__collection {
+ margin: 0 2.5rem 1.5rem;
+}
+
+.cart-drawer .drawer__cart-items-wrapper {
+ flex-grow: 1;
+}
+
+.cart-drawer .cart-items,
+.cart-drawer tbody {
+ display: block;
+ width: 100%;
+}
+
+.cart-drawer thead {
+ display: inline-table;
+ width: 100%;
+ position: sticky;
+ top: 0;
+ z-index: 2;
+}
+
+cart-drawer-items {
+ overflow: auto;
+ flex: 1;
+}
+
+@media screen and (max-height: 650px) {
+ cart-drawer-items {
+ overflow: visible;
+ }
+
+ .drawer__inner {
+ overflow: scroll;
+ }
+}
+
+.cart-drawer .cart-item {
+ display: grid;
+ grid-template: repeat(2, auto) / repeat(4, 1fr);
+ gap: 1.5rem;
+ margin-bottom: 0;
+}
+
+.cart-drawer .cart-item:last-child {
+ margin-bottom: 1rem;
+}
+
+.cart-drawer .cart-item__media {
+ grid-row: 1 / 3;
+}
+
+.cart-drawer .cart-item__image {
+ max-width: 100%;
+}
+
+.cart-drawer .cart-items thead {
+ margin-bottom: 0.5rem;
+}
+
+.cart-drawer .cart-items thead th:first-child,
+.cart-drawer .cart-items thead th:last-child {
+ width: 0;
+ padding: 0;
+}
+
+.cart-drawer .cart-items thead th:nth-child(2) {
+ width: 50%;
+ padding-left: 0;
+}
+
+.cart-drawer .cart-items thead tr {
+ display: table-row;
+ margin-bottom: 0;
+}
+
+.cart-drawer .cart-items th {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.cart-drawer .cart-item:last-child {
+ margin-bottom: 1.5rem;
+}
+
+.cart-drawer .cart-item .loading__spinner {
+ right: 5px;
+ padding-top: 2.5rem;
+}
+
+.cart-drawer .cart-items td {
+ padding-top: 2rem;
+}
+
+.cart-drawer .cart-item > td + td {
+ padding-left: 1rem;
+}
+
+.cart-drawer .cart-item__details {
+ width: auto;
+ grid-column: 2 / 4;
+}
+
+.cart-drawer .cart-item__totals {
+ pointer-events: none;
+ display: flex;
+ align-items: flex-start;
+ justify-content: flex-end;
+}
+
+.cart-drawer.cart-drawer .cart-item__price-wrapper > *:only-child {
+ margin-top: 0;
+}
+
+.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
+ display: flex;
+ flex-direction: column;
+ gap: 0.6rem;
+}
+
+.cart-drawer .unit-price {
+ margin-top: 0.6rem;
+}
+
+.cart-drawer .cart-items .cart-item__quantity {
+ padding-top: 0;
+ grid-column: 2 / 5;
+}
+
+@media screen and (max-width: 749px) {
+ .cart-drawer .cart-item cart-remove-button {
+ margin-left: 0;
+ }
+}
+
+.cart-drawer__footer > * + * {
+ margin-top: 1rem;
+}
+
+.cart-drawer .totals {
+ justify-content: space-between;
+}
+
+.cart-drawer .price {
+ line-height: 1;
+}
+
+.cart-drawer .tax-note {
+ margin: 1.2rem 0 1rem auto;
+ text-align: left;
+}
+
+.cart-drawer .product-option dd {
+ word-break: break-word;
+}
+
+.cart-drawer details[open] > summary .icon-caret {
+ transform: rotate(180deg);
+}
+
+.cart-drawer .cart__checkout-button {
+ max-width: none;
+}
+
+.drawer__footer .cart__dynamic-checkout-buttons {
+ max-width: 100%;
+}
+
+.drawer__footer #dynamic-checkout-cart ul {
+ flex-wrap: wrap !important;
+ flex-direction: row !important;
+ margin: 0.5rem -0.5rem 0 0 !important;
+ gap: 0.5rem;
+}
+
+.drawer__footer [data-shopify-buttoncontainer] {
+ justify-content: flex-start;
+}
+
+.drawer__footer #dynamic-checkout-cart ul > li {
+ flex-basis: calc(50% - 0.5rem) !important;
+ margin: 0 !important;
+}
+
+.drawer__footer #dynamic-checkout-cart ul > li:only-child {
+ flex-basis: 100% !important;
+ margin-right: 0.5rem !important;
+}
+
+@media screen and (min-width: 750px) {
+ .drawer__footer #dynamic-checkout-cart ul > li {
+ flex-basis: calc(100% / 3 - 0.5rem) !important;
+ margin: 0 !important;
+ }
+
+ .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2),
+ .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(2) ~ li,
+ .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4),
+ .drawer__footer #dynamic-checkout-cart ul > li:first-child:nth-last-child(4) ~ li {
+ flex-basis: calc(50% - 0.5rem) !important;
+ }
+}
+
+cart-drawer-items::-webkit-scrollbar {
+ width: 3px;
+}
+
+cart-drawer-items::-webkit-scrollbar-thumb {
+ background-color: rgba(var(--color-foreground), 0.7);
+ border-radius: 100px;
+}
+
+cart-drawer-items::-webkit-scrollbar-track-piece {
+ margin-top: 31px;
+}
+
+.cart-drawer .quantity-popover-container {
+ padding: 0;
+}
+
+.cart-drawer .quantity-popover__info.global-settings-popup {
+ transform: translateY(0);
+ right: 0;
+}
+
+.cart-drawer .cart-item__error {
+ margin-top: 0.8rem;
+}
+
+.cart-drawer .quantity-popover__info + .cart-item__error {
+ margin-top: 0.2rem;
+}
+
+@media screen and (min-width: 750px) {
+ .cart-drawer .cart-item__quantity--info quantity-popover > * {
+ padding-left: 0;
+ }
+
+ .cart-drawer .cart-item__error {
+ margin-left: 0;
+ }
+}
diff --git a/assets/component-cart-items.css b/assets/component-cart-items.css
new file mode 100644
index 0000000..23303e6
--- /dev/null
+++ b/assets/component-cart-items.css
@@ -0,0 +1,354 @@
+cart-items .title-wrapper-with-link {
+ margin-top: 0;
+}
+
+.cart-items td,
+.cart-items th {
+ padding: 0;
+ border: none;
+}
+
+.cart-items th {
+ text-align: left;
+ padding-bottom: 1.8rem;
+ opacity: 0.85;
+ font-weight: normal;
+}
+
+.cart-item__quantity-wrapper {
+ display: flex;
+}
+
+.cart-item__totals {
+ position: relative;
+}
+
+.cart-items *.right {
+ text-align: right;
+}
+
+.cart-item__image-container {
+ display: inline-flex;
+ align-items: flex-start;
+}
+
+.cart-item__image-container:after {
+ content: none;
+}
+
+.cart-item__image {
+ height: auto;
+ max-width: calc(10rem / var(--font-body-scale));
+}
+
+@media screen and (min-width: 750px) {
+ .cart-item__image {
+ max-width: 100%;
+ }
+}
+
+.cart-item__details {
+ font-size: 1.6rem;
+ line-height: calc(1 + 0.4 / var(--font-body-scale));
+}
+
+.cart-item__details > * {
+ margin: 0;
+ max-width: 30rem;
+}
+
+.cart-item__details > * + * {
+ margin-top: 0.6rem;
+}
+
+.cart-item__media {
+ position: relative;
+}
+
+.cart-item__link {
+ display: block;
+ bottom: 0;
+ left: 0;
+ position: absolute;
+ right: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+}
+
+.cart-item__name {
+ text-decoration: none;
+ display: block;
+}
+
+.cart-item__name:hover {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+ text-decoration-thickness: 0.2rem;
+}
+
+.cart-item__price-wrapper > * {
+ display: block;
+ margin: 0;
+ padding: 0;
+}
+
+.cart-item__discounted-prices dd {
+ margin: 0;
+}
+
+.cart-item__discounted-prices .cart-item__old-price {
+ font-size: 1.4rem;
+}
+
+.cart-item__old-price {
+ opacity: 0.7;
+}
+
+.cart-item__final-price {
+ font-weight: 400;
+}
+
+.product-option {
+ font-size: 1.4rem;
+ word-break: break-word;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+}
+
+.cart-item cart-remove-button {
+ display: flex;
+ margin-left: 1rem;
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .cart-item cart-remove-button {
+ width: 4.5rem;
+ height: 4.5rem;
+ }
+}
+
+cart-remove-button .button {
+ min-width: calc(4.5rem / var(--font-body-scale));
+ min-height: 4.5rem;
+ padding: 0;
+ margin: 0 0.1rem 0.1rem 0;
+}
+
+cart-remove-button .button:before,
+cart-remove-button .button:after {
+ content: none;
+}
+
+cart-remove-button .button:not([disabled]):hover {
+ color: rgb(var(--color-foreground));
+}
+
+@media screen and (min-width: 750px) {
+ cart-remove-button .button {
+ min-width: 3.5rem;
+ min-height: 3.5rem;
+ }
+}
+
+cart-remove-button .icon-remove {
+ height: 1.5rem;
+ width: 1.5rem;
+}
+
+.cart-item .loading__spinner {
+ top: 0;
+ left: auto;
+ right: auto;
+ bottom: 0;
+ padding: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .cart-item .loading__spinner {
+ right: 0;
+ padding-top: 4.5rem;
+ bottom: auto;
+ }
+}
+
+.cart-item .loading__spinner:not(.hidden) ~ * {
+ visibility: hidden;
+}
+
+.cart-item__error {
+ display: flex;
+ align-items: flex-start;
+ margin-top: 0.2rem;
+ width: min-content;
+ min-width: 100%;
+}
+
+.cart-item__error-text {
+ font-size: 1.2rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ order: 1;
+}
+
+.cart-item__error-text + svg {
+ flex-shrink: 0;
+ width: 1.2rem;
+ margin-right: 0.5rem;
+ margin-top: 0.1rem;
+}
+
+.cart-item__error-text:empty + svg {
+ display: none;
+}
+
+.product-option + .product-option {
+ margin-top: 0.4rem;
+}
+
+.product-option * {
+ display: inline;
+ margin: 0;
+}
+
+.cart-items thead th {
+ text-transform: uppercase;
+}
+
+@media screen and (max-width: 749px) {
+ .cart-items,
+ .cart-items thead,
+ .cart-items tbody {
+ display: block;
+ width: 100%;
+ }
+
+ .cart-items thead tr {
+ display: flex;
+ justify-content: space-between;
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
+ margin-bottom: 4rem;
+ }
+
+ .cart-item {
+ display: grid;
+ grid-template: repeat(2, auto) / repeat(4, 1fr);
+ gap: 1.5rem;
+ margin-bottom: 3.5rem;
+ }
+
+ .cart-item:last-child {
+ margin-bottom: 0;
+ }
+
+ .cart-item__media {
+ grid-row: 1 / 3;
+ }
+
+ .cart-item__details {
+ grid-column: 2 / 4;
+ }
+
+ .cart-item__quantity {
+ grid-column: 2 / 5;
+ }
+
+ .cart-item__quantity-wrapper {
+ flex-wrap: wrap;
+ }
+
+ .cart-item__totals {
+ display: flex;
+ align-items: flex-start;
+ justify-content: flex-end;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .cart-items {
+ border-spacing: 0;
+ border-collapse: separate;
+ box-shadow: none;
+ width: 100%;
+ display: table;
+ }
+
+ .cart-items th {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ }
+
+ .cart-items thead th:first-child {
+ width: 50%;
+ }
+
+ .cart-items th + th {
+ padding-left: 4rem;
+ }
+
+ .cart-items td {
+ vertical-align: top;
+ padding-top: 4rem;
+ }
+
+ .cart-item {
+ display: table-row;
+ }
+
+ .cart-item > td + td {
+ padding-left: 4rem;
+ }
+
+ .cart-item__details {
+ width: 35rem;
+ }
+
+ .cart-item__media {
+ width: 10rem;
+ }
+
+ .cart-item cart-remove-button {
+ margin: 0.5rem 0 0 1.5rem;
+ }
+
+ .cart-item__price-wrapper > *:only-child:not(.cart-item__discounted-prices) {
+ margin-top: 1rem;
+ }
+
+ .cart-item__error {
+ margin-left: 0.3rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .cart-item .cart-item__quantity,
+ .cart-items .cart-items__heading--wide {
+ padding-left: 6rem;
+ }
+
+ .cart-item__details {
+ width: 50rem;
+ }
+
+ .cart-items thead th:first-child {
+ width: 60%;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .cart-items .cart-items__heading--quantity,
+ .cart-item .cart-item__quantity,
+ .cart-item__quantity--info quantity-popover > *,
+ .no-js .cart-item .cart-item__quantity--info {
+ padding-left: 5rem;
+ }
+
+ .cart-item .cart-item__quantity--info,
+ .cart-item__quantity--info .cart-item__quantity-wrapper,
+ .cart-item__quantity--info .cart-items__info {
+ padding-left: 0;
+ }
+}
+
+@media screen and (min-width: 749px) and (max-width: 990px) {
+ .cart-items .quantity-popover__info-button {
+ padding-left: 1.5rem;
+ }
+}
diff --git a/assets/component-cart-notification.css b/assets/component-cart-notification.css
new file mode 100644
index 0000000..7af62a6
--- /dev/null
+++ b/assets/component-cart-notification.css
@@ -0,0 +1,123 @@
+.cart-notification-wrapper {
+ position: relative;
+}
+
+.cart-notification-wrapper .cart-notification {
+ display: block;
+}
+
+.cart-notification {
+ border-bottom-right-radius: var(--popup-corner-radius);
+ border-bottom-left-radius: var(--popup-corner-radius);
+ border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
+ border-style: solid;
+ border-width: 0 0 var(--popup-border-width);
+ padding: 2.5rem 3.5rem;
+ position: absolute;
+ right: 0;
+ transform: translateY(-100%);
+ visibility: hidden;
+ width: 100%;
+ box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+ z-index: -1;
+}
+
+.cart-notification.focused {
+ box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3),
+ var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+}
+
+.cart-notification:focus-visible {
+ box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3),
+ var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+}
+
+@media screen and (min-width: 750px) {
+ .header-wrapper:not(.header-wrapper--border-bottom) + cart-notification .cart-notification {
+ border-top-width: var(--popup-border-width);
+ }
+
+ .cart-notification {
+ border-width: 0 var(--popup-border-width) var(--popup-border-width);
+ max-width: 36.8rem;
+ right: 2.2rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .cart-notification-wrapper:is(.page-width) > .cart-notification {
+ right: 4rem;
+ }
+}
+
+.cart-notification.animate {
+ transition: transform var(--duration-short) ease, visibility 0s var(--duration-short) ease;
+}
+
+.cart-notification.active {
+ transform: translateY(0);
+ transition: transform var(--duration-default) ease, visibility 0s;
+ visibility: visible;
+}
+
+.cart-notification__header {
+ align-items: flex-start;
+ display: flex;
+}
+
+.cart-notification__heading {
+ align-items: center;
+ display: flex;
+ flex-grow: 1;
+ margin-bottom: 0;
+ margin-top: 0;
+}
+
+.cart-notification__heading .icon-checkmark {
+ color: rgb(var(--color-foreground));
+ margin-right: 1rem;
+ width: 1.3rem;
+}
+
+.cart-notification__close {
+ margin-top: -2rem;
+ margin-right: -3rem;
+}
+
+.cart-notification__links {
+ text-align: center;
+}
+
+.cart-notification__links > * {
+ margin-top: 1rem;
+}
+
+.cart-notification-product {
+ align-items: flex-start;
+ display: flex;
+ padding-bottom: 3rem;
+ padding-top: 2rem;
+}
+
+.cart-notification-product dl {
+ margin-bottom: 0;
+ margin-top: 0;
+}
+
+.cart-notification-product__image {
+ display: inline-flex;
+ margin-right: 1.5rem;
+ margin-top: 0.5rem;
+}
+
+.cart-notification-product__image:after {
+ content: none;
+}
+
+.cart-notification-product__name {
+ margin-bottom: 0.5rem;
+ margin-top: 0;
+}
diff --git a/assets/component-cart.css b/assets/component-cart.css
new file mode 100644
index 0000000..8e107f6
--- /dev/null
+++ b/assets/component-cart.css
@@ -0,0 +1,226 @@
+.cart {
+ position: relative;
+ display: block;
+}
+
+.cart__empty-text,
+.is-empty .cart__contents,
+cart-items.is-empty .title-wrapper-with-link,
+.is-empty .cart__footer {
+ display: none;
+}
+
+.is-empty .cart__empty-text,
+.is-empty .cart__warnings {
+ display: block;
+}
+
+.cart__warnings {
+ display: none;
+ text-align: center;
+ padding: 3rem 0 1rem;
+}
+
+.cart__empty-text {
+ margin: 4.5rem 0 2rem;
+}
+
+.cart__contents > * + * {
+ margin-top: 2.5rem;
+}
+
+.cart__login-title {
+ margin: 5.5rem 0 0.5rem;
+}
+
+.cart__login-paragraph {
+ margin-top: 0.8rem;
+}
+
+.cart__login-paragraph a {
+ font-size: inherit;
+}
+
+@media screen and (min-width: 990px) {
+ .cart__warnings {
+ padding: 7rem 0 1rem;
+ }
+
+ .cart__empty-text {
+ margin: 0 0 3rem;
+ }
+}
+
+cart-items {
+ display: block;
+}
+
+.cart__items {
+ position: relative;
+ padding-bottom: 3rem;
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.cart__items--disabled {
+ pointer-events: none;
+}
+
+.cart__footer-wrapper:last-child .cart__footer {
+ padding-bottom: 5rem;
+}
+
+.cart__footer > div:only-child {
+ margin-left: auto;
+}
+
+.cart__footer > * + * {
+ margin-top: 6.5rem;
+}
+
+.cart__footer .discounts {
+ margin-bottom: 1rem;
+}
+
+.cart__note {
+ height: fit-content;
+ top: 2.5rem;
+}
+
+.cart__note label {
+ display: flex;
+ align-items: flex-end;
+ position: absolute;
+ line-height: 1;
+ height: 1.8rem;
+ top: -3rem;
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.cart__note .field__input {
+ height: 100%;
+ position: relative;
+ border-radius: var(--inputs-radius);
+ padding: 1rem 2rem;
+}
+
+.cart__note .text-area {
+ resize: vertical;
+}
+
+.cart__note:after,
+.cart__note:hover.cart__note:after,
+.cart__note:before,
+.cart__note:hover.cart__note:before,
+.cart__note .field__input:focus,
+.cart__note .field__input {
+ border-bottom-right-radius: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .cart__items {
+ grid-column-start: 1;
+ grid-column-end: 3;
+ padding-bottom: 4rem;
+ }
+
+ .cart__contents > * + * {
+ margin-top: 0;
+ }
+
+ .cart__items + .cart__footer {
+ grid-column: 2;
+ }
+
+ .cart__footer {
+ display: flex;
+ justify-content: space-between;
+ border: 0;
+ }
+
+ .cart__footer-wrapper:last-child {
+ padding-top: 0;
+ }
+
+ .cart__footer > * {
+ width: 35rem;
+ }
+
+ .cart__footer > * + * {
+ margin-left: 4rem;
+ margin-top: 0;
+ }
+}
+
+.cart__ctas button {
+ width: 100%;
+}
+
+.cart__ctas > *:not(noscript:first-child) + * {
+ margin-top: 1rem;
+}
+
+.cart__update-button {
+ margin-bottom: 1rem;
+}
+
+.cart__dynamic-checkout-buttons {
+ max-width: 36rem;
+ margin: 0 auto;
+}
+
+.cart__dynamic-checkout-buttons:has(.dynamic-checkout__content:empty) {
+ margin: 0;
+}
+
+.cart__dynamic-checkout-buttons div[role='button'] {
+ border-radius: var(--buttons-radius-outset) !important;
+}
+
+.cart__blocks > * + * {
+ margin-top: 1rem;
+}
+
+.cart-note__label {
+ display: inline-block;
+ margin-bottom: 1rem;
+ line-height: calc(1 + 1 / var(--font-body-scale));
+}
+
+.tax-note {
+ margin: 2.2rem 0 1.6rem auto;
+ text-align: center;
+ display: block;
+}
+
+.cart__checkout-button {
+ max-width: 36rem;
+}
+
+.cart__ctas {
+ text-align: center;
+}
+
+@media screen and (min-width: 750px) {
+ .cart-note {
+ max-width: 35rem;
+ }
+
+ .cart__update-button {
+ margin-bottom: 0;
+ margin-right: 0.8rem;
+ }
+
+ .tax-note {
+ margin-bottom: 2.2rem;
+ text-align: right;
+ }
+
+ [data-shopify-buttoncontainer] {
+ justify-content: flex-end;
+ }
+
+ .cart__ctas {
+ display: flex;
+ gap: 1rem;
+ }
+}
diff --git a/assets/component-collection-hero.css b/assets/component-collection-hero.css
new file mode 100644
index 0000000..9ceadf0
--- /dev/null
+++ b/assets/component-collection-hero.css
@@ -0,0 +1,98 @@
+.collection-hero__inner {
+ display: flex;
+ flex-direction: column;
+}
+
+.collection-hero--with-image .collection-hero__inner {
+ margin-bottom: 0;
+ padding-bottom: 2rem;
+}
+
+@media screen and (min-width: 750px) {
+ .collection-hero.collection-hero--with-image {
+ padding: calc(4rem + var(--page-width-margin)) 0 calc(4rem + var(--page-width-margin));
+ overflow: hidden;
+ }
+
+ .collection-hero--with-image .collection-hero__inner {
+ padding-bottom: 0;
+ }
+}
+
+.collection-hero__text-wrapper {
+ flex-basis: 100%;
+}
+
+@media screen and (min-width: 750px) {
+ .collection-hero {
+ padding: 0;
+ }
+
+ .collection-hero__inner {
+ align-items: center;
+ flex-direction: row;
+ padding-bottom: 0;
+ }
+}
+
+.collection-hero__title {
+ margin: 2.5rem 0;
+}
+
+.collection-hero__title + .collection-hero__description {
+ margin-top: 1.5rem;
+ margin-bottom: 1.5rem;
+ font-size: 1.6rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+}
+
+@media screen and (min-width: 750px) {
+ .collection-hero__title + .collection-hero__description {
+ font-size: 1.8rem;
+ margin-top: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .collection-hero__description {
+ max-width: 66.67%;
+ }
+
+ .collection-hero--with-image .collection-hero__description {
+ max-width: 100%;
+ }
+}
+
+.collection-hero--with-image .collection-hero__title {
+ margin: 0;
+}
+
+.collection-hero--with-image .collection-hero__text-wrapper {
+ padding: 5rem 0 4rem;
+}
+
+.collection-hero__image-container {
+ border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
+ border-radius: var(--media-radius);
+ box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--media-shadow-opacity));
+}
+
+@media screen and (max-width: 749px) {
+ .collection-hero__image-container {
+ height: 20rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .collection-hero--with-image .collection-hero__text-wrapper {
+ padding: 4rem 2rem 4rem 0;
+ flex-basis: 50%;
+ }
+
+ .collection-hero__image-container {
+ align-self: stretch;
+ flex: 1 0 50%;
+ margin-left: 3rem;
+ min-height: 20rem;
+ }
+}
diff --git a/assets/component-complementary-products.css b/assets/component-complementary-products.css
new file mode 100644
index 0000000..5555777
--- /dev/null
+++ b/assets/component-complementary-products.css
@@ -0,0 +1,161 @@
+.complementary-products__container {
+ display: flex;
+ flex-direction: column;
+ gap: 1.3rem;
+}
+
+product-recommendations:not(.is-accordion) .complementary-products__container {
+ margin-top: 1.5rem;
+}
+
+.complementary-products__container > details[open] {
+ padding-bottom: 1.5rem;
+}
+
+.complementary-slider {
+ margin-top: 0;
+ gap: 0;
+}
+
+.complementary-slide {
+ --shadow-padding-sides: calc((var(--shadow-horizontal-offset) + var(--shadow-blur-radius)) * var(--shadow-visible));
+ --shadow-padding-sides-negative: calc(
+ (var(--shadow-horizontal-offset) * -1 + var(--shadow-blur-radius)) * var(--shadow-visible)
+ );
+}
+
+.complementary-slide > ul {
+ display: flex;
+ flex-direction: column;
+ gap: var(--grid-mobile-vertical-spacing);
+}
+
+.complementary-slide.complementary-slide--standard > ul {
+ gap: calc(var(--grid-mobile-vertical-spacing) + 8px);
+}
+
+@media screen and (min-width: 750px) {
+ .complementary-slide > ul {
+ gap: var(--grid-desktop-vertical-spacing);
+ }
+
+ .complementary-slide.complementary-slide--standard > ul {
+ gap: calc(var(--grid-desktop-vertical-spacing) + 8px);
+ }
+}
+
+.complementary-slide.grid__item {
+ width: 100%;
+ padding-top: max(var(--focus-outline-padding), var(--shadow-padding-top));
+ padding-bottom: max(var(--focus-outline-padding), var(--shadow-padding-bottom));
+ padding-right: max(var(--focus-outline-padding), var(--shadow-padding-sides));
+ padding-left: max(var(--focus-outline-padding), var(--shadow-padding-sides-negative));
+}
+
+.complementary-slide .card-wrapper {
+ height: auto;
+}
+
+.complementary-products > .summary__title {
+ display: flex;
+ line-height: 1;
+ padding: 1.5rem 0;
+}
+
+.accordion + product-recommendations .accordion,
+product-recommendations.is-accordion + .accordion {
+ margin-top: 0;
+ border-top: none;
+}
+
+.complementary-products > .summary__title .icon-accordion {
+ fill: rgb(var(--color-foreground));
+ height: calc(var(--font-heading-scale) * 2rem);
+ margin-right: calc(var(--font-heading-scale) * 1rem);
+ width: calc(var(--font-heading-scale) * 2rem);
+}
+
+.complementary-products__container .card--card .card__content,
+.complementary-products__container .card--horizontal .card__information {
+ padding: 0;
+}
+
+.complementary-products__container .card--horizontal .card__inner {
+ max-width: 20%;
+}
+
+@media screen and (min-width: 750px) and (max-width: 1200px) {
+ .complementary-products__container .card--horizontal .card__inner {
+ max-width: 25%;
+ }
+}
+
+.complementary-slide .card--text .card__content {
+ grid-template-rows: minmax(0, 1fr) max-content auto;
+}
+
+.complementary-products__container .card--card.card--media > .card__content {
+ margin-top: 0;
+}
+
+.complementary-products-contains-quick-add .underline-links-hover:hover a {
+ text-decoration: initial;
+}
+
+.complementary-products-contains-quick-add .card__heading:hover a {
+ text-decoration: underline;
+}
+
+.complementary-products__container .card--card .card__inner .card__media {
+ border-radius: calc(var(--corner-radius) - var(--border-width) - var(--image-padding));
+}
+
+.complementary-products__container .card--horizontal .quick-add {
+ margin: 0;
+ max-width: 20rem;
+}
+
+.complementary-products__container .quick-add__submit {
+ padding: 1.5rem 0;
+ min-height: inherit;
+}
+
+.complementary-products__container .quick-add__submit .icon-plus {
+ width: 1.2rem;
+}
+
+.complementary-products__container .icon-wrap {
+ display: flex;
+}
+
+.complementary-products .sold-out-message:not(.hidden) + .icon-wrap {
+ display: none;
+}
+
+.complementary-products__container .quick-add__submit:not(.animate-arrow) .icon-wrap {
+ transition: transform var(--duration-short) ease;
+}
+
+.complementary-products__container .quick-add__submit:not(.animate-arrow):hover .icon-wrap {
+ transform: rotate(90deg);
+}
+
+.complementary-products__container .quick-add__submit:after,
+.complementary-products__container .quick-add__submit:hover:after {
+ box-shadow: none;
+}
+
+.complementary-products__container .card--horizontal .quick-add,
+.complementary-products__container .card__badge {
+ justify-self: var(--text-alignment);
+}
+
+.product--no-media .complementary-products__container .price {
+ text-align: var(--text-alignment);
+}
+
+@media screen and (min-width: 750px) {
+ .complementary-products__container .price--on-sale .price-item--regular {
+ font-size: 1.3rem;
+ }
+}
diff --git a/assets/component-deferred-media.css b/assets/component-deferred-media.css
new file mode 100644
index 0000000..978d9c9
--- /dev/null
+++ b/assets/component-deferred-media.css
@@ -0,0 +1,98 @@
+.deferred-media__poster {
+ background-color: transparent;
+ border: none;
+ cursor: pointer;
+ margin: 0;
+ padding: 0;
+ height: 100%;
+ width: 100%;
+ overflow: hidden;
+ border-radius: calc(var(--border-radius) - var(--border-width));
+}
+
+.media > .deferred-media__poster {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.deferred-media__poster img {
+ width: auto;
+ max-width: 100%;
+ height: 100%;
+}
+
+.deferred-media {
+ overflow: hidden;
+}
+
+.deferred-media:not([loaded]) template {
+ z-index: -1;
+}
+
+.deferred-media[loaded] > .deferred-media__poster {
+ display: none;
+}
+
+.deferred-media__poster:focus-visible {
+ outline: none;
+ box-shadow: 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)),
+ 0 0 0 calc(var(--media-border-width) + 0.3rem) rgb(var(--color-background)),
+ 0 0 0 calc(var(--media-border-width) + 0.5rem) rgba(var(--color-foreground), 0.5);
+ border-radius: calc(var(--media-radius) - var(--media-border-width));
+}
+
+.deferred-media__poster:focus {
+ outline: none;
+ box-shadow: 0 0 0 var(--media-border-width) rgba(var(--color-foreground), var(--media-border-opacity)),
+ 0 0 0 calc(var(--media-border-width) + 0.3rem) rgb(var(--color-background)),
+ 0 0 0 calc(var(--media-border-width) + 0.5rem) rgba(var(--color-foreground), 0.5);
+ border-radius: calc(var(--media-radius) - var(--media-border-width));
+}
+
+.global-media-settings--full-width .deferred-media__poster,
+.global-media-settings--full-width .deferred-media__poster:is(:focus, :focus-visible) {
+ border-radius: 0;
+}
+
+/* outline styling for Windows High Contrast Mode */
+@media (forced-colors: active) {
+ .deferred-media__poster:focus {
+ outline: transparent solid 1px;
+ }
+}
+.deferred-media__poster:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none;
+}
+
+.deferred-media__poster-button {
+ background-color: rgb(var(--color-background));
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ border-radius: 50%;
+ color: rgb(var(--color-foreground));
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 6.2rem;
+ width: 6.2rem;
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%) scale(1);
+ transition: transform var(--duration-short) ease, color var(--duration-short) ease;
+ z-index: 1;
+}
+
+.deferred-media__poster-button:hover {
+ transform: translate(-50%, -50%) scale(1.1);
+}
+
+.deferred-media__poster-button .icon {
+ width: 2rem;
+ height: 2rem;
+}
+
+.deferred-media__poster-button .icon-play {
+ margin-left: 0.2rem;
+}
diff --git a/assets/component-discounts.css b/assets/component-discounts.css
new file mode 100644
index 0000000..1a4ed6d
--- /dev/null
+++ b/assets/component-discounts.css
@@ -0,0 +1,30 @@
+.discounts {
+ font-size: 1.2rem;
+}
+
+.discounts__discount {
+ display: flex;
+ align-items: center;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+}
+
+.discounts__discount svg {
+ color: rgba(var(--color-button), var(--alpha-button-background));
+}
+
+.discounts__discount--position {
+ justify-content: center;
+}
+
+@media screen and (min-width: 750px) {
+ .discounts__discount--position {
+ justify-content: flex-end;
+ }
+}
+
+.discounts__discount > .icon {
+ color: rgb(var(--color-foreground));
+ width: 1.2rem;
+ height: 1.2rem;
+ margin-right: 0.7rem;
+}
diff --git a/assets/component-facets.css b/assets/component-facets.css
new file mode 100644
index 0000000..ca766b9
--- /dev/null
+++ b/assets/component-facets.css
@@ -0,0 +1,1191 @@
+.facets-container {
+ display: grid;
+ grid-template-columns: repeat(2, auto);
+ grid-template-rows: repeat(2, auto);
+ padding-top: 1rem;
+}
+
+.active-facets-mobile {
+ margin-bottom: 0.5rem;
+}
+
+.mobile-facets__list {
+ overflow-y: auto;
+}
+
+@media screen and (min-width: 750px) {
+ .facets-container > * + * {
+ margin-top: 0;
+ }
+
+ .facets__form .product-count {
+ grid-column-start: 3;
+ align-self: flex-start;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .facets-container {
+ grid-template-columns: auto minmax(0, max-content);
+ column-gap: 2rem;
+ }
+}
+
+.facet-filters {
+ align-items: flex-start;
+ display: flex;
+ grid-column: 2;
+ grid-row: 1;
+ padding-left: 2.5rem;
+}
+
+@media screen and (min-width: 990px) {
+ .facet-filters {
+ padding-left: 3rem;
+ }
+}
+
+.facet-filters__label {
+ display: block;
+ color: rgba(var(--color-foreground), 0.85);
+ font-size: 1.4rem;
+ margin: 0 2rem 0 0;
+}
+
+.facet-filters__summary {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ font-size: 1.4rem;
+ cursor: pointer;
+ height: 4.5rem;
+ padding: 0 1.5rem;
+ min-width: 25rem;
+ margin-top: 2.4rem;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.55);
+}
+
+.facet-filters__summary::after {
+ position: static;
+}
+
+.facet-filters__field {
+ align-items: center;
+ display: flex;
+ flex-grow: 1;
+ justify-content: flex-end;
+}
+
+.facet-filters__field .select {
+ width: auto;
+}
+
+.facet-filters__field .select:after,
+.facet-filters__field .select:before,
+.mobile-facets__sort .select:after,
+.mobile-facets__sort .select:before {
+ content: none;
+}
+
+.facet-filters__field .select__select,
+.mobile-facets__sort .select__select {
+ border-radius: 0;
+ min-width: auto;
+ min-height: auto;
+ transition: none;
+}
+
+.facet-filters button {
+ margin-left: 2.5rem;
+}
+
+.facet-filters__sort {
+ background-color: transparent;
+ border: 0;
+ border-radius: 0;
+ font-size: 1.4rem;
+ height: auto;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+ margin: 0;
+ padding-left: 0;
+ padding-right: 1.75rem;
+}
+
+.facet-filters__sort + .icon-caret {
+ right: 0;
+}
+
+@media screen and (forced-colors: active) {
+ .facet-filters__sort {
+ border: none;
+ }
+}
+
+.facet-filters__sort,
+.facet-filters__sort:hover {
+ box-shadow: none;
+ filter: none;
+ transition: none;
+}
+
+.mobile-facets__sort .select__select:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.mobile-facets__sort .select__select.focused,
+.no-js .mobile-facets__sort .select__select:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.facet-filters__sort:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 1rem;
+ box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
+}
+
+.facet-filters__sort.focused,
+.no-js .facet-filters__sort:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 1rem;
+ box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
+}
+
+.no-js .facet-filters__sort:focus:not(:focus-visible),
+.no-js .mobile-facets__sort .select__select:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none;
+}
+
+.facets {
+ display: block;
+ grid-column-start: span 2;
+}
+
+.facets__form {
+ display: grid;
+ gap: 0 3.5rem;
+ grid-template-columns: 1fr max-content max-content;
+ margin-bottom: 0.5rem;
+}
+
+.facets__wrapper {
+ align-items: center;
+ align-self: flex-start;
+ grid-column: 1;
+ grid-row: 1;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.facets__heading {
+ display: block;
+ color: rgba(var(--color-foreground), 0.85);
+ font-size: 1.4rem;
+ margin: -1.5rem 2rem 0 0;
+}
+
+.facets__reset {
+ margin-left: auto;
+}
+
+.facets__disclosure {
+ margin-right: 3.5rem;
+}
+
+.facets__summary {
+ color: rgba(var(--color-foreground), 0.75);
+ font-size: 1.4rem;
+ padding: 0 1.75rem 0 0;
+ margin-bottom: 1.5rem;
+}
+
+.facets__disclosure fieldset {
+ padding: 0;
+ margin: 0;
+ border: 0;
+}
+
+.facets__disclosure[open] .facets__summary,
+.facets__summary:hover {
+ color: rgb(var(--color-foreground));
+}
+
+.facets__disclosure[open] .facets__display,
+.facets__disclosure-vertical[open] .facets__display-vertical {
+ animation: animateMenuOpen var(--duration-default) ease;
+}
+
+.facets__summary span {
+ transition: text-decoration var(--duration-short) ease;
+}
+
+.facets__summary:hover .facets__summary-label {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.facets__and-helptext {
+ color: rgba(var(--color-foreground), 0.5);
+ font-size: calc(var(--font-heading-scale) * 1.2rem);
+ line-height: calc(var(--font-heading-scale) * 1.2rem);
+}
+
+@media only screen and (min-width: 750px) {
+ .facets__and-helptext {
+ font-size: calc(var(--font-heading-scale) * 1.3rem);
+ line-height: calc(var(--font-heading-scale) * 1.3rem);
+ }
+}
+
+.facets__disclosure .facets__and-helptext,
+.facets__disclosure-vertical .facets__and-helptext {
+ display: none;
+}
+
+.facets__disclosure[open] .facets__and-helptext,
+.facets__disclosure-vertical[open] .facets__and-helptext {
+ display: block;
+}
+
+.disclosure-has-popup[open] > .facets__summary::before {
+ z-index: 2;
+}
+
+.facets__summary > span {
+ line-height: calc(1 + 0.3 / var(--font-body-scale));
+}
+
+.facets__summary .icon-caret {
+ right: 0;
+}
+
+.facets__display {
+ border-width: var(--popup-border-width);
+ border-style: solid;
+ border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
+ border-radius: var(--popup-corner-radius);
+ box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+ background-color: rgb(var(--color-background));
+ position: absolute;
+ top: calc(100% + 0.5rem);
+ left: -1.2rem;
+ width: 35rem;
+ max-height: 55rem;
+ overflow-y: auto;
+}
+
+.facets__header {
+ border-bottom: 1px solid rgba(var(--color-foreground), 0.2);
+ padding: 1.5rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ font-size: 1.4rem;
+ position: sticky;
+ top: 0;
+ background-color: rgb(var(--color-background));
+ z-index: 1;
+}
+
+.facets__header facet-remove {
+ align-self: center;
+}
+
+.facets__list {
+ padding: 0.5rem 2rem;
+}
+
+.facets-layout-grid {
+ display: grid;
+ grid-template-columns: repeat(3, 1fr);
+ text-align: center;
+ padding: 2rem 2.4rem;
+ gap: 3rem 1rem;
+}
+
+.facets-layout-grid.facets__list--vertical {
+ padding: 1rem 0;
+}
+
+.facets__item {
+ display: flex;
+ align-items: center;
+}
+
+/* Hover/focus state */
+.facets-layout-list .facets__label:hover .facet-checkbox__text,
+.facets-layout-list input:focus ~ .facet-checkbox__text {
+ text-decoration: underline;
+}
+
+.facets-layout-grid > * {
+ align-items: flex-start;
+}
+
+.facets-layout-grid .visual-display-parent {
+ display: flex;
+ flex-direction: column;
+ gap: 0.8rem;
+ padding: 0;
+ height: 100%;
+ font-size: 1.3rem;
+}
+
+.facets__item label,
+.facets__item input[type='checkbox'] {
+ cursor: pointer;
+}
+
+.facet-checkbox {
+ padding: 1rem 2rem 1rem 0;
+ flex-grow: 1;
+ position: relative;
+ font-size: 1.4rem;
+ display: flex;
+ word-break: break-word;
+}
+
+/* Hover, active, and focus states */
+:is(.facets__label:hover, .facets__label.active, .facets__label:has(:focus-visible)) {
+ color: rgba(var(--color-foreground), 1);
+}
+
+/* Focus states for older browsers */
+@supports not selector(:has(a, b)) {
+ .facets__label:focus-within {
+ color: rgba(var(--color-foreground), 1);
+ }
+}
+
+.facet-checkbox input[type='checkbox'] {
+ position: absolute;
+ opacity: 1;
+ width: 1.6rem;
+ height: 1.6rem;
+ top: 0.7rem;
+ left: -0.4rem;
+ z-index: -1;
+ appearance: none;
+ -webkit-appearance: none;
+}
+
+.facets-layout-grid input[type='checkbox'] {
+ position: absolute;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ width: 100%;
+ height: 100%;
+ opacity: 0;
+}
+
+.facets__visual-display-wrapper {
+ display: flex;
+ justify-content: center;
+ flex-shrink: 0;
+}
+
+.no-js .facet-checkbox input[type='checkbox'] {
+ z-index: 0;
+}
+
+.facet-checkbox > svg {
+ background-color: rgb(var(--color-background));
+ margin-right: 1.2rem;
+ flex-shrink: 0;
+}
+
+.facet-checkbox .icon-checkmark {
+ visibility: hidden;
+ position: absolute;
+ left: 0.3rem;
+ z-index: 5;
+ top: 1.4rem;
+}
+
+.facet-checkbox > input[type='checkbox']:checked ~ .icon-checkmark {
+ visibility: visible;
+}
+
+@media screen and (forced-colors: active) {
+ .facet-checkbox > svg {
+ background-color: inherit;
+ border: 0.1rem solid rgb(var(--color-background));
+ }
+
+ .facet-checkbox > input[type='checkbox']:checked ~ .icon-checkmark {
+ border: none;
+ }
+}
+
+.facet-checkbox--disabled,
+.mobile-facets__label--disabled {
+ opacity: 0.4;
+ pointer-events: none;
+}
+
+.facets__price {
+ display: flex;
+ padding: 2rem;
+}
+
+.facets__price .field + .field-currency {
+ margin-left: 2rem;
+}
+
+.facets__price .field {
+ align-items: center;
+}
+
+.facets__price .field-currency {
+ align-self: center;
+ margin-right: 0.6rem;
+}
+
+.facets__price .field__label {
+ left: 1.5rem;
+}
+
+button.facets__button {
+ min-height: 0;
+ margin: 0 0 0 0.5rem;
+ box-shadow: none;
+ padding-top: 1.4rem;
+ padding-bottom: 1.4rem;
+}
+
+.facets__button-no-js {
+ transform: translateY(-0.6rem);
+}
+
+.active-facets {
+ display: flex;
+ flex-wrap: wrap;
+ width: 100%;
+ grid-column: 1 / -1;
+ grid-row: 2;
+ margin-top: -0.5rem;
+}
+
+.active-facets__button {
+ display: block;
+ margin-right: 1.5rem;
+ margin-top: 1.5rem;
+ padding-left: 0.2rem;
+ padding-right: 0.2rem;
+ text-decoration: none;
+}
+
+span.active-facets__button-inner {
+ color: rgb(var(--color-foreground));
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
+ border-radius: 2.6rem;
+ font-size: 1rem;
+ min-height: 0;
+ min-width: 0;
+ padding: 0.5rem 1rem;
+ display: flex;
+ align-items: stretch;
+}
+
+span.active-facets__button-inner:before,
+span.active-facets__button-inner:after {
+ display: none;
+}
+
+.active-facets__button-wrapper {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+ padding-top: 1.5rem;
+}
+
+.active-facets__button-wrapper * {
+ font-size: 1rem;
+}
+
+@media screen and (min-width: 990px) {
+ .active-facets__button {
+ margin-right: 1.5rem;
+ }
+
+ .active-facets__button-wrapper *,
+ span.active-facets__button-inner {
+ font-size: 1.4rem;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .active-facets {
+ margin: 0 -1.2rem -1.2rem;
+ }
+
+ .active-facets__button,
+ .active-facets__button-remove {
+ margin: 0;
+ padding: 1.2rem;
+ }
+
+ span.active-facets__button-inner {
+ padding-bottom: 0.3rem;
+ padding-top: 0.3rem;
+ }
+
+ .active-facets__button-wrapper {
+ padding-top: 0;
+ margin-left: 1.2rem;
+ }
+}
+
+.active-facets__button:hover .active-facets__button-inner {
+ box-shadow: 0 0 0 0.2rem rgb(var(--color-foreground));
+}
+
+.active-facets__button--light .active-facets__button-inner {
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
+}
+
+.active-facets__button--light:hover .active-facets__button-inner {
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.4);
+}
+
+a.active-facets__button:focus-visible {
+ outline: none;
+ box-shadow: none;
+}
+
+/* outline styling for Windows High Contrast Mode */
+@media (forced-colors: active) {
+ a.active-facets__button:focus-visible {
+ outline: transparent solid 1px;
+ }
+}
+a.active-facets__button.focused,
+.no-js a.active-facets__button:focus {
+ outline: none;
+ box-shadow: none;
+}
+
+a.active-facets__button:focus-visible .active-facets__button-inner {
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2), 0 0 0 0.2rem rgb(var(--color-background)),
+ 0 0 0 0.4rem rgb(var(--color-foreground));
+ outline: none;
+}
+
+a.active-facets__button.focused .active-facets__button-inner,
+.no-js a.active-facets__button:focus .active-facets__button-inner {
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2), 0 0 0 0.2rem rgb(var(--color-background)),
+ 0 0 0 0.4rem rgb(var(--color-foreground));
+ outline: none;
+}
+
+.active-facets__button svg {
+ align-self: center;
+ flex-shrink: 0;
+ margin-left: 0.6rem;
+ margin-right: -0.2rem;
+ pointer-events: none;
+ width: 1.2rem;
+}
+
+@media all and (min-width: 990px) {
+ .active-facets__button svg {
+ margin-right: -0.4rem;
+ margin-top: 0.1rem;
+ width: 1.4rem;
+ }
+}
+
+.active-facets facet-remove:only-child {
+ display: none;
+}
+
+.facets-vertical .active-facets .active-facets-vertical-filter:only-child > facet-remove {
+ display: none;
+}
+
+.facets-vertical .active-facets-vertical-filter {
+ display: flex;
+ width: 100%;
+ justify-content: space-between;
+}
+
+.facets-vertical .active-facets-vertical-filter .active-facets__button-wrapper {
+ padding-top: 0;
+ display: flex;
+ align-items: flex-start;
+}
+
+.facets-vertical .active-facets__button {
+ margin-top: 0;
+}
+
+.active-facets__button.disabled,
+.mobile-facets__clear.disabled {
+ pointer-events: none;
+}
+
+.mobile-facets__clear-wrapper {
+ align-items: center;
+ display: flex;
+ justify-content: center;
+}
+
+.mobile-facets {
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
+ z-index: 100;
+ background-color: rgba(var(--color-foreground), 0.5);
+ pointer-events: none;
+}
+
+.mobile-facets__disclosure {
+ display: flex;
+}
+
+.mobile-facets__wrapper {
+ margin-left: 0;
+ display: flex;
+}
+
+.mobile-facets__wrapper .disclosure-has-popup[open] > summary::before {
+ height: 100vh;
+ z-index: 3;
+}
+
+.mobile-facets__inner {
+ background-color: rgb(var(--color-background));
+ width: calc(100% - 5rem);
+ margin-left: auto;
+ height: 100%;
+ overflow-y: auto;
+ pointer-events: all;
+ transition: transform var(--duration-default) ease;
+ max-width: 37.5rem;
+ display: flex;
+ flex-direction: column;
+ border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
+ border-style: solid;
+ border-width: 0 0 0 var(--drawer-border-width);
+ filter: drop-shadow(
+ var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset) var(--drawer-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--drawer-shadow-opacity))
+ );
+}
+
+.menu-opening .mobile-facets__inner {
+ transform: translateX(0);
+}
+
+.js .disclosure-has-popup:not(.menu-opening) .mobile-facets__inner {
+ transform: translateX(105vw);
+}
+
+.mobile-facets__header {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ padding: 1rem 2.5rem;
+ text-align: center;
+ display: flex;
+ position: sticky;
+ top: 0;
+ z-index: 2;
+}
+
+.mobile-facets__header-inner {
+ flex-grow: 1;
+ position: relative;
+}
+
+.mobile-facets__info {
+ padding: 0 2.6rem;
+}
+
+.mobile-facets__heading {
+ font-size: calc(var(--font-heading-scale) * 1.4rem);
+ margin: 0;
+}
+
+.mobile-facets__count {
+ color: rgba(var(--color-foreground), 0.7);
+ font-size: 1.3rem;
+ margin: 0;
+ flex-grow: 1;
+}
+
+.mobile-facets__open-wrapper {
+ display: inline-block;
+}
+
+.mobile-facets__open {
+ text-align: left;
+ width: 100%;
+ padding-top: 0.5rem;
+ padding-bottom: 0.5rem;
+ display: flex;
+ align-items: center;
+ color: rgba(var(--color-link), var(--alpha-link));
+}
+
+.mobile-facets__open:hover {
+ color: rgb(var(--color-link));
+}
+
+.mobile-facets__open:hover line,
+.mobile-facets__open:hover circle {
+ stroke: rgb(var(--color-link));
+}
+
+.mobile-facets__open-label {
+ transition: text-decoration var(--duration-short) ease;
+}
+
+.mobile-facets__open:hover .mobile-facets__open-label {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.mobile-facets__open > * + * {
+ margin-left: 1rem;
+}
+
+.mobile-facets__open svg {
+ width: 2rem;
+}
+
+.mobile-facets__open line,
+.mobile-facets__open circle {
+ stroke: rgba(var(--color-link), var(--alpha-link));
+}
+
+.mobile-facets__close {
+ display: none;
+ align-items: center;
+ justify-content: center;
+ position: fixed;
+ top: 0.7rem;
+ right: 1rem;
+ width: 4.4rem;
+ height: 4.4rem;
+ z-index: 101;
+ opacity: 0;
+ transition: opacity var(--duration-short) ease;
+}
+
+.mobile-facets__close svg {
+ width: 2.2rem;
+}
+
+details.menu-opening .mobile-facets__close {
+ display: flex;
+ opacity: 1;
+}
+
+details.menu-opening .mobile-facets__close svg {
+ margin: 0;
+}
+
+.mobile-facets__close-button {
+ align-items: center;
+ background-color: transparent;
+ font-size: 1.4rem;
+ font: inherit;
+ letter-spacing: inherit;
+ margin-top: 1.5rem;
+ padding: 1.2rem 2.6rem;
+ text-decoration: none;
+
+ display: grid;
+ grid-template-columns: min-content 1fr;
+ text-align: start;
+}
+
+.mobile-facets__close-button > .facets__and-helptext {
+ grid-column-start: 2;
+}
+
+.no-js .mobile-facets__close-button {
+ display: none;
+}
+
+.mobile-facets__close-button .icon-arrow {
+ transform: rotate(180deg);
+ margin-right: 1rem;
+}
+
+.mobile-facets__main {
+ padding: 2.7rem 0 0;
+ position: relative;
+ z-index: 1;
+ flex-grow: 1;
+ display: flex;
+ flex-direction: column;
+ overflow-y: auto;
+}
+
+.mobile-facets__details[open] .icon-caret {
+ transform: rotate(180deg);
+}
+
+.no-js .mobile-facets__details {
+ border-bottom: 1px solid rgba(var(--color-foreground), 0.04);
+}
+
+.mobile-facets__highlight {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ right: 0px;
+ bottom: 0px;
+ display: block;
+ background-color: rgba(var(--color-foreground), 0.04);
+ opacity: 0;
+ visibility: hidden;
+}
+
+.mobile-facets__checkbox:checked + .mobile-facets__highlight {
+ opacity: 1;
+ visibility: visible;
+}
+
+.mobile-facets__summary {
+ padding: 1.3rem 2.5rem;
+}
+
+.mobile-facets__summary svg {
+ margin-left: auto;
+}
+
+.mobile-facets__summary > div {
+ display: flex;
+ align-items: center;
+}
+
+.js .mobile-facets__submenu {
+ position: absolute;
+ top: 0;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ z-index: 3;
+ transform: translateX(100%);
+ visibility: hidden;
+ display: flex;
+ flex-direction: column;
+}
+
+.js details[open] > .mobile-facets__submenu {
+ transition: transform 0.4s cubic-bezier(0.29, 0.63, 0.44, 1), visibility 0.4s cubic-bezier(0.29, 0.63, 0.44, 1);
+}
+
+.js details[open].menu-opening > .mobile-facets__submenu {
+ transform: translateX(0);
+ visibility: visible;
+}
+
+.js .menu-drawer__submenu .mobile-facets__submenu {
+ overflow-y: auto;
+}
+
+.js .mobile-facets .submenu-open {
+ visibility: hidden; /* hide menus from screen readers when hidden by submenu */
+}
+
+.mobile-facets__item {
+ position: relative;
+}
+
+input.mobile-facets__checkbox {
+ border: 0;
+ position: absolute;
+ width: 1.6rem;
+ height: 1.6rem;
+ position: absolute;
+ left: 2.1rem;
+ top: 1.2rem;
+ z-index: 0;
+ appearance: none;
+ -webkit-appearance: none;
+}
+
+.mobile-facets__label {
+ padding: 1.5rem 2rem 1.5rem 2.5rem;
+ width: 100%;
+ transition: background-color 0.2s ease;
+ word-break: break-word;
+ display: flex;
+}
+
+.mobile-facets__label > svg {
+ background-color: rgb(var(--color-background));
+ position: relative;
+ z-index: 2;
+ margin-right: 1.2rem;
+ flex-shrink: 0;
+}
+
+.mobile-facets__label .icon-checkmark {
+ position: absolute;
+ top: 1.9rem;
+ left: 2.8rem;
+ visibility: hidden;
+}
+
+.mobile-facets__label > input[type='checkbox']:checked ~ .icon-checkmark {
+ visibility: visible;
+}
+
+.mobile-facets__arrow,
+.mobile-facets__summary .icon-caret {
+ margin-left: auto;
+ display: block;
+}
+
+.mobile-facets__footer {
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ padding: 2rem;
+ bottom: 0;
+ position: sticky;
+ display: flex;
+ z-index: 2;
+ margin-top: auto;
+ background-color: rgb(var(--color-background));
+ background: var(--gradient-background);
+}
+
+.mobile-facets__footer > * + * {
+ margin-left: 1rem;
+}
+
+.mobile-facets__footer > * {
+ width: 50%;
+}
+
+.mobile-facets__footer noscript .button {
+ width: 100%;
+}
+
+.mobile-facets__sort {
+ display: flex;
+ justify-content: space-between;
+}
+
+.mobile-facets__sort label {
+ flex-shrink: 0;
+}
+
+.mobile-facets__sort .select {
+ width: auto;
+}
+
+.no-js .mobile-facets__sort .select {
+ position: relative;
+ right: -1rem;
+}
+
+.mobile-facets__sort .select .icon-caret {
+ right: 0;
+}
+
+.mobile-facets__sort .select__select {
+ background-color: transparent;
+ border-radius: 0;
+ box-shadow: none;
+ filter: none;
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+ padding-left: 0.5rem;
+ padding-right: 1.5rem;
+}
+
+.product-count {
+ align-self: center;
+ position: relative;
+ text-align: right;
+}
+
+.product-count__text {
+ font-size: 1.4rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+ margin: 0;
+}
+
+#ProductCountDesktop.loading,
+#ProductCount.loading {
+ visibility: hidden;
+}
+
+.product-count .loading__spinner,
+.product-count-vertical .loading__spinner {
+ position: absolute;
+ padding-top: 0.6rem;
+ right: 0;
+ top: 50%;
+ transform: translateY(-50%);
+ width: 1.8rem;
+}
+
+@media screen and (min-width: 750px) {
+ .facets-vertical {
+ display: flex;
+ }
+
+ .facets-wrap-vertical {
+ border: none;
+ padding-left: 0;
+ }
+
+ .facets__form-vertical {
+ display: flex;
+ flex-direction: column;
+ width: 26rem;
+ }
+
+ .facets__disclosure-vertical {
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ margin-right: 0;
+ }
+
+ .facets-vertical .facets__summary {
+ padding-top: 1.5rem;
+ margin-bottom: 0;
+ padding-bottom: 1.5rem;
+ }
+
+ .facets__heading--vertical {
+ margin: 0 0 1.5rem 0;
+ font-size: 1.5rem;
+ }
+
+ .facets__header-vertical {
+ padding: 1.5rem 2rem 1.5rem 0;
+ font-size: 1.4rem;
+ }
+
+ .facets__display-vertical {
+ padding-bottom: 1.5rem;
+ }
+
+ .facets-vertical .facets-wrapper {
+ padding-right: 3rem;
+ }
+
+ .facets-vertical .facets-wrapper--no-filters {
+ display: none;
+ }
+
+ .no-js .facets-vertical .facets-wrapper--no-filters {
+ display: block;
+ }
+
+ .facets-vertical .product-grid-container {
+ width: 100%;
+ }
+
+ .facets-vertical-form {
+ display: flex;
+ justify-content: flex-end;
+ }
+
+ .product-count-vertical {
+ margin-left: 3.5rem;
+ position: relative;
+ }
+
+ .facets-vertical .active-facets__button-wrapper {
+ margin-bottom: 2rem;
+ }
+
+ .facets-vertical .no-js .facets__button-no-js {
+ transform: none;
+ margin-left: 0;
+ }
+
+ .facets-vertical .no-js .facet-filters__field {
+ justify-content: flex-start;
+ padding-bottom: 1rem;
+ padding-top: 2rem;
+ }
+
+ .facets-vertical .facets__price {
+ padding: 0.5rem 0.5rem 0.5rem 0;
+ }
+
+ .facets-vertical .facets__price .field:last-of-type {
+ margin-left: 1rem;
+ }
+
+ .facets-vertical .active-facets__button {
+ margin-bottom: 1.5rem;
+ }
+
+ .no-js .facets-vertical .facet-filters.sorting {
+ padding-left: 0;
+ flex-direction: column;
+ }
+
+ .facets-vertical .facet-checkbox input[type='checkbox'] {
+ z-index: 0;
+ }
+
+ .no-js .facets-vertical .facets-container {
+ display: flex;
+ flex-direction: column;
+ }
+
+ .facets-vertical .active-facets facet-remove:last-of-type {
+ margin-bottom: 1rem;
+ }
+
+ .facets-vertical .active-facets {
+ margin: 0;
+ align-items: flex-start;
+ }
+
+ .facets__disclosure-vertical[open] .facets__summary .icon-caret {
+ transform: rotate(180deg);
+ }
+
+ .facets-container-drawer {
+ display: flex;
+ flex-flow: row wrap;
+ align-items: center;
+ column-gap: 0;
+ }
+
+ .facets-container-drawer .mobile-facets__wrapper {
+ margin-right: 2rem;
+ flex-grow: 1;
+ }
+
+ .facets-container-drawer .product-count {
+ margin: 0 0 0.5rem 3.5rem;
+ }
+
+ .facets-container-drawer .facets-pill {
+ width: 100%;
+ }
+
+ .facets-container-drawer .facets__form {
+ display: block;
+ }
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .facets-vertical .active-facets__button {
+ padding: 1rem;
+ margin-bottom: 0;
+ margin-left: -0.5rem;
+ }
+
+ .facets-vertical .active-facets__button-remove {
+ padding: 0 1rem 1rem;
+ }
+}
diff --git a/assets/component-image-with-text.css b/assets/component-image-with-text.css
new file mode 100644
index 0000000..e8a5a3c
--- /dev/null
+++ b/assets/component-image-with-text.css
@@ -0,0 +1,417 @@
+.image-with-text .grid {
+ margin-bottom: 0;
+}
+
+.image-with-text .grid__item {
+ position: relative;
+}
+
+@media screen and (min-width: 750px) {
+ .image-with-text__grid--reverse {
+ flex-direction: row-reverse;
+ }
+}
+
+.image-with-text__media {
+ min-height: 100%;
+ overflow: visible;
+}
+
+.image-with-text__media--small {
+ height: 19.4rem;
+}
+
+.image-with-text__media--medium {
+ height: 29.6rem;
+}
+
+.image-with-text__media--large {
+ height: 43.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .image-with-text__media--small {
+ height: 31.4rem;
+ }
+
+ .image-with-text__media--medium {
+ height: 46rem;
+ }
+
+ .image-with-text__media--large {
+ height: 69.5rem;
+ }
+}
+
+.image-with-text__media--placeholder {
+ position: relative;
+ overflow: hidden;
+}
+
+.image-with-text__media--placeholder:after {
+ content: '';
+ position: absolute;
+ background: rgba(var(--color-foreground), 0.04);
+}
+
+.image-with-text__media--placeholder.image-with-text__media--adapt {
+ height: 20rem;
+}
+
+@media screen and (min-width: 750px) {
+ .image-with-text__media--placeholder.image-with-text__media--adapt {
+ height: 30rem;
+ }
+}
+
+.image-with-text__media--placeholder > svg {
+ position: absolute;
+ left: 50%;
+ top: 50%;
+ transform: translate(-50%, -50%);
+ width: 100%;
+ height: 100%;
+ fill: currentColor;
+}
+
+.image-with-text__media--placeholder:is(.animate--ambient, .animate--zoom-in) > svg {
+ top: 0;
+ left: 0;
+ transform: translate(0);
+}
+
+.image-with-text__content {
+ align-items: flex-start;
+ display: flex;
+ flex-direction: column;
+ height: 100%;
+ justify-content: center;
+ align-self: center;
+ padding: 4rem calc(4rem / var(--font-body-scale)) 5rem;
+ position: relative;
+ z-index: 1;
+}
+
+.image-with-text .grid__item::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: -1;
+}
+
+.image-with-text:not(.image-with-text--overlap) .image-with-text__media-item:after {
+ border-radius: var(--media-radius);
+ box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--media-shadow-opacity));
+}
+
+.image-with-text:not(.image-with-text--overlap) .image-with-text__text-item:after {
+ border-radius: var(--text-boxes-radius);
+ box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
+ var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
+}
+
+.image-with-text .image-with-text__media-item > * {
+ border-radius: var(--media-radius);
+ overflow: hidden;
+ box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--media-shadow-opacity));
+}
+
+.image-with-text .global-media-settings {
+ overflow: hidden !important;
+}
+
+.image-with-text .image-with-text__text-item > * {
+ border-radius: var(--text-boxes-radius);
+ overflow: hidden;
+ box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
+ var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
+}
+
+.image-with-text:not(.image-with-text--overlap) .image-with-text__media-item > *,
+.image-with-text:not(.image-with-text--overlap) .image-with-text__text-item > * {
+ box-shadow: none;
+}
+
+@media screen and (max-width: 749px) {
+ .image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__media-item:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap) .grid__item .image-with-text__media,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__media img,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__media .placeholder-svg {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .image-with-text.collapse-corners:not(.image-with-text--overlap) .image-with-text__text-item:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap) .grid__item .image-with-text__content {
+ border-top-left-radius: 0;
+ border-top-right-radius: 0;
+ }
+
+ .image-with-text.collapse-borders:not(.image-with-text--overlap) .image-with-text__content {
+ border-top: 0;
+ }
+}
+
+.image-with-text__content--mobile-right > * {
+ align-self: flex-end;
+ text-align: right;
+}
+
+.image-with-text__content--mobile-center > * {
+ align-self: center;
+ text-align: center;
+}
+
+.image-with-text--overlap .image-with-text__content {
+ width: 90%;
+ margin: -3rem auto 0;
+}
+
+@media screen and (min-width: 750px) {
+ .image-with-text__grid--reverse .image-with-text__content {
+ margin-left: auto;
+ }
+
+ .image-with-text__content--bottom {
+ justify-content: flex-end;
+ align-self: flex-end;
+ }
+
+ .image-with-text__content--top {
+ justify-content: flex-start;
+ align-self: flex-start;
+ }
+
+ .image-with-text__content--desktop-right > * {
+ align-self: flex-end;
+ text-align: right;
+ }
+
+ .image-with-text__content--desktop-left > * {
+ align-self: flex-start;
+ text-align: left;
+ }
+
+ .image-with-text__content--desktop-center > * {
+ align-self: center;
+ text-align: center;
+ }
+
+ .image-with-text--overlap .image-with-text__text-item {
+ display: flex;
+ padding: 3rem 0;
+ }
+
+ .image-with-text--overlap .image-with-text__content {
+ height: auto;
+ width: calc(100% + 4rem);
+ min-width: calc(100% + 4rem);
+ margin-top: 0;
+ margin-left: -4rem;
+ }
+
+ .image-with-text--overlap .image-with-text__grid--reverse .image-with-text__content {
+ margin-left: 0;
+ margin-right: -4rem;
+ }
+
+ .image-with-text--overlap .image-with-text__grid--reverse .image-with-text__text-item {
+ justify-content: flex-end;
+ }
+
+ .image-with-text--overlap .image-with-text__media-item--top {
+ align-self: flex-start;
+ }
+
+ .image-with-text--overlap .image-with-text__media-item--middle {
+ align-self: center;
+ }
+
+ .image-with-text--overlap .image-with-text__media-item--bottom {
+ align-self: flex-end;
+ }
+
+ .image-with-text__media-item--small,
+ .image-with-text__media-item--large + .image-with-text__text-item {
+ flex-grow: 0;
+ }
+
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__media-item:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__media,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__media
+ img,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__media
+ .placeholder-svg,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__text-item:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__content,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__content:after {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ }
+
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__text-item:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__content,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__content:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__media-item:after,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__media,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__media
+ img,
+ .image-with-text.collapse-corners:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__media
+ .placeholder-svg {
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+
+ .image-with-text.collapse-borders:not(.image-with-text--overlap)
+ .grid:not(.image-with-text__grid--reverse)
+ .image-with-text__content {
+ border-left: 0;
+ }
+
+ .image-with-text.collapse-borders:not(.image-with-text--overlap)
+ .image-with-text__grid--reverse
+ .image-with-text__content {
+ border-right: 0;
+ }
+}
+
+.image-with-text:not(.collapse-corners, .image-with-text--overlap) .image-with-text__media-item {
+ z-index: 2;
+}
+
+/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
+.image-with-text.image-with-text--overlap .backround-transparent,
+.image-with-text:not(.image-with-text--overlap) .background-transparent {
+ background: transparent;
+}
+
+/* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
+.image-with-text .gradient {
+ transform: perspective(0);
+}
+
+.image-with-text__content {
+ border-radius: var(--text-boxes-radius);
+ box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
+ var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
+ word-break: break-word;
+}
+
+@media screen and (min-width: 990px) {
+ .image-with-text__content {
+ padding: 6rem 7rem 7rem;
+ }
+}
+
+.image-with-text__content > * + * {
+ margin-top: 2rem;
+}
+
+.image-with-text__content > .image-with-text__text:empty ~ a {
+ margin-top: 2rem;
+}
+
+.image-with-text__content > :first-child:is(.image-with-text__heading),
+.image-with-text__text--caption + .image-with-text__heading,
+.image-with-text__text--caption:first-child {
+ margin-top: 0;
+}
+
+.image-with-text__content :last-child:is(.image-with-text__heading),
+.image-with-text__text--caption {
+ margin-bottom: 0;
+}
+
+.image-with-text__content .button + .image-with-text__text {
+ margin-top: 2rem;
+}
+
+.image-with-text__content .image-with-text__text + .button {
+ margin-top: 3rem;
+}
+
+.image-with-text__heading {
+ margin-bottom: 0;
+}
+
+.image-with-text__text p {
+ margin-top: 0;
+ margin-bottom: 1rem;
+}
+
+@media screen and (max-width: 749px) {
+ .collapse-padding .image-with-text__grid .image-with-text__content {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .collapse-padding
+ .image-with-text__grid:not(.image-with-text__grid--reverse)
+ .image-with-text__content:not(.image-with-text__content--desktop-center) {
+ padding-right: 0;
+ }
+
+ .collapse-padding
+ .image-with-text__grid--reverse
+ .image-with-text__content:not(.image-with-text__content--desktop-center) {
+ padding-left: 0;
+ }
+}
+
+/* check for flexbox gap in older Safari versions */
+@supports not (inset: 10px) {
+ .image-with-text .grid {
+ margin-left: 0;
+ }
+}
+
+/*
+ Multirow
+ note: consider removing from this stylesheet if multirow-specific styles increase signficantly
+*/
+.multirow__inner {
+ display: flex;
+ flex-direction: column;
+ row-gap: var(--grid-mobile-vertical-spacing);
+}
+
+@media screen and (min-width: 750px) {
+ .multirow__inner {
+ row-gap: var(--grid-desktop-vertical-spacing);
+ }
+}
diff --git a/assets/component-list-menu.css b/assets/component-list-menu.css
new file mode 100644
index 0000000..09f76ba
--- /dev/null
+++ b/assets/component-list-menu.css
@@ -0,0 +1,30 @@
+.list-menu--right {
+ right: 0;
+}
+
+.list-menu--disclosure {
+ position: absolute;
+ min-width: 100%;
+ width: 20rem;
+ border: 1px solid rgba(var(--color-foreground), 0.2);
+}
+
+.list-menu--disclosure:focus {
+ outline: none;
+}
+
+.list-menu__item--active {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.list-menu__item--active:hover {
+ text-decoration-thickness: 0.2rem;
+}
+
+.list-menu--disclosure.localization-selector {
+ max-height: 18rem;
+ overflow: auto;
+ width: 10rem;
+ padding: 0.5rem;
+}
diff --git a/assets/component-list-payment.css b/assets/component-list-payment.css
new file mode 100644
index 0000000..62a5062
--- /dev/null
+++ b/assets/component-list-payment.css
@@ -0,0 +1,22 @@
+.list-payment {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ margin: -0.5rem 0;
+ padding-top: 1rem;
+ padding-left: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .list-payment {
+ justify-content: flex-end;
+ margin: -0.5rem;
+ padding-top: 0;
+ }
+}
+
+.list-payment__item {
+ align-items: center;
+ display: flex;
+ padding: 0.5rem;
+}
diff --git a/assets/component-list-social.css b/assets/component-list-social.css
new file mode 100644
index 0000000..a6c04c1
--- /dev/null
+++ b/assets/component-list-social.css
@@ -0,0 +1,32 @@
+.list-social {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: flex-end;
+}
+
+@media only screen and (max-width: 749px) {
+ .list-social {
+ justify-content: center;
+ }
+}
+
+.list-social__item .icon {
+ height: 2.2rem;
+ width: 2.2rem;
+}
+
+.list-social__link {
+ align-items: center;
+ display: flex;
+ padding: 1.1rem;
+ color: rgb(var(--color-foreground));
+}
+
+.utility-bar .list-social__link {
+ padding: 0 0.8rem;
+ height: 3.8rem;
+}
+
+.list-social__link:hover .icon {
+ transform: scale(1.07);
+}
diff --git a/assets/component-loading-spinner.css b/assets/component-loading-spinner.css
new file mode 100644
index 0000000..6cc341a
--- /dev/null
+++ b/assets/component-loading-spinner.css
@@ -0,0 +1,61 @@
+.loading__spinner {
+ position: absolute;
+ z-index: 1;
+ width: 1.8rem;
+}
+
+.loading__spinner {
+ width: 1.8rem;
+ display: inline-block;
+}
+
+.spinner {
+ animation: rotator 1.4s linear infinite;
+}
+
+@keyframes rotator {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(270deg);
+ }
+}
+
+.path {
+ stroke-dasharray: 280;
+ stroke-dashoffset: 0;
+ transform-origin: center;
+ stroke: rgb(var(--color-foreground));
+ animation: dash 1.4s ease-in-out infinite;
+}
+
+@media screen and (forced-colors: active) {
+ .path {
+ stroke: CanvasText;
+ }
+}
+
+@keyframes dash {
+ 0% {
+ stroke-dashoffset: 280;
+ }
+ 50% {
+ stroke-dashoffset: 75;
+ transform: rotate(135deg);
+ }
+ 100% {
+ stroke-dashoffset: 280;
+ transform: rotate(450deg);
+ }
+}
+
+.loading__spinner:not(.hidden) + .cart-item__price-wrapper,
+.loading__spinner:not(.hidden) ~ cart-remove-button {
+ opacity: 50%;
+}
+
+.loading__spinner:not(.hidden) ~ cart-remove-button {
+ pointer-events: none;
+ cursor: default;
+}
diff --git a/assets/component-localization-form.css b/assets/component-localization-form.css
new file mode 100644
index 0000000..2285d96
--- /dev/null
+++ b/assets/component-localization-form.css
@@ -0,0 +1,304 @@
+.localization-form {
+ display: flex;
+ flex-direction: column;
+ flex: auto 1 0;
+ padding: 1rem;
+ margin: 0 auto;
+}
+
+.localization-form:only-child {
+ display: inline-flex;
+ flex-wrap: wrap;
+ flex: initial;
+ padding: 1rem 0;
+}
+
+.localization-form:only-child .button,
+.localization-form:only-child .localization-form__select {
+ margin: 1rem 1rem 0.5rem;
+ flex-grow: 1;
+}
+
+@media screen and (min-width: 750px) {
+ .localization-form {
+ padding: 1rem 2rem 1rem 0;
+ }
+
+ .localization-form:first-of-type {
+ padding-left: 0;
+ }
+
+ .localization-form:only-child {
+ justify-content: start;
+ width: auto;
+ margin: 0 1rem 0 0;
+ }
+
+ .localization-form:only-child .button,
+ .localization-form:only-child .localization-form__select {
+ margin: 1rem 0;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ noscript .localization-form:only-child {
+ width: 100%;
+ }
+}
+
+.localization-form .button {
+ padding: 1rem;
+}
+
+.localization-form__currency {
+ display: inline-block;
+}
+
+@media screen and (max-width: 749px) {
+ .localization-form .button {
+ word-break: break-all;
+ }
+}
+
+.localization-form__select {
+ border-radius: var(--inputs-radius-outset);
+ position: relative;
+ margin-bottom: 1.5rem;
+ padding-left: 1rem;
+ text-align: left;
+ min-height: calc(4rem + var(--inputs-border-width) * 2);
+ min-width: calc(7rem + var(--inputs-border-width) * 2);
+}
+
+.disclosure__button.localization-form__select {
+ padding: calc(2rem + var(--inputs-border-width));
+ background: rgb(var(--color-background));
+}
+
+noscript .localization-form__select {
+ padding-left: 0rem;
+}
+
+@media screen and (min-width: 750px) {
+ noscript .localization-form__select {
+ min-width: 20rem;
+ }
+}
+
+.localization-form__select .icon-caret {
+ position: absolute;
+ content: '';
+ height: 0.6rem;
+ right: calc(var(--inputs-border-width) + 1.5rem);
+ top: calc(50% - 0.2rem);
+}
+
+.localization-selector.link {
+ text-decoration: none;
+ appearance: none;
+ -webkit-appearance: none;
+ -moz-appearance: none;
+ color: rgb(var(--color-foreground));
+ width: 100%;
+ padding-right: 4rem;
+ padding-bottom: 1.5rem;
+}
+
+noscript .localization-selector.link {
+ padding-top: 1.5rem;
+ padding-left: 1.5rem;
+}
+
+.disclosure .localization-form__select {
+ padding-top: 1.5rem;
+}
+
+.localization-selector option {
+ color: #000000;
+}
+
+.localization-selector + .disclosure__list-wrapper {
+ opacity: 1;
+ animation: animateLocalization var(--duration-default) ease;
+}
+
+.disclosure {
+ position: relative;
+}
+
+.disclosure__button {
+ align-items: center;
+ cursor: pointer;
+ display: flex;
+ height: 4rem;
+ padding: 0 1.5rem 0 1.5rem;
+ font-size: 1.3rem;
+ background-color: transparent;
+}
+
+.disclosure__list-wrapper {
+ border-width: var(--popup-border-width);
+ border-style: solid;
+ border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
+ overflow: hidden;
+ position: absolute;
+ bottom: 100%;
+ transform: translateY(-1rem);
+ z-index: 2;
+ background-color: rgb(var(--color-background));
+ border-radius: var(--popup-corner-radius);
+ box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+}
+
+.disclosure__list {
+ position: relative;
+ overflow-y: auto;
+ font-size: 1.4rem;
+ padding-bottom: 0.5rem;
+ padding-top: 0.5rem;
+ scroll-padding: 0.5rem 0;
+ min-height: 8.2rem;
+ max-height: 20.65rem;
+ max-width: 22rem;
+ min-width: 12rem;
+ width: max-content;
+}
+
+.disclosure__item {
+ position: relative;
+}
+
+.disclosure__link {
+ display: block;
+ padding: 0.95rem 3.5rem 0.95rem 2rem;
+ text-decoration: none;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ color: rgba(var(--color-foreground), 0.75);
+ word-break: break-word;
+}
+
+.disclosure__link:hover {
+ color: rgb(var(--color-foreground));
+}
+
+.disclosure__link--active {
+ text-decoration: underline;
+}
+
+.disclosure__button[aria-expanded='true'] .icon-caret {
+ transform: rotate(180deg);
+}
+
+/* Header localization */
+.header-localization .localization-form:only-child {
+ margin: 0;
+ padding: 0;
+}
+
+.header-localization .disclosure .localization-form__select {
+ font-size: 1.4rem;
+ letter-spacing: 0.06rem;
+ height: auto;
+ min-height: initial;
+ background: transparent;
+}
+
+.header-localization .disclosure .localization-form__select:hover {
+ text-decoration: underline;
+}
+
+.header-localization .localization-form__select.link:after,
+.header-localization .localization-form__select.link:before {
+ box-shadow: none;
+}
+
+.header-localization .localization-form__select.link:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: -0.2rem;
+ box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
+}
+
+/* Header icons (desktop) */
+.desktop-localization-wrapper {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: flex-end;
+}
+
+.desktop-localization-wrapper .localization-selector + .disclosure__list-wrapper {
+ animation: animateMenuOpen var(--duration-default) ease;
+}
+
+.desktop-localization-wrapper .localization-form:only-child {
+ padding: 0;
+}
+
+.header-localization:not(.menu-drawer__localization) {
+ align-items: center;
+}
+
+.js .header-localization:not(.menu-drawer__localization) .localization-form__select {
+ padding: 0 2.7rem 0 1.2rem;
+ width: max-content;
+ height: 3.8rem;
+}
+
+.header-localization:not(.menu-drawer__localization) .localization-form:only-child .localization-form__select {
+ margin: 0;
+}
+
+.header-localization:not(.menu-drawer__localization).localization-form__select > span {
+ max-width: 20ch;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+}
+
+.header-localization:not(.menu-drawer__localization) localization-form:only-child .localization-form__select > span {
+ max-width: 26ch;
+}
+
+.header-localization:not(.menu-drawer__localization) .localization-form__select .icon-caret {
+ right: 0.8rem;
+}
+
+.header-localization:not(.menu-drawer__localization) .disclosure__list-wrapper {
+ bottom: initial;
+ top: 100%;
+ right: 0;
+ transform: translateY(0);
+}
+
+/* Menu drawer */
+@media screen and (min-width: 990px) {
+ .menu-drawer__localization {
+ display: none;
+ }
+}
+
+.menu-drawer__localization localization-form {
+ display: block;
+}
+
+.menu-drawer__localization .localization-form__select {
+ background-color: initial;
+ margin-top: 0;
+ padding: 1rem 3.6rem 1rem 0rem;
+}
+
+.menu-drawer__localization .localization-form {
+ padding: 0;
+}
+
+.menu-drawer__localization .localization-form:only-child .localization-form__select {
+ margin: 0;
+}
+
+.menu-drawer__localization + .list-social {
+ margin-top: 1rem;
+}
+
+.menu-drawer__localization noscript .localization-form__select {
+ padding: initial;
+}
diff --git a/assets/component-mega-menu.css b/assets/component-mega-menu.css
new file mode 100644
index 0000000..4c0d178
--- /dev/null
+++ b/assets/component-mega-menu.css
@@ -0,0 +1,87 @@
+.mega-menu {
+ position: static;
+}
+
+.mega-menu__content {
+ background-color: rgb(var(--color-background));
+ border-left: 0;
+ border-radius: 0;
+ border-right: 0;
+ left: 0;
+ overflow-y: auto;
+ padding-bottom: 3rem;
+ padding-top: 3rem;
+ position: absolute;
+ right: 0;
+ top: 100%;
+}
+
+.shopify-section-header-sticky .mega-menu__content {
+ max-height: calc(100vh - var(--header-bottom-position-desktop, 20rem) - 4rem);
+}
+
+.header-wrapper--border-bottom .mega-menu__content {
+ border-top: 0;
+}
+
+.js .mega-menu__content {
+ opacity: 0;
+ transform: translateY(-1.5rem);
+}
+
+.mega-menu[open] .mega-menu__content {
+ opacity: 1;
+ transform: translateY(0);
+}
+
+.mega-menu__list {
+ display: grid;
+ gap: 1.8rem 4rem;
+ grid-template-columns: repeat(6, minmax(0, 1fr));
+ list-style: none;
+}
+
+.mega-menu__link {
+ color: rgba(var(--color-foreground), 0.75);
+ display: block;
+ line-height: calc(1 + 0.3 / var(--font-body-scale));
+ padding-bottom: 0.6rem;
+ padding-top: 0.6rem;
+ text-decoration: none;
+ transition: text-decoration var(--duration-short) ease;
+ word-wrap: break-word;
+}
+
+.mega-menu__link--level-2 {
+ font-weight: bold;
+}
+
+.header--top-center .mega-menu__list {
+ display: flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ column-gap: 0;
+}
+
+.header--top-center .mega-menu__list > li {
+ width: 16%;
+ padding-right: 2.4rem;
+}
+
+.mega-menu__link:hover,
+.mega-menu__link--active {
+ color: rgb(var(--color-foreground));
+ text-decoration: underline;
+}
+
+.mega-menu__link--active:hover {
+ text-decoration-thickness: 0.2rem;
+}
+
+.mega-menu .mega-menu__list--condensed {
+ display: block;
+}
+
+.mega-menu__list--condensed .mega-menu__link {
+ font-weight: normal;
+}
diff --git a/assets/component-menu-drawer.css b/assets/component-menu-drawer.css
new file mode 100644
index 0000000..beaf09b
--- /dev/null
+++ b/assets/component-menu-drawer.css
@@ -0,0 +1,265 @@
+.header__icon--menu {
+ position: initial;
+}
+
+.js menu-drawer > details > summary::before,
+.js menu-drawer > details[open]:not(.menu-opening) > summary::before {
+ content: '';
+ position: absolute;
+ cursor: default;
+ width: 100%;
+ height: calc(100vh - 100%);
+ height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
+ top: 100%;
+ left: 0;
+ background: rgba(var(--color-foreground), 0.5);
+ opacity: 0;
+ visibility: hidden;
+ z-index: 2;
+ transition: opacity 0s, visibility 0s;
+}
+
+menu-drawer > details[open] > summary::before {
+ visibility: visible;
+ opacity: 1;
+ transition: opacity var(--duration-default) ease, visibility var(--duration-default) ease;
+}
+
+.menu-drawer {
+ position: absolute;
+ transform: translateX(-100%);
+ visibility: hidden;
+ z-index: 3;
+ left: 0;
+ top: 100%;
+ width: 100%;
+ padding: 0;
+ background-color: rgb(var(--color-background));
+ overflow-x: hidden;
+ filter: drop-shadow(
+ var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset) var(--drawer-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--drawer-shadow-opacity))
+ );
+}
+
+.js .menu-drawer {
+ height: calc(100vh - 100%);
+ height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
+}
+
+.js details[open] > .menu-drawer,
+.js details[open] > .menu-drawer__submenu {
+ transition: transform var(--duration-default) ease, visibility var(--duration-default) ease;
+}
+
+.no-js details[open] > .menu-drawer,
+.js details[open].menu-opening > .menu-drawer,
+details[open].menu-opening > .menu-drawer__submenu {
+ transform: translateX(0);
+ visibility: visible;
+}
+
+.js .menu-drawer__navigation .submenu-open {
+ visibility: hidden; /* hide menus from screen readers when hidden by submenu */
+}
+
+@media screen and (min-width: 750px) {
+ .menu-drawer {
+ width: 40rem;
+ border-width: 0 var(--drawer-border-width) 0 0;
+ border-style: solid;
+ border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
+ }
+
+ .no-js .menu-drawer {
+ height: auto;
+ }
+}
+
+.menu-drawer__inner-container {
+ position: relative;
+ height: 100%;
+}
+
+.menu-drawer__navigation-container {
+ display: grid;
+ grid-template-rows: 1fr auto;
+ align-content: space-between;
+ overflow-y: auto;
+ height: 100%;
+}
+
+.menu-drawer__navigation {
+ padding: 3rem 0;
+}
+
+.menu-drawer__inner-submenu {
+ height: 100%;
+ overflow-x: hidden;
+ overflow-y: auto;
+}
+
+.no-js .menu-drawer__navigation {
+ padding: 0;
+}
+
+.no-js .menu-drawer__navigation > ul > li {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.04);
+}
+
+.no-js .menu-drawer__submenu ul > li {
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.04);
+}
+
+.js .menu-drawer__menu li {
+ margin-bottom: 0.2rem;
+}
+
+.menu-drawer__menu-item {
+ padding: 1.1rem 3rem;
+ text-decoration: none;
+ font-size: 1.8rem;
+}
+
+.no-js .menu-drawer__menu-item {
+ font-size: 1.6rem;
+}
+
+.no-js .menu-drawer__submenu .menu-drawer__menu-item {
+ padding: 1.2rem 5.2rem 1.2rem 6rem;
+}
+
+.no-js .menu-drawer__submenu .menu-drawer__submenu .menu-drawer__menu-item {
+ padding-left: 9rem;
+}
+
+.menu-drawer summary.menu-drawer__menu-item {
+ padding-right: 5.2rem;
+}
+
+.no-js .menu-drawer__menu-item .icon-caret {
+ right: 3rem;
+}
+
+.menu-drawer__menu-item--active,
+.menu-drawer__menu-item:focus,
+.menu-drawer__close-button:focus,
+.menu-drawer__menu-item:hover,
+.menu-drawer__close-button:hover {
+ color: rgb(var(--color-foreground));
+ background-color: rgba(var(--color-foreground), 0.04);
+}
+
+.menu-drawer__menu-item--active:hover {
+ background-color: rgba(var(--color-foreground), 0.08);
+}
+
+.js .menu-drawer__menu-item .icon-caret,
+.no-js .menu-drawer .icon-arrow {
+ display: none;
+}
+
+.menu-drawer__menu-item > .icon-arrow {
+ position: absolute;
+ right: 3rem;
+ top: 50%;
+ transform: translateY(-50%);
+}
+
+.js .menu-drawer__submenu {
+ position: absolute;
+ top: 0;
+ width: 100%;
+ bottom: 0;
+ left: 0;
+ background-color: rgb(var(--color-background));
+ z-index: 1;
+ transform: translateX(100%);
+ visibility: hidden;
+}
+
+.js .menu-drawer__submenu .menu-drawer__submenu {
+ overflow-y: auto;
+}
+
+.menu-drawer__close-button {
+ margin-top: 1.5rem;
+ padding: 1.2rem 2.6rem 1.2rem 3rem;
+ text-decoration: none;
+ display: flex;
+ align-items: center;
+ font-size: 1.4rem;
+ width: 100%;
+ background-color: transparent;
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ text-align: left;
+}
+
+.no-js .menu-drawer__close-button {
+ display: none;
+}
+
+.menu-drawer__close-button .icon-arrow {
+ transform: rotate(180deg);
+ margin-right: 1rem;
+}
+
+.menu-drawer__utility-links {
+ padding: 0;
+ background-color: rgba(var(--color-foreground), 0.03);
+ position: relative;
+}
+
+.header--has-social .menu-drawer__utility-links {
+ padding: 2rem 3rem;
+}
+
+@media screen and (max-width: 749px) {
+ .header--has-account:where(:not(.header--has-social):not(.header--has-localizations)) .menu-drawer__utility-links {
+ padding: 2rem 3rem;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .header--has-localizations:where(:not(.header--has-social)) .menu-drawer__utility-links {
+ padding: 2rem 3rem;
+ }
+}
+
+.menu-drawer__account {
+ display: inline-flex;
+ align-items: center;
+ text-decoration: none;
+ padding: 1rem 0;
+ font-size: 1.4rem;
+ color: rgb(var(--color-foreground));
+ margin-bottom: 0;
+}
+
+.menu-drawer__utility-links:has(.menu-drawer__localization) .menu-drawer__account {
+ margin: 0;
+}
+
+.menu-drawer__account .icon-account {
+ height: 2rem;
+ width: 2rem;
+ margin-right: 1rem;
+}
+
+.menu-drawer__account:hover .icon-account {
+ transform: scale(1.07);
+}
+
+.menu-drawer .list-social {
+ justify-content: flex-start;
+ margin-left: -1.25rem
+}
+
+.menu-drawer .list-social:empty {
+ display: none;
+}
+
+.menu-drawer .list-social__link {
+ padding: 1.1rem 1.1rem;
+}
diff --git a/assets/component-modal-video.css b/assets/component-modal-video.css
new file mode 100644
index 0000000..19a8d6b
--- /dev/null
+++ b/assets/component-modal-video.css
@@ -0,0 +1,102 @@
+.modal-video {
+ background: rgba(var(--color-foreground), 0.2);
+ box-sizing: border-box;
+ height: 100%;
+ left: 0;
+ margin: 0 auto;
+ opacity: 0;
+ overflow: auto;
+ position: fixed;
+ top: 0;
+ visibility: hidden;
+ width: 100%;
+ z-index: -1;
+}
+
+.modal-video[open] {
+ opacity: 1;
+ visibility: visible;
+ z-index: 101;
+}
+
+.modal-video__content {
+ background-color: rgb(var(--color-background));
+ height: 100%;
+ margin: 0;
+ overflow: auto;
+ padding: 0;
+ position: absolute;
+ width: 100%;
+}
+
+.modal-video__toggle {
+ align-items: center;
+ background-color: rgb(var(--color-background));
+ border-radius: 50%;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ color: rgba(var(--color-foreground), 0.55);
+ cursor: pointer;
+ display: flex;
+ justify-content: center;
+ margin: 0 0 0 auto;
+ padding: 1.2rem;
+ position: fixed;
+ right: 0.5rem;
+ top: 2rem;
+ width: 4rem;
+ z-index: 2;
+}
+
+@media screen and (min-width: 750px) {
+ .modal-video__toggle {
+ right: 4.8rem;
+ top: 3.5rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .modal-video__toggle {
+ right: 4.3rem;
+ top: 3rem;
+ }
+}
+
+.modal-video__toggle .icon {
+ height: auto;
+ margin: 0;
+ width: 2.2rem;
+}
+
+.modal-video__content-info {
+ height: calc(100% - 6rem);
+ margin: 0 auto;
+ padding-top: 8rem;
+ width: calc(100% - 1rem);
+}
+
+@media screen and (min-width: 750px) {
+ .modal-video__content-info {
+ height: calc(100% - 7.5rem);
+ padding-top: 9.5rem;
+ width: calc(100% - 9.6rem);
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .modal-video__content-info {
+ height: calc(100% - 7rem);
+ padding-top: 9rem;
+ width: calc(100% - 8.6rem);
+ }
+}
+
+.modal-video__video,
+.modal-video__video iframe {
+ height: 100%;
+ width: 100%;
+}
+
+.modal-video__video iframe {
+ position: static;
+ border: 0;
+}
diff --git a/assets/component-model-viewer-ui.css b/assets/component-model-viewer-ui.css
new file mode 100644
index 0000000..8da5b15
--- /dev/null
+++ b/assets/component-model-viewer-ui.css
@@ -0,0 +1,42 @@
+.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
+ background: rgb(var(--color-background));
+ border-color: rgba(var(--color-foreground), 0.04);
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
+ color: rgba(var(--color-foreground), 0.55);
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active,
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus {
+ color: rgba(var(--color-foreground), 0.55);
+ background: rgba(var(--color-foreground), 0.04);
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
+ border-color: rgba(var(--color-foreground), 0.04);
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
+ border-radius: 50%;
+ color: rgb(var(--color-foreground));
+ background: rgb(var(--color-background));
+ border-color: rgba(var(--color-foreground), 0.1);
+ transform: translate(-50%, -50%) scale(1);
+ transition: transform var(--duration-short) ease, color var(--duration-short) ease;
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon {
+ width: 4.8rem;
+ height: 4.8rem;
+ margin-top: 0.3rem;
+}
+
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
+.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
+ transform: translate(-50%, -50%) scale(1.1);
+}
diff --git a/assets/component-newsletter.css b/assets/component-newsletter.css
new file mode 100644
index 0000000..719c13f
--- /dev/null
+++ b/assets/component-newsletter.css
@@ -0,0 +1,71 @@
+.newsletter-form {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+ position: relative;
+}
+
+@media screen and (min-width: 750px) {
+ .newsletter-form {
+ align-items: flex-start;
+ margin: 0 auto;
+ max-width: 36rem;
+ }
+}
+
+.newsletter-form__field-wrapper {
+ width: 100%;
+}
+
+.newsletter-form__field-wrapper .field__input {
+ padding-right: 5rem;
+}
+
+.newsletter-form__field-wrapper .field {
+ z-index: 0;
+}
+
+.newsletter-form__message {
+ justify-content: center;
+ margin-bottom: 0;
+}
+
+.newsletter-form__message--success {
+ margin-top: 2rem;
+}
+
+@media screen and (min-width: 750px) {
+ .newsletter-form__message {
+ justify-content: flex-start;
+ }
+}
+
+.newsletter-form__button {
+ width: 4.4rem;
+ margin: 0;
+ right: var(--inputs-border-width);
+ top: 0;
+ height: 100%;
+ z-index: 2;
+}
+
+.newsletter-form__button:focus-visible {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground));
+ background-color: rgb(var(--color-background));
+}
+
+.newsletter-form__button:focus {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground));
+ background-color: rgb(var(--color-background));
+}
+
+.newsletter-form__button:not(:focus-visible):not(.focused) {
+ box-shadow: inherit;
+ background-color: inherit;
+}
+
+.newsletter-form__button .icon {
+ width: 1.5rem;
+}
diff --git a/assets/component-pagination.css b/assets/component-pagination.css
new file mode 100644
index 0000000..5232c39
--- /dev/null
+++ b/assets/component-pagination.css
@@ -0,0 +1,82 @@
+.pagination-wrapper {
+ margin-top: 4rem;
+}
+
+@media screen and (min-width: 990px) {
+ .pagination-wrapper {
+ margin-top: 5rem;
+ }
+}
+
+.pagination__list {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+}
+
+.pagination__list > li {
+ flex: 1 0 4.4rem;
+ max-width: 4.4rem;
+}
+
+.pagination__list > li:not(:last-child) {
+ margin-right: 1rem;
+}
+
+.pagination__item {
+ color: rgb(var(--color-foreground));
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ height: 4.4rem;
+ width: 100%;
+ padding: 0;
+ text-decoration: none;
+}
+
+a.pagination__item:hover::after {
+ height: 0.1rem;
+}
+
+.pagination__item .icon-caret {
+ height: 0.6rem;
+}
+
+.pagination__item--current::after {
+ height: 0.1rem;
+}
+
+.pagination__item--current::after,
+.pagination__item:hover::after {
+ content: '';
+ display: block;
+ width: 2rem;
+ position: absolute;
+ bottom: 8px;
+ left: 50%;
+ transform: translateX(-50%);
+ background-color: currentColor;
+}
+
+.pagination__item--next .icon {
+ margin-left: -0.2rem;
+ transform: rotate(90deg);
+}
+
+.pagination__item--next:hover .icon {
+ transform: rotate(90deg) scale(1.07);
+}
+
+.pagination__item--prev .icon {
+ margin-right: -0.2rem;
+ transform: rotate(-90deg);
+}
+
+.pagination__item--prev:hover .icon {
+ transform: rotate(-90deg) scale(1.07);
+}
+
+.pagination__item-arrow:hover::after {
+ display: none;
+}
diff --git a/assets/component-pickup-availability.css b/assets/component-pickup-availability.css
new file mode 100644
index 0000000..d99933b
--- /dev/null
+++ b/assets/component-pickup-availability.css
@@ -0,0 +1,175 @@
+pickup-availability {
+ display: block;
+}
+
+pickup-availability[available] {
+ min-height: 8rem;
+}
+
+.pickup-availability-preview {
+ align-items: flex-start;
+ display: flex;
+ gap: 0.2rem;
+ padding: 1rem 2rem 0 0;
+}
+
+.pickup-availability-preview .icon {
+ flex-shrink: 0;
+ height: 1.8rem;
+}
+
+.pickup-availability-preview .icon-unavailable {
+ height: 1.6rem;
+ margin-top: 0.1rem;
+}
+
+.pickup-availability-button {
+ background-color: transparent;
+ color: rgba(var(--color-foreground), 0.75);
+ letter-spacing: 0.06rem;
+ padding: 0 0 0.2rem;
+ text-align: left;
+ text-decoration: underline;
+}
+
+.pickup-availability-button:hover {
+ color: rgb(var(--color-foreground));
+}
+
+.pickup-availability-info * {
+ margin: 0 0 0.6rem;
+}
+
+pickup-availability-drawer {
+ background-color: rgb(var(--color-background));
+ height: 100%;
+ opacity: 0;
+ overflow-y: auto;
+ padding: 2rem;
+ position: fixed;
+ top: 0;
+ right: 0;
+ z-index: 4;
+ transition: opacity var(--duration-default) ease, transform var(--duration-default) ease;
+ transform: translateX(100%);
+ width: 100%;
+ border-width: 0 0 0 var(--drawer-border-width);
+ border-color: rgba(var(--color-foreground), var(--drawer-border-opacity));
+ border-style: solid;
+ filter: drop-shadow(
+ var(--drawer-shadow-horizontal-offset) var(--drawer-shadow-vertical-offset) var(--drawer-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--drawer-shadow-opacity))
+ );
+}
+
+pickup-availability-drawer[open] {
+ transform: translateX(0);
+ opacity: 1;
+}
+
+@media screen and (min-width: 750px) {
+ pickup-availability-drawer {
+ transform: translateX(100%);
+ width: 37.5rem;
+ }
+
+ pickup-availability-drawer[open] {
+ opacity: 1;
+ transform: translateX(0);
+ animation: animateDrawerOpen var(--duration-default) ease;
+ }
+}
+
+.pickup-availability-header {
+ align-items: flex-start;
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 1.2rem;
+}
+
+.pickup-availability-drawer-title {
+ margin: 0.5rem 0 0;
+}
+
+.pickup-availability-header .icon {
+ width: 2rem;
+}
+
+.pickup-availability-drawer-button {
+ background-color: transparent;
+ border: none;
+ color: rgb(var(--color-foreground));
+ cursor: pointer;
+ display: block;
+ height: 4.4rem;
+ padding: 1.2rem;
+ width: 4.4rem;
+}
+
+.pickup-availability-drawer-button:hover {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.pickup-availability-variant {
+ font-size: 1.3rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ margin: 0 0 1.2rem;
+ text-transform: capitalize;
+}
+
+.pickup-availability-variant > * + strong {
+ margin-left: 1rem;
+}
+
+.pickup-availability-list__item {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ padding: 2rem 0;
+}
+
+.pickup-availability-list__item:first-child {
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.pickup-availability-list__item > * {
+ margin: 0;
+}
+
+.pickup-availability-list__item > * + * {
+ margin-top: 1rem;
+}
+
+.pickup-availability-address {
+ font-style: normal;
+ font-size: 1.2rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+}
+
+.pickup-availability-address p {
+ margin: 0;
+}
+
+@keyframes animateDrawerOpen {
+ @media screen and (max-width: 749px) {
+ 0% {
+ opacity: 0;
+ transform: translateX(100%);
+ }
+
+ 100% {
+ opacity: 1;
+ transform: translateX(0);
+ }
+ }
+
+ @media screen and (min-width: 750px) {
+ 0% {
+ opacity: 0;
+ transform: translateX(100%);
+ }
+
+ 100% {
+ opacity: 1;
+ transform: translateX(0);
+ }
+ }
+}
diff --git a/assets/component-predictive-search.css b/assets/component-predictive-search.css
new file mode 100644
index 0000000..13718b0
--- /dev/null
+++ b/assets/component-predictive-search.css
@@ -0,0 +1,225 @@
+.predictive-search {
+ display: none;
+ position: absolute;
+ top: calc(100% + 0.1rem);
+ left: -0.1rem;
+ border-width: var(--popup-border-width);
+ border-style: solid;
+ border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
+ background-color: rgb(var(--color-background));
+ z-index: 3;
+ border-bottom-right-radius: var(--popup-corner-radius);
+ border-bottom-left-radius: var(--popup-corner-radius);
+ box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+ overflow-y: auto;
+ -webkit-overflow-scrolling: touch;
+}
+
+.predictive-search--search-template {
+ z-index: 2;
+ width: calc(100% + 0.2rem);
+}
+
+.predictive-search__results-groups-wrapper {
+ display: flex;
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ padding-bottom: 1rem;
+}
+
+@media screen and (max-width: 749px) {
+ .predictive-search--header {
+ right: 0;
+ left: 0;
+ top: 100%;
+ }
+
+ .predictive-search__results-groups-wrapper {
+ flex-direction: column;
+ }
+
+ .predictive-search__results-groups-wrapper:not(.predictive-search__results-groups-wrapper--no-suggestions) {
+ /* On mobile, when there are no suggestions the first .predictive-search__results-groups-wrapper
+ * is virtually empty due to a display: hidden on the predictive-search__pages-wrapper child.
+ * This causes the gap to render and look like a big top margin */
+ gap: 2rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .predictive-search {
+ border-top: none;
+ width: calc(100% + 0.2rem);
+ }
+
+ .header predictive-search {
+ position: relative;
+ }
+}
+
+predictive-search[open] .predictive-search,
+predictive-search[loading] .predictive-search {
+ display: block;
+}
+
+.predictive-search__result-group {
+ display: flex;
+ flex-direction: column;
+ flex: 1 1 auto;
+ gap: 2rem;
+}
+
+.predictive-search__result-group:first-child .predictive-search__pages-wrapper {
+ display: none;
+}
+
+@media screen and (min-width: 750px) {
+ .predictive-search__results-groups-wrapper--no-products .predictive-search__result-group:nth-child(2),
+ .predictive-search__result-group:last-child .predictive-search__pages-wrapper {
+ display: none;
+ }
+ .predictive-search__result-group:first-child .predictive-search__pages-wrapper {
+ display: initial;
+ }
+ .predictive-search__result-group:first-child {
+ flex: 0 0 26.4rem;
+ }
+ .predictive-search__results-groups-wrapper--no-products .predictive-search__result-group:first-child,
+ .predictive-search__result-group:only-child {
+ flex-grow: 1;
+ }
+}
+
+.predictive-search__heading {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ margin: 0 2rem;
+ padding: 1.5rem 0 0.75rem;
+ color: rgba(var(--color-foreground), 0.7);
+}
+
+predictive-search .spinner {
+ width: 1.5rem;
+ height: 1.5rem;
+ line-height: 0;
+}
+
+predictive-search:not([loading]) .predictive-search__loading-state,
+predictive-search:not([loading]) .predictive-search-status__loading {
+ display: none;
+}
+
+predictive-search[loading] .predictive-search__loading-state {
+ display: flex;
+ justify-content: center;
+ padding: 1rem;
+}
+
+predictive-search[loading] .predictive-search__search-for-button {
+ display: none;
+}
+
+predictive-search[loading] .predictive-search__results-groups-wrapper ~ .predictive-search__loading-state {
+ display: none;
+}
+
+predictive-search[loading] .predictive-search__results-groups-wrapper ~ .predictive-search__search-for-button {
+ display: initial;
+}
+
+.predictive-search__list-item[aria-selected='true'] > *,
+.predictive-search__list-item:hover > *,
+.predictive-search__item[aria-selected='true'],
+.predictive-search__item:hover {
+ color: rgb(var(--color-foreground));
+ background-color: rgba(var(--color-foreground), 0.04);
+}
+
+.predictive-search__list-item[aria-selected='true'] .predictive-search__item-heading,
+.predictive-search__list-item:hover .predictive-search__item-heading {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.predictive-search__item {
+ display: flex;
+ padding: 1rem 2rem;
+ text-align: left;
+ text-decoration: none;
+ width: 100%;
+}
+
+.predictive-search__item--link-with-thumbnail {
+ display: grid;
+ grid-template-columns: 5rem 1fr;
+ grid-column-gap: 2rem;
+ grid-template-areas: 'product-image product-content';
+}
+
+.predictive-search__item-content {
+ grid-area: product-content;
+ display: flex;
+ flex-direction: column;
+}
+
+.predictive-search__item-content--centered {
+ justify-content: center;
+}
+
+.predictive-search__item-vendor {
+ font-size: 0.9rem;
+}
+
+.predictive-search__item-heading {
+ margin: 0;
+}
+
+.predictive-search__item-query-result *:not(mark) {
+ font-weight: bolder;
+}
+
+.predictive-search__item-query-result mark {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.predictive-search__item-query-result mark {
+ background-color: transparent;
+}
+
+.predictive-search__item .price {
+ color: rgba(var(--color-foreground), 0.7);
+ font-size: 1.2rem;
+}
+
+.predictive-search__item-vendor + .predictive-search__item-heading,
+.predictive-search .price {
+ margin-top: 0.5rem;
+}
+
+.predictive-search__item--term {
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.3rem 2rem;
+ word-break: break-all;
+ line-height: calc(1 + 0.4 / var(--font-body-scale));
+}
+
+@media screen and (min-width: 750px) {
+ .predictive-search__item--term {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ }
+}
+
+.predictive-search__item--term .icon-arrow {
+ width: calc(var(--font-heading-scale) * 1.4rem);
+ height: calc(var(--font-heading-scale) * 1.4rem);
+ flex-shrink: 0;
+ margin-left: calc(var(--font-heading-scale) * 2rem);
+ color: rgb(var(--color-link));
+}
+
+.predictive-search__image {
+ grid-area: product-image;
+ object-fit: contain;
+ font-family: 'object-fit: contain';
+}
diff --git a/assets/component-price.css b/assets/component-price.css
new file mode 100644
index 0000000..17d6cf9
--- /dev/null
+++ b/assets/component-price.css
@@ -0,0 +1,101 @@
+.price {
+ font-size: 1.6rem;
+ letter-spacing: 0.1rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+ color: rgb(var(--color-foreground));
+}
+
+.price > * {
+ display: inline-block;
+ vertical-align: top;
+}
+
+.price.price--unavailable {
+ visibility: hidden;
+}
+
+.price--end {
+ text-align: right;
+}
+
+.price .price-item {
+ display: inline-block;
+ margin: 0 1rem 0 0;
+}
+
+.price__regular .price-item--regular {
+ margin-right: 0;
+}
+
+.price:not(.price--show-badge) .price-item--last:last-of-type {
+ margin: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .price {
+ margin-bottom: 0;
+ }
+}
+
+.price--large {
+ font-size: 1.6rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+ letter-spacing: 0.13rem;
+}
+
+@media screen and (min-width: 750px) {
+ .price--large {
+ font-size: 1.8rem;
+ }
+}
+
+.price--sold-out .price__availability,
+.price__regular {
+ display: block;
+}
+
+.price__sale,
+.price__availability,
+.price .price__badge-sale,
+.price .price__badge-sold-out,
+.price--on-sale .price__regular,
+.price--on-sale .price__availability {
+ display: none;
+}
+
+.price--sold-out .price__badge-sold-out,
+.price--on-sale .price__badge-sale,
+.volume-pricing--sale-badge .price__badge-sale {
+ display: inline-block;
+}
+
+.volume-pricing--sale-badge .price__badge-sale {
+ margin-left: 0.5rem;
+}
+
+.price--on-sale .price__sale {
+ display: initial;
+ flex-direction: row;
+ flex-wrap: wrap;
+}
+
+.price--center {
+ display: initial;
+ justify-content: center;
+}
+
+.price--on-sale .price-item--regular {
+ text-decoration: line-through;
+ color: rgba(var(--color-foreground), 0.75);
+ font-size: 1.3rem;
+}
+
+.unit-price {
+ display: block;
+ font-size: 1.1rem;
+ letter-spacing: 0.04rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ margin-top: 0.2rem;
+ text-transform: uppercase;
+ color: rgba(var(--color-foreground), 0.7);
+}
diff --git a/assets/component-product-model.css b/assets/component-product-model.css
new file mode 100644
index 0000000..4fcdc11
--- /dev/null
+++ b/assets/component-product-model.css
@@ -0,0 +1,44 @@
+.product__xr-button {
+ background: rgba(var(--color-foreground), 0.08);
+ color: rgb(var(--color-foreground));
+ margin: 1rem auto;
+ box-shadow: none;
+ display: flex;
+}
+
+.button.product__xr-button:hover {
+ box-shadow: none;
+}
+
+.product__xr-button[data-shopify-xr-hidden] {
+ visibility: hidden;
+}
+
+.shopify-design-mode .product__xr-button[data-shopify-xr-hidden] {
+ display: none;
+}
+
+@media screen and (max-width: 749px) {
+ slider-component .product__xr-button {
+ display: none;
+ }
+
+ .active .product__xr-button:not([data-shopify-xr-hidden]) {
+ display: block;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ slider-component + .button.product__xr-button {
+ display: none;
+ }
+
+ .product__xr-button[data-shopify-xr-hidden] {
+ display: none;
+ }
+}
+
+.product__xr-button .icon {
+ width: 1.4rem;
+ margin-right: 1rem;
+}
diff --git a/assets/component-rating.css b/assets/component-rating.css
new file mode 100644
index 0000000..2ab84ec
--- /dev/null
+++ b/assets/component-rating.css
@@ -0,0 +1,60 @@
+.rating {
+ display: inline-block;
+ margin: 0;
+}
+
+.product .rating-star {
+ --letter-spacing: 0.8;
+ --font-size: 1.7;
+}
+
+.card-wrapper .rating-star {
+ --letter-spacing: 0.7;
+ --font-size: 1.4;
+}
+
+.rating-star {
+ --color-rating-star: rgb(var(--color-foreground));
+ --percent: calc(
+ (
+ var(--rating) / var(--rating-max) + var(--rating-decimal) * var(--font-size) /
+ (var(--rating-max) * (var(--letter-spacing) + var(--font-size)))
+ ) * 100%
+ );
+ letter-spacing: calc(var(--letter-spacing) * 1rem);
+ font-size: calc(var(--font-size) * 1rem);
+ line-height: 1;
+ display: inline-block;
+ font-family: Times;
+ margin: 0;
+}
+
+.rating-star::before {
+ content: '★★★★★';
+ background: linear-gradient(
+ 90deg,
+ var(--color-rating-star) var(--percent),
+ rgba(var(--color-foreground), 0.15) var(--percent)
+ );
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+}
+
+.rating-text {
+ display: none;
+}
+
+.rating-count {
+ display: inline-block;
+ margin: 0;
+}
+
+@media (forced-colors: active) {
+ .rating {
+ display: none;
+ }
+
+ .rating-text {
+ display: block;
+ }
+}
diff --git a/assets/component-search.css b/assets/component-search.css
new file mode 100644
index 0000000..5a04cb5
--- /dev/null
+++ b/assets/component-search.css
@@ -0,0 +1,74 @@
+.search__input.field__input {
+ padding-right: 9.8rem;
+}
+
+.search__button {
+ right: var(--inputs-border-width);
+ top: var(--inputs-border-width);
+}
+
+.reset__button {
+ right: calc(var(--inputs-border-width) + 4.4rem);
+ top: var(--inputs-border-width);
+}
+
+.reset__button:not(:focus-visible)::after {
+ border-right: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ display: block;
+ height: calc(100% - 1.6rem);
+ content: '';
+ position: absolute;
+ right: 0;
+}
+
+.reset__button:not(:focus)::after {
+ border-right: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ display: block;
+ height: calc(100% - 1.8rem);
+ content: '';
+ position: absolute;
+ right: 0;
+}
+
+.search__button:focus-visible,
+.reset__button:focus-visible {
+ background-color: rgb(var(--color-background));
+ z-index: 4;
+}
+
+.search__button:focus,
+.reset__button:focus {
+ background-color: rgb(var(--color-background));
+ z-index: 4;
+}
+
+.search__button:not(:focus-visible):not(.focused),
+.reset__button:not(:focus-visible):not(.focused) {
+ box-shadow: inherit;
+ background-color: inherit;
+}
+
+.search__button:hover .icon,
+.reset__button:hover .icon {
+ transform: scale(1.07);
+}
+
+.search__button .icon {
+ height: 1.8rem;
+ width: 1.8rem;
+}
+
+.reset__button .icon.icon-close {
+ height: 1.8rem;
+ width: 1.8rem;
+ stroke-width: 0.1rem;
+}
+
+/* Remove extra spacing for search inputs in Safari */
+input::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+.template-search__results {
+ position: relative;
+}
diff --git a/assets/component-show-more.css b/assets/component-show-more.css
new file mode 100644
index 0000000..7e39d02
--- /dev/null
+++ b/assets/component-show-more.css
@@ -0,0 +1,10 @@
+.button-show-more {
+ padding-left: 0;
+ justify-content: flex-start;
+ padding-bottom: 1.1rem;
+}
+
+.button-show-more,
+.button-show-less {
+ margin-top: 1.5rem;
+}
diff --git a/assets/component-slider.css b/assets/component-slider.css
new file mode 100644
index 0000000..a9c9118
--- /dev/null
+++ b/assets/component-slider.css
@@ -0,0 +1,392 @@
+slider-component {
+ --desktop-margin-left-first-item: max(
+ 5rem,
+ calc((100vw - var(--page-width) + 10rem - var(--grid-desktop-horizontal-spacing)) / 2)
+ );
+ position: relative;
+ display: block;
+}
+
+slider-component.slider-component-full-width {
+ --desktop-margin-left-first-item: 1.5rem;
+}
+
+@media screen and (max-width: 749px) {
+ slider-component.page-width {
+ padding: 0 1.5rem;
+ }
+}
+
+@media screen and (min-width: 749px) and (max-width: 990px) {
+ slider-component.page-width {
+ padding: 0 5rem;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .no-js slider-component .slider {
+ padding-bottom: 3rem;
+ }
+}
+
+.slider__slide {
+ --focus-outline-padding: 0.5rem;
+ --shadow-padding-top: calc((var(--shadow-vertical-offset) * -1 + var(--shadow-blur-radius)) * var(--shadow-visible));
+ --shadow-padding-bottom: calc((var(--shadow-vertical-offset) + var(--shadow-blur-radius)) * var(--shadow-visible));
+ scroll-snap-align: start;
+ flex-shrink: 0;
+ padding-bottom: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .slider.slider--mobile {
+ position: relative;
+ flex-wrap: inherit;
+ overflow-x: auto;
+ scroll-snap-type: x mandatory;
+ scroll-behavior: smooth;
+ scroll-padding-left: 1.5rem;
+ -webkit-overflow-scrolling: touch;
+ margin-bottom: 1rem;
+ }
+
+ /* Fix to show some space at the end of our sliders in all browsers */
+ .slider--mobile:after {
+ content: '';
+ width: 0;
+ padding-left: 1.5rem;
+ }
+
+ .slider.slider--mobile .slider__slide {
+ margin-bottom: 0;
+ padding-top: max(var(--focus-outline-padding), var(--shadow-padding-top));
+ padding-bottom: max(var(--focus-outline-padding), var(--shadow-padding-bottom));
+ }
+
+ .slider.slider--mobile.contains-card--standard .slider__slide:not(.collection-list__item--no-media) {
+ padding-bottom: var(--focus-outline-padding);
+ }
+
+ .slider.slider--mobile.contains-content-container .slider__slide {
+ --focus-outline-padding: 0rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .slider.slider--tablet-up {
+ position: relative;
+ flex-wrap: inherit;
+ overflow-x: auto;
+ scroll-snap-type: x mandatory;
+ scroll-behavior: smooth;
+ scroll-padding-left: 1rem;
+ -webkit-overflow-scrolling: touch;
+ }
+
+ .slider.slider--tablet-up .slider__slide {
+ margin-bottom: 0;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .slider.slider--tablet {
+ position: relative;
+ flex-wrap: inherit;
+ overflow-x: auto;
+ scroll-snap-type: x mandatory;
+ scroll-behavior: smooth;
+ scroll-padding-left: 1.5rem;
+ -webkit-overflow-scrolling: touch;
+ margin-bottom: 1rem;
+ }
+
+ /* Fix to show some space at the end of our sliders in all browsers */
+ .slider--tablet:after {
+ content: '';
+ width: 0;
+ padding-left: 1.5rem;
+ margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
+ }
+
+ .slider.slider--tablet .slider__slide {
+ margin-bottom: 0;
+ padding-top: max(var(--focus-outline-padding), var(--shadow-padding-top));
+ padding-bottom: max(var(--focus-outline-padding), var(--shadow-padding-bottom));
+ }
+
+ .slider.slider--tablet.contains-card--standard .slider__slide:not(.collection-list__item--no-media) {
+ padding-bottom: var(--focus-outline-padding);
+ }
+
+ .slider.slider--tablet.contains-content-container .slider__slide {
+ --focus-outline-padding: 0rem;
+ }
+}
+
+.slider--everywhere {
+ position: relative;
+ flex-wrap: inherit;
+ overflow-x: auto;
+ scroll-snap-type: x mandatory;
+ scroll-behavior: smooth;
+ -webkit-overflow-scrolling: touch;
+ margin-bottom: 1rem;
+}
+
+.slider.slider--everywhere .slider__slide {
+ margin-bottom: 0;
+ scroll-snap-align: center;
+}
+
+@media screen and (min-width: 990px) {
+ .slider-component-desktop.page-width {
+ max-width: none;
+ }
+
+ .slider--desktop {
+ position: relative;
+ flex-wrap: inherit;
+ overflow-x: auto;
+ scroll-snap-type: x mandatory;
+ scroll-behavior: smooth;
+ -webkit-overflow-scrolling: touch;
+ margin-bottom: 1rem;
+ scroll-padding-left: var(--desktop-margin-left-first-item);
+ }
+
+ /* Fix to show some space at the end of our sliders in all browsers */
+ .slider--desktop:after {
+ content: '';
+ width: 0;
+ padding-left: 5rem;
+ margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
+ }
+
+ .slider.slider--desktop .slider__slide {
+ margin-bottom: 0;
+ padding-top: max(var(--focus-outline-padding), var(--shadow-padding-top));
+ padding-bottom: max(var(--focus-outline-padding), var(--shadow-padding-bottom));
+ }
+
+ .slider--desktop .slider__slide:first-child {
+ margin-left: var(--desktop-margin-left-first-item);
+ scroll-margin-left: var(--desktop-margin-left-first-item);
+ }
+
+ .slider-component-full-width .slider--desktop {
+ scroll-padding-left: 1.5rem;
+ }
+
+ .slider-component-full-width .slider--desktop .slider__slide:first-child {
+ margin-left: 1.5rem;
+ scroll-margin-left: 1.5rem;
+ }
+
+ /* Fix to show some space at the end of our sliders in all browsers */
+ .slider-component-full-width .slider--desktop:after {
+ padding-left: 1.5rem;
+ }
+
+ .slider--desktop.grid--5-col-desktop .grid__item {
+ width: calc((100% - var(--desktop-margin-left-first-item)) / 5 - var(--grid-desktop-horizontal-spacing) * 2);
+ }
+
+ .slider--desktop.grid--4-col-desktop .grid__item {
+ width: calc((100% - var(--desktop-margin-left-first-item)) / 4 - var(--grid-desktop-horizontal-spacing) * 3);
+ }
+
+ .slider--desktop.grid--3-col-desktop .grid__item {
+ width: calc((100% - var(--desktop-margin-left-first-item)) / 3 - var(--grid-desktop-horizontal-spacing) * 4);
+ }
+
+ .slider--desktop.grid--2-col-desktop .grid__item {
+ width: calc((100% - var(--desktop-margin-left-first-item)) / 2 - var(--grid-desktop-horizontal-spacing) * 5);
+ }
+
+ .slider--desktop.grid--1-col-desktop .grid__item {
+ width: calc((100% - var(--desktop-margin-left-first-item)) - var(--grid-desktop-horizontal-spacing) * 9);
+ }
+
+ .slider.slider--desktop.contains-card--standard .slider__slide:not(.collection-list__item--no-media) {
+ padding-bottom: var(--focus-outline-padding);
+ }
+
+ .slider.slider--desktop.contains-content-container .slider__slide {
+ --focus-outline-padding: 0rem;
+ }
+}
+
+@media (prefers-reduced-motion) {
+ .slider {
+ scroll-behavior: auto;
+ }
+}
+
+/* Scrollbar */
+
+.slider {
+ scrollbar-color: rgb(var(--color-foreground)) rgba(var(--color-foreground), 0.04);
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
+
+.slider::-webkit-scrollbar {
+ height: 0.4rem;
+ width: 0.4rem;
+ display: none;
+}
+
+.no-js .slider {
+ -ms-overflow-style: auto;
+ scrollbar-width: auto;
+}
+
+.no-js .slider::-webkit-scrollbar {
+ display: initial;
+}
+
+.slider::-webkit-scrollbar-thumb {
+ background-color: rgb(var(--color-foreground));
+ border-radius: 0.4rem;
+ border: 0;
+}
+
+.slider::-webkit-scrollbar-track {
+ background: rgba(var(--color-foreground), 0.04);
+ border-radius: 0.4rem;
+}
+
+.slider-counter {
+ display: flex;
+ justify-content: center;
+ min-width: 4.4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .slider-counter--dots {
+ margin: 0 1.2rem;
+ }
+}
+
+.slider-counter__link {
+ padding: 1rem;
+}
+
+@media screen and (max-width: 749px) {
+ .slider-counter__link {
+ padding: 0.7rem;
+ }
+}
+
+.slider-counter__link--dots .dot {
+ width: 1rem;
+ height: 1rem;
+ border-radius: 50%;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.5);
+ padding: 0;
+ display: block;
+}
+
+.slider-counter__link--active.slider-counter__link--dots .dot {
+ background-color: rgb(var(--color-foreground));
+}
+
+@media screen and (forced-colors: active) {
+ .slider-counter__link--active.slider-counter__link--dots .dot {
+ background-color: CanvasText;
+ }
+}
+
+.slider-counter__link--dots:not(.slider-counter__link--active):hover .dot {
+ border-color: rgb(var(--color-foreground));
+}
+
+.slider-counter__link--dots .dot,
+.slider-counter__link--numbers {
+ transition: transform 0.2s ease-in-out;
+}
+
+.slider-counter__link--active.slider-counter__link--numbers,
+.slider-counter__link--dots:not(.slider-counter__link--active):hover .dot,
+.slider-counter__link--numbers:hover {
+ transform: scale(1.1);
+}
+
+.slider-counter__link--numbers {
+ color: rgba(var(--color-foreground), 0.5);
+ text-decoration: none;
+}
+
+.slider-counter__link--numbers:hover {
+ color: rgb(var(--color-foreground));
+}
+
+.slider-counter__link--active.slider-counter__link--numbers {
+ text-decoration: underline;
+ color: rgb(var(--color-foreground));
+}
+
+.slider-buttons {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+@media screen and (min-width: 990px) {
+ .slider:not(.slider--everywhere):not(.slider--desktop) + .slider-buttons {
+ display: none;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .slider--desktop:not(.slider--tablet) + .slider-buttons {
+ display: none;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .slider--mobile + .slider-buttons {
+ display: none;
+ }
+}
+
+.slider-button {
+ color: rgba(var(--color-foreground), 0.75);
+ background: transparent;
+ border: none;
+ cursor: pointer;
+ width: 44px;
+ height: 44px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.slider-button:not([disabled]):hover {
+ color: rgb(var(--color-foreground));
+}
+
+.slider-button .icon {
+ height: 0.6rem;
+}
+
+.slider-button[disabled] .icon {
+ color: rgba(var(--color-foreground), 0.3);
+ cursor: not-allowed;
+}
+
+.slider-button--next .icon {
+ transform: rotate(-90deg);
+}
+
+.slider-button--prev .icon {
+ transform: rotate(90deg);
+}
+
+.slider-button--next:not([disabled]):hover .icon {
+ transform: rotate(-90deg) scale(1.1);
+}
+
+.slider-button--prev:not([disabled]):hover .icon {
+ transform: rotate(90deg) scale(1.1);
+}
diff --git a/assets/component-slideshow.css b/assets/component-slideshow.css
new file mode 100644
index 0000000..2438c9d
--- /dev/null
+++ b/assets/component-slideshow.css
@@ -0,0 +1,206 @@
+slideshow-component {
+ position: relative;
+ display: flex;
+ flex-direction: column;
+}
+
+@media screen and (max-width: 989px) {
+ .no-js slideshow-component .slider {
+ padding-bottom: 3rem;
+ }
+}
+
+slideshow-component .slideshow.banner {
+ flex-direction: row;
+ flex-wrap: nowrap;
+ margin: 0;
+ gap: 0;
+}
+
+.slideshow__slide {
+ padding: 0;
+ position: relative;
+ display: flex;
+ flex-direction: column;
+ visibility: visible;
+}
+
+@media screen and (max-width: 749px) {
+ .slideshow--placeholder.banner--mobile-bottom.banner--adapt_image .slideshow__media,
+ .slideshow--placeholder.banner--adapt_image:not(.banner--mobile-bottom) {
+ height: 28rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .slideshow--placeholder.banner--adapt_image {
+ height: 56rem;
+ }
+}
+
+.slideshow__text.banner__box {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ max-width: 54.5rem;
+}
+
+.slideshow__text > * {
+ max-width: 100%;
+}
+
+@media screen and (max-width: 749px) {
+ slideshow-component.page-width .slideshow__text {
+ border-right: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
+ border-left: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
+ }
+
+ .banner--mobile-bottom .slideshow__text.banner__box {
+ max-width: 100%;
+ }
+
+ .banner--mobile-bottom .slideshow__text-wrapper {
+ flex-grow: 1;
+ }
+
+ .banner--mobile-bottom .slideshow__text.banner__box {
+ height: 100%;
+ }
+
+ .banner--mobile-bottom .slideshow__text .button {
+ flex-grow: 0;
+ }
+
+ .slideshow__text.slideshow__text-mobile--left {
+ align-items: flex-start;
+ text-align: left;
+ }
+
+ .slideshow__text.slideshow__text-mobile--right {
+ align-items: flex-end;
+ text-align: right;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .slideshow__text.slideshow__text--left {
+ align-items: flex-start;
+ text-align: left;
+ }
+
+ .slideshow__text.slideshow__text--right {
+ align-items: flex-end;
+ text-align: right;
+ }
+}
+
+.slideshow:not(.banner--mobile-bottom) .slideshow__text-wrapper {
+ height: 100%;
+}
+
+@media screen and (min-width: 750px) {
+ .slideshow__text-wrapper.banner__content {
+ height: 100%;
+ padding: 5rem;
+ }
+}
+
+.slideshow__controls {
+ border: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.slideshow__controls--top {
+ order: 2;
+ z-index: 1;
+}
+
+@media screen and (max-width: 749px) {
+ .slideshow__controls--border-radius-mobile {
+ border-bottom-right-radius: var(--text-boxes-radius);
+ border-bottom-left-radius: var(--text-boxes-radius);
+ }
+}
+
+.spaced-section--full-width:last-child slideshow-component:not(.page-width) .slideshow__controls {
+ border-bottom: none;
+}
+
+@media screen and (min-width: 750px) {
+ .slideshow__controls {
+ position: relative;
+ }
+}
+
+slideshow-component:not(.page-width) .slider-buttons {
+ border-right: 0;
+ border-left: 0;
+}
+
+.slideshow__control-wrapper {
+ display: flex;
+}
+
+.slideshow__autoplay {
+ position: absolute;
+ right: 0;
+ border-left: none;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+@media screen and (max-width: 749px) {
+ slideshow-component.page-width .slideshow__autoplay {
+ right: 1.5rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .slideshow__autoplay.slider-button {
+ position: inherit;
+ margin-left: 0.6rem;
+ padding: 0 0 0 0.6rem;
+ border-left: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ }
+}
+
+.slideshow__autoplay .icon.icon-play,
+.slideshow__autoplay .icon.icon-pause {
+ display: block;
+ position: absolute;
+ opacity: 1;
+ transform: scale(1);
+ transition: transform 150ms ease, opacity 150ms ease;
+ width: 0.8rem;
+ height: 1.2rem;
+}
+
+.slideshow__autoplay .icon.icon-play {
+ height: 1rem;
+}
+
+.slideshow__autoplay path {
+ fill: rgba(var(--color-foreground), 0.75);
+}
+
+.slideshow__autoplay:hover path {
+ fill: rgb(var(--color-foreground));
+}
+
+@media screen and (forced-colors: active) {
+ .slideshow__autoplay path,
+ .slideshow__autoplay:hover path {
+ fill: CanvasText;
+ }
+}
+
+.slideshow__autoplay:hover svg {
+ transform: scale(1.1);
+}
+
+.slideshow__autoplay--paused .icon-pause,
+.slideshow__autoplay:not(.slideshow__autoplay--paused) .icon-play {
+ visibility: hidden;
+ opacity: 0;
+ transform: scale(0.8);
+}
diff --git a/assets/component-totals.css b/assets/component-totals.css
new file mode 100644
index 0000000..97fa7f8
--- /dev/null
+++ b/assets/component-totals.css
@@ -0,0 +1,40 @@
+.totals {
+ display: flex;
+ justify-content: center;
+ align-items: flex-end;
+}
+
+.totals > * {
+ font-size: 1.6rem;
+ margin: 0;
+}
+
+.totals > h2 {
+ font-size: calc(var(--font-heading-scale) * 1.6rem);
+}
+
+.totals * {
+ line-height: 1;
+}
+
+.totals > * + * {
+ margin-left: 2rem;
+}
+
+.totals__total {
+ margin-top: .5rem;
+}
+
+.totals__total-value {
+ font-size: 1.8rem;
+}
+
+.cart__ctas + .totals {
+ margin-top: 2rem;
+}
+
+@media all and (min-width: 750px) {
+ .totals {
+ justify-content: flex-end;
+ }
+}
diff --git a/assets/component-visual-display.css b/assets/component-visual-display.css
new file mode 100644
index 0000000..19a49bf
--- /dev/null
+++ b/assets/component-visual-display.css
@@ -0,0 +1,89 @@
+.visual-display {
+ --visual-display__size: min(2.4rem, 100%);
+ position: relative;
+ width: var(--visual-display__size);
+ max-width: 100%;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.2);
+ aspect-ratio: 1/1;
+}
+
+.visual-display.empty {
+ border-style: dashed;
+}
+
+.visual-display--presentation-swatch {
+ --visual-display__size: min(2.4rem, 100%);
+
+ border-radius: 100%;
+ overflow: hidden;
+}
+
+.visual-display-parent .visual-display--presentation-swatch {
+ outline-offset: 0.2rem;
+}
+
+/* Hover, active, and focus states */
+:is(
+ .visual-display-parent:hover .visual-display--presentation-swatch,
+ .visual-display-parent.active .visual-display--presentation-swatch,
+ .visual-display-parent:has(:focus-visible) .visual-display--presentation-swatch
+ ) {
+ outline-style: solid;
+}
+
+/* Active state */
+.visual-display-parent.active .visual-display--presentation-swatch {
+ outline-width: 0.1rem;
+ outline-color: rgb(var(--color-foreground), 1);
+}
+
+/* Hover state */
+.visual-display-parent:hover .visual-display--presentation-swatch {
+ outline-width: 0.2rem;
+ outline-color: rgb(var(--color-foreground), 0.4);
+}
+
+/* Focus state */
+.visual-display-parent:has(:focus-visible) .visual-display--presentation-swatch {
+ outline-width: 0.2rem;
+ outline-color: rgb(var(--color-foreground), 0.4);
+ box-shadow: 0 0 0 0.6rem rgb(var(--color-background)), 0 0 0 0.8rem rgba(var(--color-foreground), 0.5),
+ 0 0 1.2rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+/* Focus state for older browsers */
+@supports not selector(:has(a, b)) {
+ .visual-display-parent:focus-within .visual-display--presentation-swatch {
+ outline-offset: 0.2rem;
+ outline: 0.2rem solid rgb(var(--color-foreground), 0.4);
+ box-shadow: 0 0 0 0.6rem rgb(var(--color-background)), 0 0 0 0.8rem rgba(var(--color-foreground), 0.5),
+ 0 0 1.2rem 0.4rem rgba(var(--color-foreground), 0.3);
+ }
+}
+
+.visual-display-parent.disabled {
+ opacity: 0.4;
+ pointer-events: none;
+}
+
+/* Used to display the disabled dash */
+.visual-display-parent.disabled .visual-display::after {
+ display: block;
+ content: '';
+
+ /* 1.414 is not a magic number, it's the square root of 2, or the length of the diagonal */
+ width: calc(var(--visual-display__size) * 1.414);
+ border-bottom: 0.1rem solid rgb(var(--color-background-contrast));
+ transform: rotate(-45deg);
+ transform-origin: left;
+}
+
+.visual-display .visual-display__child {
+ display: block;
+ height: 100%;
+ width: 100%;
+}
+
+.visual-display--presentation-swatch .visual-display__image {
+ object-fit: cover;
+}
diff --git a/assets/component-volume-pricing.css b/assets/component-volume-pricing.css
new file mode 100644
index 0000000..2729866
--- /dev/null
+++ b/assets/component-volume-pricing.css
@@ -0,0 +1,70 @@
+volume-pricing {
+ display: block;
+ margin-top: 2rem;
+}
+
+volume-pricing li:nth-child(odd) {
+ background: rgba(var(--color-foreground), 0.04);
+}
+
+volume-pricing ul {
+ margin-top: 1.2rem;
+}
+
+volume-pricing li {
+ font-size: 1.4rem;
+ letter-spacing: 0.06rem;
+ padding: 0.6rem 0.8rem;
+ display: flex;
+ justify-content: space-between;
+}
+
+.volume-pricing-note {
+ margin-top: -2.6rem;
+}
+
+.product--no-media .volume-pricing-note {
+ text-align: center;
+}
+
+.product--no-media volume-pricing {
+ width: 30rem;
+}
+
+.volume-pricing-note span,
+volume-pricing .label-show-more {
+ font-size: 1.2rem;
+ letter-spacing: 0.07rem;
+}
+
+volume-pricing show-more-button {
+ margin-top: 0.8rem;
+}
+
+.product-form__input price-per-item,
+.price-per-item__container {
+ display: flex;
+ align-items: center;
+ gap: 1rem;
+}
+
+.product-form__input .price-per-item {
+ color: rgba(var(--color-foreground));
+ font-size: 1.4rem;
+ letter-spacing: 0.06rem;
+}
+
+.price-per-item dl {
+ margin: 0;
+}
+
+.price-per-item dd {
+ margin-left: 0;
+}
+
+.price-per-item__container .variant-item__old-price,
+.price__regular .variant-item__old-price {
+ color: rgba(var(--color-foreground), 0.75);
+ font-size: 1.2rem;
+ letter-spacing: 0.07rem;
+}
diff --git a/assets/constants.js b/assets/constants.js
new file mode 100644
index 0000000..01a2fb4
--- /dev/null
+++ b/assets/constants.js
@@ -0,0 +1,8 @@
+const ON_CHANGE_DEBOUNCE_TIMER = 300;
+
+const PUB_SUB_EVENTS = {
+ cartUpdate: 'cart-update',
+ quantityUpdate: 'quantity-update',
+ variantChange: 'variant-change',
+ cartError: 'cart-error',
+};
diff --git a/assets/customer.css b/assets/customer.css
new file mode 100644
index 0000000..394d12d
--- /dev/null
+++ b/assets/customer.css
@@ -0,0 +1,755 @@
+.customer:not(.account):not(.order) {
+ margin: 0 auto;
+ max-width: 33.4rem;
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ text-align: center;
+}
+
+@media screen and (min-width: 750px) {
+ .customer:not(.account):not(.order) {
+ max-width: 47.8rem;
+ }
+}
+
+.customer > h1,
+.customer__title {
+ margin-top: 0;
+}
+
+.customer form {
+ margin-top: 4rem;
+}
+
+.customer button {
+ margin: 4rem 0 1.5rem;
+}
+
+.customer ul {
+ line-height: calc(1 + 0.6 / var(--font-body-scale));
+ padding-left: 4.4rem;
+ text-align: left;
+ margin-bottom: 4rem;
+}
+
+.customer ul a {
+ display: inline;
+}
+
+.customer strong {
+ font-weight: normal;
+ color: rgb(var(--color-foreground));
+}
+
+.customer h2.form__message {
+ font-size: calc(var(--font-heading-scale) * 1.8rem);
+}
+
+@media only screen and (min-width: 750px) {
+ .customer h2.form__message {
+ font-size: calc(var(--font-heading-scale) * 2.2rem);
+ }
+}
+
+.customer .field {
+ margin: 2rem 0 0 0;
+}
+
+.customer .field:first-of-type {
+ margin-top: 0;
+}
+
+/* Customer Table */
+.customer table {
+ table-layout: auto;
+ border-collapse: collapse;
+ border-bottom: 0.01rem solid rgba(var(--color-foreground), 0.08);
+ box-shadow: none;
+ width: 100%;
+ font-size: 1.6rem;
+ position: relative;
+}
+
+@media screen and (min-width: 750px) {
+ .customer table {
+ border: none;
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.08);
+ }
+}
+
+@media screen and (forced-colors: active) {
+ .customer table {
+ border-top: 0.1rem solid transparent;
+ border-bottom: 0.1rem solid transparent;
+ }
+}
+
+.customer tbody {
+ color: rgb(var(--color-foreground));
+}
+
+.customer th,
+.customer td {
+ font-weight: 400;
+ line-height: 1;
+ border: none;
+ padding: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .customer td {
+ padding-right: 2.2rem;
+ }
+}
+
+.customer tbody td {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+}
+
+.customer td:empty {
+ display: initial;
+}
+
+.customer thead th {
+ font-size: 1.2rem;
+ letter-spacing: 0.07rem;
+ text-transform: uppercase;
+}
+
+.customer tbody td:first-of-type {
+ padding-top: 4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .customer th,
+ .customer td:first-of-type {
+ text-align: left;
+ padding-left: 0;
+ padding-right: 2.2rem;
+ }
+
+ .customer thead th,
+ .customer tbody td {
+ padding-top: 2.4rem;
+ padding-bottom: 2.4rem;
+ }
+
+ .customer th:first-of-type,
+ .customer td:first-of-type {
+ padding-left: 2.2rem;
+ }
+
+ .customer tbody td {
+ vertical-align: top;
+ }
+
+ .customer tbody td:first-of-type {
+ padding-top: 2.4rem;
+ }
+}
+
+.customer tbody td:last-of-type {
+ padding-bottom: 4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .customer tbody td:last-of-type {
+ padding-bottom: 0;
+ }
+}
+
+.customer tbody tr {
+ border-top: 0.01rem solid rgba(var(--color-foreground), 0.08);
+}
+
+@media screen and (min-width: 750px) {
+ .customer tbody tr:first-of-type {
+ border-top: none;
+ }
+}
+
+@media screen and (forced-colors: active) {
+ .customer tbody tr {
+ border-top: 0.1rem solid transparent;
+ }
+}
+
+.customer tfoot td:first-of-type,
+.customer tfoot td {
+ padding-top: 0.6rem;
+ padding-bottom: 0.6rem;
+}
+
+.customer tfoot td:first-of-type {
+ text-align: left;
+}
+
+.customer tfoot tr:first-of-type td {
+ padding-top: 4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .customer tfoot tr:first-of-type td,
+ .customer tfoot tr:first-of-type th {
+ padding-top: 2.4rem;
+ }
+}
+
+.customer tfoot tr:last-of-type td {
+ padding-bottom: 4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .customer tfoot tr:last-of-type td,
+ .customer tfoot tr:last-of-type th {
+ padding-bottom: 2.4rem;
+ }
+}
+
+/* works around colspan phantom border issues */
+.customer thead::after,
+.customer tfoot::before {
+ content: ' ';
+ height: 0.1rem;
+ width: 100%;
+ display: block;
+ position: absolute;
+ left: 0;
+ background: rgba(var(--color-foreground), 0.08);
+}
+
+@media screen and (forced-colors: active) {
+ .customer thead::after,
+ .customer tfoot::before {
+ background: CanvasText;
+ }
+}
+
+/* mobile table overrides */
+@media screen and (max-width: 749px) {
+ .customer thead,
+ .customer th,
+ .customer tfoot td:first-of-type {
+ display: none;
+ }
+
+ .customer td {
+ display: flex;
+ text-align: right;
+ }
+
+ .customer td::before {
+ color: rgba(var(--color-foreground), 0.75);
+ content: attr(data-label);
+ font-size: 1.4rem;
+ padding-right: 2rem;
+ text-transform: uppercase;
+ flex-grow: 1;
+ text-align: left;
+ }
+
+ .customer td:first-of-type {
+ display: flex;
+ align-items: center;
+ }
+
+ .customer tr {
+ display: flex;
+ flex-direction: column;
+ justify-content: flex-start;
+ width: 100%;
+ }
+}
+
+/* Pagination */
+.customer .pagination {
+ margin-top: 5rem;
+ margin-bottom: 7rem;
+}
+
+@media screen and (min-width: 990px) {
+ .customer .pagination {
+ margin-top: 7rem;
+ margin-bottom: 10rem;
+ }
+}
+
+.customer .pagination ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 0;
+}
+
+.customer .pagination li {
+ flex: 1 1;
+ max-width: 4rem;
+}
+
+.customer .pagination li:not(:last-child) {
+ margin-right: 1rem;
+}
+
+.customer .pagination li :first-child {
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+ height: 4rem;
+ width: 100%;
+ padding: 0;
+ text-decoration: none;
+}
+
+.customer .pagination li :first-child svg {
+ height: 0.6rem;
+}
+
+.customer .pagination li:first-of-type svg {
+ margin-left: -0.2rem;
+ transform: rotate(90deg);
+}
+
+.customer .pagination li:last-of-type svg {
+ margin-right: -0.2rem;
+ transform: rotate(-90deg);
+}
+
+.customer .pagination li [aria-current]::after {
+ content: '';
+ display: block;
+ width: 2rem;
+ height: 0.01rem;
+ position: absolute;
+ bottom: 0.08rem;
+ left: 50%;
+ transform: translateX(-50%);
+ background-color: currentColor;
+}
+
+/* Login */
+.login a {
+ display: block;
+ margin: 0 auto;
+ width: fit-content;
+}
+
+.login a[href='#recover'] {
+ margin-left: 0;
+ margin-right: 0;
+}
+
+.login .field + a {
+ margin-top: 1rem;
+}
+
+.login p {
+ margin: 1.5rem 0;
+}
+
+.login h3 {
+ margin-top: 1.5rem;
+ text-align: left;
+ font-size: calc(var(--font-heading-scale) * 1.6rem);
+}
+
+#customer_login_guest button {
+ margin-top: 0;
+}
+
+#recover,
+#recover + div {
+ display: none;
+}
+
+#recover:target {
+ display: block;
+}
+
+#recover:target + div {
+ display: block;
+}
+
+#recover:target ~ #login,
+#recover:target ~ #login + div {
+ display: none;
+}
+
+#recover,
+#login {
+ scroll-margin-top: 20rem;
+}
+
+#recover {
+ margin-bottom: 0;
+}
+
+.activate button[name='decline'],
+.addresses li > button,
+.addresses form button[type] {
+ background-color: rgba(var(--color-background), var(--alpha-button-background));
+ color: rgb(var(--color-link));
+}
+
+@media only screen and (min-width: 750px) {
+ .activate button[name='decline'] {
+ margin-top: inherit;
+ margin-left: 1rem;
+ }
+}
+
+/* Account/Order */
+:is(.account, .order) {
+ margin: 0 auto;
+ max-width: var(--page-width);
+ padding-left: 2rem;
+ padding-right: 2rem;
+}
+
+@media screen and (min-width: 750px) {
+ :is(.account, .order) {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ :is(.account, .order) > div:nth-of-type(2) {
+ display: flex;
+ margin-top: 5rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ :is(.account, .order) > div:nth-of-type(2) > div:first-of-type {
+ flex-grow: 1;
+ padding-right: 3.2rem;
+ }
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .order > div:nth-of-type(2) > div:last-of-type {
+ display: flex;
+ }
+
+ .order > div:nth-of-type(2) > div:last-of-type div {
+ padding-right: 3.2rem;
+ }
+}
+
+:is(.account, .order) p {
+ margin: 0 0 2rem;
+ font-size: 1.6rem;
+}
+
+:is(.account, .order) h1 {
+ margin-bottom: 1rem;
+}
+
+:is(.account, .order) h2 {
+ margin-top: 4rem;
+ margin-bottom: 1rem;
+}
+
+@media screen and (min-width: 990px) {
+ :is(.account, .order) h2 {
+ margin-top: 0;
+ }
+}
+
+.account h1 + a {
+ display: inline-flex;
+ align-items: center;
+}
+
+.account a svg {
+ width: 1.5rem;
+ margin-bottom: -0.03rem;
+ margin-right: 1rem;
+}
+
+@media screen and (min-width: 750px) {
+ .account thead th:last-child,
+ .account td:last-child {
+ text-align: right;
+ }
+
+ .account table td:first-of-type {
+ padding-top: 1.2rem;
+ padding-bottom: 1.2rem;
+ }
+}
+
+.account table td:first-of-type a {
+ padding: 1.1rem 1.5rem;
+ text-decoration: none;
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-link), 0.2);
+ border: 0.1rem solid transparent;
+ font-size: 1.2rem;
+}
+
+.account table td:first-of-type a:hover {
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-link), 0.2);
+}
+
+.order td:first-of-type {
+ align-items: initial;
+}
+
+@media screen and (min-width: 750px) {
+ .order thead th:nth-last-child(-n + 3),
+ .order td:nth-last-child(-n + 3) {
+ text-align: right;
+ }
+}
+
+.order tfoot tr:last-of-type td,
+.order tfoot tr:last-of-type th {
+ font-size: 2.2rem;
+ padding-top: 1.5rem;
+ padding-bottom: 4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .order tfoot tr:last-of-type td,
+ .order tfoot tr:last-of-type th {
+ padding-bottom: 2.4rem;
+ }
+}
+
+.order tfoot tr:last-of-type td:before {
+ font-size: 2.2rem;
+}
+
+.order table p,
+.order > div:nth-of-type(2) > div:first-of-type h2,
+.order > div:nth-of-type(2) > div:last-of-type h2 + p {
+ margin-bottom: 0;
+}
+
+.order > div:nth-of-type(2) > div:first-of-type h2 ~ p {
+ margin-bottom: 0;
+ font-size: 1.4rem;
+}
+
+.order > div:nth-of-type(2) > div:first-of-type h2 ~ p:last-of-type {
+ margin-bottom: 3rem;
+}
+
+.order .item-props {
+ font-size: 1.4rem;
+ margin-top: 0.05px;
+ display: flex;
+ flex-direction: column;
+}
+
+.order .item-props > span {
+ word-break: break-all;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+}
+
+.order .fulfillment {
+ width: fit-content;
+ border: 0.01rem solid rgba(var(--color-foreground), 0.2);
+ padding: 1rem;
+ margin-top: 1rem;
+ font-size: 1.4rem;
+ text-align: left;
+}
+
+.order .fulfillment a {
+ margin: 0.7rem 0;
+}
+
+.order .fulfillment span {
+ display: block;
+}
+
+.order .cart-discount {
+ display: block;
+ margin-top: 1rem;
+ margin-bottom: 0.5rem;
+ font-size: 1.2rem;
+}
+
+@media screen and (min-width: 750px) {
+ .order td .cart-discount {
+ display: none;
+ }
+}
+
+.order tbody ul {
+ list-style: none;
+ font-size: 1.2rem;
+ text-align: right;
+ padding-left: 0;
+ margin-top: 1rem;
+ margin-bottom: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .order tbody ul {
+ text-align: left;
+ }
+}
+
+.order table a {
+ line-height: calc(1 + 0.3 / var(--font-body-scale));
+}
+
+.order tbody tr:first-of-type td:first-of-type > div {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-end;
+}
+
+@media screen and (min-width: 750px) {
+ .order tbody tr:first-of-type td:first-of-type > div {
+ align-items: flex-start;
+ }
+}
+
+.order .properties {
+ font-size: 1.4rem;
+ margin-top: 1rem;
+}
+
+.order .properties span {
+ display: block;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+}
+
+.order svg {
+ width: 1.1rem;
+ color: rgb(var(--color-foreground));
+ margin-right: 0.5rem;
+}
+
+.order dl {
+ margin: 0;
+}
+
+.order dd {
+ margin-left: 0;
+ line-height: calc(1 + 0.3 / var(--font-body-scale));
+}
+
+.order dd s {
+ color: rgba(var(--color-foreground), 0.7);
+}
+
+.order .unit-price {
+ font-size: 1.1rem;
+ letter-spacing: 0.07rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ margin-top: 0.2rem;
+ text-transform: uppercase;
+ color: rgba(var(--color-foreground), 0.7);
+}
+
+.order .regular-price {
+ font-size: 1.3rem;
+}
+
+/* Addresses */
+.addresses li > button {
+ margin-left: 0.5rem;
+ margin-right: 0.5rem;
+}
+
+.addresses li > button + button,
+.addresses form button + button {
+ margin-top: 0rem;
+}
+
+@media screen and (min-width: 750px) {
+ .addresses li > button:first-of-type {
+ margin-top: 3rem;
+ }
+}
+
+.addresses form button:first-of-type {
+ margin-right: 1rem;
+}
+
+label[for='AddressCountryNew'],
+label[for='AddressProvinceNew'] {
+ display: block;
+ font-size: 1.4rem;
+ margin-bottom: 0.6rem;
+}
+
+.addresses form {
+ display: flex;
+ flex-flow: row wrap;
+}
+
+.addresses form > div {
+ width: 100%;
+ text-align: left;
+}
+
+.addresses ul {
+ list-style: none;
+ padding-left: 0;
+ text-align: center;
+}
+
+li[data-address] {
+ margin-top: 5rem;
+}
+
+.addresses [aria-expanded='false'] ~ div[id] {
+ display: none;
+}
+
+.addresses [aria-expanded='true'] ~ div[id] {
+ display: block;
+}
+
+.addresses h2 {
+ text-align: left;
+}
+
+li[data-address] > h2 {
+ text-align: center;
+ font-size: calc(var(--font-heading-scale) * 1.8rem);
+ margin-bottom: 0;
+}
+
+@media only screen and (min-width: 750px) {
+ li[data-address] > h2 {
+ font-size: calc(var(--font-heading-scale) * 2.2rem);
+ }
+}
+
+.addresses ul p {
+ margin-bottom: 0;
+}
+
+.addresses input[type='checkbox'] {
+ margin-top: 2rem;
+ margin-left: 0;
+}
+
+@media only screen and (min-width: 750px) {
+ .addresses form > div:nth-of-type(1) {
+ margin-right: 2rem;
+ }
+
+ .addresses form > div:nth-of-type(2) {
+ margin-top: 0;
+ }
+
+ .addresses form > div:nth-of-type(1),
+ .addresses form > div:nth-of-type(2) {
+ box-sizing: border-box;
+ flex-basis: calc(50% - 1rem);
+ }
+}
+
+.addresses form > div:nth-of-type(7),
+.addresses form > div:nth-of-type(7) + div[id] {
+ margin-top: 1.5rem;
+}
diff --git a/assets/customer.js b/assets/customer.js
new file mode 100644
index 0000000..c608cce
--- /dev/null
+++ b/assets/customer.js
@@ -0,0 +1,85 @@
+const selectors = {
+ customerAddresses: '[data-customer-addresses]',
+ addressCountrySelect: '[data-address-country-select]',
+ addressContainer: '[data-address]',
+ toggleAddressButton: 'button[aria-expanded]',
+ cancelAddressButton: 'button[type="reset"]',
+ deleteAddressButton: 'button[data-confirm-message]',
+};
+
+const attributes = {
+ expanded: 'aria-expanded',
+ confirmMessage: 'data-confirm-message',
+};
+
+class CustomerAddresses {
+ constructor() {
+ this.elements = this._getElements();
+ if (Object.keys(this.elements).length === 0) return;
+ this._setupCountries();
+ this._setupEventListeners();
+ }
+
+ _getElements() {
+ const container = document.querySelector(selectors.customerAddresses);
+ return container
+ ? {
+ container,
+ addressContainer: container.querySelector(selectors.addressContainer),
+ toggleButtons: document.querySelectorAll(selectors.toggleAddressButton),
+ cancelButtons: container.querySelectorAll(selectors.cancelAddressButton),
+ deleteButtons: container.querySelectorAll(selectors.deleteAddressButton),
+ countrySelects: container.querySelectorAll(selectors.addressCountrySelect),
+ }
+ : {};
+ }
+
+ _setupCountries() {
+ if (Shopify && Shopify.CountryProvinceSelector) {
+ // eslint-disable-next-line no-new
+ new Shopify.CountryProvinceSelector('AddressCountryNew', 'AddressProvinceNew', {
+ hideElement: 'AddressProvinceContainerNew',
+ });
+ this.elements.countrySelects.forEach((select) => {
+ const formId = select.dataset.formId;
+ // eslint-disable-next-line no-new
+ new Shopify.CountryProvinceSelector(`AddressCountry_${formId}`, `AddressProvince_${formId}`, {
+ hideElement: `AddressProvinceContainer_${formId}`,
+ });
+ });
+ }
+ }
+
+ _setupEventListeners() {
+ this.elements.toggleButtons.forEach((element) => {
+ element.addEventListener('click', this._handleAddEditButtonClick);
+ });
+ this.elements.cancelButtons.forEach((element) => {
+ element.addEventListener('click', this._handleCancelButtonClick);
+ });
+ this.elements.deleteButtons.forEach((element) => {
+ element.addEventListener('click', this._handleDeleteButtonClick);
+ });
+ }
+
+ _toggleExpanded(target) {
+ target.setAttribute(attributes.expanded, (target.getAttribute(attributes.expanded) === 'false').toString());
+ }
+
+ _handleAddEditButtonClick = ({ currentTarget }) => {
+ this._toggleExpanded(currentTarget);
+ };
+
+ _handleCancelButtonClick = ({ currentTarget }) => {
+ this._toggleExpanded(currentTarget.closest(selectors.addressContainer).querySelector(`[${attributes.expanded}]`));
+ };
+
+ _handleDeleteButtonClick = ({ currentTarget }) => {
+ // eslint-disable-next-line no-alert
+ if (confirm(currentTarget.getAttribute(attributes.confirmMessage))) {
+ Shopify.postLink(currentTarget.dataset.target, {
+ parameters: { _method: 'delete' },
+ });
+ }
+ };
+}
diff --git a/assets/details-disclosure.js b/assets/details-disclosure.js
new file mode 100644
index 0000000..b4680b7
--- /dev/null
+++ b/assets/details-disclosure.js
@@ -0,0 +1,53 @@
+class DetailsDisclosure extends HTMLElement {
+ constructor() {
+ super();
+ this.mainDetailsToggle = this.querySelector('details');
+ this.content = this.mainDetailsToggle.querySelector('summary').nextElementSibling;
+
+ this.mainDetailsToggle.addEventListener('focusout', this.onFocusOut.bind(this));
+ this.mainDetailsToggle.addEventListener('toggle', this.onToggle.bind(this));
+ }
+
+ onFocusOut() {
+ setTimeout(() => {
+ if (!this.contains(document.activeElement)) this.close();
+ });
+ }
+
+ onToggle() {
+ if (!this.animations) this.animations = this.content.getAnimations();
+
+ if (this.mainDetailsToggle.hasAttribute('open')) {
+ this.animations.forEach((animation) => animation.play());
+ } else {
+ this.animations.forEach((animation) => animation.cancel());
+ }
+ }
+
+ close() {
+ this.mainDetailsToggle.removeAttribute('open');
+ this.mainDetailsToggle.querySelector('summary').setAttribute('aria-expanded', false);
+ }
+}
+
+customElements.define('details-disclosure', DetailsDisclosure);
+
+class HeaderMenu extends DetailsDisclosure {
+ constructor() {
+ super();
+ this.header = document.querySelector('.header-wrapper');
+ }
+
+ onToggle() {
+ if (!this.header) return;
+ this.header.preventHide = this.mainDetailsToggle.open;
+
+ if (document.documentElement.style.getPropertyValue('--header-bottom-position-desktop') !== '') return;
+ document.documentElement.style.setProperty(
+ '--header-bottom-position-desktop',
+ `${Math.floor(this.header.getBoundingClientRect().bottom)}px`
+ );
+ }
+}
+
+customElements.define('header-menu', HeaderMenu);
diff --git a/assets/details-modal.js b/assets/details-modal.js
new file mode 100644
index 0000000..4d7002d
--- /dev/null
+++ b/assets/details-modal.js
@@ -0,0 +1,47 @@
+class DetailsModal extends HTMLElement {
+ constructor() {
+ super();
+ this.detailsContainer = this.querySelector('details');
+ this.summaryToggle = this.querySelector('summary');
+
+ this.detailsContainer.addEventListener('keyup', (event) => event.code.toUpperCase() === 'ESCAPE' && this.close());
+ this.summaryToggle.addEventListener('click', this.onSummaryClick.bind(this));
+ this.querySelector('button[type="button"]').addEventListener('click', this.close.bind(this));
+
+ this.summaryToggle.setAttribute('role', 'button');
+ }
+
+ isOpen() {
+ return this.detailsContainer.hasAttribute('open');
+ }
+
+ onSummaryClick(event) {
+ event.preventDefault();
+ event.target.closest('details').hasAttribute('open') ? this.close() : this.open(event);
+ }
+
+ onBodyClick(event) {
+ if (!this.contains(event.target) || event.target.classList.contains('modal-overlay')) this.close(false);
+ }
+
+ open(event) {
+ this.onBodyClickEvent = this.onBodyClickEvent || this.onBodyClick.bind(this);
+ event.target.closest('details').setAttribute('open', true);
+ document.body.addEventListener('click', this.onBodyClickEvent);
+ document.body.classList.add('overflow-hidden');
+
+ trapFocus(
+ this.detailsContainer.querySelector('[tabindex="-1"]'),
+ this.detailsContainer.querySelector('input:not([type="hidden"])')
+ );
+ }
+
+ close(focusToggle = true) {
+ removeTrapFocus(focusToggle ? this.summaryToggle : null);
+ this.detailsContainer.removeAttribute('open');
+ document.body.removeEventListener('click', this.onBodyClickEvent);
+ document.body.classList.remove('overflow-hidden');
+ }
+}
+
+customElements.define('details-modal', DetailsModal);
diff --git a/assets/facets.js b/assets/facets.js
new file mode 100644
index 0000000..0739a4b
--- /dev/null
+++ b/assets/facets.js
@@ -0,0 +1,325 @@
+class FacetFiltersForm extends HTMLElement {
+ constructor() {
+ super();
+ this.onActiveFilterClick = this.onActiveFilterClick.bind(this);
+
+ this.debouncedOnSubmit = debounce((event) => {
+ this.onSubmitHandler(event);
+ }, 500);
+
+ const facetForm = this.querySelector('form');
+ facetForm.addEventListener('input', this.debouncedOnSubmit.bind(this));
+
+ const facetWrapper = this.querySelector('#FacetsWrapperDesktop');
+ if (facetWrapper) facetWrapper.addEventListener('keyup', onKeyUpEscape);
+ }
+
+ static setListeners() {
+ const onHistoryChange = (event) => {
+ const searchParams = event.state ? event.state.searchParams : FacetFiltersForm.searchParamsInitial;
+ if (searchParams === FacetFiltersForm.searchParamsPrev) return;
+ FacetFiltersForm.renderPage(searchParams, null, false);
+ };
+ window.addEventListener('popstate', onHistoryChange);
+ }
+
+ static toggleActiveFacets(disable = true) {
+ document.querySelectorAll('.js-facet-remove').forEach((element) => {
+ element.classList.toggle('disabled', disable);
+ });
+ }
+
+ static renderPage(searchParams, event, updateURLHash = true) {
+ FacetFiltersForm.searchParamsPrev = searchParams;
+ const sections = FacetFiltersForm.getSections();
+ const countContainer = document.getElementById('ProductCount');
+ const countContainerDesktop = document.getElementById('ProductCountDesktop');
+ const loadingSpinners = document.querySelectorAll('.facets-container .loading__spinner, facet-filters-form .loading__spinner');
+ loadingSpinners.forEach((spinner) => spinner.classList.remove('hidden'));
+ document.getElementById('ProductGridContainer').querySelector('.collection').classList.add('loading');
+ if (countContainer) {
+ countContainer.classList.add('loading');
+ }
+ if (countContainerDesktop) {
+ countContainerDesktop.classList.add('loading');
+ }
+
+ sections.forEach((section) => {
+ const url = `${window.location.pathname}?section_id=${section.section}&${searchParams}`;
+ const filterDataUrl = (element) => element.url === url;
+
+ FacetFiltersForm.filterData.some(filterDataUrl)
+ ? FacetFiltersForm.renderSectionFromCache(filterDataUrl, event)
+ : FacetFiltersForm.renderSectionFromFetch(url, event);
+ });
+
+ if (updateURLHash) FacetFiltersForm.updateURLHash(searchParams);
+ }
+
+ static renderSectionFromFetch(url, event) {
+ fetch(url)
+ .then((response) => response.text())
+ .then((responseText) => {
+ const html = responseText;
+ FacetFiltersForm.filterData = [...FacetFiltersForm.filterData, { html, url }];
+ FacetFiltersForm.renderFilters(html, event);
+ FacetFiltersForm.renderProductGridContainer(html);
+ FacetFiltersForm.renderProductCount(html);
+ if (typeof initializeScrollAnimationTrigger === 'function') initializeScrollAnimationTrigger(html.innerHTML);
+ });
+ }
+
+ static renderSectionFromCache(filterDataUrl, event) {
+ const html = FacetFiltersForm.filterData.find(filterDataUrl).html;
+ FacetFiltersForm.renderFilters(html, event);
+ FacetFiltersForm.renderProductGridContainer(html);
+ FacetFiltersForm.renderProductCount(html);
+ if (typeof initializeScrollAnimationTrigger === 'function') initializeScrollAnimationTrigger(html.innerHTML);
+ }
+
+ static renderProductGridContainer(html) {
+ document.getElementById('ProductGridContainer').innerHTML = new DOMParser()
+ .parseFromString(html, 'text/html')
+ .getElementById('ProductGridContainer').innerHTML;
+
+ document
+ .getElementById('ProductGridContainer')
+ .querySelectorAll('.scroll-trigger')
+ .forEach((element) => {
+ element.classList.add('scroll-trigger--cancel');
+ });
+ }
+
+ static renderProductCount(html) {
+ const count = new DOMParser().parseFromString(html, 'text/html').getElementById('ProductCount').innerHTML;
+ const container = document.getElementById('ProductCount');
+ const containerDesktop = document.getElementById('ProductCountDesktop');
+ container.innerHTML = count;
+ container.classList.remove('loading');
+ if (containerDesktop) {
+ containerDesktop.innerHTML = count;
+ containerDesktop.classList.remove('loading');
+ }
+ const loadingSpinners = document.querySelectorAll('.facets-container .loading__spinner, facet-filters-form .loading__spinner');
+ loadingSpinners.forEach((spinner) => spinner.classList.add('hidden'));
+ }
+
+ static renderFilters(html, event) {
+ const parsedHTML = new DOMParser().parseFromString(html, 'text/html');
+
+ const facetDetailsElements = parsedHTML.querySelectorAll(
+ '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter'
+ );
+ const matchesIndex = (element) => {
+ const jsFilter = event ? event.target.closest('.js-filter') : undefined;
+ return jsFilter ? element.dataset.index === jsFilter.dataset.index : false;
+ };
+ const facetsToRender = Array.from(facetDetailsElements).filter((element) => !matchesIndex(element));
+ const countsToRender = Array.from(facetDetailsElements).find(matchesIndex);
+
+ facetsToRender.forEach((element) => {
+ document.querySelector(`.js-filter[data-index="${element.dataset.index}"]`).innerHTML = element.innerHTML;
+ });
+
+ FacetFiltersForm.renderActiveFacets(parsedHTML);
+ FacetFiltersForm.renderAdditionalElements(parsedHTML);
+
+ if (countsToRender) {
+ const closestJSFilterID = event.target.closest('.js-filter').id;
+
+ if (closestJSFilterID) {
+ FacetFiltersForm.renderCounts(countsToRender, event.target.closest('.js-filter'));
+ FacetFiltersForm.renderMobileCounts(countsToRender, document.getElementById(closestJSFilterID));
+
+ const newElementSelector = document
+ .getElementById(closestJSFilterID)
+ .classList.contains('mobile-facets__details')
+ ? `#${closestJSFilterID} .mobile-facets__close-button`
+ : `#${closestJSFilterID} .facets__summary`;
+ const newElementToActivate = document.querySelector(newElementSelector);
+ if (newElementToActivate) newElementToActivate.focus();
+ }
+ }
+ }
+
+ static renderActiveFacets(html) {
+ const activeFacetElementSelectors = ['.active-facets-mobile', '.active-facets-desktop'];
+
+ activeFacetElementSelectors.forEach((selector) => {
+ const activeFacetsElement = html.querySelector(selector);
+ if (!activeFacetsElement) return;
+ document.querySelector(selector).innerHTML = activeFacetsElement.innerHTML;
+ });
+
+ FacetFiltersForm.toggleActiveFacets(false);
+ }
+
+ static renderAdditionalElements(html) {
+ const mobileElementSelectors = ['.mobile-facets__open', '.mobile-facets__count', '.sorting'];
+
+ mobileElementSelectors.forEach((selector) => {
+ if (!html.querySelector(selector)) return;
+ document.querySelector(selector).innerHTML = html.querySelector(selector).innerHTML;
+ });
+
+ document.getElementById('FacetFiltersFormMobile').closest('menu-drawer').bindEvents();
+ }
+
+ static renderCounts(source, target) {
+ const targetSummary = target.querySelector('.facets__summary');
+ const sourceSummary = source.querySelector('.facets__summary');
+
+ if (sourceSummary && targetSummary) {
+ targetSummary.outerHTML = sourceSummary.outerHTML;
+ }
+
+ const targetHeaderElement = target.querySelector('.facets__header');
+ const sourceHeaderElement = source.querySelector('.facets__header');
+
+ if (sourceHeaderElement && targetHeaderElement) {
+ targetHeaderElement.outerHTML = sourceHeaderElement.outerHTML;
+ }
+
+ const targetWrapElement = target.querySelector('.facets-wrap');
+ const sourceWrapElement = source.querySelector('.facets-wrap');
+
+ if (sourceWrapElement && targetWrapElement) {
+ const isShowingMore = Boolean(target.querySelector('show-more-button .label-show-more.hidden'));
+ if (isShowingMore) {
+ sourceWrapElement
+ .querySelectorAll('.facets__item.hidden')
+ .forEach((hiddenItem) => hiddenItem.classList.replace('hidden', 'show-more-item'));
+ }
+
+ targetWrapElement.outerHTML = sourceWrapElement.outerHTML;
+ }
+ }
+
+ static renderMobileCounts(source, target) {
+ const targetFacetsList = target.querySelector('.mobile-facets__list');
+ const sourceFacetsList = source.querySelector('.mobile-facets__list');
+
+ if (sourceFacetsList && targetFacetsList) {
+ targetFacetsList.outerHTML = sourceFacetsList.outerHTML;
+ }
+ }
+
+ static updateURLHash(searchParams) {
+ history.pushState({ searchParams }, '', `${window.location.pathname}${searchParams && '?'.concat(searchParams)}`);
+ }
+
+ static getSections() {
+ return [
+ {
+ section: document.getElementById('product-grid').dataset.id,
+ },
+ ];
+ }
+
+ createSearchParams(form) {
+ const formData = new FormData(form);
+ return new URLSearchParams(formData).toString();
+ }
+
+ onSubmitForm(searchParams, event) {
+ FacetFiltersForm.renderPage(searchParams, event);
+ }
+
+ onSubmitHandler(event) {
+ event.preventDefault();
+ const sortFilterForms = document.querySelectorAll('facet-filters-form form');
+ if (event.srcElement.className == 'mobile-facets__checkbox') {
+ const searchParams = this.createSearchParams(event.target.closest('form'));
+ this.onSubmitForm(searchParams, event);
+ } else {
+ const forms = [];
+ const isMobile = event.target.closest('form').id === 'FacetFiltersFormMobile';
+
+ sortFilterForms.forEach((form) => {
+ if (!isMobile) {
+ if (form.id === 'FacetSortForm' || form.id === 'FacetFiltersForm' || form.id === 'FacetSortDrawerForm') {
+ const noJsElements = document.querySelectorAll('.no-js-list');
+ noJsElements.forEach((el) => el.remove());
+ forms.push(this.createSearchParams(form));
+ }
+ } else if (form.id === 'FacetFiltersFormMobile') {
+ forms.push(this.createSearchParams(form));
+ }
+ });
+ this.onSubmitForm(forms.join('&'), event);
+ }
+ }
+
+ onActiveFilterClick(event) {
+ event.preventDefault();
+ FacetFiltersForm.toggleActiveFacets();
+ const url =
+ event.currentTarget.href.indexOf('?') == -1
+ ? ''
+ : event.currentTarget.href.slice(event.currentTarget.href.indexOf('?') + 1);
+ FacetFiltersForm.renderPage(url);
+ }
+}
+
+FacetFiltersForm.filterData = [];
+FacetFiltersForm.searchParamsInitial = window.location.search.slice(1);
+FacetFiltersForm.searchParamsPrev = window.location.search.slice(1);
+customElements.define('facet-filters-form', FacetFiltersForm);
+FacetFiltersForm.setListeners();
+
+class PriceRange extends HTMLElement {
+ constructor() {
+ super();
+ this.querySelectorAll('input').forEach((element) =>
+ element.addEventListener('change', this.onRangeChange.bind(this))
+ );
+ this.setMinAndMaxValues();
+ }
+
+ onRangeChange(event) {
+ this.adjustToValidValues(event.currentTarget);
+ this.setMinAndMaxValues();
+ }
+
+ setMinAndMaxValues() {
+ const inputs = this.querySelectorAll('input');
+ const minInput = inputs[0];
+ const maxInput = inputs[1];
+ if (maxInput.value) minInput.setAttribute('max', maxInput.value);
+ if (minInput.value) maxInput.setAttribute('min', minInput.value);
+ if (minInput.value === '') maxInput.setAttribute('min', 0);
+ if (maxInput.value === '') minInput.setAttribute('max', maxInput.getAttribute('max'));
+ }
+
+ adjustToValidValues(input) {
+ const value = Number(input.value);
+ const min = Number(input.getAttribute('min'));
+ const max = Number(input.getAttribute('max'));
+
+ if (value < min) input.value = min;
+ if (value > max) input.value = max;
+ }
+}
+
+customElements.define('price-range', PriceRange);
+
+class FacetRemove extends HTMLElement {
+ constructor() {
+ super();
+ const facetLink = this.querySelector('a');
+ facetLink.setAttribute('role', 'button');
+ facetLink.addEventListener('click', this.closeFilter.bind(this));
+ facetLink.addEventListener('keyup', (event) => {
+ event.preventDefault();
+ if (event.code.toUpperCase() === 'SPACE') this.closeFilter(event);
+ });
+ }
+
+ closeFilter(event) {
+ event.preventDefault();
+ const form = this.closest('facet-filters-form') || document.querySelector('facet-filters-form');
+ form.onActiveFilterClick(event);
+ }
+}
+
+customElements.define('facet-remove', FacetRemove);
diff --git a/assets/global.js b/assets/global.js
new file mode 100644
index 0000000..c04d3d3
--- /dev/null
+++ b/assets/global.js
@@ -0,0 +1,1271 @@
+function getFocusableElements(container) {
+ return Array.from(
+ container.querySelectorAll(
+ "summary, a[href], button:enabled, [tabindex]:not([tabindex^='-']), [draggable], area, input:not([type=hidden]):enabled, select:enabled, textarea:enabled, object, iframe"
+ )
+ );
+}
+
+document.querySelectorAll('[id^="Details-"] summary').forEach((summary) => {
+ summary.setAttribute('role', 'button');
+ summary.setAttribute('aria-expanded', summary.parentNode.hasAttribute('open'));
+
+ if (summary.nextElementSibling.getAttribute('id')) {
+ summary.setAttribute('aria-controls', summary.nextElementSibling.id);
+ }
+
+ summary.addEventListener('click', (event) => {
+ event.currentTarget.setAttribute('aria-expanded', !event.currentTarget.closest('details').hasAttribute('open'));
+ });
+
+ if (summary.closest('header-drawer, menu-drawer')) return;
+ summary.parentElement.addEventListener('keyup', onKeyUpEscape);
+});
+
+const trapFocusHandlers = {};
+
+function trapFocus(container, elementToFocus = container) {
+ var elements = getFocusableElements(container);
+ var first = elements[0];
+ var last = elements[elements.length - 1];
+
+ removeTrapFocus();
+
+ trapFocusHandlers.focusin = (event) => {
+ if (event.target !== container && event.target !== last && event.target !== first) return;
+
+ document.addEventListener('keydown', trapFocusHandlers.keydown);
+ };
+
+ trapFocusHandlers.focusout = function () {
+ document.removeEventListener('keydown', trapFocusHandlers.keydown);
+ };
+
+ trapFocusHandlers.keydown = function (event) {
+ if (event.code.toUpperCase() !== 'TAB') return; // If not TAB key
+ // On the last focusable element and tab forward, focus the first element.
+ if (event.target === last && !event.shiftKey) {
+ event.preventDefault();
+ first.focus();
+ }
+
+ // On the first focusable element and tab backward, focus the last element.
+ if ((event.target === container || event.target === first) && event.shiftKey) {
+ event.preventDefault();
+ last.focus();
+ }
+ };
+
+ document.addEventListener('focusout', trapFocusHandlers.focusout);
+ document.addEventListener('focusin', trapFocusHandlers.focusin);
+
+ elementToFocus.focus();
+
+ if (
+ elementToFocus.tagName === 'INPUT' &&
+ ['search', 'text', 'email', 'url'].includes(elementToFocus.type) &&
+ elementToFocus.value
+ ) {
+ elementToFocus.setSelectionRange(0, elementToFocus.value.length);
+ }
+}
+
+// Here run the querySelector to figure out if the browser supports :focus-visible or not and run code based on it.
+try {
+ document.querySelector(':focus-visible');
+} catch (e) {
+ focusVisiblePolyfill();
+}
+
+function focusVisiblePolyfill() {
+ const navKeys = [
+ 'ARROWUP',
+ 'ARROWDOWN',
+ 'ARROWLEFT',
+ 'ARROWRIGHT',
+ 'TAB',
+ 'ENTER',
+ 'SPACE',
+ 'ESCAPE',
+ 'HOME',
+ 'END',
+ 'PAGEUP',
+ 'PAGEDOWN',
+ ];
+ let currentFocusedElement = null;
+ let mouseClick = null;
+
+ window.addEventListener('keydown', (event) => {
+ if (navKeys.includes(event.code.toUpperCase())) {
+ mouseClick = false;
+ }
+ });
+
+ window.addEventListener('mousedown', (event) => {
+ mouseClick = true;
+ });
+
+ window.addEventListener(
+ 'focus',
+ () => {
+ if (currentFocusedElement) currentFocusedElement.classList.remove('focused');
+
+ if (mouseClick) return;
+
+ currentFocusedElement = document.activeElement;
+ currentFocusedElement.classList.add('focused');
+ },
+ true
+ );
+}
+
+function pauseAllMedia() {
+ document.querySelectorAll('.js-youtube').forEach((video) => {
+ video.contentWindow.postMessage('{"event":"command","func":"' + 'pauseVideo' + '","args":""}', '*');
+ });
+ document.querySelectorAll('.js-vimeo').forEach((video) => {
+ video.contentWindow.postMessage('{"method":"pause"}', '*');
+ });
+ document.querySelectorAll('video').forEach((video) => video.pause());
+ document.querySelectorAll('product-model').forEach((model) => {
+ if (model.modelViewerUI) model.modelViewerUI.pause();
+ });
+}
+
+function removeTrapFocus(elementToFocus = null) {
+ document.removeEventListener('focusin', trapFocusHandlers.focusin);
+ document.removeEventListener('focusout', trapFocusHandlers.focusout);
+ document.removeEventListener('keydown', trapFocusHandlers.keydown);
+
+ if (elementToFocus) elementToFocus.focus();
+}
+
+function onKeyUpEscape(event) {
+ if (event.code.toUpperCase() !== 'ESCAPE') return;
+
+ const openDetailsElement = event.target.closest('details[open]');
+ if (!openDetailsElement) return;
+
+ const summaryElement = openDetailsElement.querySelector('summary');
+ openDetailsElement.removeAttribute('open');
+ summaryElement.setAttribute('aria-expanded', false);
+ summaryElement.focus();
+}
+
+class QuantityInput extends HTMLElement {
+ constructor() {
+ super();
+ this.input = this.querySelector('input');
+ this.changeEvent = new Event('change', { bubbles: true });
+ this.input.addEventListener('change', this.onInputChange.bind(this));
+ this.querySelectorAll('button').forEach((button) =>
+ button.addEventListener('click', this.onButtonClick.bind(this))
+ );
+ }
+
+ quantityUpdateUnsubscriber = undefined;
+
+ connectedCallback() {
+ this.validateQtyRules();
+ this.quantityUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.quantityUpdate, this.validateQtyRules.bind(this));
+ }
+
+ disconnectedCallback() {
+ if (this.quantityUpdateUnsubscriber) {
+ this.quantityUpdateUnsubscriber();
+ }
+ }
+
+ onInputChange(event) {
+ this.validateQtyRules();
+ }
+
+ onButtonClick(event) {
+ event.preventDefault();
+ const previousValue = this.input.value;
+
+ event.target.name === 'plus' ? this.input.stepUp() : this.input.stepDown();
+ if (previousValue !== this.input.value) this.input.dispatchEvent(this.changeEvent);
+ }
+
+ validateQtyRules() {
+ const value = parseInt(this.input.value);
+ if (this.input.min) {
+ const min = parseInt(this.input.min);
+ const buttonMinus = this.querySelector(".quantity__button[name='minus']");
+ buttonMinus.classList.toggle('disabled', value <= min);
+ }
+ if (this.input.max) {
+ const max = parseInt(this.input.max);
+ const buttonPlus = this.querySelector(".quantity__button[name='plus']");
+ buttonPlus.classList.toggle('disabled', value >= max);
+ }
+ }
+}
+
+customElements.define('quantity-input', QuantityInput);
+
+function debounce(fn, wait) {
+ let t;
+ return (...args) => {
+ clearTimeout(t);
+ t = setTimeout(() => fn.apply(this, args), wait);
+ };
+}
+
+function throttle(fn, delay) {
+ let lastCall = 0;
+ return function (...args) {
+ const now = new Date().getTime();
+ if (now - lastCall < delay) {
+ return;
+ }
+ lastCall = now;
+ return fn(...args);
+ };
+}
+
+function fetchConfig(type = 'json') {
+ return {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json', Accept: `application/${type}` },
+ };
+}
+
+/*
+ * Shopify Common JS
+ *
+ */
+if (typeof window.Shopify == 'undefined') {
+ window.Shopify = {};
+}
+
+Shopify.bind = function (fn, scope) {
+ return function () {
+ return fn.apply(scope, arguments);
+ };
+};
+
+Shopify.setSelectorByValue = function (selector, value) {
+ for (var i = 0, count = selector.options.length; i < count; i++) {
+ var option = selector.options[i];
+ if (value == option.value || value == option.innerHTML) {
+ selector.selectedIndex = i;
+ return i;
+ }
+ }
+};
+
+Shopify.addListener = function (target, eventName, callback) {
+ target.addEventListener
+ ? target.addEventListener(eventName, callback, false)
+ : target.attachEvent('on' + eventName, callback);
+};
+
+Shopify.postLink = function (path, options) {
+ options = options || {};
+ var method = options['method'] || 'post';
+ var params = options['parameters'] || {};
+
+ var form = document.createElement('form');
+ form.setAttribute('method', method);
+ form.setAttribute('action', path);
+
+ for (var key in params) {
+ var hiddenField = document.createElement('input');
+ hiddenField.setAttribute('type', 'hidden');
+ hiddenField.setAttribute('name', key);
+ hiddenField.setAttribute('value', params[key]);
+ form.appendChild(hiddenField);
+ }
+ document.body.appendChild(form);
+ form.submit();
+ document.body.removeChild(form);
+};
+
+Shopify.CountryProvinceSelector = function (country_domid, province_domid, options) {
+ this.countryEl = document.getElementById(country_domid);
+ this.provinceEl = document.getElementById(province_domid);
+ this.provinceContainer = document.getElementById(options['hideElement'] || province_domid);
+
+ Shopify.addListener(this.countryEl, 'change', Shopify.bind(this.countryHandler, this));
+
+ this.initCountry();
+ this.initProvince();
+};
+
+Shopify.CountryProvinceSelector.prototype = {
+ initCountry: function () {
+ var value = this.countryEl.getAttribute('data-default');
+ Shopify.setSelectorByValue(this.countryEl, value);
+ this.countryHandler();
+ },
+
+ initProvince: function () {
+ var value = this.provinceEl.getAttribute('data-default');
+ if (value && this.provinceEl.options.length > 0) {
+ Shopify.setSelectorByValue(this.provinceEl, value);
+ }
+ },
+
+ countryHandler: function (e) {
+ var opt = this.countryEl.options[this.countryEl.selectedIndex];
+ var raw = opt.getAttribute('data-provinces');
+ var provinces = JSON.parse(raw);
+
+ this.clearOptions(this.provinceEl);
+ if (provinces && provinces.length == 0) {
+ this.provinceContainer.style.display = 'none';
+ } else {
+ for (var i = 0; i < provinces.length; i++) {
+ var opt = document.createElement('option');
+ opt.value = provinces[i][0];
+ opt.innerHTML = provinces[i][1];
+ this.provinceEl.appendChild(opt);
+ }
+
+ this.provinceContainer.style.display = '';
+ }
+ },
+
+ clearOptions: function (selector) {
+ while (selector.firstChild) {
+ selector.removeChild(selector.firstChild);
+ }
+ },
+
+ setOptions: function (selector, values) {
+ for (var i = 0, count = values.length; i < values.length; i++) {
+ var opt = document.createElement('option');
+ opt.value = values[i];
+ opt.innerHTML = values[i];
+ selector.appendChild(opt);
+ }
+ },
+};
+
+class MenuDrawer extends HTMLElement {
+ constructor() {
+ super();
+
+ this.mainDetailsToggle = this.querySelector('details');
+
+ this.addEventListener('keyup', this.onKeyUp.bind(this));
+ this.addEventListener('focusout', this.onFocusOut.bind(this));
+ this.bindEvents();
+ }
+
+ bindEvents() {
+ this.querySelectorAll('summary').forEach((summary) =>
+ summary.addEventListener('click', this.onSummaryClick.bind(this))
+ );
+ this.querySelectorAll('button:not(.localization-selector)').forEach((button) =>
+ button.addEventListener('click', this.onCloseButtonClick.bind(this))
+ );
+ }
+
+ onKeyUp(event) {
+ if (event.code.toUpperCase() !== 'ESCAPE') return;
+
+ const openDetailsElement = event.target.closest('details[open]');
+ if (!openDetailsElement) return;
+
+ openDetailsElement === this.mainDetailsToggle
+ ? this.closeMenuDrawer(event, this.mainDetailsToggle.querySelector('summary'))
+ : this.closeSubmenu(openDetailsElement);
+ }
+
+ onSummaryClick(event) {
+ const summaryElement = event.currentTarget;
+ const detailsElement = summaryElement.parentNode;
+ const parentMenuElement = detailsElement.closest('.has-submenu');
+ const isOpen = detailsElement.hasAttribute('open');
+ const reducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)');
+
+ function addTrapFocus() {
+ trapFocus(summaryElement.nextElementSibling, detailsElement.querySelector('button'));
+ summaryElement.nextElementSibling.removeEventListener('transitionend', addTrapFocus);
+ }
+
+ if (detailsElement === this.mainDetailsToggle) {
+ if (isOpen) event.preventDefault();
+ isOpen ? this.closeMenuDrawer(event, summaryElement) : this.openMenuDrawer(summaryElement);
+
+ if (window.matchMedia('(max-width: 990px)')) {
+ document.documentElement.style.setProperty('--viewport-height', `${window.innerHeight}px`);
+ }
+ } else {
+ setTimeout(() => {
+ detailsElement.classList.add('menu-opening');
+ summaryElement.setAttribute('aria-expanded', true);
+ parentMenuElement && parentMenuElement.classList.add('submenu-open');
+ !reducedMotion || reducedMotion.matches
+ ? addTrapFocus()
+ : summaryElement.nextElementSibling.addEventListener('transitionend', addTrapFocus);
+ }, 100);
+ }
+ }
+
+ openMenuDrawer(summaryElement) {
+ setTimeout(() => {
+ this.mainDetailsToggle.classList.add('menu-opening');
+ });
+ summaryElement.setAttribute('aria-expanded', true);
+ trapFocus(this.mainDetailsToggle, summaryElement);
+ document.body.classList.add(`overflow-hidden-${this.dataset.breakpoint}`);
+ }
+
+ closeMenuDrawer(event, elementToFocus = false) {
+ if (event === undefined) return;
+
+ this.mainDetailsToggle.classList.remove('menu-opening');
+ this.mainDetailsToggle.querySelectorAll('details').forEach((details) => {
+ details.removeAttribute('open');
+ details.classList.remove('menu-opening');
+ });
+ this.mainDetailsToggle.querySelectorAll('.submenu-open').forEach((submenu) => {
+ submenu.classList.remove('submenu-open');
+ });
+ document.body.classList.remove(`overflow-hidden-${this.dataset.breakpoint}`);
+ removeTrapFocus(elementToFocus);
+ this.closeAnimation(this.mainDetailsToggle);
+
+ if (event instanceof KeyboardEvent) elementToFocus?.setAttribute('aria-expanded', false);
+ }
+
+ onFocusOut() {
+ setTimeout(() => {
+ if (this.mainDetailsToggle.hasAttribute('open') && !this.mainDetailsToggle.contains(document.activeElement))
+ this.closeMenuDrawer();
+ });
+ }
+
+ onCloseButtonClick(event) {
+ const detailsElement = event.currentTarget.closest('details');
+ this.closeSubmenu(detailsElement);
+ }
+
+ closeSubmenu(detailsElement) {
+ const parentMenuElement = detailsElement.closest('.submenu-open');
+ parentMenuElement && parentMenuElement.classList.remove('submenu-open');
+ detailsElement.classList.remove('menu-opening');
+ detailsElement.querySelector('summary').setAttribute('aria-expanded', false);
+ removeTrapFocus(detailsElement.querySelector('summary'));
+ this.closeAnimation(detailsElement);
+ }
+
+ closeAnimation(detailsElement) {
+ let animationStart;
+
+ const handleAnimation = (time) => {
+ if (animationStart === undefined) {
+ animationStart = time;
+ }
+
+ const elapsedTime = time - animationStart;
+
+ if (elapsedTime < 400) {
+ window.requestAnimationFrame(handleAnimation);
+ } else {
+ detailsElement.removeAttribute('open');
+ if (detailsElement.closest('details[open]')) {
+ trapFocus(detailsElement.closest('details[open]'), detailsElement.querySelector('summary'));
+ }
+ }
+ };
+
+ window.requestAnimationFrame(handleAnimation);
+ }
+}
+
+customElements.define('menu-drawer', MenuDrawer);
+
+class HeaderDrawer extends MenuDrawer {
+ constructor() {
+ super();
+ }
+
+ openMenuDrawer(summaryElement) {
+ this.header = this.header || document.querySelector('.section-header');
+ this.borderOffset =
+ this.borderOffset || this.closest('.header-wrapper').classList.contains('header-wrapper--border-bottom') ? 1 : 0;
+ document.documentElement.style.setProperty(
+ '--header-bottom-position',
+ `${parseInt(this.header.getBoundingClientRect().bottom - this.borderOffset)}px`
+ );
+ this.header.classList.add('menu-open');
+
+ setTimeout(() => {
+ this.mainDetailsToggle.classList.add('menu-opening');
+ });
+
+ summaryElement.setAttribute('aria-expanded', true);
+ window.addEventListener('resize', this.onResize);
+ trapFocus(this.mainDetailsToggle, summaryElement);
+ document.body.classList.add(`overflow-hidden-${this.dataset.breakpoint}`);
+ }
+
+ closeMenuDrawer(event, elementToFocus) {
+ if (!elementToFocus) return;
+ super.closeMenuDrawer(event, elementToFocus);
+ this.header.classList.remove('menu-open');
+ window.removeEventListener('resize', this.onResize);
+ }
+
+ onResize = () => {
+ this.header &&
+ document.documentElement.style.setProperty(
+ '--header-bottom-position',
+ `${parseInt(this.header.getBoundingClientRect().bottom - this.borderOffset)}px`
+ );
+ document.documentElement.style.setProperty('--viewport-height', `${window.innerHeight}px`);
+ };
+}
+
+customElements.define('header-drawer', HeaderDrawer);
+
+class ModalDialog extends HTMLElement {
+ constructor() {
+ super();
+ this.querySelector('[id^="ModalClose-"]').addEventListener('click', this.hide.bind(this, false));
+ this.addEventListener('keyup', (event) => {
+ if (event.code.toUpperCase() === 'ESCAPE') this.hide();
+ });
+ if (this.classList.contains('media-modal')) {
+ this.addEventListener('pointerup', (event) => {
+ if (event.pointerType === 'mouse' && !event.target.closest('deferred-media, product-model')) this.hide();
+ });
+ } else {
+ this.addEventListener('click', (event) => {
+ if (event.target === this) this.hide();
+ });
+ }
+ }
+
+ connectedCallback() {
+ if (this.moved) return;
+ this.moved = true;
+ document.body.appendChild(this);
+ }
+
+ show(opener) {
+ this.openedBy = opener;
+ const popup = this.querySelector('.template-popup');
+ document.body.classList.add('overflow-hidden');
+ this.setAttribute('open', '');
+ if (popup) popup.loadContent();
+ trapFocus(this, this.querySelector('[role="dialog"]'));
+ window.pauseAllMedia();
+ }
+
+ hide() {
+ document.body.classList.remove('overflow-hidden');
+ document.body.dispatchEvent(new CustomEvent('modalClosed'));
+ this.removeAttribute('open');
+ removeTrapFocus(this.openedBy);
+ window.pauseAllMedia();
+ }
+}
+customElements.define('modal-dialog', ModalDialog);
+
+class ModalOpener extends HTMLElement {
+ constructor() {
+ super();
+
+ const button = this.querySelector('button');
+
+ if (!button) return;
+ button.addEventListener('click', () => {
+ const modal = document.querySelector(this.getAttribute('data-modal'));
+ if (modal) modal.show(button);
+ });
+ }
+}
+customElements.define('modal-opener', ModalOpener);
+
+class DeferredMedia extends HTMLElement {
+ constructor() {
+ super();
+ const poster = this.querySelector('[id^="Deferred-Poster-"]');
+ if (!poster) return;
+ poster.addEventListener('click', this.loadContent.bind(this));
+ }
+
+ loadContent(focus = true) {
+ window.pauseAllMedia();
+ if (!this.getAttribute('loaded')) {
+ const content = document.createElement('div');
+ content.appendChild(this.querySelector('template').content.firstElementChild.cloneNode(true));
+
+ this.setAttribute('loaded', true);
+ const deferredElement = this.appendChild(content.querySelector('video, model-viewer, iframe'));
+ if (focus) deferredElement.focus();
+ if (deferredElement.nodeName == 'VIDEO' && deferredElement.getAttribute('autoplay')) {
+ // force autoplay for safari
+ deferredElement.play();
+ }
+ }
+ }
+}
+
+customElements.define('deferred-media', DeferredMedia);
+
+class SliderComponent extends HTMLElement {
+ constructor() {
+ super();
+ this.slider = this.querySelector('[id^="Slider-"]');
+ this.sliderItems = this.querySelectorAll('[id^="Slide-"]');
+ this.enableSliderLooping = false;
+ this.currentPageElement = this.querySelector('.slider-counter--current');
+ this.pageTotalElement = this.querySelector('.slider-counter--total');
+ this.prevButton = this.querySelector('button[name="previous"]');
+ this.nextButton = this.querySelector('button[name="next"]');
+
+ if (!this.slider || !this.nextButton) return;
+
+ this.initPages();
+ const resizeObserver = new ResizeObserver((entries) => this.initPages());
+ resizeObserver.observe(this.slider);
+
+ this.slider.addEventListener('scroll', this.update.bind(this));
+ this.prevButton.addEventListener('click', this.onButtonClick.bind(this));
+ this.nextButton.addEventListener('click', this.onButtonClick.bind(this));
+ }
+
+ initPages() {
+ this.sliderItemsToShow = Array.from(this.sliderItems).filter((element) => element.clientWidth > 0);
+ if (this.sliderItemsToShow.length < 2) return;
+ this.sliderItemOffset = this.sliderItemsToShow[1].offsetLeft - this.sliderItemsToShow[0].offsetLeft;
+ this.slidesPerPage = Math.floor(
+ (this.slider.clientWidth - this.sliderItemsToShow[0].offsetLeft) / this.sliderItemOffset
+ );
+ this.totalPages = this.sliderItemsToShow.length - this.slidesPerPage + 1;
+ this.update();
+ }
+
+ resetPages() {
+ this.sliderItems = this.querySelectorAll('[id^="Slide-"]');
+ this.initPages();
+ }
+
+ update() {
+ // Temporarily prevents unneeded updates resulting from variant changes
+ // This should be refactored as part of https://github.com/Shopify/dawn/issues/2057
+ if (!this.slider || !this.nextButton) return;
+
+ const previousPage = this.currentPage;
+ this.currentPage = Math.round(this.slider.scrollLeft / this.sliderItemOffset) + 1;
+
+ if (this.currentPageElement && this.pageTotalElement) {
+ this.currentPageElement.textContent = this.currentPage;
+ this.pageTotalElement.textContent = this.totalPages;
+ }
+
+ if (this.currentPage != previousPage) {
+ this.dispatchEvent(
+ new CustomEvent('slideChanged', {
+ detail: {
+ currentPage: this.currentPage,
+ currentElement: this.sliderItemsToShow[this.currentPage - 1],
+ },
+ })
+ );
+ }
+
+ if (this.enableSliderLooping) return;
+
+ if (this.isSlideVisible(this.sliderItemsToShow[0]) && this.slider.scrollLeft === 0) {
+ this.prevButton.setAttribute('disabled', 'disabled');
+ } else {
+ this.prevButton.removeAttribute('disabled');
+ }
+
+ if (this.isSlideVisible(this.sliderItemsToShow[this.sliderItemsToShow.length - 1])) {
+ this.nextButton.setAttribute('disabled', 'disabled');
+ } else {
+ this.nextButton.removeAttribute('disabled');
+ }
+ }
+
+ isSlideVisible(element, offset = 0) {
+ const lastVisibleSlide = this.slider.clientWidth + this.slider.scrollLeft - offset;
+ return element.offsetLeft + element.clientWidth <= lastVisibleSlide && element.offsetLeft >= this.slider.scrollLeft;
+ }
+
+ onButtonClick(event) {
+ event.preventDefault();
+ const step = event.currentTarget.dataset.step || 1;
+ this.slideScrollPosition =
+ event.currentTarget.name === 'next'
+ ? this.slider.scrollLeft + step * this.sliderItemOffset
+ : this.slider.scrollLeft - step * this.sliderItemOffset;
+ this.setSlidePosition(this.slideScrollPosition);
+ }
+
+ setSlidePosition(position) {
+ this.slider.scrollTo({
+ left: position,
+ });
+ }
+}
+
+customElements.define('slider-component', SliderComponent);
+
+class SlideshowComponent extends SliderComponent {
+ constructor() {
+ super();
+ this.sliderControlWrapper = this.querySelector('.slider-buttons');
+ this.enableSliderLooping = true;
+
+ if (!this.sliderControlWrapper) return;
+
+ this.sliderFirstItemNode = this.slider.querySelector('.slideshow__slide');
+ if (this.sliderItemsToShow.length > 0) this.currentPage = 1;
+
+ this.announcementBarSlider = this.querySelector('.announcement-bar-slider');
+ // Value below should match --duration-announcement-bar CSS value
+ this.announcerBarAnimationDelay = this.announcementBarSlider ? 250 : 0;
+
+ this.sliderControlLinksArray = Array.from(this.sliderControlWrapper.querySelectorAll('.slider-counter__link'));
+ this.sliderControlLinksArray.forEach((link) => link.addEventListener('click', this.linkToSlide.bind(this)));
+ this.slider.addEventListener('scroll', this.setSlideVisibility.bind(this));
+ this.setSlideVisibility();
+
+ if (this.announcementBarSlider) {
+ this.announcementBarArrowButtonWasClicked = false;
+
+ this.reducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)');
+ this.reducedMotion.addEventListener('change', () => {
+ if (this.slider.getAttribute('data-autoplay') === 'true') this.setAutoPlay();
+ });
+
+ [this.prevButton, this.nextButton].forEach((button) => {
+ button.addEventListener(
+ 'click',
+ () => {
+ this.announcementBarArrowButtonWasClicked = true;
+ },
+ { once: true }
+ );
+ });
+ }
+
+ if (this.slider.getAttribute('data-autoplay') === 'true') this.setAutoPlay();
+ }
+
+ setAutoPlay() {
+ this.autoplaySpeed = this.slider.dataset.speed * 1000;
+ this.addEventListener('mouseover', this.focusInHandling.bind(this));
+ this.addEventListener('mouseleave', this.focusOutHandling.bind(this));
+ this.addEventListener('focusin', this.focusInHandling.bind(this));
+ this.addEventListener('focusout', this.focusOutHandling.bind(this));
+
+ if (this.querySelector('.slideshow__autoplay')) {
+ this.sliderAutoplayButton = this.querySelector('.slideshow__autoplay');
+ this.sliderAutoplayButton.addEventListener('click', this.autoPlayToggle.bind(this));
+ this.autoplayButtonIsSetToPlay = true;
+ this.play();
+ } else {
+ this.reducedMotion.matches || this.announcementBarArrowButtonWasClicked
+ ? this.pause()
+ : this.play();
+ }
+ }
+
+ onButtonClick(event) {
+ super.onButtonClick(event);
+ this.wasClicked = true;
+
+ const isFirstSlide = this.currentPage === 1;
+ const isLastSlide = this.currentPage === this.sliderItemsToShow.length;
+
+ if (!isFirstSlide && !isLastSlide) {
+ this.applyAnimationToAnnouncementBar(event.currentTarget.name);
+ return;
+ }
+
+ if (isFirstSlide && event.currentTarget.name === 'previous') {
+ this.slideScrollPosition =
+ this.slider.scrollLeft + this.sliderFirstItemNode.clientWidth * this.sliderItemsToShow.length;
+ } else if (isLastSlide && event.currentTarget.name === 'next') {
+ this.slideScrollPosition = 0;
+ }
+
+ this.setSlidePosition(this.slideScrollPosition);
+
+ this.applyAnimationToAnnouncementBar(event.currentTarget.name);
+ }
+
+ setSlidePosition(position) {
+ if (this.setPositionTimeout) clearTimeout(this.setPositionTimeout);
+ this.setPositionTimeout = setTimeout(() => {
+ this.slider.scrollTo({
+ left: position,
+ });
+ }, this.announcerBarAnimationDelay);
+ }
+
+ update() {
+ super.update();
+ this.sliderControlButtons = this.querySelectorAll('.slider-counter__link');
+ this.prevButton.removeAttribute('disabled');
+
+ if (!this.sliderControlButtons.length) return;
+
+ this.sliderControlButtons.forEach((link) => {
+ link.classList.remove('slider-counter__link--active');
+ link.removeAttribute('aria-current');
+ });
+ this.sliderControlButtons[this.currentPage - 1].classList.add('slider-counter__link--active');
+ this.sliderControlButtons[this.currentPage - 1].setAttribute('aria-current', true);
+ }
+
+ autoPlayToggle() {
+ this.togglePlayButtonState(this.autoplayButtonIsSetToPlay);
+ this.autoplayButtonIsSetToPlay ? this.pause() : this.play();
+ this.autoplayButtonIsSetToPlay = !this.autoplayButtonIsSetToPlay;
+ }
+
+ focusOutHandling(event) {
+ if (this.sliderAutoplayButton) {
+ const focusedOnAutoplayButton =
+ event.target === this.sliderAutoplayButton || this.sliderAutoplayButton.contains(event.target);
+ if (!this.autoplayButtonIsSetToPlay || focusedOnAutoplayButton) return;
+ this.play();
+ } else if (
+ !this.reducedMotion.matches &&
+ !this.announcementBarArrowButtonWasClicked
+ ) {
+ this.play();
+ }
+ }
+
+ focusInHandling(event) {
+ if (this.sliderAutoplayButton) {
+ const focusedOnAutoplayButton =
+ event.target === this.sliderAutoplayButton || this.sliderAutoplayButton.contains(event.target);
+ if (focusedOnAutoplayButton && this.autoplayButtonIsSetToPlay) {
+ this.play();
+ } else if (this.autoplayButtonIsSetToPlay) {
+ this.pause();
+ }
+ } else if (this.announcementBarSlider.contains(event.target)) {
+ this.pause();
+ }
+ }
+
+ play() {
+ this.slider.setAttribute('aria-live', 'off');
+ clearInterval(this.autoplay);
+ this.autoplay = setInterval(this.autoRotateSlides.bind(this), this.autoplaySpeed);
+ }
+
+ pause() {
+ this.slider.setAttribute('aria-live', 'polite');
+ clearInterval(this.autoplay);
+ }
+
+ togglePlayButtonState(pauseAutoplay) {
+ if (pauseAutoplay) {
+ this.sliderAutoplayButton.classList.add('slideshow__autoplay--paused');
+ this.sliderAutoplayButton.setAttribute('aria-label', window.accessibilityStrings.playSlideshow);
+ } else {
+ this.sliderAutoplayButton.classList.remove('slideshow__autoplay--paused');
+ this.sliderAutoplayButton.setAttribute('aria-label', window.accessibilityStrings.pauseSlideshow);
+ }
+ }
+
+ autoRotateSlides() {
+ const slideScrollPosition =
+ this.currentPage === this.sliderItems.length
+ ? 0
+ : this.slider.scrollLeft + this.sliderItemOffset;
+
+ this.setSlidePosition(slideScrollPosition);
+ this.applyAnimationToAnnouncementBar();
+ }
+
+ setSlideVisibility(event) {
+ this.sliderItemsToShow.forEach((item, index) => {
+ const linkElements = item.querySelectorAll('a');
+ if (index === this.currentPage - 1) {
+ if (linkElements.length)
+ linkElements.forEach((button) => {
+ button.removeAttribute('tabindex');
+ });
+ item.setAttribute('aria-hidden', 'false');
+ item.removeAttribute('tabindex');
+ } else {
+ if (linkElements.length)
+ linkElements.forEach((button) => {
+ button.setAttribute('tabindex', '-1');
+ });
+ item.setAttribute('aria-hidden', 'true');
+ item.setAttribute('tabindex', '-1');
+ }
+ });
+ this.wasClicked = false;
+ }
+
+ applyAnimationToAnnouncementBar(button = 'next') {
+ if (!this.announcementBarSlider) return;
+
+ const itemsCount = this.sliderItems.length;
+ const increment = button === 'next' ? 1 : -1;
+
+ const currentIndex = this.currentPage - 1;
+ let nextIndex = (currentIndex + increment) % itemsCount;
+ nextIndex = nextIndex === -1 ? itemsCount - 1 : nextIndex;
+
+ const nextSlide = this.sliderItems[nextIndex];
+ const currentSlide = this.sliderItems[currentIndex];
+
+ const animationClassIn = 'announcement-bar-slider--fade-in';
+ const animationClassOut = 'announcement-bar-slider--fade-out';
+
+ const isFirstSlide = currentIndex === 0;
+ const isLastSlide = currentIndex === itemsCount - 1;
+
+ const shouldMoveNext = (button === 'next' && !isLastSlide) || (button === 'previous' && isFirstSlide);
+ const direction = shouldMoveNext ? 'next' : 'previous';
+
+ currentSlide.classList.add(`${animationClassOut}-${direction}`);
+ nextSlide.classList.add(`${animationClassIn}-${direction}`);
+
+ setTimeout(() => {
+ currentSlide.classList.remove(`${animationClassOut}-${direction}`);
+ nextSlide.classList.remove(`${animationClassIn}-${direction}`);
+ }, this.announcerBarAnimationDelay * 2);
+ }
+
+ linkToSlide(event) {
+ event.preventDefault();
+ const slideScrollPosition =
+ this.slider.scrollLeft +
+ this.sliderFirstItemNode.clientWidth *
+ (this.sliderControlLinksArray.indexOf(event.currentTarget) + 1 - this.currentPage);
+ this.slider.scrollTo({
+ left: slideScrollPosition,
+ });
+ }
+}
+
+customElements.define('slideshow-component', SlideshowComponent);
+
+class VariantSelects extends HTMLElement {
+ constructor() {
+ super();
+ this.addEventListener('change', this.onVariantChange);
+ }
+
+ onVariantChange() {
+ this.updateOptions();
+ this.updateMasterId();
+ this.toggleAddButton(true, '', false);
+ this.updatePickupAvailability();
+ this.removeErrorMessage();
+ this.updateVariantStatuses();
+
+ if (!this.currentVariant) {
+ this.toggleAddButton(true, '', true);
+ this.setUnavailable();
+ } else {
+ this.updateMedia();
+ this.updateURL();
+ this.updateVariantInput();
+ this.renderProductInfo();
+ this.updateShareUrl();
+ }
+ }
+
+ updateOptions() {
+ this.options = Array.from(this.querySelectorAll('select'), (select) => select.value);
+ }
+
+ updateMasterId() {
+ this.currentVariant = this.getVariantData().find((variant) => {
+ return !variant.options
+ .map((option, index) => {
+ return this.options[index] === option;
+ })
+ .includes(false);
+ });
+ }
+
+ updateMedia() {
+ if (!this.currentVariant) return;
+ if (!this.currentVariant.featured_media) return;
+
+ const mediaGalleries = document.querySelectorAll(`[id^="MediaGallery-${this.dataset.section}"]`);
+ mediaGalleries.forEach((mediaGallery) =>
+ mediaGallery.setActiveMedia(`${this.dataset.section}-${this.currentVariant.featured_media.id}`, true)
+ );
+
+ const modalContent = document.querySelector(`#ProductModal-${this.dataset.section} .product-media-modal__content`);
+ if (!modalContent) return;
+ const newMediaModal = modalContent.querySelector(`[data-media-id="${this.currentVariant.featured_media.id}"]`);
+ modalContent.prepend(newMediaModal);
+ }
+
+ updateURL() {
+ if (!this.currentVariant || this.dataset.updateUrl === 'false') return;
+ window.history.replaceState({}, '', `${this.dataset.url}?variant=${this.currentVariant.id}`);
+ }
+
+ updateShareUrl() {
+ const shareButton = document.getElementById(`Share-${this.dataset.section}`);
+ if (!shareButton || !shareButton.updateUrl) return;
+ shareButton.updateUrl(`${window.shopUrl}${this.dataset.url}?variant=${this.currentVariant.id}`);
+ }
+
+ updateVariantInput() {
+ const productForms = document.querySelectorAll(
+ `#product-form-${this.dataset.section}, #product-form-installment-${this.dataset.section}`
+ );
+ productForms.forEach((productForm) => {
+ const input = productForm.querySelector('input[name="id"]');
+ input.value = this.currentVariant.id;
+ input.dispatchEvent(new Event('change', { bubbles: true }));
+ });
+ }
+
+ updateVariantStatuses() {
+ const selectedOptionOneVariants = this.variantData.filter(
+ (variant) => this.querySelector(':checked').value === variant.option1
+ );
+ const inputWrappers = [...this.querySelectorAll('.product-form__input')];
+ inputWrappers.forEach((option, index) => {
+ if (index === 0) return;
+ const optionInputs = [...option.querySelectorAll('input[type="radio"], option')];
+ const previousOptionSelected = inputWrappers[index - 1].querySelector(':checked').value;
+ const availableOptionInputsValue = selectedOptionOneVariants
+ .filter((variant) => variant.available && variant[`option${index}`] === previousOptionSelected)
+ .map((variantOption) => variantOption[`option${index + 1}`]);
+ this.setInputAvailability(optionInputs, availableOptionInputsValue);
+ });
+ }
+
+ setInputAvailability(listOfOptions, listOfAvailableOptions) {
+ listOfOptions.forEach((input) => {
+ if (listOfAvailableOptions.includes(input.getAttribute('value'))) {
+ input.innerText = input.getAttribute('value');
+ } else {
+ input.innerText = window.variantStrings.unavailable_with_option.replace('[value]', input.getAttribute('value'));
+ }
+ });
+ }
+
+ updatePickupAvailability() {
+ const pickUpAvailability = document.querySelector('pickup-availability');
+ if (!pickUpAvailability) return;
+
+ if (this.currentVariant && this.currentVariant.available) {
+ pickUpAvailability.fetchAvailability(this.currentVariant.id);
+ } else {
+ pickUpAvailability.removeAttribute('available');
+ pickUpAvailability.innerHTML = '';
+ }
+ }
+
+ removeErrorMessage() {
+ const section = this.closest('section');
+ if (!section) return;
+
+ const productForm = section.querySelector('product-form');
+ if (productForm) productForm.handleErrorMessage();
+ }
+
+ renderProductInfo() {
+ const requestedVariantId = this.currentVariant.id;
+ const sectionId = this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section;
+
+ fetch(
+ `${this.dataset.url}?variant=${requestedVariantId}§ion_id=${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section
+ }`
+ )
+ .then((response) => response.text())
+ .then((responseText) => {
+ // prevent unnecessary ui changes from abandoned selections
+ if (this.currentVariant.id !== requestedVariantId) return;
+
+ const html = new DOMParser().parseFromString(responseText, 'text/html');
+ const destination = document.getElementById(`price-${this.dataset.section}`);
+ const source = html.getElementById(
+ `price-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}`
+ );
+ const skuSource = html.getElementById(
+ `Sku-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}`
+ );
+ const skuDestination = document.getElementById(`Sku-${this.dataset.section}`);
+ const inventorySource = html.getElementById(
+ `Inventory-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}`
+ );
+ const inventoryDestination = document.getElementById(`Inventory-${this.dataset.section}`);
+
+ const volumePricingSource = html.getElementById(
+ `Volume-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}`
+ );
+
+ const pricePerItemDestination = document.getElementById(`Price-Per-Item-${this.dataset.section}`);
+ const pricePerItemSource = html.getElementById(`Price-Per-Item-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}`);
+
+ const volumePricingDestination = document.getElementById(`Volume-${this.dataset.section}`);
+ const qtyRules = document.getElementById(`Quantity-Rules-${this.dataset.section}`);
+ const volumeNote = document.getElementById(`Volume-Note-${this.dataset.section}`);
+
+ if (volumeNote) volumeNote.classList.remove('hidden');
+ if (volumePricingDestination) volumePricingDestination.classList.remove('hidden');
+ if (qtyRules) qtyRules.classList.remove('hidden');
+
+ if (source && destination) destination.innerHTML = source.innerHTML;
+ if (inventorySource && inventoryDestination) inventoryDestination.innerHTML = inventorySource.innerHTML;
+ if (skuSource && skuDestination) {
+ skuDestination.innerHTML = skuSource.innerHTML;
+ skuDestination.classList.toggle('hidden', skuSource.classList.contains('hidden'));
+ }
+
+ if (volumePricingSource && volumePricingDestination) {
+ volumePricingDestination.innerHTML = volumePricingSource.innerHTML;
+ }
+
+ if (pricePerItemSource && pricePerItemDestination) {
+ pricePerItemDestination.innerHTML = pricePerItemSource.innerHTML;
+ pricePerItemDestination.classList.toggle('hidden', pricePerItemSource.classList.contains('hidden'));
+ }
+
+ const price = document.getElementById(`price-${this.dataset.section}`);
+
+ if (price) price.classList.remove('hidden');
+
+ if (inventoryDestination)
+ inventoryDestination.classList.toggle('hidden', inventorySource.innerText === '');
+
+ const addButtonUpdated = html.getElementById(`ProductSubmitButton-${sectionId}`);
+ this.toggleAddButton(
+ addButtonUpdated ? addButtonUpdated.hasAttribute('disabled') : true,
+ window.variantStrings.soldOut
+ );
+
+ publish(PUB_SUB_EVENTS.variantChange, {
+ data: {
+ sectionId,
+ html,
+ variant: this.currentVariant,
+ },
+ });
+ });
+ }
+
+ toggleAddButton(disable = true, text, modifyClass = true) {
+ const productForm = document.getElementById(`product-form-${this.dataset.section}`);
+ if (!productForm) return;
+ const addButton = productForm.querySelector('[name="add"]');
+ const addButtonText = productForm.querySelector('[name="add"] > span');
+ if (!addButton) return;
+
+ if (disable) {
+ addButton.setAttribute('disabled', 'disabled');
+ if (text) addButtonText.textContent = text;
+ } else {
+ addButton.removeAttribute('disabled');
+ addButtonText.textContent = window.variantStrings.addToCart;
+ }
+
+ if (!modifyClass) return;
+ }
+
+ setUnavailable() {
+ const button = document.getElementById(`product-form-${this.dataset.section}`);
+ const addButton = button.querySelector('[name="add"]');
+ const addButtonText = button.querySelector('[name="add"] > span');
+ const price = document.getElementById(`price-${this.dataset.section}`);
+ const inventory = document.getElementById(`Inventory-${this.dataset.section}`);
+ const sku = document.getElementById(`Sku-${this.dataset.section}`);
+ const pricePerItem = document.getElementById(`Price-Per-Item-${this.dataset.section}`);
+ const volumeNote = document.getElementById(`Volume-Note-${this.dataset.section}`);
+ const volumeTable = document.getElementById(`Volume-${this.dataset.section}`);
+ const qtyRules = document.getElementById(`Quantity-Rules-${this.dataset.section}`);
+
+ if (!addButton) return;
+ addButtonText.textContent = window.variantStrings.unavailable;
+ if (price) price.classList.add('hidden');
+ if (inventory) inventory.classList.add('hidden');
+ if (sku) sku.classList.add('hidden');
+ if (pricePerItem) pricePerItem.classList.add('hidden');
+ if (volumeNote) volumeNote.classList.add('hidden');
+ if (volumeTable) volumeTable.classList.add('hidden');
+ if (qtyRules) qtyRules.classList.add('hidden');
+ }
+
+ getVariantData() {
+ this.variantData = this.variantData || JSON.parse(this.querySelector('[type="application/json"]').textContent);
+ return this.variantData;
+ }
+}
+
+customElements.define('variant-selects', VariantSelects);
+
+class VariantRadios extends VariantSelects {
+ constructor() {
+ super();
+ }
+
+ setInputAvailability(listOfOptions, listOfAvailableOptions) {
+ listOfOptions.forEach((input) => {
+ if (listOfAvailableOptions.includes(input.getAttribute('value'))) {
+ input.classList.remove('disabled');
+ } else {
+ input.classList.add('disabled');
+ }
+ });
+ }
+
+ updateOptions() {
+ const fieldsets = Array.from(this.querySelectorAll('fieldset'));
+ this.options = fieldsets.map((fieldset) => {
+ return Array.from(fieldset.querySelectorAll('input')).find((radio) => radio.checked).value;
+ });
+ }
+}
+
+customElements.define('variant-radios', VariantRadios);
+
+class ProductRecommendations extends HTMLElement {
+ constructor() {
+ super();
+ }
+
+ connectedCallback() {
+ const handleIntersection = (entries, observer) => {
+ if (!entries[0].isIntersecting) return;
+ observer.unobserve(this);
+
+ fetch(this.dataset.url)
+ .then((response) => response.text())
+ .then((text) => {
+ const html = document.createElement('div');
+ html.innerHTML = text;
+ const recommendations = html.querySelector('product-recommendations');
+
+ if (recommendations && recommendations.innerHTML.trim().length) {
+ this.innerHTML = recommendations.innerHTML;
+ }
+
+ if (!this.querySelector('slideshow-component') && this.classList.contains('complementary-products')) {
+ this.remove();
+ }
+
+ if (html.querySelector('.grid__item')) {
+ this.classList.add('product-recommendations--loaded');
+ }
+ })
+ .catch((e) => {
+ console.error(e);
+ });
+ };
+
+ new IntersectionObserver(handleIntersection.bind(this), { rootMargin: '0px 0px 400px 0px' }).observe(this);
+ }
+}
+
+customElements.define('product-recommendations', ProductRecommendations);
diff --git a/assets/localization-form.js b/assets/localization-form.js
new file mode 100644
index 0000000..997a813
--- /dev/null
+++ b/assets/localization-form.js
@@ -0,0 +1,58 @@
+if (!customElements.get('localization-form')) {
+ customElements.define(
+ 'localization-form',
+ class LocalizationForm extends HTMLElement {
+ constructor() {
+ super();
+ this.elements = {
+ input: this.querySelector('input[name="locale_code"], input[name="country_code"]'),
+ button: this.querySelector('button'),
+ panel: this.querySelector('.disclosure__list-wrapper'),
+ };
+ this.elements.button.addEventListener('click', this.openSelector.bind(this));
+ this.elements.button.addEventListener('focusout', this.closeSelector.bind(this));
+ this.addEventListener('keyup', this.onContainerKeyUp.bind(this));
+
+ this.querySelectorAll('a').forEach((item) => item.addEventListener('click', this.onItemClick.bind(this)));
+ }
+
+ hidePanel() {
+ this.elements.button.setAttribute('aria-expanded', 'false');
+ this.elements.panel.setAttribute('hidden', true);
+ }
+
+ onContainerKeyUp(event) {
+ if (event.code.toUpperCase() !== 'ESCAPE') return;
+
+ if (this.elements.button.getAttribute('aria-expanded') == 'false') return;
+ this.hidePanel();
+ event.stopPropagation();
+ this.elements.button.focus();
+ }
+
+ onItemClick(event) {
+ event.preventDefault();
+ const form = this.querySelector('form');
+ this.elements.input.value = event.currentTarget.dataset.value;
+ if (form) form.submit();
+ }
+
+ openSelector() {
+ this.elements.button.focus();
+ this.elements.panel.toggleAttribute('hidden');
+ this.elements.button.setAttribute(
+ 'aria-expanded',
+ (this.elements.button.getAttribute('aria-expanded') === 'false').toString()
+ );
+ }
+
+ closeSelector(event) {
+ const isChild =
+ this.elements.panel.contains(event.relatedTarget) || this.elements.button.contains(event.relatedTarget);
+ if (!event.relatedTarget || !isChild) {
+ this.hidePanel();
+ }
+ }
+ }
+ );
+}
diff --git a/assets/magnify.js b/assets/magnify.js
new file mode 100644
index 0000000..11359d2
--- /dev/null
+++ b/assets/magnify.js
@@ -0,0 +1,63 @@
+// create a container and set the full-size image as its background
+function createOverlay(image) {
+ const overlayImage = document.createElement('img');
+ overlayImage.setAttribute('src', `${image.src}`);
+ overlay = document.createElement('div');
+ prepareOverlay(overlay, overlayImage);
+
+ image.style.opacity = '50%';
+ toggleLoadingSpinner(image);
+
+ overlayImage.onload = () => {
+ toggleLoadingSpinner(image);
+ image.parentElement.insertBefore(overlay, image);
+ image.style.opacity = '100%';
+ };
+
+ return overlay;
+}
+
+function prepareOverlay(container, image) {
+ container.setAttribute('class', 'image-magnify-full-size');
+ container.setAttribute('aria-hidden', 'true');
+ container.style.backgroundImage = `url('${image.src}')`;
+ container.style.backgroundColor = 'var(--gradient-background)';
+}
+
+function toggleLoadingSpinner(image) {
+ const loadingSpinner = image.parentElement.parentElement.querySelector(`.loading__spinner`);
+ loadingSpinner.classList.toggle('hidden');
+}
+
+function moveWithHover(image, event, zoomRatio) {
+ // calculate mouse position
+ const ratio = image.height / image.width;
+ const container = event.target.getBoundingClientRect();
+ const xPosition = event.clientX - container.left;
+ const yPosition = event.clientY - container.top;
+ const xPercent = `${xPosition / (image.clientWidth / 100)}%`;
+ const yPercent = `${yPosition / ((image.clientWidth * ratio) / 100)}%`;
+
+ // determine what to show in the frame
+ overlay.style.backgroundPosition = `${xPercent} ${yPercent}`;
+ overlay.style.backgroundSize = `${image.width * zoomRatio}px`;
+}
+
+function magnify(image, zoomRatio) {
+ const overlay = createOverlay(image);
+ overlay.onclick = () => overlay.remove();
+ overlay.onmousemove = (event) => moveWithHover(image, event, zoomRatio);
+ overlay.onmouseleave = () => overlay.remove();
+}
+
+function enableZoomOnHover(zoomRatio) {
+ const images = document.querySelectorAll('.image-magnify-hover');
+ images.forEach((image) => {
+ image.onclick = (event) => {
+ magnify(image, zoomRatio);
+ moveWithHover(image, event, zoomRatio);
+ };
+ });
+}
+
+enableZoomOnHover(2);
diff --git a/assets/main-search.js b/assets/main-search.js
new file mode 100644
index 0000000..4e0e432
--- /dev/null
+++ b/assets/main-search.js
@@ -0,0 +1,45 @@
+class MainSearch extends SearchForm {
+ constructor() {
+ super();
+ this.allSearchInputs = document.querySelectorAll('input[type="search"]');
+ this.setupEventListeners();
+ }
+
+ setupEventListeners() {
+ let allSearchForms = [];
+ this.allSearchInputs.forEach((input) => allSearchForms.push(input.form));
+ this.input.addEventListener('focus', this.onInputFocus.bind(this));
+ if (allSearchForms.length < 2) return;
+ allSearchForms.forEach((form) => form.addEventListener('reset', this.onFormReset.bind(this)));
+ this.allSearchInputs.forEach((input) => input.addEventListener('input', this.onInput.bind(this)));
+ }
+
+ onFormReset(event) {
+ super.onFormReset(event);
+ if (super.shouldResetForm()) {
+ this.keepInSync('', this.input);
+ }
+ }
+
+ onInput(event) {
+ const target = event.target;
+ this.keepInSync(target.value, target);
+ }
+
+ onInputFocus() {
+ const isSmallScreen = window.innerWidth < 750;
+ if (isSmallScreen) {
+ this.scrollIntoView({ behavior: 'smooth' });
+ }
+ }
+
+ keepInSync(value, target) {
+ this.allSearchInputs.forEach((input) => {
+ if (input !== target) {
+ input.value = value;
+ }
+ });
+ }
+}
+
+customElements.define('main-search', MainSearch);
diff --git a/assets/mask-blobs.css b/assets/mask-blobs.css
new file mode 100644
index 0000000..a1f5765
--- /dev/null
+++ b/assets/mask-blobs.css
@@ -0,0 +1,8 @@
+:root {
+ --shape--blob-1: 97.686% 33.617%, 98.392% 36.152%, 98.960% 38.721%, 99.398% 41.315%, 99.712% 43.928%, 99.909% 46.552%, 99.995% 49.182%, 99.974% 51.813%, 99.852% 54.441%, 99.630% 57.063%, 99.311% 59.675%, 98.897% 62.274%, 98.389% 64.856%, 97.787% 67.417%, 97.091% 69.955%, 96.299% 72.464%, 95.411% 74.941%, 94.422% 77.379%, 93.329% 79.773%, 92.127% 82.114%, 90.812% 84.393%, 89.377% 86.598%, 87.813% 88.714%, 86.114% 90.723%, 84.272% 92.600%, 82.279% 94.317%, 80.125% 95.828%, 77.832% 97.117%, 75.423% 98.172%, 72.920% 98.983%, 70.352% 99.552%, 67.743% 99.887%, 65.115% 100.000%, 62.485% 99.907%, 59.869% 99.627%, 57.277% 99.176%, 54.717% 98.571%, 52.193% 97.825%, 49.711% 96.954%, 47.271% 95.967%, 44.877% 94.876%, 42.529% 93.689%, 40.227% 92.414%, 37.972% 91.058%, 35.764% 89.626%, 33.604% 88.123%, 31.491% 86.555%, 29.426% 84.924%, 27.410% 83.234%, 25.441% 81.487%, 23.522% 79.687%, 21.651% 77.836%, 19.832% 75.935%, 18.064% 73.986%, 16.350% 71.990%, 14.691% 69.947%, 13.090% 67.859%, 11.549% 65.726%, 10.073% 63.547%, 8.665% 61.324%, 7.331% 59.056%, 6.076% 56.744%, 4.907% 54.386%, 3.832% 51.984%, 2.861% 49.539%, 2.006% 47.050%, 1.280% 44.521%, 0.699% 41.955%, 0.280% 39.358%, 0.044% 36.738%, 0.014% 34.107%, 0.212% 31.484%, 0.660% 28.892%, 1.371% 26.359%, 2.338% 23.913%, 3.540% 21.574%, 4.951% 19.354%, 6.546% 17.261%, 8.300% 15.300%, 10.191% 13.471%, 12.199% 11.771%, 14.307% 10.197%, 16.502% 8.746%, 18.771% 7.414%, 21.104% 6.198%, 23.493% 5.094%, 25.930% 4.101%, 28.408% 3.217%, 30.922% 2.439%, 33.466% 1.768%, 36.036% 1.203%, 38.627% 0.744%, 41.235% 0.394%, 43.855% 0.152%, 46.483% 0.023%, 49.114% 0.008%, 51.744% 0.103%, 54.366% 0.315%, 56.977% 0.648%, 59.569% 1.100%, 62.137% 1.672%, 64.676% 2.363%, 67.179% 3.173%, 69.642% 4.101%, 72.056% 5.147%, 74.416% 6.310%, 76.715% 7.590%, 78.946% 8.985%, 81.102% 10.494%, 83.174% 12.115%, 85.156% 13.846%, 87.039% 15.684%, 88.815% 17.625%, 90.477% 19.664%, 92.017% 21.797%, 93.429% 24.017%, 94.707% 26.318%, 95.844% 28.690%, 96.838% 31.126%, 97.686% 33.617%;
+ --shape--blob-2: 85.349% 11.712%, 87.382% 13.587%, 89.228% 15.647%, 90.886% 17.862%, 92.359% 20.204%, 93.657% 22.647%, 94.795% 25.169%, 95.786% 27.752%, 96.645% 30.382%, 97.387% 33.048%, 98.025% 35.740%, 98.564% 38.454%, 99.007% 41.186%, 99.358% 43.931%, 99.622% 46.685%, 99.808% 49.446%, 99.926% 52.210%, 99.986% 54.977%, 99.999% 57.744%, 99.975% 60.511%, 99.923% 63.278%, 99.821% 66.043%, 99.671% 68.806%, 99.453% 71.565%, 99.145% 74.314%, 98.724% 77.049%, 98.164% 79.759%, 97.433% 82.427%, 96.495% 85.030%, 95.311% 87.529%, 93.841% 89.872%, 92.062% 91.988%, 89.972% 93.796%, 87.635% 95.273%, 85.135% 96.456%, 82.532% 97.393%, 79.864% 98.127%, 77.156% 98.695%, 74.424% 99.129%, 71.676% 99.452%, 68.918% 99.685%, 66.156% 99.844%, 63.390% 99.942%, 60.624% 99.990%, 57.856% 99.999%, 55.089% 99.978%, 52.323% 99.929%, 49.557% 99.847%, 46.792% 99.723%, 44.031% 99.549%, 41.273% 99.317%, 38.522% 99.017%, 35.781% 98.639%, 33.054% 98.170%, 30.347% 97.599%, 27.667% 96.911%, 25.024% 96.091%, 22.432% 95.123%, 19.907% 93.994%, 17.466% 92.690%, 15.126% 91.216%, 12.902% 89.569%, 10.808% 87.761%, 8.854% 85.803%, 7.053% 83.703%, 5.418% 81.471%, 3.962% 79.119%, 2.702% 76.656%, 1.656% 74.095%, 0.846% 71.450%, 0.294% 68.740%, 0.024% 65.987%, 0.050% 63.221%, 0.343% 60.471%, 0.858% 57.752%, 1.548% 55.073%, 2.370% 52.431%, 3.283% 49.819%, 4.253% 47.227%, 5.249% 44.646%, 6.244% 42.063%, 7.211% 39.471%, 8.124% 36.858%, 8.958% 34.220%, 9.711% 31.558%, 10.409% 28.880%, 11.083% 26.196%, 11.760% 23.513%, 12.474% 20.839%, 13.259% 18.186%, 14.156% 15.569%, 15.214% 13.012%, 16.485% 10.556%, 18.028% 8.261%, 19.883% 6.211%, 22.041% 4.484%, 24.440% 3.110%, 26.998% 2.057%, 29.651% 1.275%, 32.360% 0.714%, 35.101% 0.337%, 37.859% 0.110%, 40.624% 0.009%, 43.391% 0.016%, 46.156% 0.113%, 48.918% 0.289%, 51.674% 0.533%, 54.425% 0.837%, 57.166% 1.215%, 59.898% 1.654%, 62.618% 2.163%, 65.322% 2.750%, 68.006% 3.424%, 70.662% 4.197%, 73.284% 5.081%, 75.860% 6.091%, 78.376% 7.242%, 80.813% 8.551%, 83.148% 10.036%, 85.349% 11.712%;
+ --shape--blob-3: 78.621% 12.736%, 80.746% 14.354%, 82.710% 16.163%, 84.520% 18.127%, 86.187% 20.215%, 87.721% 22.401%, 89.134% 24.668%, 90.437% 27.000%, 91.639% 29.386%, 92.748% 31.816%, 93.770% 34.284%, 94.714% 36.783%, 95.583% 39.309%, 96.382% 41.858%, 97.112% 44.428%, 97.770% 47.017%, 98.353% 49.624%, 98.858% 52.248%, 99.279% 54.886%, 99.611% 57.536%, 99.847% 60.197%, 99.977% 62.865%, 99.991% 65.537%, 99.879% 68.205%, 99.626% 70.865%, 99.217% 73.504%, 98.635% 76.111%, 97.863% 78.668%, 96.879% 81.151%, 95.683% 83.538%, 94.291% 85.818%, 92.717% 87.976%, 90.974% 89.999%, 89.075% 91.878%, 87.033% 93.599%, 84.860% 95.151%, 82.567% 96.520%, 80.167% 97.692%, 77.673% 98.647%, 75.100% 99.364%, 72.469% 99.819%, 69.805% 99.997%, 67.136% 99.893%, 64.491% 99.529%, 61.884% 98.946%, 59.324% 98.186%, 56.807% 97.290%, 54.329% 96.293%, 51.880% 95.225%, 49.451% 94.114%, 47.030% 92.984%, 44.607% 91.858%, 42.173% 90.757%, 39.719% 89.701%, 37.245% 88.695%, 34.756% 87.723%, 32.263% 86.763%, 29.775% 85.790%, 27.301% 84.782%, 24.852% 83.715%, 22.441% 82.564%, 20.085% 81.306%, 17.802% 79.919%, 15.615% 78.386%, 13.549% 76.694%, 11.627% 74.839%, 9.875% 72.824%, 8.296% 70.669%, 6.878% 68.406%, 5.612% 66.054%, 4.489% 63.630%, 3.502% 61.148%, 2.645% 58.618%, 1.914% 56.049%, 1.304% 53.448%, 0.812% 50.823%, 0.437% 48.178%, 0.177% 45.519%, 0.033% 42.852%, 0.004% 40.181%, 0.091% 37.511%, 0.299% 34.847%, 0.634% 32.197%, 1.088% 29.565%, 1.657% 26.955%, 2.344% 24.374%, 3.150% 21.827%, 4.078% 19.322%, 5.133% 16.868%, 6.321% 14.475%, 7.651% 12.159%, 9.134% 9.937%, 10.780% 7.835%, 12.604% 5.883%, 14.615% 4.127%, 16.820% 2.622%, 19.214% 1.442%, 21.758% 0.633%, 24.387% 0.168%, 27.052% 0.002%, 29.721% 0.082%, 32.378% 0.357%, 35.016% 0.781%, 37.632% 1.318%, 40.231% 1.936%, 42.817% 2.607%, 45.396% 3.304%, 47.975% 4.002%, 50.561% 4.673%, 53.163% 5.278%, 55.778% 5.822%, 58.401% 6.329%, 61.027% 6.821%, 63.650% 7.326%, 66.264% 7.878%, 68.858% 8.515%, 71.418% 9.281%, 73.919% 10.217%, 76.332% 11.362%, 78.621% 12.736%;
+ --shape--blob-4: 80.628% 3.397%, 82.907% 4.713%, 85.051% 6.239%, 87.055% 7.945%, 88.916% 9.806%, 90.636% 11.799%, 92.213% 13.907%, 93.650% 16.112%, 94.946% 18.403%, 96.102% 20.768%, 97.115% 23.198%, 97.983% 25.683%, 98.702% 28.215%, 99.256% 30.788%, 99.652% 33.390%, 99.898% 36.011%, 99.998% 38.642%, 99.953% 41.274%, 99.765% 43.899%, 99.436% 46.511%, 98.966% 49.101%, 98.355% 51.662%, 97.602% 54.184%, 96.703% 56.658%, 95.658% 59.074%, 94.459% 61.417%, 93.104% 63.674%, 91.610% 65.841%, 89.994% 67.919%, 88.274% 69.912%, 86.469% 71.828%, 84.595% 73.677%, 82.668% 75.471%, 80.701% 77.221%, 78.709% 78.941%, 76.701% 80.644%, 74.690% 82.343%, 72.683% 84.048%, 70.680% 85.756%, 68.669% 87.455%, 66.637% 89.129%, 64.575% 90.765%, 62.468% 92.344%, 60.307% 93.847%, 58.080% 95.251%, 55.778% 96.528%, 53.396% 97.648%, 50.934% 98.576%, 48.398% 99.281%, 45.809% 99.751%, 43.186% 99.976%, 40.555% 99.967%, 37.933% 99.738%, 35.337% 99.303%, 32.781% 98.675%, 30.276% 97.865%, 27.834% 96.884%, 25.462% 95.741%, 23.171% 94.446%, 20.969% 93.004%, 18.866% 91.420%, 16.874% 89.700%, 14.991% 87.861%, 13.220% 85.913%, 11.560% 83.870%, 10.011% 81.742%, 8.574% 79.537%, 7.246% 77.263%, 6.029% 74.929%, 4.921% 72.541%, 3.923% 70.106%, 3.034% 67.628%, 2.256% 65.113%, 1.587% 62.566%, 1.033% 59.993%, 0.595% 57.397%, 0.275% 54.784%, 0.076% 52.159%, 0.001% 49.528%, 0.052% 46.896%, 0.236% 44.270%, 0.556% 41.657%, 1.019% 39.066%, 1.631% 36.506%, 2.398% 33.988%, 3.328% 31.525%, 4.412% 29.127%, 5.654% 26.806%, 7.044% 24.570%, 8.571% 22.426%, 10.224% 20.378%, 11.993% 18.429%, 13.868% 16.581%, 15.840% 14.837%, 17.900% 13.198%, 20.041% 11.666%, 22.255% 10.243%, 24.540% 8.937%, 26.891% 7.752%, 29.296% 6.680%, 31.746% 5.718%, 34.235% 4.860%, 36.755% 4.099%, 39.300% 3.427%, 41.865% 2.833%, 44.444% 2.306%, 47.035% 1.836%, 49.633% 1.412%, 52.237% 1.025%, 54.847% 0.677%, 57.463% 0.383%, 60.086% 0.162%, 62.715% 0.029%, 65.348% 0.006%, 67.978% 0.112%, 70.597% 0.372%, 73.193% 0.808%, 75.747% 1.446%, 78.234% 2.304%, 80.628% 3.397%;
+ --shape--blob-5: 80.452% 2.197%, 82.761% 3.507%, 84.885% 5.101%, 86.818% 6.922%, 88.568% 8.920%, 90.147% 11.056%, 91.569% 13.300%, 92.848% 15.628%, 93.997% 18.023%, 95.026% 20.472%, 95.944% 22.966%, 96.759% 25.494%, 97.476% 28.053%, 98.100% 30.635%, 98.634% 33.238%, 99.082% 35.856%, 99.444% 38.489%, 99.714% 41.132%, 99.893% 43.782%, 99.986% 46.438%, 99.992% 49.094%, 99.909% 51.750%, 99.736% 54.401%, 99.472% 57.045%, 99.113% 59.677%, 98.656% 62.294%, 98.098% 64.892%, 97.435% 67.465%, 96.663% 70.007%, 95.776% 72.511%, 94.769% 74.969%, 93.636% 77.373%, 92.372% 79.709%, 90.970% 81.966%, 89.423% 84.125%, 87.728% 86.170%, 85.898% 88.095%, 83.943% 89.894%, 81.873% 91.560%, 79.701% 93.088%, 77.435% 94.475%, 75.087% 95.718%, 72.666% 96.811%, 70.182% 97.753%, 67.645% 98.540%, 65.063% 99.165%, 62.446% 99.622%, 59.804% 99.904%, 57.150% 100.000%, 54.495% 99.900%, 51.855% 99.607%, 49.242% 99.128%, 46.668% 98.471%, 44.142% 97.651%, 41.669% 96.680%, 39.254% 95.572%, 36.900% 94.342%, 34.605% 93.002%, 32.370% 91.566%, 30.193% 90.044%, 28.067% 88.450%, 25.999% 86.782%, 23.993% 85.040%, 22.054% 83.224%, 20.182% 81.338%, 18.380% 79.387%, 16.644% 77.375%, 14.972% 75.310%, 13.360% 73.198%, 11.802% 71.046%, 10.288% 68.863%, 8.816% 66.651%, 7.404% 64.400%, 6.063% 62.107%, 4.809% 59.765%, 3.656% 57.371%, 2.624% 54.923%, 1.730% 52.421%, 0.998% 49.868%, 0.451% 47.268%, 0.112% 44.634%, 0.000% 41.980%, 0.117% 39.327%, 0.446% 36.691%, 0.976% 34.088%, 1.696% 31.531%, 2.600% 29.033%, 3.682% 26.607%, 4.941% 24.268%, 6.375% 22.032%, 7.986% 19.921%, 9.775% 17.957%, 11.743% 16.173%, 13.876% 14.591%, 16.156% 13.229%, 18.548% 12.073%, 21.017% 11.094%, 23.538% 10.255%, 26.091% 9.521%, 28.664% 8.858%, 31.248% 8.240%, 33.837% 7.642%, 36.426% 7.045%, 39.011% 6.431%, 41.589% 5.787%, 44.157% 5.109%, 46.720% 4.407%, 49.281% 3.701%, 51.846% 3.006%, 54.418% 2.339%, 57.001% 1.717%, 59.598% 1.157%, 62.212% 0.680%, 64.842% 0.309%, 67.488% 0.072%, 70.144% 0.002%, 72.797% 0.137%, 75.424% 0.521%, 77.992% 1.197%, 80.452% 2.197%;
+ --shape--blob-6: 71.914% 1.829%, 74.287% 2.884%, 76.559% 4.144%, 78.723% 5.581%, 80.777% 7.171%, 82.721% 8.894%, 84.557% 10.733%, 86.284% 12.673%, 87.906% 14.703%, 89.423% 16.812%, 90.838% 18.991%, 92.151% 21.233%, 93.364% 23.531%, 94.477% 25.878%, 95.492% 28.270%, 96.406% 30.702%, 97.222% 33.169%, 97.938% 35.666%, 98.555% 38.190%, 99.069% 40.737%, 99.476% 43.303%, 99.771% 45.884%, 99.948% 48.476%, 99.999% 51.073%, 99.914% 53.670%, 99.680% 56.257%, 99.287% 58.825%, 98.717% 61.360%, 97.957% 63.844%, 96.984% 66.252%, 95.807% 68.567%, 94.448% 70.781%, 92.930% 72.889%, 91.273% 74.890%, 89.499% 76.788%, 87.625% 78.587%, 85.668% 80.296%, 83.642% 81.923%, 81.560% 83.477%, 79.431% 84.967%, 77.266% 86.402%, 75.071% 87.793%, 72.854% 89.148%, 70.624% 90.481%, 68.375% 91.783%, 66.103% 93.044%, 63.803% 94.253%, 61.470% 95.396%, 59.100% 96.459%, 56.688% 97.425%, 54.232% 98.272%, 51.732% 98.978%, 49.190% 99.518%, 46.616% 99.866%, 44.022% 99.999%, 41.427% 99.904%, 38.848% 99.589%, 36.304% 99.067%, 33.806% 98.353%, 31.365% 97.465%, 28.988% 96.417%, 26.680% 95.223%, 24.446% 93.897%, 22.289% 92.450%, 20.209% 90.892%, 18.210% 89.233%, 16.286% 87.487%, 14.442% 85.656%, 12.685% 83.743%, 11.018% 81.750%, 9.446% 79.682%, 7.974% 77.541%, 6.608% 75.331%, 5.354% 73.056%, 4.218% 70.719%, 3.208% 68.325%, 2.331% 65.880%, 1.594% 63.389%, 0.996% 60.861%, 0.535% 58.304%, 0.216% 55.726%, 0.039% 53.134%, 0.005% 50.536%, 0.119% 47.941%, 0.385% 45.356%, 0.814% 42.794%, 1.416% 40.267%, 2.207% 37.793%, 3.204% 35.394%, 4.427% 33.103%, 5.887% 30.956%, 7.572% 28.979%, 9.454% 27.190%, 11.490% 25.576%, 13.637% 24.114%, 15.862% 22.773%, 18.137% 21.517%, 20.438% 20.310%, 22.744% 19.113%, 25.034% 17.885%, 27.285% 16.589%, 29.485% 15.207%, 31.628% 13.738%, 33.730% 12.210%, 35.812% 10.656%, 37.898% 9.106%, 40.011% 7.595%, 42.174% 6.156%, 44.403% 4.820%, 46.707% 3.621%, 49.090% 2.587%, 51.535% 1.709%, 54.034% 0.998%, 56.576% 0.466%, 59.152% 0.129%, 61.746% 0.001%, 64.342% 0.097%, 66.918% 0.430%, 69.450% 1.007%, 71.914% 1.829%;
+}
diff --git a/assets/media-gallery.js b/assets/media-gallery.js
new file mode 100644
index 0000000..5b2520f
--- /dev/null
+++ b/assets/media-gallery.js
@@ -0,0 +1,108 @@
+if (!customElements.get('media-gallery')) {
+ customElements.define(
+ 'media-gallery',
+ class MediaGallery extends HTMLElement {
+ constructor() {
+ super();
+ this.elements = {
+ liveRegion: this.querySelector('[id^="GalleryStatus"]'),
+ viewer: this.querySelector('[id^="GalleryViewer"]'),
+ thumbnails: this.querySelector('[id^="GalleryThumbnails"]'),
+ };
+ this.mql = window.matchMedia('(min-width: 750px)');
+ if (!this.elements.thumbnails) return;
+
+ this.elements.viewer.addEventListener('slideChanged', debounce(this.onSlideChanged.bind(this), 500));
+ this.elements.thumbnails.querySelectorAll('[data-target]').forEach((mediaToSwitch) => {
+ mediaToSwitch
+ .querySelector('button')
+ .addEventListener('click', this.setActiveMedia.bind(this, mediaToSwitch.dataset.target, false));
+ });
+ if (this.dataset.desktopLayout.includes('thumbnail') && this.mql.matches) this.removeListSemantic();
+ }
+
+ onSlideChanged(event) {
+ const thumbnail = this.elements.thumbnails.querySelector(
+ `[data-target="${event.detail.currentElement.dataset.mediaId}"]`
+ );
+ this.setActiveThumbnail(thumbnail);
+ }
+
+ setActiveMedia(mediaId, prepend) {
+ const activeMedia = this.elements.viewer.querySelector(`[data-media-id="${mediaId}"]`);
+ this.elements.viewer.querySelectorAll('[data-media-id]').forEach((element) => {
+ element.classList.remove('is-active');
+ });
+ activeMedia.classList.add('is-active');
+
+ if (prepend) {
+ activeMedia.parentElement.prepend(activeMedia);
+ if (this.elements.thumbnails) {
+ const activeThumbnail = this.elements.thumbnails.querySelector(`[data-target="${mediaId}"]`);
+ activeThumbnail.parentElement.prepend(activeThumbnail);
+ }
+ if (this.elements.viewer.slider) this.elements.viewer.resetPages();
+ }
+
+ this.preventStickyHeader();
+ window.setTimeout(() => {
+ if (this.elements.thumbnails) {
+ activeMedia.parentElement.scrollTo({ left: activeMedia.offsetLeft });
+ }
+ if (!this.elements.thumbnails || this.dataset.desktopLayout === 'stacked') {
+ activeMedia.scrollIntoView({ behavior: 'smooth' });
+ }
+ });
+ this.playActiveMedia(activeMedia);
+
+ if (!this.elements.thumbnails) return;
+ const activeThumbnail = this.elements.thumbnails.querySelector(`[data-target="${mediaId}"]`);
+ this.setActiveThumbnail(activeThumbnail);
+ this.announceLiveRegion(activeMedia, activeThumbnail.dataset.mediaPosition);
+ }
+
+ setActiveThumbnail(thumbnail) {
+ if (!this.elements.thumbnails || !thumbnail) return;
+
+ this.elements.thumbnails
+ .querySelectorAll('button')
+ .forEach((element) => element.removeAttribute('aria-current'));
+ thumbnail.querySelector('button').setAttribute('aria-current', true);
+ if (this.elements.thumbnails.isSlideVisible(thumbnail, 10)) return;
+
+ this.elements.thumbnails.slider.scrollTo({ left: thumbnail.offsetLeft });
+ }
+
+ announceLiveRegion(activeItem, position) {
+ const image = activeItem.querySelector('.product__modal-opener--image img');
+ if (!image) return;
+ image.onload = () => {
+ this.elements.liveRegion.setAttribute('aria-hidden', false);
+ this.elements.liveRegion.innerHTML = window.accessibilityStrings.imageAvailable.replace('[index]', position);
+ setTimeout(() => {
+ this.elements.liveRegion.setAttribute('aria-hidden', true);
+ }, 2000);
+ };
+ image.src = image.src;
+ }
+
+ playActiveMedia(activeItem) {
+ window.pauseAllMedia();
+ const deferredMedia = activeItem.querySelector('.deferred-media');
+ if (deferredMedia) deferredMedia.loadContent(false);
+ }
+
+ preventStickyHeader() {
+ this.stickyHeader = this.stickyHeader || document.querySelector('sticky-header');
+ if (!this.stickyHeader) return;
+ this.stickyHeader.dispatchEvent(new Event('preventHeaderReveal'));
+ }
+
+ removeListSemantic() {
+ if (!this.elements.viewer.slider) return;
+ this.elements.viewer.slider.setAttribute('role', 'presentation');
+ this.elements.viewer.sliderItems.forEach((slide) => slide.setAttribute('role', 'presentation'));
+ }
+ }
+ );
+}
diff --git a/assets/newsletter-section.css b/assets/newsletter-section.css
new file mode 100644
index 0000000..c84eb9f
--- /dev/null
+++ b/assets/newsletter-section.css
@@ -0,0 +1,50 @@
+.newsletter__wrapper {
+ padding-right: calc(4rem / var(--font-body-scale));
+ padding-left: calc(4rem / var(--font-body-scale));
+}
+
+@media screen and (min-width: 750px) {
+ .newsletter__wrapper {
+ padding-right: 9rem;
+ padding-left: 9rem;
+ }
+}
+
+.newsletter__wrapper > * {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.newsletter__wrapper > * + * {
+ margin-top: 2rem;
+}
+
+.newsletter__wrapper > * + .newsletter-form {
+ margin-top: 3rem;
+}
+
+.newsletter__subheading {
+ max-width: 70rem;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.newsletter__wrapper .newsletter-form__field-wrapper {
+ max-width: 36rem;
+}
+
+.newsletter-form__field-wrapper .newsletter-form__message {
+ margin-top: 1.5rem;
+}
+
+.newsletter__button {
+ margin-top: 3rem;
+ width: fit-content;
+}
+
+@media screen and (min-width: 750px) {
+ .newsletter__button {
+ flex-shrink: 0;
+ margin: 0 0 0 1rem;
+ }
+}
diff --git a/assets/password-modal.js b/assets/password-modal.js
new file mode 100644
index 0000000..9df18f4
--- /dev/null
+++ b/assets/password-modal.js
@@ -0,0 +1,9 @@
+class PasswordModal extends DetailsModal {
+ constructor() {
+ super();
+
+ if (this.querySelector('input[aria-invalid="true"]')) this.open({ target: this.querySelector('details') });
+ }
+}
+
+customElements.define('password-modal', PasswordModal);
diff --git a/assets/pickup-availability.js b/assets/pickup-availability.js
new file mode 100644
index 0000000..56c6f71
--- /dev/null
+++ b/assets/pickup-availability.js
@@ -0,0 +1,121 @@
+if (!customElements.get('pickup-availability')) {
+ customElements.define(
+ 'pickup-availability',
+ class PickupAvailability extends HTMLElement {
+ constructor() {
+ super();
+
+ if (!this.hasAttribute('available')) return;
+
+ this.errorHtml = this.querySelector('template').content.firstElementChild.cloneNode(true);
+ this.onClickRefreshList = this.onClickRefreshList.bind(this);
+ this.fetchAvailability(this.dataset.variantId);
+ }
+
+ fetchAvailability(variantId) {
+ let rootUrl = this.dataset.rootUrl;
+ if (!rootUrl.endsWith('/')) {
+ rootUrl = rootUrl + '/';
+ }
+ const variantSectionUrl = `${rootUrl}variants/${variantId}/?section_id=pickup-availability`;
+
+ fetch(variantSectionUrl)
+ .then((response) => response.text())
+ .then((text) => {
+ const sectionInnerHTML = new DOMParser()
+ .parseFromString(text, 'text/html')
+ .querySelector('.shopify-section');
+ this.renderPreview(sectionInnerHTML);
+ })
+ .catch((e) => {
+ const button = this.querySelector('button');
+ if (button) button.removeEventListener('click', this.onClickRefreshList);
+ this.renderError();
+ });
+ }
+
+ onClickRefreshList(evt) {
+ this.fetchAvailability(this.dataset.variantId);
+ }
+
+ renderError() {
+ this.innerHTML = '';
+ this.appendChild(this.errorHtml);
+
+ this.querySelector('button').addEventListener('click', this.onClickRefreshList);
+ }
+
+ renderPreview(sectionInnerHTML) {
+ const drawer = document.querySelector('pickup-availability-drawer');
+ if (drawer) drawer.remove();
+ if (!sectionInnerHTML.querySelector('pickup-availability-preview')) {
+ this.innerHTML = '';
+ this.removeAttribute('available');
+ return;
+ }
+
+ this.innerHTML = sectionInnerHTML.querySelector('pickup-availability-preview').outerHTML;
+ this.setAttribute('available', '');
+
+ document.body.appendChild(sectionInnerHTML.querySelector('pickup-availability-drawer'));
+ const colorClassesToApply = this.dataset.productPageColorScheme.split(' ');
+ colorClassesToApply.forEach((colorClass) => {
+ document.querySelector('pickup-availability-drawer').classList.add(colorClass);
+ });
+
+ const button = this.querySelector('button');
+ if (button)
+ button.addEventListener('click', (evt) => {
+ document.querySelector('pickup-availability-drawer').show(evt.target);
+ });
+ }
+ }
+ );
+}
+
+if (!customElements.get('pickup-availability-drawer')) {
+ customElements.define(
+ 'pickup-availability-drawer',
+ class PickupAvailabilityDrawer extends HTMLElement {
+ constructor() {
+ super();
+
+ this.onBodyClick = this.handleBodyClick.bind(this);
+
+ this.querySelector('button').addEventListener('click', () => {
+ this.hide();
+ });
+
+ this.addEventListener('keyup', (event) => {
+ if (event.code.toUpperCase() === 'ESCAPE') this.hide();
+ });
+ }
+
+ handleBodyClick(evt) {
+ const target = evt.target;
+ if (
+ target != this &&
+ !target.closest('pickup-availability-drawer') &&
+ target.id != 'ShowPickupAvailabilityDrawer'
+ ) {
+ this.hide();
+ }
+ }
+
+ hide() {
+ this.removeAttribute('open');
+ document.body.removeEventListener('click', this.onBodyClick);
+ document.body.classList.remove('overflow-hidden');
+ removeTrapFocus(this.focusElement);
+ }
+
+ show(focusElement) {
+ this.focusElement = focusElement;
+ this.setAttribute('open', '');
+ document.body.addEventListener('click', this.onBodyClick);
+ document.body.classList.add('overflow-hidden');
+ trapFocus(this);
+ }
+ }
+ );
+}
diff --git a/assets/predictive-search.js b/assets/predictive-search.js
new file mode 100644
index 0000000..ed33c07
--- /dev/null
+++ b/assets/predictive-search.js
@@ -0,0 +1,277 @@
+class PredictiveSearch extends SearchForm {
+ constructor() {
+ super();
+ this.cachedResults = {};
+ this.predictiveSearchResults = this.querySelector('[data-predictive-search]');
+ this.allPredictiveSearchInstances = document.querySelectorAll('predictive-search');
+ this.isOpen = false;
+ this.abortController = new AbortController();
+ this.searchTerm = '';
+
+ this.setupEventListeners();
+ }
+
+ setupEventListeners() {
+ this.input.form.addEventListener('submit', this.onFormSubmit.bind(this));
+
+ this.input.addEventListener('focus', this.onFocus.bind(this));
+ this.addEventListener('focusout', this.onFocusOut.bind(this));
+ this.addEventListener('keyup', this.onKeyup.bind(this));
+ this.addEventListener('keydown', this.onKeydown.bind(this));
+ }
+
+ getQuery() {
+ return this.input.value.trim();
+ }
+
+ onChange() {
+ super.onChange();
+ const newSearchTerm = this.getQuery();
+ if (!this.searchTerm || !newSearchTerm.startsWith(this.searchTerm)) {
+ // Remove the results when they are no longer relevant for the new search term
+ // so they don't show up when the dropdown opens again
+ this.querySelector('#predictive-search-results-groups-wrapper')?.remove();
+ }
+
+ // Update the term asap, don't wait for the predictive search query to finish loading
+ this.updateSearchForTerm(this.searchTerm, newSearchTerm);
+
+ this.searchTerm = newSearchTerm;
+
+ if (!this.searchTerm.length) {
+ this.close(true);
+ return;
+ }
+
+ this.getSearchResults(this.searchTerm);
+ }
+
+ onFormSubmit(event) {
+ if (!this.getQuery().length || this.querySelector('[aria-selected="true"] a')) event.preventDefault();
+ }
+
+ onFormReset(event) {
+ super.onFormReset(event);
+ if (super.shouldResetForm()) {
+ this.searchTerm = '';
+ this.abortController.abort();
+ this.abortController = new AbortController();
+ this.closeResults(true);
+ }
+ }
+
+ onFocus() {
+ const currentSearchTerm = this.getQuery();
+
+ if (!currentSearchTerm.length) return;
+
+ if (this.searchTerm !== currentSearchTerm) {
+ // Search term was changed from other search input, treat it as a user change
+ this.onChange();
+ } else if (this.getAttribute('results') === 'true') {
+ this.open();
+ } else {
+ this.getSearchResults(this.searchTerm);
+ }
+ }
+
+ onFocusOut() {
+ setTimeout(() => {
+ if (!this.contains(document.activeElement)) this.close();
+ });
+ }
+
+ onKeyup(event) {
+ if (!this.getQuery().length) this.close(true);
+ event.preventDefault();
+
+ switch (event.code) {
+ case 'ArrowUp':
+ this.switchOption('up');
+ break;
+ case 'ArrowDown':
+ this.switchOption('down');
+ break;
+ case 'Enter':
+ this.selectOption();
+ break;
+ }
+ }
+
+ onKeydown(event) {
+ // Prevent the cursor from moving in the input when using the up and down arrow keys
+ if (event.code === 'ArrowUp' || event.code === 'ArrowDown') {
+ event.preventDefault();
+ }
+ }
+
+ updateSearchForTerm(previousTerm, newTerm) {
+ const searchForTextElement = this.querySelector('[data-predictive-search-search-for-text]');
+ const currentButtonText = searchForTextElement?.innerText;
+ if (currentButtonText) {
+ if (currentButtonText.match(new RegExp(previousTerm, 'g')).length > 1) {
+ // The new term matches part of the button text and not just the search term, do not replace to avoid mistakes
+ return;
+ }
+ const newButtonText = currentButtonText.replace(previousTerm, newTerm);
+ searchForTextElement.innerText = newButtonText;
+ }
+ }
+
+ switchOption(direction) {
+ if (!this.getAttribute('open')) return;
+
+ const moveUp = direction === 'up';
+ const selectedElement = this.querySelector('[aria-selected="true"]');
+
+ // Filter out hidden elements (duplicated page and article resources) thanks
+ // to this https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetParent
+ const allVisibleElements = Array.from(this.querySelectorAll('li, button.predictive-search__item')).filter(
+ (element) => element.offsetParent !== null
+ );
+ let activeElementIndex = 0;
+
+ if (moveUp && !selectedElement) return;
+
+ let selectedElementIndex = -1;
+ let i = 0;
+
+ while (selectedElementIndex === -1 && i <= allVisibleElements.length) {
+ if (allVisibleElements[i] === selectedElement) {
+ selectedElementIndex = i;
+ }
+ i++;
+ }
+
+ this.statusElement.textContent = '';
+
+ if (!moveUp && selectedElement) {
+ activeElementIndex = selectedElementIndex === allVisibleElements.length - 1 ? 0 : selectedElementIndex + 1;
+ } else if (moveUp) {
+ activeElementIndex = selectedElementIndex === 0 ? allVisibleElements.length - 1 : selectedElementIndex - 1;
+ }
+
+ if (activeElementIndex === selectedElementIndex) return;
+
+ const activeElement = allVisibleElements[activeElementIndex];
+
+ activeElement.setAttribute('aria-selected', true);
+ if (selectedElement) selectedElement.setAttribute('aria-selected', false);
+
+ this.input.setAttribute('aria-activedescendant', activeElement.id);
+ }
+
+ selectOption() {
+ const selectedOption = this.querySelector('[aria-selected="true"] a, button[aria-selected="true"]');
+
+ if (selectedOption) selectedOption.click();
+ }
+
+ getSearchResults(searchTerm) {
+ const queryKey = searchTerm.replace(' ', '-').toLowerCase();
+ this.setLiveRegionLoadingState();
+
+ if (this.cachedResults[queryKey]) {
+ this.renderSearchResults(this.cachedResults[queryKey]);
+ return;
+ }
+
+ fetch(`${routes.predictive_search_url}?q=${encodeURIComponent(searchTerm)}§ion_id=predictive-search`, {
+ signal: this.abortController.signal,
+ })
+ .then((response) => {
+ if (!response.ok) {
+ var error = new Error(response.status);
+ this.close();
+ throw error;
+ }
+
+ return response.text();
+ })
+ .then((text) => {
+ const resultsMarkup = new DOMParser()
+ .parseFromString(text, 'text/html')
+ .querySelector('#shopify-section-predictive-search').innerHTML;
+ // Save bandwidth keeping the cache in all instances synced
+ this.allPredictiveSearchInstances.forEach((predictiveSearchInstance) => {
+ predictiveSearchInstance.cachedResults[queryKey] = resultsMarkup;
+ });
+ this.renderSearchResults(resultsMarkup);
+ })
+ .catch((error) => {
+ if (error?.code === 20) {
+ // Code 20 means the call was aborted
+ return;
+ }
+ this.close();
+ throw error;
+ });
+ }
+
+ setLiveRegionLoadingState() {
+ this.statusElement = this.statusElement || this.querySelector('.predictive-search-status');
+ this.loadingText = this.loadingText || this.getAttribute('data-loading-text');
+
+ this.setLiveRegionText(this.loadingText);
+ this.setAttribute('loading', true);
+ }
+
+ setLiveRegionText(statusText) {
+ this.statusElement.setAttribute('aria-hidden', 'false');
+ this.statusElement.textContent = statusText;
+
+ setTimeout(() => {
+ this.statusElement.setAttribute('aria-hidden', 'true');
+ }, 1000);
+ }
+
+ renderSearchResults(resultsMarkup) {
+ this.predictiveSearchResults.innerHTML = resultsMarkup;
+ this.setAttribute('results', true);
+
+ this.setLiveRegionResults();
+ this.open();
+ }
+
+ setLiveRegionResults() {
+ this.removeAttribute('loading');
+ this.setLiveRegionText(this.querySelector('[data-predictive-search-live-region-count-value]').textContent);
+ }
+
+ getResultsMaxHeight() {
+ this.resultsMaxHeight =
+ window.innerHeight - document.querySelector('.section-header').getBoundingClientRect().bottom;
+ return this.resultsMaxHeight;
+ }
+
+ open() {
+ this.predictiveSearchResults.style.maxHeight = this.resultsMaxHeight || `${this.getResultsMaxHeight()}px`;
+ this.setAttribute('open', true);
+ this.input.setAttribute('aria-expanded', true);
+ this.isOpen = true;
+ }
+
+ close(clearSearchTerm = false) {
+ this.closeResults(clearSearchTerm);
+ this.isOpen = false;
+ }
+
+ closeResults(clearSearchTerm = false) {
+ if (clearSearchTerm) {
+ this.input.value = '';
+ this.removeAttribute('results');
+ }
+ const selected = this.querySelector('[aria-selected="true"]');
+
+ if (selected) selected.setAttribute('aria-selected', false);
+
+ this.input.setAttribute('aria-activedescendant', '');
+ this.removeAttribute('loading');
+ this.removeAttribute('open');
+ this.input.setAttribute('aria-expanded', false);
+ this.resultsMaxHeight = false;
+ this.predictiveSearchResults.removeAttribute('style');
+ }
+}
+
+customElements.define('predictive-search', PredictiveSearch);
diff --git a/assets/price-per-item.js b/assets/price-per-item.js
new file mode 100644
index 0000000..fdf37eb
--- /dev/null
+++ b/assets/price-per-item.js
@@ -0,0 +1,103 @@
+if (!customElements.get('price-per-item')) {
+ customElements.define(
+ 'price-per-item',
+ class PricePerItem extends HTMLElement {
+ constructor() {
+ super();
+ this.variantId = this.dataset.variantId;
+ this.input = document.getElementById(`Quantity-${this.dataset.sectionId || this.dataset.variantId}`);
+ if (this.input) {
+ this.input.addEventListener('change', this.onInputChange.bind(this));
+ }
+
+ this.getVolumePricingArray();
+ }
+
+ updatePricePerItemUnsubscriber = undefined;
+ variantIdChangedUnsubscriber = undefined;
+
+ connectedCallback() {
+ // Update variantId if variant is switched on product page
+ this.variantIdChangedUnsubscriber = subscribe(PUB_SUB_EVENTS.variantChange, (event) => {
+ this.variantId = event.data.variant.id.toString();
+ this.getVolumePricingArray();
+ });
+
+ this.updatePricePerItemUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (response) => {
+ if (!response.cartData) return;
+
+ // Item was added to cart via product page
+ if (response.cartData['variant_id'] !== undefined) {
+ if (response.productVariantId === this.variantId) this.updatePricePerItem(response.cartData.quantity);
+ // Qty was updated in cart
+ } else if (response.cartData.item_count !== 0) {
+ const isVariant = response.cartData.items.find((item) => item.variant_id.toString() === this.variantId);
+ if (isVariant && isVariant.id.toString() === this.variantId) {
+ // The variant is still in cart
+ this.updatePricePerItem(isVariant.quantity);
+ } else {
+ // The variant was removed from cart, qty is 0
+ this.updatePricePerItem(0);
+ }
+ // All items were removed from cart
+ } else {
+ this.updatePricePerItem(0);
+ }
+ });
+ }
+
+ disconnectedCallback() {
+ if (this.updatePricePerItemUnsubscriber) {
+ this.updatePricePerItemUnsubscriber();
+ }
+ if (this.variantIdChangedUnsubscriber) {
+ this.variantIdChangedUnsubscriber();
+ }
+ }
+
+ onInputChange() {
+ this.updatePricePerItem();
+ }
+
+ updatePricePerItem(updatedCartQuantity) {
+ if (this.input) {
+ this.enteredQty = parseInt(this.input.value);
+ this.step = parseInt(this.input.step)
+ }
+
+ // updatedCartQuantity is undefined when qty is updated on product page. We need to sum entered qty and current qty in cart.
+ // updatedCartQuantity is not undefined when qty is updated in cart. We need to sum qty in cart and min qty for product.
+ this.currentQtyForVolumePricing = updatedCartQuantity === undefined ? this.getCartQuantity(updatedCartQuantity) + this.enteredQty : this.getCartQuantity(updatedCartQuantity) + parseInt(this.step);
+
+ if (this.classList.contains('variant-item__price-per-item')) {
+ this.currentQtyForVolumePricing = this.getCartQuantity(updatedCartQuantity);
+ }
+ for (let pair of this.qtyPricePairs) {
+ if (this.currentQtyForVolumePricing >= pair[0]) {
+ const pricePerItemCurrent = document.querySelector(`price-per-item[id^="Price-Per-Item-${this.dataset.sectionId || this.dataset.variantId}"] .price-per-item span`);
+ this.classList.contains('variant-item__price-per-item') ? pricePerItemCurrent.innerHTML = window.quickOrderListStrings.each.replace('[money]', pair[1]) : pricePerItemCurrent.innerHTML = pair[1];
+ break;
+ }
+ }
+ }
+
+ getCartQuantity(updatedCartQuantity) {
+ return (updatedCartQuantity || updatedCartQuantity === 0) ? updatedCartQuantity : parseInt(this.input.dataset.cartQuantity);
+ }
+
+ getVolumePricingArray() {
+ const volumePricing = document.getElementById(`Volume-${this.dataset.sectionId || this.dataset.variantId}`);
+ this.qtyPricePairs = [];
+
+ if (volumePricing) {
+ volumePricing.querySelectorAll('li').forEach(li => {
+ const qty = parseInt(li.querySelector('span:first-child').textContent);
+ const price = (li.querySelector('span:not(:first-child):last-child').dataset.text);
+ this.qtyPricePairs.push([qty, price]);
+ });
+ }
+ this.qtyPricePairs.reverse();
+ }
+ }
+ );
+}
diff --git a/assets/product-form.js b/assets/product-form.js
new file mode 100644
index 0000000..da18647
--- /dev/null
+++ b/assets/product-form.js
@@ -0,0 +1,118 @@
+if (!customElements.get('product-form')) {
+ customElements.define(
+ 'product-form',
+ class ProductForm extends HTMLElement {
+ constructor() {
+ super();
+
+ this.form = this.querySelector('form');
+ this.form.querySelector('[name=id]').disabled = false;
+ this.form.addEventListener('submit', this.onSubmitHandler.bind(this));
+ this.cart = document.querySelector('cart-notification') || document.querySelector('cart-drawer');
+ this.submitButton = this.querySelector('[type="submit"]');
+
+ if (document.querySelector('cart-drawer')) this.submitButton.setAttribute('aria-haspopup', 'dialog');
+
+ this.hideErrors = this.dataset.hideErrors === 'true';
+ }
+
+ onSubmitHandler(evt) {
+ evt.preventDefault();
+ if (this.submitButton.getAttribute('aria-disabled') === 'true') return;
+
+ this.handleErrorMessage();
+
+ this.submitButton.setAttribute('aria-disabled', true);
+ this.submitButton.classList.add('loading');
+ this.querySelector('.loading__spinner').classList.remove('hidden');
+
+ const config = fetchConfig('javascript');
+ config.headers['X-Requested-With'] = 'XMLHttpRequest';
+ delete config.headers['Content-Type'];
+
+ const formData = new FormData(this.form);
+ if (this.cart) {
+ formData.append(
+ 'sections',
+ this.cart.getSectionsToRender().map((section) => section.id)
+ );
+ formData.append('sections_url', window.location.pathname);
+ this.cart.setActiveElement(document.activeElement);
+ }
+ config.body = formData;
+
+ fetch(`${routes.cart_add_url}`, config)
+ .then((response) => response.json())
+ .then((response) => {
+ if (response.status) {
+ publish(PUB_SUB_EVENTS.cartError, {
+ source: 'product-form',
+ productVariantId: formData.get('id'),
+ errors: response.errors || response.description,
+ message: response.message,
+ });
+ this.handleErrorMessage(response.description);
+
+ const soldOutMessage = this.submitButton.querySelector('.sold-out-message');
+ if (!soldOutMessage) return;
+ this.submitButton.setAttribute('aria-disabled', true);
+ this.submitButton.querySelector('span').classList.add('hidden');
+ soldOutMessage.classList.remove('hidden');
+ this.error = true;
+ return;
+ } else if (!this.cart) {
+ window.location = window.routes.cart_url;
+ return;
+ }
+
+ if (!this.error)
+ publish(PUB_SUB_EVENTS.cartUpdate, {
+ source: 'product-form',
+ productVariantId: formData.get('id'),
+ cartData: response,
+ });
+ this.error = false;
+ const quickAddModal = this.closest('quick-add-modal');
+ if (quickAddModal) {
+ document.body.addEventListener(
+ 'modalClosed',
+ () => {
+ setTimeout(() => {
+ this.cart.renderContents(response);
+ });
+ },
+ { once: true }
+ );
+ quickAddModal.hide(true);
+ } else {
+ this.cart.renderContents(response);
+ }
+ })
+ .catch((e) => {
+ console.error(e);
+ })
+ .finally(() => {
+ this.submitButton.classList.remove('loading');
+ if (this.cart && this.cart.classList.contains('is-empty')) this.cart.classList.remove('is-empty');
+ if (!this.error) this.submitButton.removeAttribute('aria-disabled');
+ this.querySelector('.loading__spinner').classList.add('hidden');
+ });
+ }
+
+ handleErrorMessage(errorMessage = false) {
+ if (this.hideErrors) return;
+
+ this.errorMessageWrapper =
+ this.errorMessageWrapper || this.querySelector('.product-form__error-message-wrapper');
+ if (!this.errorMessageWrapper) return;
+ this.errorMessage = this.errorMessage || this.errorMessageWrapper.querySelector('.product-form__error-message');
+
+ this.errorMessageWrapper.toggleAttribute('hidden', !errorMessage);
+
+ if (errorMessage) {
+ this.errorMessage.textContent = errorMessage;
+ }
+ }
+ }
+ );
+}
diff --git a/assets/product-info.js b/assets/product-info.js
new file mode 100644
index 0000000..c78c371
--- /dev/null
+++ b/assets/product-info.js
@@ -0,0 +1,100 @@
+if (!customElements.get('product-info')) {
+ customElements.define(
+ 'product-info',
+ class ProductInfo extends HTMLElement {
+ constructor() {
+ super();
+ this.input = this.querySelector('.quantity__input');
+ this.currentVariant = this.querySelector('.product-variant-id');
+ this.variantSelects = this.querySelector('variant-radios');
+ this.submitButton = this.querySelector('[type="submit"]');
+ }
+
+ cartUpdateUnsubscriber = undefined;
+ variantChangeUnsubscriber = undefined;
+
+ connectedCallback() {
+ if (!this.input) return;
+ this.quantityForm = this.querySelector('.product-form__quantity');
+ if (!this.quantityForm) return;
+ this.setQuantityBoundries();
+ if (!this.dataset.originalSection) {
+ this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, this.fetchQuantityRules.bind(this));
+ }
+ this.variantChangeUnsubscriber = subscribe(PUB_SUB_EVENTS.variantChange, (event) => {
+ const sectionId = this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section;
+ if (event.data.sectionId !== sectionId) return;
+ this.updateQuantityRules(event.data.sectionId, event.data.html);
+ this.setQuantityBoundries();
+ });
+ }
+
+ disconnectedCallback() {
+ if (this.cartUpdateUnsubscriber) {
+ this.cartUpdateUnsubscriber();
+ }
+ if (this.variantChangeUnsubscriber) {
+ this.variantChangeUnsubscriber();
+ }
+ }
+
+ setQuantityBoundries() {
+ const data = {
+ cartQuantity: this.input.dataset.cartQuantity ? parseInt(this.input.dataset.cartQuantity) : 0,
+ min: this.input.dataset.min ? parseInt(this.input.dataset.min) : 1,
+ max: this.input.dataset.max ? parseInt(this.input.dataset.max) : null,
+ step: this.input.step ? parseInt(this.input.step) : 1,
+ };
+
+ let min = data.min;
+ const max = data.max === null ? data.max : data.max - data.cartQuantity;
+ if (max !== null) min = Math.min(min, max);
+ if (data.cartQuantity >= data.min) min = Math.min(min, data.step);
+
+ this.input.min = min;
+ this.input.max = max;
+ this.input.value = min;
+ publish(PUB_SUB_EVENTS.quantityUpdate, undefined);
+ }
+
+ fetchQuantityRules() {
+ if (!this.currentVariant || !this.currentVariant.value) return;
+ this.querySelector('.quantity__rules-cart .loading__spinner').classList.remove('hidden');
+ fetch(`${this.dataset.url}?variant=${this.currentVariant.value}§ion_id=${this.dataset.section}`)
+ .then((response) => {
+ return response.text();
+ })
+ .then((responseText) => {
+ const html = new DOMParser().parseFromString(responseText, 'text/html');
+ this.updateQuantityRules(this.dataset.section, html);
+ this.setQuantityBoundries();
+ })
+ .catch((e) => {
+ console.error(e);
+ })
+ .finally(() => {
+ this.querySelector('.quantity__rules-cart .loading__spinner').classList.add('hidden');
+ });
+ }
+
+ updateQuantityRules(sectionId, html) {
+ const quantityFormUpdated = html.getElementById(`Quantity-Form-${sectionId}`);
+ const selectors = ['.quantity__input', '.quantity__rules', '.quantity__label'];
+ for (let selector of selectors) {
+ const current = this.quantityForm.querySelector(selector);
+ const updated = quantityFormUpdated.querySelector(selector);
+ if (!current || !updated) continue;
+ if (selector === '.quantity__input') {
+ const attributes = ['data-cart-quantity', 'data-min', 'data-max', 'step'];
+ for (let attribute of attributes) {
+ const valueUpdated = updated.getAttribute(attribute);
+ if (valueUpdated !== null) current.setAttribute(attribute, valueUpdated);
+ }
+ } else {
+ current.innerHTML = updated.innerHTML;
+ }
+ }
+ }
+ }
+ );
+}
diff --git a/assets/product-modal.js b/assets/product-modal.js
new file mode 100644
index 0000000..b35c7f4
--- /dev/null
+++ b/assets/product-modal.js
@@ -0,0 +1,42 @@
+if (!customElements.get('product-modal')) {
+ customElements.define(
+ 'product-modal',
+ class ProductModal extends ModalDialog {
+ constructor() {
+ super();
+ }
+
+ hide() {
+ super.hide();
+ }
+
+ show(opener) {
+ super.show(opener);
+ this.showActiveMedia();
+ }
+
+ showActiveMedia() {
+ this.querySelectorAll(
+ `[data-media-id]:not([data-media-id="${this.openedBy.getAttribute('data-media-id')}"])`
+ ).forEach((element) => {
+ element.classList.remove('active');
+ });
+ const activeMedia = this.querySelector(`[data-media-id="${this.openedBy.getAttribute('data-media-id')}"]`);
+ const activeMediaTemplate = activeMedia.querySelector('template');
+ const activeMediaContent = activeMediaTemplate ? activeMediaTemplate.content : null;
+ activeMedia.classList.add('active');
+ activeMedia.scrollIntoView();
+
+ const container = this.querySelector('[role="document"]');
+ container.scrollLeft = (activeMedia.width - container.clientWidth) / 2;
+
+ if (
+ activeMedia.nodeName == 'DEFERRED-MEDIA' &&
+ activeMediaContent &&
+ activeMediaContent.querySelector('.js-youtube')
+ )
+ activeMedia.loadContent();
+ }
+ }
+ );
+}
diff --git a/assets/product-model.js b/assets/product-model.js
new file mode 100644
index 0000000..db28d08
--- /dev/null
+++ b/assets/product-model.js
@@ -0,0 +1,59 @@
+if (!customElements.get('product-model')) {
+ customElements.define(
+ 'product-model',
+ class ProductModel extends DeferredMedia {
+ constructor() {
+ super();
+ }
+
+ loadContent() {
+ super.loadContent();
+
+ Shopify.loadFeatures([
+ {
+ name: 'model-viewer-ui',
+ version: '1.0',
+ onLoad: this.setupModelViewerUI.bind(this),
+ },
+ ]);
+ }
+
+ setupModelViewerUI(errors) {
+ if (errors) return;
+
+ this.modelViewerUI = new Shopify.ModelViewerUI(this.querySelector('model-viewer'));
+ }
+ }
+ );
+}
+
+window.ProductModel = {
+ loadShopifyXR() {
+ Shopify.loadFeatures([
+ {
+ name: 'shopify-xr',
+ version: '1.0',
+ onLoad: this.setupShopifyXR.bind(this),
+ },
+ ]);
+ },
+
+ setupShopifyXR(errors) {
+ if (errors) return;
+
+ if (!window.ShopifyXR) {
+ document.addEventListener('shopify_xr_initialized', () => this.setupShopifyXR());
+ return;
+ }
+
+ document.querySelectorAll('[id^="ProductJSON-"]').forEach((modelJSON) => {
+ window.ShopifyXR.addModels(JSON.parse(modelJSON.textContent));
+ modelJSON.remove();
+ });
+ window.ShopifyXR.setupXRElements();
+ },
+};
+
+window.addEventListener('DOMContentLoaded', () => {
+ if (window.ProductModel) window.ProductModel.loadShopifyXR();
+});
diff --git a/assets/pubsub.js b/assets/pubsub.js
new file mode 100644
index 0000000..ad27be0
--- /dev/null
+++ b/assets/pubsub.js
@@ -0,0 +1,23 @@
+let subscribers = {};
+
+function subscribe(eventName, callback) {
+ if (subscribers[eventName] === undefined) {
+ subscribers[eventName] = [];
+ }
+
+ subscribers[eventName] = [...subscribers[eventName], callback];
+
+ return function unsubscribe() {
+ subscribers[eventName] = subscribers[eventName].filter((cb) => {
+ return cb !== callback;
+ });
+ };
+}
+
+function publish(eventName, data) {
+ if (subscribers[eventName]) {
+ subscribers[eventName].forEach((callback) => {
+ callback(data);
+ });
+ }
+}
diff --git a/assets/quantity-popover.css b/assets/quantity-popover.css
new file mode 100644
index 0000000..3173a68
--- /dev/null
+++ b/assets/quantity-popover.css
@@ -0,0 +1,164 @@
+quantity-popover {
+ position: relative;
+ display: block;
+}
+
+quantity-popover volume-pricing li:nth-child(odd) {
+ background: rgba(var(--color-foreground), 0.03);
+}
+
+quantity-popover volume-pricing li {
+ font-size: 1.4rem;
+ letter-spacing: 0.06rem;
+ padding: 0.6rem 0.8rem;
+ display: flex;
+ justify-content: space-between;
+}
+
+.quantity-popover__info.global-settings-popup {
+ width: 100%;
+ z-index: 2;
+ position: absolute;
+ background-color: rgb(var(--color-background));
+ max-width: 36rem;
+}
+
+.quantity-popover__info .button-close,
+.variant-remove-total quick-order-list-remove-all-button .button,
+.quick-order-list-total__confirmation quick-order-list-remove-all-button .button,
+quantity-popover quick-order-list-remove-button .button {
+ --shadow-opacity: 0;
+ --border-opacity: 0;
+}
+
+.quantity-popover__info-button {
+ display: flex;
+ align-items: center;
+ margin: 0 0.4rem 0 0;
+ min-width: 1.5rem;
+ min-height: 1.5rem;
+ --shadow-opacity: 0;
+ --border-opacity: 0;
+}
+
+.quantity-popover__info-button--icon-with-label {
+ align-items: flex-start;
+ text-align: left;
+}
+
+.quantity-popover__info-button--icon-with-label svg {
+ flex-shrink: 0;
+}
+
+.quantity-popover__info-button--open {
+ text-decoration: underline;
+}
+
+.quantity-popover__info-button span {
+ padding-left: 1rem;
+}
+
+@media screen and (max-width: 989px) {
+ .quantity-popover__info.global-settings-popup {
+ left: 0;
+ }
+
+ .quantity-popover__info-button {
+ padding-left: 0;
+ }
+}
+
+.quantity-popover__info .quantity__rules {
+ margin-top: 1.2rem;
+ margin-bottom: 1rem;
+}
+
+.quantity-popover__info .volume-pricing-label {
+ display: block;
+ margin-left: 1.2rem;
+ margin-top: 1.2rem;
+ font-size: 1.2rem;
+}
+
+.quantity-popover__info .button {
+ width: 3.2rem;
+ height: 3.2rem;
+ position: absolute;
+ top: 0.4rem;
+ right: 0;
+ padding: 0 1.2rem 0 0;
+ display: flex;
+ justify-content: flex-end;
+}
+
+.quantity-popover__info .volume-pricing-label~.button {
+ top: -0.2rem;
+}
+
+.quantity-popover__info .button .icon {
+ width: 1.5rem;
+ height: 1.5rem;
+}
+
+quantity-popover volume-pricing {
+ margin-top: 1.2rem;
+ display: block;
+}
+
+quantity-popover .quantity__rules span:first-of-type {
+ display: block;
+}
+
+.quantity-popover-container {
+ display: flex;
+ padding: 0.5rem 0.5rem 0.5rem 0;
+}
+
+.quantity-popover-container:not(.quantity-popover-container--hover) {
+ align-items: center;
+}
+
+@media screen and (min-width: 990px) {
+ .quantity-popover-container--hover:hover {
+ background-color: rgba(var(--color-foreground), 0.03);
+ border-radius: var(--inputs-radius-outset);
+ }
+
+ .quantity-popover-container--empty {
+ margin-right: 2.7rem;
+ }
+
+ .quantity-popover__info.global-settings-popup {
+ width: 27rem;
+ }
+
+ .quantity-popover-container {
+ width: auto;
+ max-width: 20rem;
+ }
+
+ .quantity-popover__info.global-settings-popup {
+ transform: translateY(1rem);
+ }
+}
+
+quantity-popover:has(.quantity__input:focus-visible) .quantity-popover__info {
+ display: block;
+}
+
+quantity-popover .quantity {
+ background: rgb(var(--color-background));
+}
+
+quantity-popover .quantity__rules {
+ margin-left: 0.8rem;
+}
+
+quantity-popover .quantity__rules .divider:nth-child(2)::before {
+ content: none;
+}
+
+quantity-popover .quantity__button:not(:focus-visible):not(.focused),
+quantity-popover .quantity__input:not(:focus-visible):not(.focused) {
+ background-color: initial;
+}
diff --git a/assets/quantity-popover.js b/assets/quantity-popover.js
new file mode 100644
index 0000000..3827a31
--- /dev/null
+++ b/assets/quantity-popover.js
@@ -0,0 +1,80 @@
+if (!customElements.get('quantity-popover')) {
+ customElements.define(
+ 'quantity-popover',
+ class QuantityPopover extends HTMLElement {
+ constructor() {
+ super();
+ this.mql = window.matchMedia('(min-width: 990px)');
+ this.mqlTablet = window.matchMedia('(min-width: 750px)');
+ this.infoButtonDesktop = this.querySelector('.quantity-popover__info-button--icon-only');
+ this.infoButtonMobile = this.querySelector('.quantity-popover__info-button--icon-with-label');
+ this.popoverInfo = this.querySelector('.quantity-popover__info');
+ this.closeButton = this.querySelector('.button-close');
+ this.variantInfo = this.querySelector('.quantity-popover-container');
+ this.eventMouseEnterHappened = false;
+
+ if (this.closeButton) {
+ this.closeButton.addEventListener('click', this.closePopover.bind(this));
+ }
+
+ if (this.popoverInfo && this.infoButtonDesktop && this.mql.matches) {
+ this.popoverInfo.addEventListener('mouseenter', this.closePopover.bind(this));
+ }
+
+ if (this.infoButtonDesktop) {
+ this.infoButtonDesktop.addEventListener('click', this.togglePopover.bind(this));
+ this.infoButtonDesktop.addEventListener('focusout', this.closePopover.bind(this));
+ }
+
+ if (this.infoButtonMobile) {
+ this.infoButtonMobile.addEventListener('click', this.togglePopover.bind(this));
+ this.infoButtonMobile.addEventListener('focusout', this.closePopover.bind(this));
+ }
+
+ if (this.infoButtonDesktop && this.mqlTablet.matches) {
+ this.variantInfo.addEventListener('mouseenter', this.togglePopover.bind(this));
+ this.variantInfo.addEventListener('mouseleave', this.closePopover.bind(this));
+ }
+ }
+
+ togglePopover(event) {
+ event.preventDefault();
+ if (event.type === 'mouseenter') {
+ this.eventMouseEnterHappened = true;
+ }
+
+ if (event.type === 'click' && this.eventMouseEnterHappened) return;
+
+ const button = this.infoButtonDesktop && this.mql.matches ? this.infoButtonDesktop : this.infoButtonMobile;
+ const isExpanded = button.getAttribute('aria-expanded') === 'true';
+
+ button.setAttribute('aria-expanded', !isExpanded);
+
+ this.popoverInfo.toggleAttribute('hidden');
+
+ const isOpen = button.getAttribute('aria-expanded') === 'true';
+
+ button.classList.toggle('quantity-popover__info-button--open');
+
+ if (isOpen && event.type !== 'mouseenter') {
+ button.focus();
+ }
+ }
+
+ closePopover(event) {
+ event.preventDefault();
+ const isChild = this.variantInfo.contains(event.relatedTarget);
+
+ const button = this.infoButtonDesktop && this.mql.matches ? this.infoButtonDesktop : this.infoButtonMobile;
+
+ if (!event.relatedTarget || !isChild) {
+ button.setAttribute('aria-expanded', 'false');
+ button.classList.remove('quantity-popover__info-button--open');
+ this.popoverInfo.setAttribute('hidden', '');
+ }
+
+ this.eventMouseEnterHappened = false;
+ }
+ }
+ );
+}
diff --git a/assets/quick-add.css b/assets/quick-add.css
new file mode 100644
index 0000000..785e102
--- /dev/null
+++ b/assets/quick-add.css
@@ -0,0 +1,226 @@
+.quick-add {
+ position: relative;
+ grid-row-start: 4;
+ margin: 0 0 1rem;
+ z-index: 1;
+}
+
+.card--card .quick-add {
+ margin: 0 1.3rem 1rem;
+}
+
+.quick-add-modal {
+ box-sizing: border-box;
+ opacity: 0;
+ position: fixed;
+ visibility: hidden;
+ z-index: -1;
+ margin: 0 auto;
+ top: 0;
+ left: 0;
+ width: 100%;
+ background: rgba(var(--color-foreground), 0.2);
+ height: 100%;
+}
+
+.quick-add-modal[open] {
+ opacity: 1;
+ visibility: visible;
+ z-index: 101;
+}
+
+.quick-add-modal .scroll-trigger.scroll-trigger {
+ animation: none;
+ opacity: 1;
+}
+
+.quick-add-modal__content {
+ --modal-height-offset: 3.2rem;
+ position: absolute;
+ top: 0;
+ left: 50%;
+ transform: translateX(-50%);
+ margin: var(--modal-height-offset) auto 0;
+ width: 100%;
+ background-color: rgb(var(--color-background));
+ overflow: hidden;
+ max-width: var(--page-width);
+ width: calc(100% - 3rem);
+}
+
+@media screen and (min-width: 750px) {
+ .quick-add-modal__content {
+ --modal-height-offset: 10rem;
+ margin-top: var(--modal-height-offset);
+ width: 80%;
+ max-height: calc(100% - var(--modal-height-offset) * 2);
+ overflow-y: auto;
+ }
+
+ quick-add-modal .quick-add-modal__toggle {
+ top: 2rem;
+ right: 2rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .quick-add-modal__content {
+ width: 70%;
+ }
+}
+
+.quick-add-modal__content img {
+ max-width: 100%;
+}
+
+.quick-add-modal__content-info {
+ --modal-padding: 2.5rem;
+ padding-right: 4.4rem;
+ display: flex;
+ overflow-y: auto;
+ padding: var(--modal-padding);
+ height: 100%;
+}
+
+.quick-add-modal__content-info > * {
+ height: auto;
+ margin: 0 auto;
+ max-width: 100%;
+ width: 100%;
+}
+
+@media screen and (max-width: 749px) {
+ quick-add-modal .slider .product__media-item.grid__item {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+ }
+
+ .quick-add-modal__content {
+ bottom: var(--modal-height-offset);
+ }
+
+ .quick-add-modal__content-info > * {
+ max-height: 100%;
+ }
+
+ quick-add-modal .product--mobile-columns .product__media-item {
+ width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
+ }
+}
+
+.quick-add-modal__toggle {
+ background-color: rgb(var(--color-background));
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ border-radius: 50%;
+ color: rgba(var(--color-foreground), 0.55);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ padding: 1.2rem;
+ z-index: 5;
+ width: 4rem;
+ position: fixed;
+ top: 1.5rem;
+ right: 1.5rem;
+}
+
+.quick-add-modal__toggle:hover {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.quick-add-modal__toggle .icon {
+ height: auto;
+ margin: 0;
+ width: 2.2rem;
+}
+
+quick-add-modal .product:not(.featured-product) .product__view-details {
+ display: block;
+}
+
+quick-add-modal .quick-add-hidden,
+quick-add-modal .product__modal-opener:not(.product__modal-opener--image),
+quick-add-modal .product__media-item:not(:first-child) {
+ display: none !important;
+}
+
+quick-add-modal .slider.slider--mobile {
+ overflow: visible;
+}
+
+quick-add-modal .product__column-sticky .product__media-list {
+ margin-bottom: 0;
+}
+
+quick-add-modal .product__media-list .deferred-media {
+ display: block;
+ width: 100%;
+}
+
+quick-add-modal .product__column-sticky {
+ top: 0;
+ position: relative;
+}
+
+@media screen and (min-width: 750px) {
+ quick-add-modal .product:not(.product--no-media) .product__media-wrapper {
+ max-width: 45%;
+ width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ quick-add-modal .product:not(.product--no-media) .product__info-wrapper {
+ padding-left: 4rem;
+ max-width: 54%;
+ width: calc(54% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ quick-add-modal .product--columns .product__media-item:not(.product__media-item--single):not(:only-child) {
+ max-width: 100%;
+ width: 100%;
+ }
+
+ quick-add-modal .thumbnail-slider .thumbnail-list.slider--tablet-up {
+ display: none;
+ }
+}
+
+quick-add-modal .page-width {
+ padding: 0;
+}
+
+quick-add-modal .product__title > h1 {
+ display: none;
+}
+
+quick-add-modal .product__title > a {
+ display: block;
+ text-decoration: none;
+}
+
+quick-add-modal .product__title > a:hover {
+ color: rgb(var(--color-foreground));
+ text-decoration: underline;
+ text-underline-offset: 0.2rem;
+ text-decoration-thickness: 0.3rem;
+}
+
+quick-add-modal .product-form__buttons {
+ max-width: initial;
+}
+
+.quick-add__submit {
+ padding: 0.8rem;
+ min-width: 100%;
+ box-sizing: border-box;
+}
+
+quick-add-modal .product-media-container.constrain-height {
+ --viewport-offset: calc((var(--modal-height-offset) + var(--modal-padding) + var(--popup-border-width)) * 2);
+}
+
+@media screen and (min-width: 750px) {
+ quick-add-modal .product-media-container.constrain-height {
+ --constrained-min-height: 400px;
+ }
+}
diff --git a/assets/quick-add.js b/assets/quick-add.js
new file mode 100644
index 0000000..6ac6925
--- /dev/null
+++ b/assets/quick-add.js
@@ -0,0 +1,124 @@
+if (!customElements.get('quick-add-modal')) {
+ customElements.define(
+ 'quick-add-modal',
+ class QuickAddModal extends ModalDialog {
+ constructor() {
+ super();
+ this.modalContent = this.querySelector('[id^="QuickAddInfo-"]');
+ }
+
+ hide(preventFocus = false) {
+ const cartNotification = document.querySelector('cart-notification') || document.querySelector('cart-drawer');
+ if (cartNotification) cartNotification.setActiveElement(this.openedBy);
+ this.modalContent.innerHTML = '';
+
+ if (preventFocus) this.openedBy = null;
+ super.hide();
+ }
+
+ show(opener) {
+ opener.setAttribute('aria-disabled', true);
+ opener.classList.add('loading');
+ opener.querySelector('.loading__spinner').classList.remove('hidden');
+
+ fetch(opener.getAttribute('data-product-url'))
+ .then((response) => response.text())
+ .then((responseText) => {
+ const responseHTML = new DOMParser().parseFromString(responseText, 'text/html');
+ this.productElement = responseHTML.querySelector('section[id^="MainProduct-"]');
+ this.productElement.classList.forEach((classApplied) => {
+ if (classApplied.startsWith('color-') || classApplied === 'gradient')
+ this.modalContent.classList.add(classApplied);
+ });
+ this.preventDuplicatedIDs();
+ this.removeDOMElements();
+ this.setInnerHTML(this.modalContent, this.productElement.innerHTML);
+
+ if (window.Shopify && Shopify.PaymentButton) {
+ Shopify.PaymentButton.init();
+ }
+
+ if (window.ProductModel) window.ProductModel.loadShopifyXR();
+
+ this.removeGalleryListSemantic();
+ this.updateImageSizes();
+ this.preventVariantURLSwitching();
+ super.show(opener);
+ })
+ .finally(() => {
+ opener.removeAttribute('aria-disabled');
+ opener.classList.remove('loading');
+ opener.querySelector('.loading__spinner').classList.add('hidden');
+ });
+ }
+
+ setInnerHTML(element, html) {
+ element.innerHTML = html;
+
+ // Reinjects the script tags to allow execution. By default, scripts are disabled when using element.innerHTML.
+ element.querySelectorAll('script').forEach((oldScriptTag) => {
+ const newScriptTag = document.createElement('script');
+ Array.from(oldScriptTag.attributes).forEach((attribute) => {
+ newScriptTag.setAttribute(attribute.name, attribute.value);
+ });
+ newScriptTag.appendChild(document.createTextNode(oldScriptTag.innerHTML));
+ oldScriptTag.parentNode.replaceChild(newScriptTag, oldScriptTag);
+ });
+ }
+
+ preventVariantURLSwitching() {
+ const variantPicker = this.modalContent.querySelector('variant-radios,variant-selects');
+ if (!variantPicker) return;
+
+ variantPicker.setAttribute('data-update-url', 'false');
+ }
+
+ removeDOMElements() {
+ const pickupAvailability = this.productElement.querySelector('pickup-availability');
+ if (pickupAvailability) pickupAvailability.remove();
+
+ const productModal = this.productElement.querySelector('product-modal');
+ if (productModal) productModal.remove();
+
+ const modalDialog = this.productElement.querySelectorAll('modal-dialog');
+ if (modalDialog) modalDialog.forEach((modal) => modal.remove());
+ }
+
+ preventDuplicatedIDs() {
+ const sectionId = this.productElement.dataset.section;
+ this.productElement.innerHTML = this.productElement.innerHTML.replaceAll(sectionId, `quickadd-${sectionId}`);
+ this.productElement.querySelectorAll('variant-selects, variant-radios, product-info').forEach((element) => {
+ element.dataset.originalSection = sectionId;
+ });
+ }
+
+ removeGalleryListSemantic() {
+ const galleryList = this.modalContent.querySelector('[id^="Slider-Gallery"]');
+ if (!galleryList) return;
+
+ galleryList.setAttribute('role', 'presentation');
+ galleryList.querySelectorAll('[id^="Slide-"]').forEach((li) => li.setAttribute('role', 'presentation'));
+ }
+
+ updateImageSizes() {
+ const product = this.modalContent.querySelector('.product');
+ const desktopColumns = product.classList.contains('product--columns');
+ if (!desktopColumns) return;
+
+ const mediaImages = product.querySelectorAll('.product__media img');
+ if (!mediaImages.length) return;
+
+ let mediaImageSizes =
+ '(min-width: 1000px) 715px, (min-width: 750px) calc((100vw - 11.5rem) / 2), calc(100vw - 4rem)';
+
+ if (product.classList.contains('product--medium')) {
+ mediaImageSizes = mediaImageSizes.replace('715px', '605px');
+ } else if (product.classList.contains('product--small')) {
+ mediaImageSizes = mediaImageSizes.replace('715px', '495px');
+ }
+
+ mediaImages.forEach((img) => img.setAttribute('sizes', mediaImageSizes));
+ }
+ }
+ );
+}
diff --git a/assets/quick-order-list.css b/assets/quick-order-list.css
new file mode 100644
index 0000000..a733c92
--- /dev/null
+++ b/assets/quick-order-list.css
@@ -0,0 +1,619 @@
+quick-order-list {
+ display: block;
+}
+
+quick-order-list .quantity {
+ width: calc(11rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
+ min-height: calc((var(--inputs-border-width) * 2) + 3.5rem);
+}
+
+quick-order-list .quantity__button {
+ width: calc(3.5rem / var(--font-body-scale));
+}
+
+.quick-order-list__container {
+ padding-bottom: 4rem;
+}
+
+.quick-order-list__container--disabled {
+ pointer-events: none;
+}
+
+.quick-order-list__total {
+ padding-top: 2rem;
+ border-top: 0.1rem solid rgba(var(--color-foreground), .08);
+}
+
+.variant-item__quantity .quantity:before {
+ z-index: 0;
+}
+
+.variant-item__quantity .quantity__button {
+ z-index: 1;
+}
+
+@media screen and (min-width: 990px) {
+ .quick-order-list__total {
+ position: sticky;
+ bottom: 0;
+ z-index: 1;
+ background-color: rgb(var(--color-background));
+ }
+
+ .variant-item__quantity-wrapper--no-info,
+ .variant-item__error {
+ padding-left: calc(15px + 3.4rem);
+ }
+
+ .variant-item__error {
+ margin-left: 0.3rem;
+ }
+
+ .variant-item--unit-price .variant-item__totals {
+ vertical-align: top;
+ }
+
+ .variant-item--unit-price .variant-item__totals .loading__spinner {
+ padding-top: 1.7rem;
+ }
+}
+
+.quick-order-list__table td,
+.quick-order-list__table th {
+ padding: 0;
+ border: none;
+}
+
+.quick-order-list__table th {
+ text-align: left;
+ padding-bottom: 2rem;
+ opacity: 0.85;
+ font-weight: normal;
+ font-size: 1.1rem;
+}
+
+.variant-item__quantity-wrapper {
+ display: flex;
+}
+
+.variant-item__totals,
+.variant-item__details,
+.variant-item__price {
+ position: relative;
+}
+
+.variant-item__price .price,
+.variant-item__totals .price {
+ display: block;
+}
+
+.quick-order-list__table *.right {
+ text-align: right;
+}
+
+.variant-item__image-container {
+ display: inline-flex;
+ align-items: flex-start;
+ height: 4.5rem;
+ width: 4.5rem;
+}
+
+.variant-item__media {
+ width: 4.5rem;
+ height: 4.5rem;
+ margin-right: 1.2rem;
+}
+
+.variant-item__image {
+ height: 100%;
+ width: 100%;
+ object-fit: cover;
+}
+
+@media screen and (min-width: 990px) {
+ .variant-item__image {
+ max-width: 100%;
+ }
+
+ .variant-item__inner .small-hide {
+ display: flex;
+ flex-direction: column;
+ align-self: center;
+ }
+
+ .variant-item:not(.variant-item--no-media) .variant-item__inner {
+ display: flex;
+ }
+
+ .variant-item__discounted-prices {
+ justify-content: flex-end;
+ }
+}
+
+.variant-item__details {
+ font-size: 1.6rem;
+ line-height: calc(1 + 0.4 / var(--font-body-scale));
+}
+
+.variant-item__details>* {
+ margin: 0;
+ max-width: 30rem;
+}
+
+.variant-item__info {
+ position: relative;
+ padding-bottom: 0.5rem;
+}
+
+.variant-item__name {
+ display: block;
+ font-size: 1.6rem;
+ letter-spacing: 0.06rem;
+ line-height: calc(1 + .5 / var(--font-body-scale));
+}
+
+.variant-item__sku {
+ font-size: 1.1rem;
+ letter-spacing: 0.04rem;
+ margin-top: 0.2rem;
+}
+
+.variant-item__discounted-prices {
+ margin-top: 0;
+ margin-bottom: 0;
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+}
+
+.variant-item__discounted-prices dd {
+ margin: 0;
+}
+
+.variant-item__discounted-prices dd:first-of-type {
+ margin-right: 0.8rem;
+}
+
+.variant-item__discounted-prices .variant-item__old-price {
+ font-size: 1.4rem;
+}
+
+.variant-item__old-price {
+ opacity: 0.7;
+}
+
+.variant-item__final-price {
+ font-weight: 400;
+}
+
+.variant-item__sold-out {
+ opacity: 0.7;
+ font-size: 1.6rem;
+ color: rgb(var(--color-foreground));
+}
+
+quick-order-list-remove-button {
+ display: flex;
+ margin: 0 0 0 1.2rem;
+ align-self: center;
+}
+
+.quick-order-list__button-cancel {
+ font-size: 1.5rem;
+ letter-spacing: 0.06rem;
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ quick-order-list-remove-button {
+ width: 1.5rem;
+ height: 1.5rem;
+ }
+
+ quick-order-list-remove-all-button {
+ margin-left: -1.5rem;
+ margin-top: 1rem;
+ }
+
+ .quick-order-list-total__column {
+ flex-wrap: wrap;
+ }
+
+ .quick-order-list__message,
+ .quick-order-list-error {
+ padding-bottom: 1rem;
+ }
+}
+
+quick-order-list-remove-button .button {
+ min-width: calc(1.5rem / var(--font-body-scale));
+ min-height: 1.5rem;
+ padding: 0;
+ margin: 0 0.1rem 0.1rem 0;
+}
+
+quick-order-list-remove-button .button:not([disabled]):hover {
+ color: rgb(var(--color-foreground));
+}
+
+quick-order-list-remove-button .icon-remove {
+ height: 1.5rem;
+ width: 1.5rem;
+ transition: transform var(--duration-default) ease;
+}
+
+.variant-item .loading__spinner {
+ top: 0;
+ left: auto;
+ right: 0;
+ bottom: 0;
+ padding: 0;
+}
+
+.variant-remove-total {
+ position: relative;
+ align-self: center;
+}
+
+.variant-remove-total .button--tertiary {
+ width: max-content;
+}
+
+.variant-remove-total .icon-remove {
+ width: 1.2rem;
+ height: 1.2rem;
+ margin-right: 0.8rem;
+}
+
+.quick-order-list__message {
+ margin-top: 1rem;
+ display: block;
+}
+
+.quick-order-list__message svg {
+ margin-right: 1rem;
+ width: 1.3rem;
+}
+
+.quick-order-list-error {
+ margin-top: 1rem;
+ display: flex;
+}
+
+.quick-order-list-error svg {
+ flex-shrink: 0;
+ width: 1.2rem;
+ margin-right: 0.7rem;
+ margin-top: 0.3rem;
+ align-self: flex-start;
+}
+
+@media screen and (min-width: 990px) {
+ .variant-item .loading__spinner {
+ padding-top: 3rem;
+ bottom: auto;
+ }
+
+ .variant-item .loading__spinner--error {
+ padding-top: 5rem;
+ }
+
+ .variant-remove-total .loading__spinner {
+ left: 2rem;
+ top: 1.2rem;
+ }
+}
+
+quick-order-list-remove-button:hover .icon-remove {
+ transform: scale(1.25);
+}
+
+.quick-order-list-total__info quick-order-list-remove-all-button:hover {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.variant-remove-total {
+ position: relative;
+ align-self: center;
+}
+
+.variant-item .loading__spinner:not(.hidden)~*,
+.variant-remove-total .loading__spinner:not(.hidden)~* {
+ visibility: hidden;
+}
+
+.variant-item__error {
+ display: flex;
+ align-items: flex-start;
+ margin-top: 0.2rem;
+ width: min-content;
+ min-width: 100%;
+}
+
+.variant-item__error-text {
+ font-size: 1.2rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ order: 1;
+}
+
+.variant-item__error-text+svg {
+ flex-shrink: 0;
+ width: 1.2rem;
+ margin-right: 0.5rem;
+ margin-top: 0.1rem;
+}
+
+.variant-item__error-text:empty+svg {
+ display: none;
+}
+
+.quick-order-list__table thead th {
+ text-transform: uppercase;
+}
+
+.variant-item__image-container--no-img {
+ border: 0;
+}
+
+@media screen and (max-width: 989px) {
+ .quick-order-list-total__info {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .variant-item__details .loading__spinner {
+ left: 0;
+ top: auto;
+ }
+
+ .quick-order-list__table,
+ .quick-order-list__table thead,
+ .quick-order-list__table tbody {
+ display: block;
+ width: 100%;
+ }
+
+ .quick-order-list__table thead tr {
+ display: flex;
+ justify-content: space-between;
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ margin-bottom: 4rem;
+ }
+
+ .variant-item {
+ display: grid;
+ grid-template-columns: 4.5rem 1fr;
+ grid-template-rows: repeat(2, auto);
+ gap: 1.5rem;
+ margin-bottom: 3.5rem;
+ }
+
+ .variant-item--no-media {
+ grid-template: repeat(2, auto) / repeat(3, auto);
+ }
+
+ .variant-item:last-child {
+ margin-bottom: 0;
+ }
+
+ .variant-item__totals {
+ grid-column: 5 / 3;
+ }
+
+ .variant-item--no-media .variant-item__inner~.variant-item__quantity {
+ grid-column: 1 / 5;
+ }
+
+ .variant-item__quantity {
+ grid-column: 2 / 5;
+ }
+
+ .variant-item__quantity-wrapper {
+ flex-wrap: wrap;
+ }
+
+ .variant-item--no-media .variant-item__inner {
+ display: none;
+ }
+
+ .variant-remove-total {
+ margin-top: 1rem;
+ text-align: center;
+ }
+
+ .quick-order-list__message {
+ text-align: center;
+ }
+
+ .quick-order-list-total__column,
+ .quick-order-list-buttons {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ width: 100%;
+ }
+
+ .quick-order-list__button {
+ max-width: 36rem;
+ }
+}
+
+.quick-order-list-total__confirmation {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ margin-top: -2rem;
+}
+
+@media screen and (min-width: 990px) {
+ .quick-order-list__table {
+ border-spacing: 0;
+ border-collapse: separate;
+ box-shadow: none;
+ width: 100%;
+ display: table;
+ }
+
+ .quick-order-list__table th {
+ border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
+ }
+
+ .quick-order-list__table th+th {
+ padding-left: 5.4rem;
+ }
+
+ .quick-order-list__table .quick-order-list__table-heading--wide+.quick-order-list__table-heading--wide {
+ padding-left: 10rem;
+ text-align: right;
+ }
+
+ .quick-order-list__table td {
+ padding-top: 1.6rem;
+ }
+
+ .quick-order-list__table .desktop-row-error td {
+ padding-top: 0;
+ }
+
+ .quick-order-list__table .variant-item--unit-price td {
+ vertical-align: middle;
+ }
+
+ .variant-item {
+ display: table-row;
+ }
+
+ .variant-item .variant-item__price {
+ text-align: right;
+ }
+
+ .variant-item__info {
+ width: 20rem;
+ display: flex;
+ padding: 0.5rem;
+ }
+
+ .quick-order-list-total__confirmation span {
+ margin-right: 3rem;
+ }
+
+ .quick-order-list__total-items {
+ width: calc(((11rem / var(--font-body-scale) + var(--inputs-border-width) * 2)));
+ margin-left: calc(15px + 3.4rem);
+ flex-direction: column;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .quick-order-list__table thead th:first-child,
+ .quick-order-list-total__column {
+ width: 37%;
+ }
+
+ .quick-order-list-buttons {
+ display: flex;
+ }
+
+ quick-order-list-remove-all-button {
+ margin-left: 0.9rem;
+ }
+}
+
+.quick-order-list__total-items {
+ display: flex;
+ align-items: center;
+}
+
+.quick-order-list__total-items span,
+.totals__subtotal-value {
+ margin-top: 0;
+ margin-bottom: 0;
+ color: rgb(var(--color-foreground));
+}
+
+.quick-order-list__total-items p,
+.totals__subtotal {
+ margin-top: 0.2rem;
+ opacity: 0.75;
+ margin-bottom: 0;
+}
+
+.quick-order-list__total-items p {
+ text-align: center;
+}
+
+.quick-order-list-total__info {
+ display: flex;
+}
+
+.quick-order-list-total__info,
+.quick-order-list-total__confirmation {
+ min-height: 10rem;
+}
+
+.quick-order-list-total__price {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: flex-end;
+ flex-grow: 1;
+ text-align: right;
+ width: min-content;
+}
+
+.quick-order-list-total__price .button {
+ margin-right: 2rem;
+}
+
+@media screen and (max-width: 989px) {
+ .quick-order-list-total__price {
+ justify-content: center;
+ text-align: center;
+ width: 100%;
+ }
+
+ .totals__product-total {
+ display: flex;
+ justify-content: center;
+ width: 100%;
+ align-items: center;
+ padding-bottom: 2rem;
+ }
+
+ .totals__subtotal-value,
+ .quick-order-list__total-items span {
+ margin-right: 1.2rem;
+ }
+
+ .quick-order-list__total-items {
+ margin-top: 1rem;
+ margin-bottom: 1.3rem;
+ }
+
+ .quick-order-list-total__price .button {
+ margin-bottom: 2rem;
+ }
+
+ .quick-order-list-total__confirmation quick-order-list-remove-all-button button {
+ margin-top: 1rem;
+ }
+
+ .quick-order-list-total__confirmation {
+ flex-direction: column;
+ margin-top: 2rem;
+ }
+
+ .quick-order-list__button-confirm {
+ width: 100%;
+ max-width: 36rem;
+ }
+
+ quick-order-list .tax-note {
+ text-align: center;
+ }
+}
+
+quick-order-list .tax-note {
+ margin: 0 0 2rem;
+ display: block;
+ width: 100%;
+}
diff --git a/assets/quick-order-list.js b/assets/quick-order-list.js
new file mode 100644
index 0000000..68171d1
--- /dev/null
+++ b/assets/quick-order-list.js
@@ -0,0 +1,392 @@
+class QuickOrderListRemoveButton extends HTMLElement {
+ constructor() {
+ super();
+ this.addEventListener('click', (event) => {
+ event.preventDefault();
+ const quickOrderList = this.closest('quick-order-list');
+ quickOrderList.updateQuantity(this.dataset.index, 0);
+ });
+ }
+}
+
+customElements.define('quick-order-list-remove-button', QuickOrderListRemoveButton);
+
+class QuickOrderListRemoveAllButton extends HTMLElement {
+ constructor() {
+ super();
+ const allVariants = Array.from(document.querySelectorAll('[data-variant-id]'));
+ const items = {}
+ let hasVariantsInCart = false;
+ this.quickOrderList = this.closest('quick-order-list');
+
+ allVariants.forEach((variant) => {
+ const cartQty = parseInt(variant.dataset.cartQty);
+ if (cartQty > 0) {
+ hasVariantsInCart = true;
+ items[parseInt(variant.dataset.variantId)] = 0;
+ }
+ });
+
+ if (!hasVariantsInCart) {
+ this.classList.add('hidden');
+ }
+
+ this.actions = {
+ confirm: 'confirm',
+ remove: 'remove',
+ cancel: 'cancel'
+ }
+
+ this.addEventListener('click', (event) => {
+ event.preventDefault();
+ if (this.dataset.action === this.actions.confirm) {
+ this.toggleConfirmation(false, true);
+ } else if (this.dataset.action === this.actions.remove) {
+ this.quickOrderList.updateMultipleQty(items);
+ this.toggleConfirmation(true, false);
+ } else if (this.dataset.action === this.actions.cancel) {
+ this.toggleConfirmation(true, false);
+ }
+ });
+ }
+
+ toggleConfirmation(showConfirmation, showInfo) {
+ this.quickOrderList.querySelector('.quick-order-list-total__confirmation').classList.toggle('hidden', showConfirmation);
+ this.quickOrderList.querySelector('.quick-order-list-total__info').classList.toggle('hidden', showInfo)
+ }
+}
+
+customElements.define('quick-order-list-remove-all-button', QuickOrderListRemoveAllButton);
+
+
+class QuickOrderList extends HTMLElement {
+ constructor() {
+ super();
+ this.cart = document.querySelector('cart-drawer');
+ this.actions = {
+ add: 'ADD',
+ update: 'UPDATE'
+ }
+ this.quickOrderListId = 'quick-order-list'
+ this.variantItemStatusElement = document.getElementById('shopping-cart-variant-item-status');
+ const form = this.querySelector('form');
+
+ form.addEventListener('submit', this.onSubmit.bind(this));
+
+ const debouncedOnChange = debounce((event) => {
+ this.onChange(event);
+ }, ON_CHANGE_DEBOUNCE_TIMER);
+ this.addEventListener('change', debouncedOnChange.bind(this));
+ }
+
+ cartUpdateUnsubscriber = undefined;
+
+ onSubmit(event) {
+ event.preventDefault();
+ }
+
+ connectedCallback() {
+ this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (event) => {
+ if (event.source === this.quickOrderListId) {
+ return;
+ }
+ // If its another section that made the update
+ this.onCartUpdate();
+ });
+ this.sectionId = this.dataset.id;
+ }
+
+ disconnectedCallback() {
+ if (this.cartUpdateUnsubscriber) {
+ this.cartUpdateUnsubscriber();
+ }
+ }
+
+ onChange(event) {
+ const inputValue = parseInt(event.target.value);
+ const cartQuantity = parseInt(event.target.dataset.cartQuantity);
+ const index = event.target.dataset.index;
+ const name = document.activeElement.getAttribute('name');
+
+ const quantity = inputValue - cartQuantity;
+
+ if (cartQuantity > 0) {
+ this.updateQuantity(index, inputValue, name, this.actions.update);
+ } else {
+ this.updateQuantity(index, quantity, name, this.actions.add);
+ }
+ }
+
+ onCartUpdate() {
+ fetch(`${window.location.pathname}?section_id=${this.sectionId}`)
+ .then((response) => response.text())
+ .then((responseText) => {
+ const html = new DOMParser().parseFromString(responseText, 'text/html');
+ const sourceQty = html.querySelector(this.quickOrderListId);
+ this.innerHTML = sourceQty.innerHTML;
+ })
+ .catch(e => {
+ console.error(e);
+ });
+ }
+
+ getSectionsToRender() {
+ return [
+ {
+ id: this.quickOrderListId,
+ section: document.getElementById(this.quickOrderListId).dataset.id,
+ selector: '.js-contents'
+ },
+ {
+ id: 'cart-icon-bubble',
+ section: 'cart-icon-bubble',
+ selector: '.shopify-section'
+ },
+ {
+ id: 'quick-order-list-live-region-text',
+ section: 'cart-live-region-text',
+ selector: '.shopify-section'
+ },
+ {
+ id: 'quick-order-list-total',
+ section: document.getElementById(this.quickOrderListId).dataset.id,
+ selector: '.quick-order-list__total'
+ },
+ {
+ id: 'CartDrawer',
+ selector: '#CartDrawer',
+ section: 'cart-drawer'
+ }
+ ];
+ }
+
+ renderSections(parsedState) {
+ this.getSectionsToRender().forEach((section => {
+ const sectionElement = document.getElementById(section.id);
+ if (sectionElement && sectionElement.parentElement && sectionElement.parentElement.classList.contains('drawer')) {
+ parsedState.items.length > 0 ? sectionElement.parentElement.classList.remove('is-empty') : sectionElement.parentElement.classList.add('is-empty');
+
+ setTimeout(() => {
+ document.querySelector('#CartDrawer-Overlay').addEventListener('click', this.cart.close.bind(this.cart));
+ });
+ }
+ const elementToReplace = sectionElement && sectionElement.querySelector(section.selector) ? sectionElement.querySelector(section.selector) : sectionElement;
+ if (elementToReplace) {
+ elementToReplace.innerHTML =
+ this.getSectionInnerHTML(parsedState.sections[section.section], section.selector);
+ }
+ }));
+
+ }
+
+ updateMultipleQty(items) {
+ this.querySelector('.variant-remove-total .loading__spinner').classList.remove('hidden');
+
+ const body = JSON.stringify({
+ updates: items,
+ sections: this.getSectionsToRender().map((section) => section.section),
+ sections_url: window.location.pathname
+ });
+
+ this.updateMessage();
+ this.setErrorMessage();
+
+ fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } })
+ .then((response) => {
+ return response.text();
+ })
+ .then((state) => {
+ const parsedState = JSON.parse(state);
+ this.renderSections(parsedState);
+ }).catch(() => {
+ this.setErrorMessage(window.cartStrings.error);
+ })
+ .finally(() => {
+ this.querySelector('.variant-remove-total .loading__spinner').classList.add('hidden');
+ });
+ }
+
+ updateQuantity(id, quantity, name, action) {
+ this.toggleLoading(id, true);
+
+ let routeUrl = routes.cart_change_url;
+ let body = JSON.stringify({
+ quantity,
+ id,
+ sections: this.getSectionsToRender().map((section) => section.section),
+ sections_url: window.location.pathname
+ });
+ let fetchConfigType;
+ if (action === this.actions.add) {
+ fetchConfigType = 'javascript';
+ routeUrl = routes.cart_add_url;
+ body = JSON.stringify({
+ items: [
+ {
+ quantity: parseInt(quantity),
+ id: parseInt(id)
+ }
+ ],
+ sections: this.getSectionsToRender().map((section) => section.section),
+ sections_url: window.location.pathname
+ });
+ }
+
+ this.updateMessage();
+ this.setErrorMessage();
+
+ fetch(`${routeUrl}`, { ...fetchConfig(fetchConfigType), ...{ body } })
+ .then((response) => {
+ return response.text();
+ })
+ .then((state) => {
+ const parsedState = JSON.parse(state);
+ const quantityElement = document.getElementById(`Quantity-${id}`);
+ const items = document.querySelectorAll('.variant-item');
+
+ if (parsedState.description || parsedState.errors) {
+ const variantItem = document.querySelector(`[id^="Variant-${id}"] .variant-item__totals.small-hide .loading__spinner`);
+ variantItem.classList.add('loading__spinner--error');
+ this.resetQuantityInput(id, quantityElement);
+ if (parsedState.errors) {
+ this.updateLiveRegions(id, parsedState.errors);
+ } else {
+ this.updateLiveRegions(id, parsedState.description);
+ }
+ return;
+ }
+
+ this.classList.toggle('is-empty', parsedState.item_count === 0);
+
+ this.renderSections(parsedState);
+
+ let hasError = false;
+
+ const currentItem = parsedState.items.find((item) => item.variant_id === parseInt(id));
+ const updatedValue = currentItem ? currentItem.quantity : undefined;
+ if (updatedValue && updatedValue !== quantity) {
+ this.updateError(updatedValue, id);
+ hasError = true;
+ }
+
+ const variantItem = document.getElementById(`Variant-${id}`);
+ if (variantItem && variantItem.querySelector(`[name="${name}"]`)) {
+ variantItem.querySelector(`[name="${name}"]`).focus();
+ }
+ publish(PUB_SUB_EVENTS.cartUpdate, { source: this.quickOrderListId, cartData: parsedState });
+
+ if (hasError) {
+ this.updateMessage();
+ } else if (action === this.actions.add) {
+ this.updateMessage(parseInt(quantity))
+ } else if (action === this.actions.update) {
+ this.updateMessage(parseInt(quantity - quantityElement.dataset.cartQuantity))
+ } else {
+ this.updateMessage(-parseInt(quantityElement.dataset.cartQuantity))
+ }
+ }).catch((error) => {
+ this.querySelectorAll('.loading__spinner').forEach((overlay) => overlay.classList.add('hidden'));
+ this.resetQuantityInput(id);
+ console.error(error);
+ this.setErrorMessage(window.cartStrings.error);
+ })
+ .finally(() => {
+ this.toggleLoading(id);
+ });
+ }
+
+ resetQuantityInput(id, quantityElement) {
+ const input = quantityElement ?? document.getElementById(`Quantity-${id}`);
+ input.value = input.getAttribute('value');
+ }
+
+ setErrorMessage(message = null) {
+ this.errorMessageTemplate = this.errorMessageTemplate ?? document.getElementById(`QuickOrderListErrorTemplate-${this.sectionId}`).cloneNode(true);
+ const errorElements = document.querySelectorAll('.quick-order-list-error');
+
+ errorElements.forEach((errorElement) => {
+ errorElement.innerHTML = '';
+ if (!message) return;
+ const updatedMessageElement = this.errorMessageTemplate.cloneNode(true);
+ updatedMessageElement.content.querySelector('.quick-order-list-error-message').innerText = message;
+ errorElement.appendChild(updatedMessageElement.content);
+ });
+ }
+
+ updateMessage(quantity = null) {
+ const messages = this.querySelectorAll('.quick-order-list__message-text');
+ const icons = this.querySelectorAll('.quick-order-list__message-icon');
+
+ if (quantity === null || isNaN(quantity)) {
+ messages.forEach(message => message.innerHTML = '');
+ icons.forEach(icon => icon.classList.add('hidden'));
+ return;
+ }
+
+ const isQuantityNegative = quantity < 0;
+ const absQuantity = Math.abs(quantity);
+
+ const textTemplate = isQuantityNegative
+ ? (absQuantity === 1 ? window.quickOrderListStrings.itemRemoved : window.quickOrderListStrings.itemsRemoved)
+ : (quantity === 1 ? window.quickOrderListStrings.itemAdded : window.quickOrderListStrings.itemsAdded);
+
+ messages.forEach((msg) => msg.innerHTML = textTemplate.replace('[quantity]', absQuantity));
+
+ if (!isQuantityNegative) {
+ icons.forEach((i) => i.classList.remove('hidden'));
+ }
+
+ }
+
+ updateError(updatedValue, id) {
+ let message = '';
+ if (typeof updatedValue === 'undefined') {
+ message = window.cartStrings.error;
+ } else {
+ message = window.cartStrings.quantityError.replace('[quantity]', updatedValue);
+ }
+ this.updateLiveRegions(id, message);
+ }
+
+ updateLiveRegions(id, message) {
+ const variantItemErrorDesktop = document.getElementById(`Quick-order-list-item-error-desktop-${id}`);
+ const variantItemErrorMobile = document.getElementById(`Quick-order-list-item-error-mobile-${id}`);
+ if (variantItemErrorDesktop) {
+ variantItemErrorDesktop.querySelector('.variant-item__error-text').innerHTML = message;
+ variantItemErrorDesktop.closest('tr').classList.remove('hidden');
+ }
+ if (variantItemErrorMobile) variantItemErrorMobile.querySelector('.variant-item__error-text').innerHTML = message;
+
+ this.variantItemStatusElement.setAttribute('aria-hidden', true);
+
+ const cartStatus = document.getElementById('quick-order-list-live-region-text');
+ cartStatus.setAttribute('aria-hidden', false);
+
+ setTimeout(() => {
+ cartStatus.setAttribute('aria-hidden', true);
+ }, 1000);
+ }
+
+ getSectionInnerHTML(html, selector) {
+ return new DOMParser()
+ .parseFromString(html, 'text/html')
+ .querySelector(selector).innerHTML;
+ }
+
+ toggleLoading(id, enable) {
+ const quickOrderList = document.getElementById(this.quickOrderListId);
+ const quickOrderListItems = this.querySelectorAll(`#Variant-${id} .loading__spinner`);
+
+ if (enable) {
+ quickOrderList.classList.add('quick-order-list__container--disabled');
+ [...quickOrderListItems].forEach((overlay) => overlay.classList.remove('hidden'));
+ document.activeElement.blur();
+ this.variantItemStatusElement.setAttribute('aria-hidden', false);
+ } else {
+ quickOrderList.classList.remove('quick-order-list__container--disabled');
+ quickOrderListItems.forEach((overlay) => overlay.classList.add('hidden'));
+ }
+ }
+}
+
+customElements.define('quick-order-list', QuickOrderList);
diff --git a/assets/recipient-form.js b/assets/recipient-form.js
new file mode 100644
index 0000000..71eb7a3
--- /dev/null
+++ b/assets/recipient-form.js
@@ -0,0 +1,165 @@
+if (!customElements.get('recipient-form')) {
+ customElements.define(
+ 'recipient-form',
+ class RecipientForm extends HTMLElement {
+ constructor() {
+ super();
+ this.recipientFieldsLiveRegion = this.querySelector(`#Recipient-fields-live-region-${this.dataset.sectionId}`);
+ this.checkboxInput = this.querySelector(`#Recipient-checkbox-${this.dataset.sectionId}`);
+ this.checkboxInput.disabled = false;
+ this.hiddenControlField = this.querySelector(`#Recipient-control-${this.dataset.sectionId}`);
+ this.hiddenControlField.disabled = true;
+ this.emailInput = this.querySelector(`#Recipient-email-${this.dataset.sectionId}`);
+ this.nameInput = this.querySelector(`#Recipient-name-${this.dataset.sectionId}`);
+ this.messageInput = this.querySelector(`#Recipient-message-${this.dataset.sectionId}`);
+ this.sendonInput = this.querySelector(`#Recipient-send-on-${this.dataset.sectionId}`);
+ this.offsetProperty = this.querySelector(`#Recipient-timezone-offset-${this.dataset.sectionId}`);
+ if (this.offsetProperty) this.offsetProperty.value = new Date().getTimezoneOffset().toString();
+
+ this.errorMessageWrapper = this.querySelector('.product-form__recipient-error-message-wrapper');
+ this.errorMessageList = this.errorMessageWrapper?.querySelector('ul');
+ this.errorMessage = this.errorMessageWrapper?.querySelector('.error-message');
+ this.defaultErrorHeader = this.errorMessage?.innerText;
+ this.currentProductVariantId = this.dataset.productVariantId;
+ this.addEventListener('change', this.onChange.bind(this));
+ this.onChange();
+ }
+
+ cartUpdateUnsubscriber = undefined;
+ variantChangeUnsubscriber = undefined;
+ cartErrorUnsubscriber = undefined;
+
+ connectedCallback() {
+ this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (event) => {
+ if (event.source === 'product-form' && event.productVariantId.toString() === this.currentProductVariantId) {
+ this.resetRecipientForm();
+ }
+ });
+
+ this.variantChangeUnsubscriber = subscribe(PUB_SUB_EVENTS.variantChange, (event) => {
+ if (event.data.sectionId === this.dataset.sectionId) {
+ this.currentProductVariantId = event.data.variant.id.toString();
+ }
+ });
+
+ this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartError, (event) => {
+ if (event.source === 'product-form' && event.productVariantId.toString() === this.currentProductVariantId) {
+ this.displayErrorMessage(event.message, event.errors);
+ }
+ });
+ }
+
+ disconnectedCallback() {
+ if (this.cartUpdateUnsubscriber) {
+ this.cartUpdateUnsubscriber();
+ }
+
+ if (this.variantChangeUnsubscriber) {
+ this.variantChangeUnsubscriber();
+ }
+
+ if (this.cartErrorUnsubscriber) {
+ this.cartErrorUnsubscriber();
+ }
+ }
+
+ onChange() {
+ if (this.checkboxInput.checked) {
+ this.enableInputFields();
+ this.recipientFieldsLiveRegion.innerText = window.accessibilityStrings.recipientFormExpanded;
+ } else {
+ this.clearInputFields();
+ this.disableInputFields();
+ this.clearErrorMessage();
+ this.recipientFieldsLiveRegion.innerText = window.accessibilityStrings.recipientFormCollapsed;
+ }
+ }
+
+ inputFields() {
+ return [this.emailInput, this.nameInput, this.messageInput, this.sendonInput];
+ }
+
+ disableableFields() {
+ return [...this.inputFields(), this.offsetProperty];
+ }
+
+ clearInputFields() {
+ this.inputFields().forEach((field) => (field.value = ''));
+ }
+
+ enableInputFields() {
+ this.disableableFields().forEach((field) => (field.disabled = false));
+ }
+
+ disableInputFields() {
+ this.disableableFields().forEach((field) => (field.disabled = true));
+ }
+
+ displayErrorMessage(title, body) {
+ this.clearErrorMessage();
+ this.errorMessageWrapper.hidden = false;
+ if (typeof body === 'object') {
+ this.errorMessage.innerText = this.defaultErrorHeader;
+ return Object.entries(body).forEach(([key, value]) => {
+ const errorMessageId = `RecipientForm-${key}-error-${this.dataset.sectionId}`;
+ const fieldSelector = `#Recipient-${key}-${this.dataset.sectionId}`;
+ const message = `${value.join(', ')}`;
+ const errorMessageElement = this.querySelector(`#${errorMessageId}`);
+ const errorTextElement = errorMessageElement?.querySelector('.error-message');
+ if (!errorTextElement) return;
+
+ if (this.errorMessageList) {
+ this.errorMessageList.appendChild(this.createErrorListItem(fieldSelector, message));
+ }
+
+ errorTextElement.innerText = `${message}.`;
+ errorMessageElement.classList.remove('hidden');
+
+ const inputElement = this[`${key}Input`];
+ if (!inputElement) return;
+
+ inputElement.setAttribute('aria-invalid', true);
+ inputElement.setAttribute('aria-describedby', errorMessageId);
+ });
+ }
+
+ this.errorMessage.innerText = body;
+ }
+
+ createErrorListItem(target, message) {
+ const li = document.createElement('li');
+ const a = document.createElement('a');
+ a.setAttribute('href', target);
+ a.innerText = message;
+ li.appendChild(a);
+ li.className = 'error-message';
+ return li;
+ }
+
+ clearErrorMessage() {
+ this.errorMessageWrapper.hidden = true;
+
+ if (this.errorMessageList) this.errorMessageList.innerHTML = '';
+
+ this.querySelectorAll('.recipient-fields .form__message').forEach((field) => {
+ field.classList.add('hidden');
+ const textField = field.querySelector('.error-message');
+ if (textField) textField.innerText = '';
+ });
+
+ [this.emailInput, this.messageInput, this.nameInput, this.sendonInput].forEach((inputElement) => {
+ inputElement.setAttribute('aria-invalid', false);
+ inputElement.removeAttribute('aria-describedby');
+ });
+ }
+
+ resetRecipientForm() {
+ if (this.checkboxInput.checked) {
+ this.checkboxInput.checked = false;
+ this.clearInputFields();
+ this.clearErrorMessage();
+ }
+ }
+ }
+ );
+}
diff --git a/assets/search-form.js b/assets/search-form.js
new file mode 100644
index 0000000..f95e8b7
--- /dev/null
+++ b/assets/search-form.js
@@ -0,0 +1,47 @@
+class SearchForm extends HTMLElement {
+ constructor() {
+ super();
+ this.input = this.querySelector('input[type="search"]');
+ this.resetButton = this.querySelector('button[type="reset"]');
+
+ if (this.input) {
+ this.input.form.addEventListener('reset', this.onFormReset.bind(this));
+ this.input.addEventListener(
+ 'input',
+ debounce((event) => {
+ this.onChange(event);
+ }, 300).bind(this)
+ );
+ }
+ }
+
+ toggleResetButton() {
+ const resetIsHidden = this.resetButton.classList.contains('hidden');
+ if (this.input.value.length > 0 && resetIsHidden) {
+ this.resetButton.classList.remove('hidden');
+ } else if (this.input.value.length === 0 && !resetIsHidden) {
+ this.resetButton.classList.add('hidden');
+ }
+ }
+
+ onChange() {
+ this.toggleResetButton();
+ }
+
+ shouldResetForm() {
+ return !document.querySelector('[aria-selected="true"] a');
+ }
+
+ onFormReset(event) {
+ // Prevent default so the form reset doesn't set the value gotten from the url on page load
+ event.preventDefault();
+ // Don't reset if the user has selected an element on the predictive search dropdown
+ if (this.shouldResetForm()) {
+ this.input.value = '';
+ this.input.focus();
+ this.toggleResetButton();
+ }
+ }
+}
+
+customElements.define('search-form', SearchForm);
diff --git a/assets/section-blog-post.css b/assets/section-blog-post.css
new file mode 100644
index 0000000..7b87526
--- /dev/null
+++ b/assets/section-blog-post.css
@@ -0,0 +1,175 @@
+.article-template > *:first-child:not(.article-template__hero-container) {
+ margin-top: 5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .article-template > *:first-child:not(.article-template__hero-container) {
+ margin-top: calc(5rem + var(--page-width-margin));
+ }
+}
+
+.article-template__hero-container {
+ max-width: 130rem;
+ margin: 0 auto;
+}
+
+.article-template__hero-small {
+ height: 11rem;
+}
+
+.article-template__hero-medium {
+ height: 22rem;
+}
+
+.article-template__hero-large {
+ height: 33rem;
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .article-template__hero-small {
+ height: 22rem;
+ }
+
+ .article-template__hero-medium {
+ height: 44rem;
+ }
+
+ .article-template__hero-large {
+ height: 66rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .article-template__hero-small {
+ height: 27.5rem;
+ }
+
+ .article-template__hero-medium {
+ height: 55rem;
+ }
+
+ .article-template__hero-large {
+ height: 82.5rem;
+ }
+}
+
+.article-template header {
+ margin-top: 4.4rem;
+ margin-bottom: 2rem;
+ line-height: calc(0.8 / var(--font-body-scale));
+}
+
+@media screen and (min-width: 750px) {
+ .article-template header {
+ margin-top: 5rem;
+ }
+}
+
+.article-template__title {
+ margin: 0;
+}
+
+.article-template__title:not(:only-child) {
+ margin-bottom: 1rem;
+}
+
+.article-template__link {
+ font-size: 1.8rem;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ text-decoration: none;
+}
+
+.article-template__link .icon-wrap {
+ display: flex;
+ margin-right: 1rem;
+ transform: rotate(180deg);
+}
+
+.article-template__content {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+}
+
+.article-template__social-sharing {
+ margin-top: 3rem;
+}
+
+.article-template__social-sharing + header,
+.article-template__social-sharing + .article-template__content {
+ margin-top: 1.5rem;
+}
+
+.article-template__comment-wrapper {
+ margin-top: 5rem;
+ padding: 2.7rem 0;
+}
+
+@media screen and (min-width: 750px) {
+ .article-template__comment-wrapper {
+ margin-top: 6rem;
+ padding: 3.6rem 0;
+ }
+}
+
+.article-template__comment-wrapper h2 {
+ margin-top: 0;
+}
+
+.article-template__comments {
+ margin-bottom: 5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .article-template__comments {
+ margin-bottom: 7rem;
+ }
+}
+
+.article-template__comments-fields {
+ margin-bottom: 4rem;
+}
+
+.article-template__comments-comment {
+ color: rgba(var(--color-foreground), 0.75);
+ background-color: rgb(var(--color-background));
+ margin-bottom: 1.5rem;
+ padding: 2rem 2rem 1.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .article-template__comments-comment {
+ padding: 2rem 2.5rem;
+ }
+}
+
+.article-template__comments-comment p {
+ margin: 0 0 1rem;
+}
+
+.article-template__comment-fields > * {
+ margin-bottom: 3rem;
+}
+
+@media screen and (min-width: 750px) {
+ .article-template__comment-fields {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ grid-column-gap: 4rem;
+ }
+}
+
+.article-template__comment-warning {
+ margin: 2rem 0 2.5rem;
+}
+
+@media screen and (min-width: 990px) {
+ .article-template__comments .pagination-wrapper {
+ margin: 5rem 0 8rem;
+ }
+}
+
+.article-template__back:last-child {
+ margin-bottom: 3.2rem;
+}
diff --git a/assets/section-collection-list.css b/assets/section-collection-list.css
new file mode 100644
index 0000000..518e79a
--- /dev/null
+++ b/assets/section-collection-list.css
@@ -0,0 +1,61 @@
+.collection-list {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.collection-list-title {
+ margin: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .collection-list:not(.slider) {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+ .section-collection-list .page-width {
+ padding-left: 0;
+ padding-right: 0;
+ }
+
+ .section-collection-list .collection-list:not(.slider) {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+}
+
+.collection-list__item:only-child {
+ max-width: 100%;
+ width: 100%;
+}
+
+@media screen and (max-width: 749px) {
+ .slider.collection-list--1-items {
+ padding-bottom: 0;
+ }
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .slider.collection-list--1-items,
+ .slider.collection-list--2-items,
+ .slider.collection-list--3-items,
+ .slider.collection-list--4-items {
+ padding-bottom: 0;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .collection-list__item a:hover {
+ box-shadow: none;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .collection-list.slider .collection-list__item {
+ max-width: 100%;
+ }
+}
+
+.collection-list-view-all {
+ margin-top: 2rem;
+}
diff --git a/assets/section-contact-form.css b/assets/section-contact-form.css
new file mode 100644
index 0000000..aae4e19
--- /dev/null
+++ b/assets/section-contact-form.css
@@ -0,0 +1,39 @@
+.contact img {
+ max-width: 100%;
+}
+
+.contact .form__message {
+ align-items: flex-start;
+}
+
+.contact .icon-success {
+ margin-top: 0.2rem;
+}
+
+.contact .field {
+ margin-bottom: 1.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .contact .field {
+ margin-bottom: 2rem;
+ }
+}
+
+.contact__button {
+ margin-top: 3rem;
+}
+
+@media screen and (min-width: 750px) {
+ .contact__button {
+ margin-top: 4rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .contact__fields {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ grid-column-gap: 2rem;
+ }
+}
diff --git a/assets/section-email-signup-banner.css b/assets/section-email-signup-banner.css
new file mode 100644
index 0000000..c6db657
--- /dev/null
+++ b/assets/section-email-signup-banner.css
@@ -0,0 +1,98 @@
+.email-signup-banner .newsletter-form,
+.email-signup-banner .newsletter-form__field-wrapper {
+ display: inline-block;
+}
+
+@media only screen and (min-width: 750px) {
+ .email-signup-banner:not(.banner--desktop-transparent) .email-signup-banner__box {
+ width: 100%;
+ }
+}
+
+.email-signup-banner__box .email-signup-banner__heading {
+ margin-bottom: 0;
+}
+
+.email-signup-banner__box > * + .newsletter__subheading {
+ margin-top: 2rem;
+}
+
+.email-signup-banner__box .newsletter__subheading p {
+ margin: 0;
+}
+
+.email-signup-banner-background {
+ width: 100%;
+ height: 100%;
+ position: relative;
+ left: 50%;
+ transform: translateX(-50%);
+}
+
+@media screen and (max-width: 749px) {
+ .email-signup-banner:not(.banner--mobile-bottom) .banner__box:not(.email-signup-banner__box--no-image) {
+ background-color: transparent;
+ --color-foreground: 255, 255, 255;
+ --color-button: 255, 255, 255;
+ --color-button-text: 0, 0, 0;
+ }
+}
+
+@media only screen and (min-width: 750px) {
+ .banner--desktop-transparent .email-signup-banner__box--no-image * {
+ color: rgb(var(--color-foreground));
+ }
+
+ .banner--desktop-transparent .email-signup-banner__box .field__input {
+ background-color: transparent;
+ }
+
+ .banner--desktop-transparent .email-signup-banner__box--no-image .field__input {
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.55);
+ }
+
+ .banner--desktop-transparent .email-signup-banner__box--no-image .field__input:focus {
+ box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.75);
+ }
+
+ .banner--desktop-transparent .email-signup-banner__box--no-image .field__button:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+ }
+}
+
+@media only screen and (min-width: 750px) {
+ .email-signup-banner-background-mobile {
+ display: none;
+ }
+}
+
+@media only screen and (max-width: 749px) {
+ .email-signup-banner-background:not(.email-signup-banner-background-mobile) {
+ display: none;
+ }
+}
+
+.email-signup-banner .banner__media {
+ overflow: hidden;
+}
+
+@media screen and (max-width: 749px) {
+ .banner--mobile-content-align-left .newsletter-form__message {
+ justify-content: flex-start;
+ }
+
+ .banner--mobile-content-align-right .newsletter-form__message {
+ justify-content: right;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .banner--content-align-center .newsletter-form__message {
+ justify-content: center;
+ }
+
+ .banner--content-align-right .newsletter-form__message {
+ justify-content: right;
+ }
+}
diff --git a/assets/section-featured-blog.css b/assets/section-featured-blog.css
new file mode 100644
index 0000000..26db6d7
--- /dev/null
+++ b/assets/section-featured-blog.css
@@ -0,0 +1,60 @@
+.blog-placeholder-svg {
+ height: 100%;
+}
+
+@media screen and (min-width: 990px) {
+ .grid--1-col-desktop .article-card .card__content {
+ text-align: center;
+ }
+}
+
+.blog__title {
+ margin: 0;
+}
+
+.blog__posts.articles-wrapper {
+ margin-bottom: 1rem;
+}
+
+@media screen and (min-width: 990px) {
+ .blog__posts.articles-wrapper {
+ margin-bottom: 0;
+ }
+}
+
+.blog__posts.articles-wrapper .article {
+ scroll-snap-align: start;
+}
+
+@media screen and (max-width: 749px) {
+ .blog__post.article {
+ width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
+ }
+}
+
+.background-secondary .blog-placeholder__content {
+ background-color: rgb(var(--color-background));
+}
+
+.blog__posts .card-wrapper {
+ width: 100%;
+}
+
+.blog__button {
+ margin-top: 3rem;
+}
+
+@media screen and (min-width: 750px) {
+ .blog__button {
+ margin-top: 5rem;
+ }
+}
+
+/* check for flexbox gap in older Safari versions */
+@supports not (inset: 10px) {
+ @media screen and (min-width: 750px) {
+ .blog__posts .article + .article {
+ margin-left: var(--grid-desktop-horizontal-spacing);
+ }
+ }
+}
diff --git a/assets/section-featured-product.css b/assets/section-featured-product.css
new file mode 100644
index 0000000..5290e06
--- /dev/null
+++ b/assets/section-featured-product.css
@@ -0,0 +1,76 @@
+.featured-product .product__media-list {
+ width: 100%;
+ margin: 0;
+ padding-bottom: 0;
+}
+
+.featured-product .product-media-container {
+ margin-bottom: var(--media-shadow-vertical-offset);
+ max-width: 100%;
+}
+
+.featured-product .product__media-item {
+ padding-left: 0;
+ width: 100%;
+}
+
+.featured-product .product__media-item:not(:first-child) {
+ display: none;
+}
+
+.featured-product .placeholder-svg {
+ display: block;
+ height: auto;
+ width: 100%;
+}
+
+.background-secondary .featured-product {
+ padding: 2.5rem;
+}
+
+.featured-product .share-button:nth-last-child(2) {
+ display: inline-flex;
+}
+
+.share-button + .product__view-details {
+ display: inline-flex;
+ float: right;
+ align-items: center;
+ min-height: 4.4rem;
+}
+
+.share-button + .product__view-details::after {
+ content: '';
+ clear: both;
+ display: table;
+}
+
+@media screen and (min-width: 750px) {
+ .featured-product .product__media-item {
+ padding-bottom: 0;
+ }
+
+ .background-secondary .featured-product {
+ padding: 5rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .background-secondary .featured-product:not(.product--no-media) > .product__info-wrapper {
+ padding: 0 0 0 5rem;
+ }
+
+ .background-secondary .featured-product:not(.product--no-media).product--right > .product__info-wrapper {
+ padding: 0 5rem 0 0;
+ }
+
+ .featured-product:not(.product--no-media) > .product__info-wrapper {
+ padding: 0 7rem;
+ }
+
+ .background-secondary .featured-product {
+ padding: 6rem 7rem;
+ position: relative;
+ z-index: 1;
+ }
+}
diff --git a/assets/section-footer.css b/assets/section-footer.css
new file mode 100644
index 0000000..97a564e
--- /dev/null
+++ b/assets/section-footer.css
@@ -0,0 +1,510 @@
+.footer {
+ border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
+}
+
+.footer:not(.color-background-1) {
+ border-top: none;
+}
+
+.footer__content-top {
+ padding-bottom: 5rem;
+ display: block;
+}
+
+@media screen and (max-width: 749px) {
+ .footer .grid {
+ display: block;
+ }
+
+ .footer-block.grid__item {
+ padding: 0;
+ margin: 4rem 0;
+ width: 100%;
+ }
+
+ .footer-block.grid__item:first-child {
+ margin-top: 0;
+ }
+
+ .footer__content-top {
+ padding-bottom: 3rem;
+ padding-left: calc(4rem / var(--font-body-scale));
+ padding-right: calc(4rem / var(--font-body-scale));
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .footer__content-top .grid {
+ row-gap: 6rem;
+ margin-bottom: 0;
+ }
+}
+
+.footer__content-bottom {
+ border-top: solid 0.1rem rgba(var(--color-foreground), 0.08);
+ padding-top: 3rem;
+}
+
+.footer__content-bottom:only-child {
+ border-top: 0;
+}
+
+.footer__content-bottom-wrapper {
+ display: flex;
+ width: 100%;
+}
+
+@media screen and (max-width: 749px) {
+ .footer__content-bottom {
+ flex-wrap: wrap;
+ padding-top: 0;
+ padding-left: 0;
+ padding-right: 0;
+ row-gap: 1.5rem;
+ }
+
+ .footer__content-bottom-wrapper {
+ flex-wrap: wrap;
+ row-gap: 1.5rem;
+ justify-content: center;
+ }
+}
+
+.footer__localization:empty + .footer__column--info {
+ align-items: center;
+}
+
+@media screen and (max-width: 749px) {
+ .footer__localization:empty + .footer__column {
+ padding-top: 1.5rem;
+ }
+}
+
+.footer__column {
+ width: 100%;
+ align-items: flex-end;
+}
+
+.footer__column--info {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ padding-left: 2rem;
+ padding-right: 2rem;
+}
+
+@media screen and (min-width: 750px) {
+ .footer__column--info {
+ padding-left: 0;
+ padding-right: 0;
+ align-items: flex-end;
+ }
+}
+
+.footer-block:only-child:last-child {
+ text-align: center;
+ max-width: 76rem;
+ margin: 0 auto;
+}
+
+@media screen and (min-width: 750px) {
+ .footer-block {
+ display: block;
+ margin-top: 0;
+ }
+}
+
+.footer-block:empty {
+ display: none;
+}
+
+.footer-block--newsletter {
+ display: flex;
+ align-items: flex-end;
+ margin-top: 3rem;
+ gap: 1rem;
+}
+
+.footer-block--newsletter:only-child {
+ margin-top: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .footer-block.footer-block--menu:only-child {
+ text-align: left;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .footer-block--newsletter {
+ flex-wrap: nowrap;
+ justify-content: center;
+ }
+}
+
+.footer-block__heading {
+ margin-bottom: 2rem;
+ margin-top: 0;
+ font-size: calc(var(--font-heading-scale) * 1.6rem);
+}
+
+@media screen and (min-width: 990px) {
+ .footer-block__heading {
+ font-size: calc(var(--font-heading-scale) * 1.8rem);
+ }
+}
+
+.footer__list-social:empty,
+.footer-block--newsletter:empty {
+ display: none;
+}
+
+.footer__follow-on-shop {
+ display: flex;
+ text-align: center;
+}
+
+.footer__list-social.list-social:only-child {
+ justify-content: center;
+}
+
+.footer-block__newsletter {
+ text-align: center;
+ flex-grow: 1;
+}
+
+.newsletter-form__field-wrapper {
+ max-width: 36rem;
+}
+
+@media screen and (min-width: 750px) {
+ /* Pushes other components to the right of the flexbox */
+ .footer-block__newsletter:not(:only-child) {
+ text-align: left;
+ margin-right: auto;
+ }
+
+ .footer-block__newsletter:not(:only-child) .footer__newsletter {
+ justify-content: flex-start;
+ margin: 0;
+ }
+
+ .footer-block__newsletter:not(:only-child) .newsletter-form__message--success {
+ left: auto;
+ }
+
+ .footer__follow-on-shop {
+ margin-bottom: 0.4rem;
+ }
+ /* Follow on shop is the first button but it has siblings*/
+ .footer__follow-on-shop:first-child:not(:last-child) {
+ justify-content: flex-start;
+ margin-right: auto;
+ text-align: left;
+ }
+
+ /*
+ All three components are present, email, Follow on Shop, and social icons.
+ Moves the FoS button next to the social icons so they appear grouped together
+ */
+ .footer__follow-on-shop:not(:first-child):not(:last-child) {
+ justify-content: flex-end;
+ text-align: right;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ /*
+ On a small screen we want all the items to be centered
+ because they will be stacked.
+ */
+ .footer-block--newsletter {
+ display: flex;
+ flex-direction: column;
+ flex: 1 1 100%;
+ align-items: center;
+ gap: 3rem;
+ }
+
+ .footer__list-social.list-social,
+ .footer__follow-on-shop,
+ .footer-block__newsletter {
+ display: flex;
+ justify-content: center;
+ }
+
+ .footer-block__newsletter {
+ flex-direction: column;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .footer-block__newsletter + .footer__list-social {
+ margin-top: 0;
+ }
+}
+
+.footer__localization {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-content: center;
+ flex-wrap: wrap;
+ padding: 1rem 1rem 0;
+}
+
+.footer__localization:empty {
+ display: none;
+}
+
+.footer__localization h2 {
+ margin: 1rem 1rem 0.5rem;
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+@media screen and (min-width: 750px) {
+ .footer__localization {
+ padding: 0.4rem 0;
+ justify-content: flex-start;
+ }
+
+ .footer__localization h2 {
+ margin: 1rem 0 0;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .footer__localization noscript {
+ width: 100%;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .footer__payment {
+ margin-top: 1.5rem;
+ }
+}
+
+.footer__content-bottom-wrapper--center {
+ justify-content: center;
+}
+
+.footer__copyright {
+ text-align: center;
+ margin-top: 1.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .footer__content-bottom-wrapper:not(.footer__content-bottom-wrapper--center) .footer__copyright {
+ text-align: right;
+ }
+}
+
+@keyframes appear-down {
+ 0% {
+ opacity: 0;
+ margin-top: -1rem;
+ }
+ 100% {
+ opacity: 1;
+ margin-top: 0;
+ }
+}
+
+.footer-block__details-content {
+ margin-bottom: 4rem;
+}
+
+@media screen and (min-width: 750px) {
+ .footer-block__details-content {
+ margin-bottom: 0;
+ }
+
+ .footer-block__details-content > p,
+ .footer-block__details-content > li {
+ padding: 0;
+ }
+
+ .footer-block:only-child li {
+ display: inline;
+ }
+
+ .footer-block__details-content > li:not(:last-child) {
+ margin-right: 1.5rem;
+ }
+}
+
+.footer-block__details-content .list-menu__item--link,
+.copyright__content a {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.footer-block__details-content .list-menu__item--active {
+ transition: text-decoration-thickness var(--duration-short) ease;
+ color: rgb(var(--color-foreground));
+}
+
+@media screen and (min-width: 750px) {
+ .footer-block__details-content .list-menu__item--link:hover,
+ .copyright__content a:hover {
+ color: rgb(var(--color-foreground));
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+ }
+
+ .footer-block__details-content .list-menu__item--active:hover {
+ text-decoration-thickness: 0.2rem;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .footer-block__details-content .list-menu__item--link {
+ padding-top: 1rem;
+ padding-bottom: 1rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .footer-block__details-content .list-menu__item--link {
+ display: inline-block;
+ font-size: 1.4rem;
+ }
+
+ .footer-block__details-content > :first-child .list-menu__item--link {
+ padding-top: 0;
+ }
+}
+
+.footer-block-image {
+ display: flex;
+}
+
+.footer-block-image.left {
+ justify-content: flex-start;
+}
+
+.footer-block-image.center {
+ justify-content: center;
+}
+
+.footer-block-image.right {
+ justify-content: flex-end;
+}
+
+@media screen and (max-width: 749px) {
+ .footer-block-image,
+ .footer-block-image.left,
+ .footer-block-image.center,
+ .footer-block-image.right {
+ justify-content: center;
+ }
+}
+
+.footer-block__image-wrapper {
+ margin-bottom: 2rem;
+ overflow: hidden !important;
+}
+
+.footer-block__image-wrapper img {
+ display: block;
+ height: auto;
+ max-width: 100%;
+}
+
+.footer-block__brand-info {
+ text-align: left;
+}
+
+.footer-block:only-child .footer-block__brand-info {
+ text-align: center;
+}
+
+.footer-block:only-child > .footer-block__brand-info > .footer-block__image-wrapper {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.footer-block-image > img,
+.footer-block__brand-info > img {
+ height: auto;
+}
+
+.footer-block:only-child .footer-block__brand-info .footer__list-social.list-social {
+ justify-content: center;
+}
+
+.footer-block__brand-info .footer__list-social.list-social {
+ justify-content: flex-start;
+ margin-left: -1.3rem;
+ margin-right: -1.3rem;
+}
+
+.footer-block__details-content .placeholder-svg {
+ max-width: 20rem;
+}
+
+.copyright__content {
+ font-size: 1.1rem;
+}
+
+.copyright__content a {
+ color: currentColor;
+ text-decoration: none;
+}
+
+.policies {
+ display: inline;
+}
+
+.policies li {
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.policies li::before {
+ content: '\00B7';
+ padding: 0 0.8rem;
+}
+
+.policies li a {
+ padding: 0.6rem 0;
+ display: block;
+}
+
+@media screen and (min-width: 750px) {
+ .policies li a {
+ padding: 0;
+ }
+}
+@keyframes animateLocalization {
+ 0% {
+ opacity: 0;
+ transform: translateY(0);
+ }
+
+ 100% {
+ opacity: 1;
+ transform: translateY(-1rem);
+ }
+}
+
+/* check for flexbox gap in older Safari versions */
+@supports not (inset: 10px) {
+ @media screen and (max-width: 749px) {
+ .footer .grid {
+ margin-left: 0;
+ }
+ }
+
+ @media screen and (min-width: 750px) {
+ .footer__content-top .grid {
+ margin-left: -3rem;
+ }
+
+ .footer__content-top .grid__item {
+ padding-left: 3rem;
+ }
+ }
+}
diff --git a/assets/section-image-banner.css b/assets/section-image-banner.css
new file mode 100644
index 0000000..a5a2c54
--- /dev/null
+++ b/assets/section-image-banner.css
@@ -0,0 +1,481 @@
+.banner {
+ display: flex;
+ position: relative;
+ flex-direction: column;
+}
+
+.banner__box {
+ text-align: center;
+}
+
+/* Needed for gradient continuity with or without animation, the transform scopes the gradient to its container which happens already when animation are turned on */
+.banner__box.gradient {
+ transform: perspective(0);
+}
+
+@media only screen and (max-width: 749px) {
+ .banner--content-align-mobile-right .banner__box {
+ text-align: right;
+ }
+
+ .banner--content-align-mobile-left .banner__box {
+ text-align: left;
+ }
+}
+
+@media only screen and (min-width: 750px) {
+ .banner--content-align-right .banner__box {
+ text-align: right;
+ }
+
+ .banner--content-align-left .banner__box {
+ text-align: left;
+ }
+
+ .banner--content-align-left.banner--desktop-transparent .banner__box,
+ .banner--content-align-right.banner--desktop-transparent .banner__box,
+ .banner--medium.banner--desktop-transparent .banner__box {
+ max-width: 68rem;
+ }
+}
+
+.banner__media.animate--zoom-in {
+ clip-path: inset(0px);
+}
+
+.banner__media.animate--zoom-in > img:not(.zoom):not(.deferred-media__poster-button),
+.banner__media.animate--zoom-in > svg:not(.zoom):not(.deferred-media__poster-button) {
+ position: fixed;
+ height: 100vh;
+}
+
+@media screen and (max-width: 749px) {
+ .banner--small.banner--mobile-bottom:not(.banner--adapt) .banner__media,
+ .banner--small.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
+ height: 28rem;
+ }
+
+ .banner--medium.banner--mobile-bottom:not(.banner--adapt) .banner__media,
+ .banner--medium.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
+ height: 34rem;
+ }
+
+ .banner--large.banner--mobile-bottom:not(.banner--adapt) .banner__media,
+ .banner--large.banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) > .banner__media {
+ height: 39rem;
+ }
+
+ .banner--small:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
+ min-height: 28rem;
+ }
+
+ .banner--medium:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
+ min-height: 34rem;
+ }
+
+ .banner--large:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
+ min-height: 39rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .banner {
+ flex-direction: row;
+ }
+
+ .banner--small:not(.banner--adapt) {
+ min-height: 42rem;
+ }
+
+ .banner--medium:not(.banner--adapt) {
+ min-height: 56rem;
+ }
+
+ .banner--large:not(.banner--adapt) {
+ min-height: 72rem;
+ }
+
+ .banner__content.banner__content--top-left {
+ align-items: flex-start;
+ justify-content: flex-start;
+ }
+
+ .banner__content.banner__content--top-center {
+ align-items: flex-start;
+ justify-content: center;
+ }
+
+ .banner__content.banner__content--top-right {
+ align-items: flex-start;
+ justify-content: flex-end;
+ }
+
+ .banner__content.banner__content--middle-left {
+ align-items: center;
+ justify-content: flex-start;
+ }
+
+ .banner__content.banner__content--middle-center {
+ align-items: center;
+ justify-content: center;
+ }
+
+ .banner__content.banner__content--middle-right {
+ align-items: center;
+ justify-content: flex-end;
+ }
+
+ .banner__content.banner__content--bottom-left {
+ align-items: flex-end;
+ justify-content: flex-start;
+ }
+
+ .banner__content.banner__content--bottom-center {
+ align-items: flex-end;
+ justify-content: center;
+ }
+
+ .banner__content.banner__content--bottom-right {
+ align-items: flex-end;
+ justify-content: flex-end;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .banner:not(.banner--stacked) {
+ flex-direction: row;
+ flex-wrap: wrap;
+ }
+
+ .banner--stacked {
+ height: auto;
+ }
+
+ .banner--stacked .banner__media {
+ flex-direction: column;
+ }
+}
+
+.banner__media {
+ height: 100%;
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 100%;
+}
+
+.banner__media-half {
+ width: 50%;
+}
+
+.banner__media-half + .banner__media-half {
+ right: 0;
+ left: auto;
+}
+
+.banner__media-half.animate--fixed:first-child > img,
+.banner__media-half.animate--zoom-in:first-child > img {
+ width: 50%;
+}
+
+.banner__media-half.animate--fixed:nth-child(2) > img,
+.banner__media-half.animate--zoom-in:nth-child(2) > img {
+ left: 50%;
+ width: 50%;
+}
+
+@media screen and (max-width: 749px) {
+ .banner--stacked .animate--fixed:first-child > img,
+ .banner--stacked .animate--zoom-in:first-child > img {
+ width: 100%;
+ }
+
+ .banner--stacked .banner__media-half.animate--fixed:nth-child(2) > img,
+ .banner--stacked .banner__media-half.animate--zoom-in:nth-child(2) > img {
+ left: 0;
+ width: 100%;
+ }
+
+ .banner--stacked .banner__media-half {
+ width: 100%;
+ }
+
+ .banner--stacked .banner__media-half + .banner__media-half {
+ order: 1;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .banner__media {
+ height: 100%;
+ }
+}
+
+.banner--adapt,
+.banner--adapt_image.banner--mobile-bottom .banner__media:not(.placeholder) {
+ height: auto;
+}
+
+@media screen and (max-width: 749px) {
+ .banner--mobile-bottom .banner__media,
+ .banner--stacked:not(.banner--mobile-bottom) .banner__media {
+ position: relative;
+ }
+
+ .banner--stacked.banner--adapt .banner__content {
+ height: auto;
+ }
+
+ .banner:not(.banner--mobile-bottom):not(.email-signup-banner) .banner__box {
+ background: transparent;
+ }
+
+ .banner:not(.banner--mobile-bottom) .banner__box {
+ border: none;
+ border-radius: 0;
+ box-shadow: none;
+ }
+
+ .banner:not(.banner--mobile-bottom) .button--secondary {
+ --alpha-button-background: 0;
+ }
+
+ .banner--stacked:not(.banner--mobile-bottom):not(.banner--adapt) .banner__content {
+ position: absolute;
+ height: auto;
+ }
+
+ .banner--stacked.banner--adapt:not(.banner--mobile-bottom) .banner__content {
+ max-height: 100%;
+ overflow: hidden;
+ position: absolute;
+ }
+
+ .banner--stacked:not(.banner--adapt) .banner__media {
+ position: relative;
+ }
+
+ .banner::before {
+ display: none !important;
+ }
+
+ .banner--stacked .banner__media-image-half {
+ width: 100%;
+ }
+}
+
+.banner__content {
+ padding: 0;
+ display: flex;
+ position: relative;
+ width: 100%;
+ align-items: center;
+ justify-content: center;
+ z-index: 2;
+}
+
+@media screen and (min-width: 750px) {
+ .banner__content {
+ padding: 5rem;
+ }
+
+ .banner__content--top-left {
+ align-items: flex-start;
+ justify-content: flex-start;
+ }
+
+ .banner__content--top-center {
+ align-items: flex-start;
+ justify-content: center;
+ }
+
+ .banner__content--top-right {
+ align-items: flex-start;
+ justify-content: flex-end;
+ }
+
+ .banner__content--middle-left {
+ align-items: center;
+ justify-content: flex-start;
+ }
+
+ .banner__content--middle-center {
+ align-items: center;
+ justify-content: center;
+ }
+
+ .banner__content--middle-right {
+ align-items: center;
+ justify-content: flex-end;
+ }
+
+ .banner__content--bottom-left {
+ align-items: flex-end;
+ justify-content: flex-start;
+ }
+
+ .banner__content--bottom-center {
+ align-items: flex-end;
+ justify-content: center;
+ }
+
+ .banner__content--bottom-right {
+ align-items: flex-end;
+ justify-content: flex-end;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .banner--mobile-bottom:not(.banner--stacked) .banner__content {
+ order: 2;
+ }
+
+ .banner:not(.banner--mobile-bottom) .field__input,
+ .banner--mobile-bottom:not(.banner--stacked) .banner__box.color-background-1 {
+ background: transparent;
+ }
+}
+
+.banner__box {
+ padding: 4rem 3.5rem;
+ position: relative;
+ height: fit-content;
+ align-items: center;
+ text-align: center;
+ width: 100%;
+ word-wrap: break-word;
+ z-index: 1;
+}
+
+@media screen and (min-width: 750px) {
+ .banner--desktop-transparent .banner__box {
+ background: transparent;
+ max-width: 89rem;
+ border: none;
+ border-radius: 0;
+ box-shadow: none;
+ }
+
+ .banner--desktop-transparent .button--secondary {
+ --alpha-button-background: 0;
+ }
+
+ .banner--desktop-transparent .content-container:after {
+ display: none;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .banner--mobile-bottom::after,
+ .banner--mobile-bottom .banner__media::after {
+ display: none;
+ }
+}
+
+.banner::after,
+.banner__media::after {
+ content: '';
+ position: absolute;
+ top: 0;
+ background: #000000;
+ opacity: 0;
+ z-index: 1;
+ width: 100%;
+ height: 100%;
+}
+
+.banner__box > * + .banner__text {
+ margin-top: 1.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .banner__box > * + .banner__text {
+ margin-top: 2rem;
+ }
+}
+
+.banner__box > * + * {
+ margin-top: 1rem;
+}
+
+.banner__box > *:first-child {
+ margin-top: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .banner--stacked .banner__box {
+ width: 100%;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .banner__box {
+ width: auto;
+ max-width: 71rem;
+ min-width: 45rem;
+ }
+}
+
+@media screen and (min-width: 1400px) {
+ .banner__box {
+ max-width: 90rem;
+ }
+}
+
+.banner__heading {
+ margin-bottom: 0;
+}
+
+.banner__box .banner__heading + * {
+ margin-top: 1rem;
+}
+
+.banner__buttons {
+ display: inline-flex;
+ flex-wrap: wrap;
+ gap: 1rem;
+ max-width: 45rem;
+ word-break: break-word;
+}
+
+@media screen and (max-width: 749px) {
+ .banner--content-align-mobile-right .banner__buttons--multiple {
+ justify-content: flex-end;
+ }
+
+ .banner--content-align-mobile-center .banner__buttons--multiple > * {
+ flex-grow: 1;
+ min-width: 22rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .banner--content-align-center .banner__buttons--multiple > * {
+ flex-grow: 1;
+ min-width: 22rem;
+ }
+
+ .banner--content-align-right .banner__buttons--multiple {
+ justify-content: flex-end;
+ }
+}
+
+.banner__box > * + .banner__buttons {
+ margin-top: 2rem;
+}
+
+@media screen and (max-width: 749px) {
+ .banner:not(.slideshow) .rte a,
+ .banner:not(.slideshow) .inline-richtext a:hover,
+ .banner:not(.slideshow) .rte a:hover {
+ color: currentColor;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .banner--desktop-transparent .rte a,
+ .banner--desktop-transparent .inline-richtext a:hover,
+ .banner--desktop-transparent .rte a:hover {
+ color: currentColor;
+ }
+}
diff --git a/assets/section-main-blog.css b/assets/section-main-blog.css
new file mode 100644
index 0000000..ef1587e
--- /dev/null
+++ b/assets/section-main-blog.css
@@ -0,0 +1,61 @@
+.blog-articles {
+ display: grid;
+ grid-gap: 1rem;
+ column-gap: var(--grid-mobile-horizontal-spacing);
+ row-gap: var(--grid-mobile-vertical-spacing);
+}
+
+.blog-articles .card-wrapper {
+ width: 100%;
+}
+
+@media screen and (min-width: 750px) {
+ .blog-articles {
+ grid-template-columns: 1fr 1fr;
+ column-gap: var(--grid-desktop-horizontal-spacing);
+ row-gap: var(--grid-desktop-vertical-spacing);
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1),
+ .blog-articles--collage > *:nth-child(3n + 2):last-child {
+ grid-column: span 2;
+ text-align: center;
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1) .card,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .card {
+ text-align: center;
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--small .ratio::before,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--small .ratio::before {
+ padding-bottom: 22rem;
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--medium .ratio::before,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--medium .ratio::before {
+ padding-bottom: 44rem;
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--large .ratio::before,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--large .ratio::before {
+ padding-bottom: 66rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--small .ratio .ratio::before,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--small .ratio .ratio::before {
+ padding-bottom: 27.5rem;
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--medium .ratio::before,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--medium .ratio::before {
+ padding-bottom: 55rem;
+ }
+
+ .blog-articles--collage > *:nth-child(3n + 1) .article-card__image--large .ratio::before,
+ .blog-articles--collage > *:nth-child(3n + 2):last-child .article-card__image--large .ratio::before {
+ padding-bottom: 82.5rem;
+ }
+}
diff --git a/assets/section-main-page.css b/assets/section-main-page.css
new file mode 100644
index 0000000..f193fd4
--- /dev/null
+++ b/assets/section-main-page.css
@@ -0,0 +1,23 @@
+.page-title {
+ margin-top: 0;
+}
+
+.main-page-title {
+ margin-bottom: 3rem;
+}
+
+@media screen and (min-width: 750px) {
+ .main-page-title {
+ margin-bottom: 4rem;
+ }
+}
+
+.page-placeholder-wrapper {
+ display: flex;
+ justify-content: center;
+}
+
+.page-placeholder {
+ width: 52.5rem;
+ height: 52.5rem;
+}
diff --git a/assets/section-main-product.css b/assets/section-main-product.css
new file mode 100644
index 0000000..7a523d9
--- /dev/null
+++ b/assets/section-main-product.css
@@ -0,0 +1,1600 @@
+.product {
+ margin: 0;
+}
+
+.product.grid {
+ gap: 0;
+}
+
+.product--no-media {
+ max-width: 57rem;
+ margin: 0 auto;
+}
+
+.product__media-wrapper {
+ padding-left: 0;
+}
+
+@media screen and (min-width: 750px) {
+ .product__column-sticky {
+ display: block;
+ position: sticky;
+ top: 3rem;
+ z-index: 2;
+ }
+
+ .product--thumbnail .thumbnail-list {
+ padding-right: var(--media-shadow-horizontal-offset);
+ }
+
+ .product__info-wrapper {
+ padding: 0 0 0 5rem;
+ }
+
+ .product__info-wrapper--extra-padding {
+ padding: 0 0 0 8rem;
+ }
+
+ .product--right .product__info-wrapper {
+ padding: 0 5rem 0 0;
+ }
+
+ .product--right .product__info-wrapper--extra-padding {
+ padding: 0 8rem 0 0;
+ }
+
+ .product--right .product__media-list {
+ margin-bottom: 2rem;
+ }
+
+ .product__media-container .slider-buttons {
+ display: none;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .product--large:not(.product--no-media) .product__media-wrapper {
+ max-width: 65%;
+ width: calc(65% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .product--large:not(.product--no-media) .product__info-wrapper {
+ padding: 0 0 0 4rem;
+ max-width: 35%;
+ width: calc(35% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .product--large:not(.product--no-media).product--right .product__info-wrapper {
+ padding: 0 4rem 0 0;
+ }
+
+ .product--medium:not(.product--no-media) .product__media-wrapper,
+ .product--small:not(.product--no-media) .product__info-wrapper {
+ max-width: 55%;
+ width: calc(55% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .product--medium:not(.product--no-media) .product__info-wrapper,
+ .product--small:not(.product--no-media) .product__media-wrapper {
+ max-width: 45%;
+ width: calc(45% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+}
+
+/* Dynamic checkout */
+
+.shopify-payment-button__button {
+ font-family: inherit;
+ min-height: 4.6rem;
+}
+
+.shopify-payment-button__button [role='button'].focused,
+.no-js .shopify-payment-button__button [role='button']:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
+ 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
+}
+
+.shopify-payment-button__button [role='button']:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none !important;
+}
+
+.shopify-payment-button__button [role='button']:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5) !important;
+ box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
+ 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3) !important;
+}
+
+.shopify-payment-button__button--unbranded {
+ background-color: rgba(var(--color-button), var(--alpha-button-background));
+ color: rgb(var(--color-button-text));
+ font-size: 1.4rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+ letter-spacing: 0.07rem;
+}
+
+.shopify-payment-button__button--unbranded::selection {
+ background-color: rgba(var(--color-button-text), 0.3);
+}
+
+.shopify-payment-button__button--unbranded:hover,
+.shopify-payment-button__button--unbranded:hover:not([disabled]) {
+ background-color: rgba(var(--color-button), var(--alpha-button-background));
+}
+
+.shopify-payment-button__more-options {
+ margin: 1.6rem 0 1rem;
+ font-size: 1.2rem;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+ letter-spacing: 0.05rem;
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.shopify-payment-button__button + .shopify-payment-button__button--hidden {
+ display: none;
+}
+
+/* Product form */
+
+.product-form {
+ display: block;
+}
+
+.product-form__error-message-wrapper:not([hidden]) {
+ display: flex;
+ align-items: flex-start;
+ font-size: 1.2rem;
+ margin-bottom: 1.5rem;
+}
+
+.product-form__error-message-wrapper svg {
+ flex-shrink: 0;
+ width: 1.2rem;
+ height: 1.2rem;
+ margin-right: 0.7rem;
+ margin-top: 0.5rem;
+}
+
+/* Form Elements */
+.product-form__input {
+ flex: 0 0 100%;
+ padding: 0;
+ margin: 0 0 1.2rem 0;
+ max-width: 44rem;
+ min-width: fit-content;
+ border: none;
+}
+
+variant-radios,
+variant-selects {
+ display: block;
+}
+
+.product-form__input--dropdown {
+ margin-bottom: 1.6rem;
+}
+
+.product-form__input .form__label {
+ padding-left: 0;
+}
+
+fieldset.product-form__input .form__label {
+ margin-bottom: 0.2rem;
+}
+
+.product-form__input input[type='radio'] {
+ clip: rect(0, 0, 0, 0);
+ overflow: hidden;
+ position: absolute;
+ height: 1px;
+ width: 1px;
+}
+
+.product-form__input input[type='radio'] + label {
+ border: var(--variant-pills-border-width) solid rgba(var(--color-foreground), var(--variant-pills-border-opacity));
+ background-color: rgb(var(--color-background));
+ color: rgba(var(--color-foreground));
+ border-radius: var(--variant-pills-radius);
+ color: rgb(var(--color-foreground));
+ display: inline-block;
+ margin: 0.7rem 0.5rem 0.2rem 0;
+ padding: 1rem 2rem;
+ font-size: 1.4rem;
+ letter-spacing: 0.1rem;
+ line-height: 1;
+ text-align: center;
+ transition: border var(--duration-short) ease;
+ cursor: pointer;
+ position: relative;
+}
+
+.product-form__input input[type='radio'] + label:before {
+ content: '';
+ position: absolute;
+ top: calc(var(--variant-pills-border-width) * -1);
+ right: calc(var(--variant-pills-border-width) * -1);
+ bottom: calc(var(--variant-pills-border-width) * -1);
+ left: calc(var(--variant-pills-border-width) * -1);
+ z-index: -1;
+ border-radius: var(--variant-pills-radius);
+ box-shadow: var(--variant-pills-shadow-horizontal-offset) var(--variant-pills-shadow-vertical-offset)
+ var(--variant-pills-shadow-blur-radius) rgba(var(--color-shadow), var(--variant-pills-shadow-opacity));
+}
+
+.product-form__input input[type='radio'] + label:hover {
+ border-color: rgb(var(--color-foreground));
+}
+
+.product-form__input input[type='radio']:checked + label {
+ background-color: rgb(var(--color-foreground));
+ color: rgb(var(--color-background));
+}
+
+.product-form__input input[type='radio']:not(.disabled) + label > .visually-hidden {
+ display: none;
+}
+
+@media screen and (forced-colors: active) {
+ .product-form__input input[type='radio']:checked + label {
+ text-decoration: underline;
+ }
+}
+
+.product-form__input input[type='radio']:checked + label::selection {
+ background-color: rgba(var(--color-background), 0.3);
+}
+
+.product-form__input input[type='radio']:disabled + label,
+.product-form__input input[type='radio'].disabled + label {
+ border-color: rgba(var(--color-foreground), 0.1);
+ color: rgba(var(--color-foreground), 0.6);
+ text-decoration: line-through;
+}
+
+.product-form__input input[type='radio'].disabled:checked + label,
+.product-form__input input[type='radio']:disabled:checked + label {
+ color: rgba(var(--color-background), 0.6);
+}
+.product-form__input input[type='radio']:focus-visible + label {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
+}
+
+/* Fallback */
+.product-form__input input[type='radio'].focused + label,
+.no-js .shopify-payment-button__button [role='button']:focus + label {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55);
+}
+
+/* No outline when focus-visible is available in the browser */
+.no-js .product-form__input input[type='radio']:focus:not(:focus-visible) + label {
+ box-shadow: none;
+}
+
+.product-form__input .select {
+ max-width: 25rem;
+}
+
+.product-form__submit {
+ margin-bottom: 1rem;
+}
+
+.no-js .product-form__submit.button--secondary {
+ --color-button: inherit;
+ --color-button-text: inherit;
+ --alpha-button-background: 1;
+}
+
+.product-form__submit[aria-disabled='true'] + .shopify-payment-button .shopify-payment-button__button[disabled],
+.product-form__submit[disabled] + .shopify-payment-button .shopify-payment-button__button[disabled] {
+ cursor: not-allowed;
+ opacity: 0.5;
+}
+
+@media screen and (forced-colors: active) {
+ .product-form__submit[aria-disabled='true'] {
+ color: Window;
+ }
+}
+
+/* Overrides */
+.shopify-payment-button__more-options {
+ color: rgb(var(--color-foreground));
+}
+
+.shopify-payment-button__button {
+ font-size: 1.5rem;
+ letter-spacing: 0.1rem;
+}
+
+/* Product info */
+
+.product__info-container > * + * {
+ margin: 1.5rem 0;
+}
+
+.product__info-container iframe {
+ max-width: 100%;
+}
+
+.product__info-container .product-form,
+.product__info-container .product__description,
+.product__info-container .icon-with-text {
+ margin: 2.5rem 0;
+}
+
+.product__text {
+ margin-bottom: 0;
+}
+
+a.product__text {
+ display: block;
+ text-decoration: none;
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.product__text.caption-with-letter-spacing {
+ text-transform: uppercase;
+}
+
+.product__title {
+ word-break: break-word;
+ margin-bottom: 1.5rem;
+}
+
+.product__title > * {
+ margin: 0;
+}
+
+.product__title > a {
+ display: none;
+}
+
+.product__title + .product__text.caption-with-letter-spacing {
+ margin-top: -1.5rem;
+}
+
+.product__text.caption-with-letter-spacing + .product__title {
+ margin-top: 0;
+}
+
+.product__accordion .accordion__content {
+ padding: 0 1rem;
+}
+
+.product .price .badge {
+ margin-bottom: 0.5rem;
+}
+
+.product .price__container {
+ margin-bottom: 0.5rem;
+}
+
+.product .price dl {
+ margin-top: 0.5rem;
+ margin-bottom: 0.5rem;
+}
+
+.product .price--sold-out .price__badge-sale {
+ display: none;
+}
+
+@media screen and (min-width: 750px) {
+ .product__info-container {
+ max-width: 60rem;
+ }
+
+ .product__info-container .price--on-sale .price-item--regular {
+ font-size: 1.6rem;
+ }
+
+ .product__info-container > *:first-child {
+ margin-top: 0;
+ }
+}
+
+.product__description-title {
+ font-weight: 600;
+}
+
+.product--no-media .product__title,
+.product--no-media .product__text,
+.product--no-media noscript .product-form__input,
+.product--no-media .product__tax,
+.product--no-media .product__sku,
+.product--no-media shopify-payment-terms {
+ text-align: center;
+}
+
+.product--no-media .product__media-wrapper,
+.product--no-media .product__info-wrapper {
+ padding: 0;
+}
+
+.product__tax {
+ margin-top: -1.4rem;
+}
+
+.product--no-media noscript .product-form__input,
+.product--no-media .share-button {
+ max-width: 100%;
+}
+
+.product--no-media fieldset.product-form__input,
+.product--no-media .product-form__quantity,
+.product--no-media .product-form__input--dropdown,
+.product--no-media .share-button,
+.product--no-media .product__view-details,
+.product--no-media .product__pickup-availabilities,
+.product--no-media .product-form {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+}
+
+.product--no-media .product-form {
+ flex-direction: column;
+}
+
+.product--no-media .product-form > .form {
+ max-width: 30rem;
+ width: 100%;
+}
+
+.product--no-media .product-form__quantity,
+.product--no-media .product-form__input--dropdown {
+ flex-direction: column;
+ max-width: 100%;
+}
+
+.product-form__quantity .form__label {
+ margin-bottom: 0.6rem;
+}
+
+.price-per-item__label.form__label {
+ margin-bottom: 0rem;
+}
+
+.product-form__quantity-top .form__label {
+ margin-bottom: 1.2rem;
+}
+
+.product--no-media fieldset.product-form__input {
+ flex-wrap: wrap;
+ margin: 0 auto 1.2rem auto;
+}
+
+.product-form__buttons {
+ max-width: 44rem;
+}
+
+.product--no-media .product__info-container > modal-opener {
+ display: block;
+ text-align: center;
+}
+
+.product--no-media .product-popup-modal__button {
+ padding-right: 0;
+}
+
+.product--no-media .price {
+ text-align: center;
+}
+
+/* Product media */
+.product__media-list video {
+ border-radius: calc(var(--media-radius) - var(--media-border-width));
+}
+
+@media screen and (max-width: 749px) {
+ .product__media-list {
+ margin-left: -2.5rem;
+ margin-bottom: 3rem;
+ width: calc(100% + 4rem);
+ }
+
+ .product__media-wrapper slider-component:not(.thumbnail-slider--no-slide) {
+ margin-left: -1.5rem;
+ margin-right: -1.5rem;
+ }
+
+ .slider.product__media-list::-webkit-scrollbar {
+ height: 0.2rem;
+ width: 0.2rem;
+ }
+
+ .product__media-list::-webkit-scrollbar-thumb {
+ background-color: rgb(var(--color-foreground));
+ }
+
+ .product__media-list::-webkit-scrollbar-track {
+ background-color: rgba(var(--color-foreground), 0.2);
+ }
+
+ .product__media-list .product__media-item {
+ width: calc(100% - 3rem - var(--grid-mobile-horizontal-spacing));
+ }
+
+ .product--mobile-columns .product__media-item {
+ width: calc(50% - 1.5rem - var(--grid-mobile-horizontal-spacing));
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .product--thumbnail .product__media-list,
+ .product--thumbnail_slider .product__media-list {
+ padding-bottom: calc(var(--media-shadow-vertical-offset) * var(--media-shadow-visible));
+ }
+
+ .product__media-list {
+ padding-right: calc(var(--media-shadow-horizontal-offset) * var(--media-shadow-visible));
+ }
+
+ .product--thumbnail .product__media-item:not(.is-active),
+ .product--thumbnail_slider .product__media-item:not(.is-active) {
+ display: none;
+ }
+
+ .product-media-modal__content > .product__media-item--variant.product__media-item--variant {
+ display: none;
+ }
+
+ .product-media-modal__content > .product__media-item--variant:first-child {
+ display: block;
+ }
+}
+
+.product__media-item.product__media-item--variant {
+ display: none;
+}
+
+.product__media-item--variant:first-child {
+ display: block;
+}
+
+@media screen and (min-width: 750px) and (max-width: 989px) {
+ .product__media-list .product__media-item:first-child {
+ padding-left: 0;
+ }
+
+ .product--thumbnail_slider .product__media-list {
+ margin-left: 0;
+ }
+
+ .product__media-list .product__media-item {
+ width: 100%;
+ }
+}
+
+.product__media-icon .icon {
+ width: 1.2rem;
+ height: 1.4rem;
+}
+
+.product__media-icon,
+.thumbnail__badge {
+ background-color: rgb(var(--color-background));
+ border-radius: 50%;
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ color: rgb(var(--color-foreground));
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 3rem;
+ width: 3rem;
+ position: absolute;
+ left: 1.2rem;
+ top: 1.2rem;
+ z-index: 1;
+ transition: color var(--duration-short) ease, opacity var(--duration-short) ease;
+}
+
+.product__media-video .product__media-icon {
+ opacity: 1;
+}
+
+.product__modal-opener--image .product__media-toggle:hover {
+ cursor: zoom-in;
+}
+
+.product__modal-opener:hover .product__media-icon {
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+}
+
+@media screen and (min-width: 750px) {
+ .grid__item.product__media-item--full {
+ width: 100%;
+ }
+
+ .product--columns .product__media-item:not(.product__media-item--single):not(:only-child) {
+ max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .product--large.product--columns .product__media-item--full .deferred-media__poster-button {
+ height: 5rem;
+ width: 5rem;
+ }
+
+ .product--medium.product--columns .product__media-item--full .deferred-media__poster-button {
+ height: 4.2rem;
+ width: 4.2rem;
+ }
+
+ .product--medium.product--columns .product__media-item--full .deferred-media__poster-button .icon {
+ width: 1.8rem;
+ height: 1.8rem;
+ }
+
+ .product--small.product--columns .product__media-item--full .deferred-media__poster-button {
+ height: 3.6rem;
+ width: 3.6rem;
+ }
+
+ .product--small.product--columns .product__media-item--full .deferred-media__poster-button .icon {
+ width: 1.6rem;
+ height: 1.6rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .product--stacked .product__media-item {
+ max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
+ }
+
+ .product:not(.product--columns) .product__media-list .product__media-item:first-child,
+ .product:not(.product--columns) .product__media-list .product__media-item--full {
+ width: 100%;
+ max-width: 100%;
+ }
+
+ .product__modal-opener .product__media-icon {
+ opacity: 0;
+ }
+
+ .product__modal-opener:hover .product__media-icon,
+ .product__modal-opener:focus .product__media-icon {
+ opacity: 1;
+ }
+}
+
+.product__media-item > * {
+ display: block;
+ position: relative;
+}
+
+.product__media-toggle {
+ display: flex;
+ border: none;
+ background-color: transparent;
+ color: currentColor;
+ padding: 0;
+}
+
+.product__media-toggle::after {
+ content: '';
+ cursor: pointer;
+ display: block;
+ margin: 0;
+ padding: 0;
+ position: absolute;
+ top: calc(var(--border-width) * -1);
+ right: calc(var(--border-width) * -1);
+ bottom: calc(var(--border-width) * -1);
+ left: calc(var(--border-width) * -1);
+ z-index: 2;
+}
+
+.product__media-toggle:focus-visible {
+ outline: 0;
+ box-shadow: none;
+}
+
+/* outline styling for Windows High Contrast Mode */
+@media (forced-colors: active) {
+ .product__media-toggle:focus-visible,
+ .product__media-toggle:focus-visible:after,
+ .product-form__input input[type='radio']:focus-visible + label {
+ outline: transparent solid 1px;
+ outline-offset: 2px;
+ }
+}
+.product__media-toggle.focused {
+ outline: 0;
+ box-shadow: none;
+}
+
+.product__media-toggle:focus-visible:after {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
+ border-radius: var(--media-radius);
+}
+
+.product__media-toggle.focused:after {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
+ border-radius: var(--media-radius);
+}
+
+.product-media-modal {
+ background-color: rgb(var(--color-background));
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ visibility: hidden;
+ opacity: 0;
+ z-index: -1;
+}
+
+.product-media-modal[open] {
+ visibility: visible;
+ opacity: 1;
+ z-index: 101;
+}
+
+.product-media-modal__dialog {
+ display: flex;
+ align-items: center;
+ height: 100vh;
+}
+
+.product-media-modal__content {
+ max-height: 100vh;
+ width: 100%;
+ overflow: auto;
+}
+
+.product-media-modal__content > *:not(.active),
+.product__media-list .deferred-media {
+ display: none;
+}
+
+@media screen and (min-width: 750px) {
+ .product-media-modal__content {
+ padding-bottom: 2rem;
+ }
+
+ .product-media-modal__content > *:not(.active) {
+ display: block;
+ }
+
+ .product__modal-opener:not(.product__modal-opener--image) {
+ display: none;
+ }
+
+ .product__media-list .deferred-media {
+ display: block;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .product--thumbnail .is-active .product__modal-opener:not(.product__modal-opener--image),
+ .product--thumbnail_slider .is-active .product__modal-opener:not(.product__modal-opener--image) {
+ display: none;
+ }
+
+ .product--thumbnail .is-active .deferred-media,
+ .product--thumbnail_slider .is-active .deferred-media {
+ display: block;
+ width: 100%;
+ }
+}
+
+.product-media-modal__content > * {
+ display: block;
+ height: auto;
+ margin: auto;
+}
+
+.product-media-modal__content .media {
+ background: none;
+}
+
+.product-media-modal__model {
+ width: 100%;
+}
+
+.product-media-modal__toggle {
+ background-color: rgb(var(--color-background));
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ border-radius: 50%;
+ color: rgba(var(--color-foreground), 0.55);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ right: 2rem;
+ padding: 1.2rem;
+ position: fixed;
+ z-index: 2;
+ top: 2rem;
+ width: 4rem;
+}
+
+.product-media-modal__content .deferred-media {
+ width: 100%;
+}
+
+@media screen and (min-width: 750px) {
+ .product-media-modal__content {
+ padding: 2rem 11rem;
+ }
+
+ .product-media-modal__content > * {
+ width: 100%;
+ }
+
+ .product-media-modal__content > * + * {
+ margin-top: 2rem;
+ }
+
+ .product-media-modal__toggle {
+ right: 5rem;
+ top: 2.2rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .product-media-modal__content {
+ padding: 2rem 11rem;
+ }
+
+ .product-media-modal__content > * + * {
+ margin-top: 1.5rem;
+ }
+
+ .product-media-modal__content {
+ padding-bottom: 1.5rem;
+ }
+
+ .product-media-modal__toggle {
+ right: 5rem;
+ }
+}
+
+.product-media-modal__toggle:hover {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.product-media-modal__toggle .icon {
+ height: auto;
+ margin: 0;
+ width: 2.2rem;
+}
+
+/* Product popup */
+
+.product-popup-modal {
+ box-sizing: border-box;
+ opacity: 0;
+ position: fixed;
+ visibility: hidden;
+ z-index: -1;
+ margin: 0 auto;
+ top: 0;
+ left: 0;
+ overflow: auto;
+ width: 100%;
+ background: rgba(var(--color-foreground), 0.2);
+ height: 100%;
+}
+
+.product-popup-modal[open] {
+ opacity: 1;
+ visibility: visible;
+ z-index: 101;
+}
+
+.product-popup-modal__content {
+ border-radius: var(--popup-corner-radius);
+ background-color: rgb(var(--color-background));
+ overflow: auto;
+ height: 80%;
+ margin: 0 auto;
+ left: 50%;
+ transform: translateX(-50%);
+ margin-top: 5rem;
+ width: 92%;
+ position: absolute;
+ top: 0;
+ padding: 0 1.5rem 0 3rem;
+ border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
+ border-style: solid;
+ border-width: var(--popup-border-width);
+ box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+}
+
+.product-popup-modal__content.focused {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
+ var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+}
+
+.product-popup-modal__content:focus-visible {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3),
+ var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--popup-shadow-opacity));
+}
+
+@media screen and (min-width: 750px) {
+ .product-popup-modal__content {
+ padding-right: 1.5rem;
+ margin-top: 10rem;
+ width: 70%;
+ padding: 0 3rem;
+ }
+
+ .product-media-modal__dialog .global-media-settings--no-shadow {
+ overflow: visible !important;
+ }
+}
+
+.product-popup-modal__content img {
+ max-width: 100%;
+}
+
+@media screen and (max-width: 749px) {
+ .product-popup-modal__content table {
+ display: block;
+ max-width: fit-content;
+ overflow-x: auto;
+ white-space: nowrap;
+ margin: 0;
+ }
+
+ .product-media-modal__dialog .global-media-settings,
+ .product-media-modal__dialog .global-media-settings video,
+ .product-media-modal__dialog .global-media-settings model-viewer,
+ .product-media-modal__dialog .global-media-settings iframe,
+ .product-media-modal__dialog .global-media-settings img {
+ border: none;
+ border-radius: 0;
+ }
+}
+
+.product-popup-modal__opener {
+ display: inline-block;
+}
+
+.product-popup-modal__button {
+ font-size: 1.6rem;
+ padding-right: 1.3rem;
+ padding-left: 0;
+ min-height: 4.4rem;
+ text-underline-offset: 0.3rem;
+ text-decoration-thickness: 0.1rem;
+ transition: text-decoration-thickness var(--duration-short) ease;
+}
+
+.product-popup-modal__button:hover {
+ text-decoration-thickness: 0.2rem;
+}
+
+.product-popup-modal__content-info {
+ padding-right: 4.4rem;
+}
+
+.product-popup-modal__content-info > * {
+ height: auto;
+ margin: 0 auto;
+ max-width: 100%;
+ width: 100%;
+}
+
+@media screen and (max-width: 749px) {
+ .product-popup-modal__content-info > * {
+ max-height: 100%;
+ }
+}
+
+.product-popup-modal__toggle {
+ background-color: rgb(var(--color-background));
+ border: 0.1rem solid rgba(var(--color-foreground), 0.1);
+ border-radius: 50%;
+ color: rgba(var(--color-foreground), 0.55);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+ position: sticky;
+ padding: 1.2rem;
+ z-index: 2;
+ top: 1.5rem;
+ width: 4rem;
+ margin: 0 0 0 auto;
+}
+
+.product-popup-modal__toggle:hover {
+ color: rgba(var(--color-foreground), 0.75);
+}
+
+.product-popup-modal__toggle .icon {
+ height: auto;
+ margin: 0;
+ width: 2.2rem;
+}
+
+.product__media-list .media > * {
+ overflow: hidden;
+}
+
+.thumbnail-list {
+ flex-wrap: wrap;
+ grid-gap: 1rem;
+}
+
+/* Fix to show some space at the end of our sliders in all browsers to be applied on thumbnails */
+.slider--mobile.thumbnail-list:after {
+ content: none;
+}
+
+@media screen and (min-width: 750px) {
+ .product--stacked .thumbnail-list {
+ display: none;
+ }
+
+ .thumbnail-list {
+ display: grid;
+ grid-template-columns: repeat(4, 1fr);
+ }
+}
+
+.thumbnail-list_item--variant:not(:first-child) {
+ display: none;
+}
+
+@media screen and (min-width: 990px) {
+ .thumbnail-list {
+ grid-template-columns: repeat(4, 1fr);
+ }
+
+ .product--medium .thumbnail-list {
+ grid-template-columns: repeat(5, 1fr);
+ }
+
+ .product--large .thumbnail-list {
+ grid-template-columns: repeat(6, 1fr);
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .product__media-item {
+ display: flex;
+ align-items: center;
+ }
+
+ .product__modal-opener {
+ width: 100%;
+ }
+
+ .thumbnail-slider {
+ display: flex;
+ align-items: center;
+ }
+
+ .thumbnail-slider .thumbnail-list.slider {
+ display: flex;
+ padding: 0.5rem;
+ flex: 1;
+ scroll-padding-left: 0.5rem;
+ }
+
+ .thumbnail-list__item.slider__slide {
+ width: calc(33% - 0.6rem);
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .product--thumbnail_slider .thumbnail-slider {
+ display: flex;
+ align-items: center;
+ }
+
+ .thumbnail-slider .thumbnail-list.slider--tablet-up {
+ display: flex;
+ padding: 0.5rem;
+ flex: 1;
+ scroll-padding-left: 0.5rem;
+ }
+
+ .product__media-wrapper .slider-mobile-gutter .slider-button {
+ display: none;
+ }
+
+ .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
+ width: calc(25% - 0.8rem);
+ }
+
+ .product--thumbnail_slider .slider-mobile-gutter .slider-button {
+ display: flex;
+ }
+}
+
+@media screen and (min-width: 900px) {
+ .product--small .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
+ width: calc(25% - 0.8rem);
+ }
+
+ .thumbnail-list.slider--tablet-up .thumbnail-list__item.slider__slide {
+ width: calc(20% - 0.8rem);
+ }
+}
+
+.thumbnail {
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: block;
+ height: 100%;
+ width: 100%;
+ padding: 0;
+ color: rgb(var(--color-foreground));
+ cursor: pointer;
+ background-color: transparent;
+}
+
+.thumbnail:hover {
+ opacity: 0.7;
+}
+
+.thumbnail.global-media-settings img {
+ border-radius: 0;
+}
+
+.thumbnail[aria-current] {
+ box-shadow: 0 0 0rem 0.1rem rgb(var(--color-foreground));
+ border-color: rgb(var(--color-foreground));
+}
+
+.image-magnify-full-size {
+ cursor: zoom-out;
+ z-index: 1;
+ margin: 0;
+ border-radius: calc(var(--media-radius) - var(--media-border-width));
+}
+
+.image-magnify-hover {
+ cursor: zoom-in;
+}
+
+.product__modal-opener--image .product__media-zoom-none,
+.product__media-icon--none {
+ display: none;
+}
+
+.product__modal-opener > .loading__spinner {
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ position: absolute;
+ display: flex;
+ align-items: center;
+ height: 48px;
+ width: 48px;
+}
+
+.product__modal-opener .path {
+ stroke: rgb(var(--color-button));
+ opacity: 0.75;
+}
+
+@media (hover: hover) {
+ .product__media-zoom-hover,
+ .product__media-icon--hover {
+ display: none;
+ }
+}
+
+@media screen and (max-width: 749px) {
+ .product__media-zoom-hover,
+ .product__media-icon--hover {
+ display: flex;
+ }
+}
+
+.js .product__media {
+ overflow: hidden !important;
+}
+
+.thumbnail[aria-current]:focus-visible {
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
+}
+
+.thumbnail[aria-current]:focus,
+.thumbnail.focused {
+ outline: 0;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0rem 0.5rem rgba(var(--color-foreground), 0.5);
+}
+
+/* outline styling for Windows High Contrast Mode */
+@media (forced-colors: active) {
+ .thumbnail[aria-current]:focus,
+ .thumbnail.focused {
+ outline: transparent solid 1px;
+ }
+}
+.thumbnail[aria-current]:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-foreground));
+}
+
+.thumbnail img {
+ object-fit: cover;
+ width: 100%;
+ height: 100%;
+ pointer-events: none;
+}
+
+.thumbnail__badge .icon {
+ width: 1rem;
+ height: 1rem;
+}
+
+.thumbnail__badge .icon-3d-model {
+ width: 1.2rem;
+ height: 1.2rem;
+}
+
+.thumbnail__badge {
+ color: rgb(var(--color-foreground), 0.6);
+ height: 2rem;
+ width: 2rem;
+ left: auto;
+ right: calc(0.4rem + var(--media-border-width));
+ top: calc(0.4rem + var(--media-border-width));
+}
+
+@media screen and (min-width: 750px) {
+ .product:not(.product--small) .thumbnail__badge {
+ height: 3rem;
+ width: 3rem;
+ }
+
+ .product:not(.product--small) .thumbnail__badge .icon {
+ width: 1.2rem;
+ height: 1.2rem;
+ }
+
+ .product:not(.product--small) .thumbnail__badge .icon-3d-model {
+ width: 1.4rem;
+ height: 1.4rem;
+ }
+}
+
+.thumbnail-list__item {
+ position: relative;
+}
+
+.thumbnail-list__item::before {
+ content: '';
+ display: block;
+ padding-bottom: 100%;
+}
+
+.product:not(.featured-product) .product__view-details {
+ display: none;
+}
+
+.product__view-details {
+ display: block;
+ text-decoration: none;
+}
+
+.product__view-details:hover {
+ text-decoration: underline;
+ text-underline-offset: 0.3rem;
+}
+
+.product__view-details .icon {
+ width: 1.2rem;
+ margin-left: 1.2rem;
+ flex-shrink: 0;
+}
+
+/* Inventory status */
+
+.product__inventory {
+ display: flex;
+ align-items: center;
+ gap: 0.5rem;
+}
+
+.product--no-media .product__inventory {
+ justify-content: center;
+}
+
+/* This keeps the container from getting display: none; applied to it and to make sure we're not introducing some layout shift when switching to an unavailable variant */
+.product__inventory.visibility-hidden:empty {
+ display: block;
+}
+
+.product__inventory.visibility-hidden:empty::after {
+ content: '#';
+}
+
+/* Icon with text */
+.icon-with-text {
+ --icon-size: calc(var(--font-heading-scale) * 3rem);
+ --icon-spacing: calc(var(--font-heading-scale) * 1rem);
+}
+
+.icon-with-text--horizontal {
+ display: flex;
+ justify-content: center;
+ column-gap: 3rem;
+ flex-direction: row;
+}
+
+.icon-with-text--vertical {
+ --icon-size: calc(var(--font-heading-scale) * 2rem);
+}
+
+.icon-with-text .icon {
+ fill: rgb(var(--color-foreground));
+ height: var(--icon-size);
+ width: var(--icon-size);
+}
+
+.icon-with-text--horizontal .icon,
+.icon-with-text--horizontal img {
+ margin-bottom: var(--icon-spacing);
+}
+
+.icon-with-text--vertical .icon {
+ min-height: var(--icon-size);
+ min-width: var(--icon-size);
+ margin-right: var(--icon-spacing);
+}
+
+.icon-with-text img {
+ height: var(--icon-size);
+ width: var(--icon-size);
+ object-fit: contain;
+}
+
+.icon-with-text--vertical img {
+ margin-right: var(--icon-spacing);
+}
+
+.icon-with-text--horizontal .h4 {
+ padding-top: calc(var(--icon-size) + var(--icon-spacing));
+ text-align: center;
+}
+
+.icon-with-text--horizontal svg + .h4,
+.icon-with-text--horizontal img + .h4,
+.icon-with-text--horizontal.icon-with-text--text-only .h4 {
+ padding-top: 0;
+}
+
+.icon-with-text__item {
+ display: flex;
+ align-items: center;
+}
+
+.icon-with-text--horizontal .icon-with-text__item {
+ flex-direction: column;
+ width: 33%;
+}
+
+.icon-with-text--vertical .icon-with-text__item {
+ margin-bottom: var(--icon-size);
+}
+
+/* SKU block */
+
+.product__sku.visibility-hidden::after {
+ content: '#';
+}
+
+/* Product-thumbnail snippet */
+
+.product-media-container {
+ --aspect-ratio: var(--preview-ratio);
+ --ratio-percent: calc(1 / var(--aspect-ratio) * 100%);
+ position: relative;
+ width: 100%;
+ max-width: calc(100% - calc(var(--media-border-width) * 2));
+}
+
+.product-media-container.constrain-height {
+ /* arbitrary offset value based on average theme spacing and header height */
+ --viewport-offset: 400px;
+ --constrained-min-height: 300px;
+ --constrained-height: max(var(--constrained-min-height), calc(100vh - var(--viewport-offset)));
+ margin-right: auto;
+ margin-left: auto;
+}
+
+.product-media-container.constrain-height.media-fit-contain {
+ --contained-width: calc(var(--constrained-height) * var(--aspect-ratio));
+ width: min(var(--contained-width), 100%);
+}
+
+.product-media-container .media {
+ padding-top: var(--ratio-percent);
+}
+
+.product-media-container.constrain-height .media {
+ padding-top: min(var(--constrained-height), var(--ratio-percent));
+}
+
+@media screen and (max-width: 749px) {
+ .product-media-container.media-fit-cover {
+ display: flex;
+ align-self: stretch;
+ }
+
+ .product-media-container.media-fit-cover .media {
+ /* allow media img element to scale relative to modal-opener/product-media-container */
+ position: initial;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .product-media-container {
+ max-width: 100%;
+ }
+
+ .product-media-container:not(.media-type-image) {
+ /* override to use actual media ratio (not poster ratio) for video/models on desktop */
+ --aspect-ratio: var(--ratio);
+ }
+
+ .product-media-container.constrain-height {
+ --viewport-offset: 170px;
+ --constrained-min-height: 500px;
+ }
+
+ .product-media-container.media-fit-cover,
+ .product-media-container.media-fit-cover .product__modal-opener,
+ .product-media-container.media-fit-cover .media {
+ height: 100%;
+ }
+
+ .product-media-container.media-fit-cover .deferred-media__poster img {
+ object-fit: cover;
+ width: 100%;
+ }
+}
+
+.product-media-container .product__modal-opener {
+ display: block;
+ position: relative;
+}
+
+@media screen and (min-width: 750px) {
+ .product-media-container .product__modal-opener:not(.product__modal-opener--image) {
+ display: none;
+ }
+}
+
+/* Recipient form */
+.recipient-form {
+ /* (2.88[line-height] - 1.6rem) / 2 */
+ --recipient-checkbox-margin-top: 0.64rem;
+
+ display: block;
+ position: relative;
+ max-width: 44rem;
+ margin-bottom: 2.5rem;
+}
+
+.recipient-form-field-label {
+ margin: 0.6rem 0;
+}
+
+.recipient-form-field-label--space-between {
+ display: flex;
+ justify-content: space-between;
+}
+
+.recipient-checkbox {
+ flex-grow: 1;
+ font-size: 1.6rem;
+ display: flex;
+ word-break: break-word;
+ align-items: flex-start;
+ max-width: inherit;
+ position: relative;
+ cursor: pointer;
+}
+
+.no-js .recipient-checkbox {
+ display: none;
+}
+
+.recipient-form > input[type='checkbox'] {
+ position: absolute;
+ width: 1.6rem;
+ height: 1.6rem;
+ margin: var(--recipient-checkbox-margin-top) 0;
+ top: 0;
+ left: 0;
+ z-index: -1;
+ appearance: none;
+ -webkit-appearance: none;
+}
+
+.recipient-fields__field {
+ margin: 0 0 2rem 0;
+}
+
+.recipient-fields .field__label {
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ max-width: calc(100% - 3.5rem);
+ overflow: hidden;
+}
+
+.recipient-checkbox > svg {
+ margin-top: var(--recipient-checkbox-margin-top);
+ margin-right: 1.2rem;
+ flex-shrink: 0;
+}
+
+.recipient-form .icon-checkmark {
+ visibility: hidden;
+ position: absolute;
+ left: 0.28rem;
+ z-index: 5;
+ top: 0.4rem;
+}
+
+.recipient-form > input[type='checkbox']:checked + label .icon-checkmark {
+ visibility: visible;
+}
+
+.js .recipient-fields {
+ display: none;
+}
+
+.recipient-fields hr {
+ margin: 1.6rem auto;
+}
+
+.recipient-form > input[type='checkbox']:checked ~ .recipient-fields {
+ display: block;
+ animation: animateMenuOpen var(--duration-default) ease;
+}
+.recipient-form > input[type='checkbox']:not(:checked, :disabled) ~ .recipient-fields,
+.recipient-email-label {
+ display: none;
+}
+
+.js .recipient-email-label.required,
+.no-js .recipient-email-label.optional {
+ display: inline;
+}
+
+.recipient-form ul {
+ line-height: calc(1 + 0.6 / var(--font-body-scale));
+ padding-left: 4.4rem;
+ text-align: left;
+}
+
+.recipient-form ul a {
+ display: inline;
+}
+
+.recipient-form .error-message::first-letter {
+ text-transform: capitalize;
+}
+
+@media screen and (forced-colors: active) {
+ .recipient-fields > hr {
+ border-top: 0.1rem solid rgb(var(--color-background));
+ }
+
+ .recipient-checkbox > svg {
+ background-color: inherit;
+ border: 0.1rem solid rgb(var(--color-background));
+ }
+
+ .recipient-form > input[type='checkbox']:checked + label .icon-checkmark {
+ border: none;
+ }
+}
diff --git a/assets/section-multicolumn.css b/assets/section-multicolumn.css
new file mode 100644
index 0000000..29aa271
--- /dev/null
+++ b/assets/section-multicolumn.css
@@ -0,0 +1,218 @@
+.multicolumn .title {
+ margin: 0;
+}
+
+.multicolumn.no-heading .title {
+ display: none;
+}
+
+.multicolumn .title-wrapper-with-link {
+ margin-top: 0;
+}
+
+@media screen and (max-width: 749px) {
+ .multicolumn .title-wrapper-with-link {
+ margin-bottom: 3rem;
+ }
+
+ .multicolumn .page-width {
+ padding-left: 0;
+ padding-right: 0;
+ }
+}
+
+.multicolumn-card__image-wrapper--third-width {
+ width: 33%;
+}
+
+.multicolumn-card__image-wrapper--half-width {
+ width: 50%;
+}
+
+.multicolumn-list__item.center .multicolumn-card__image-wrapper:not(.multicolumn-card__image-wrapper--full-width),
+.multicolumn-list__item:only-child {
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.multicolumn .button {
+ margin-top: 1.5rem;
+}
+
+@media screen and (min-width: 750px) {
+ .multicolumn .button {
+ margin-top: 4rem;
+ }
+}
+
+.multicolumn-list {
+ margin-top: 0;
+ margin-bottom: 0;
+ padding: 0;
+}
+
+.multicolumn-list__item:only-child {
+ max-width: 72rem;
+}
+
+.multicolumn-list__item--empty {
+ display: none;
+}
+
+.multicolumn:not(.background-none) .multicolumn-card {
+ background: rgb(var(--color-background));
+ height: 100%;
+}
+
+.multicolumn.background-primary .multicolumn-card {
+ background: rgb(var(--color-background))
+ linear-gradient(rgba(var(--color-foreground), 0.04), rgba(var(--color-foreground), 0.04));
+}
+
+.multicolumn-list h3 {
+ line-height: calc(1 + 0.5 / max(1, var(--font-heading-scale)));
+}
+
+.multicolumn-list h3,
+.multicolumn-list p {
+ margin: 0;
+}
+
+.multicolumn-card-spacing {
+ padding-top: 2.5rem;
+ margin-left: 2.5rem;
+ margin-right: 2.5rem;
+}
+
+.multicolumn-card__info > :nth-child(2) {
+ margin-top: 1rem;
+}
+
+.multicolumn-list__item.center .media--adapt,
+.multicolumn-list__item .media--adapt .multicolumn-card__image {
+ width: auto;
+}
+
+.multicolumn-list__item.center .media--adapt img {
+ left: 50%;
+ transform: translateX(-50%);
+}
+
+@media screen and (max-width: 749px) {
+ .multicolumn-list {
+ margin: 0;
+ width: 100%;
+ }
+
+ .multicolumn-list:not(.slider) {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .multicolumn-list.slider,
+ .multicolumn-list.grid--4-col-desktop {
+ padding: 0;
+ }
+
+ .multicolumn-list__item,
+ .grid--4-col-desktop .multicolumn-list__item {
+ padding-bottom: 0;
+ }
+
+ .background-none .grid--2-col-tablet .multicolumn-list__item {
+ margin-top: 4rem;
+ }
+}
+
+.background-none .multicolumn-card-spacing {
+ padding: 0;
+ margin: 0;
+}
+
+.multicolumn-card__info {
+ padding: 2.5rem;
+}
+
+.background-none .multicolumn-card__info {
+ padding-top: 0;
+ padding-left: 0;
+ padding-right: 0;
+}
+
+.background-none .slider .multicolumn-card__info {
+ padding-bottom: 0;
+}
+
+.background-none .multicolumn-card__image-wrapper + .multicolumn-card__info {
+ padding-top: 2.5rem;
+}
+
+.background-none .slider .multicolumn-card__info {
+ padding-left: 0.5rem;
+}
+
+.background-none .slider .multicolumn-card__image-wrapper + .multicolumn-card__info {
+ padding-left: 1.5rem;
+}
+
+.background-none .multicolumn-list:not(.slider) .center .multicolumn-card__info {
+ padding-left: 2.5rem;
+ padding-right: 2.5rem;
+}
+
+@media screen and (max-width: 749px) {
+ .background-none .slider .multicolumn-card__info {
+ padding-bottom: 1rem;
+ }
+
+ .multicolumn.background-none .slider.slider--mobile {
+ margin-bottom: 0rem;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .background-none .multicolumn-card__image-wrapper {
+ margin-left: 1.5rem;
+ margin-right: 1.5rem;
+ }
+
+ .background-none .multicolumn-list .multicolumn-card__info,
+ .background-none .multicolumn-list:not(.slider) .center .multicolumn-card__info {
+ padding-left: 1.5rem;
+ padding-right: 1.5rem;
+ }
+}
+
+.multicolumn-card {
+ position: relative;
+ box-sizing: border-box;
+}
+
+.multicolumn-card > .multicolumn-card__image-wrapper--full-width:not(.multicolumn-card-spacing) {
+ border-top-left-radius: calc(var(--text-boxes-radius) - var(--text-boxes-border-width));
+ border-top-right-radius: calc(var(--text-boxes-radius) - var(--text-boxes-border-width));
+ overflow: hidden;
+}
+
+.multicolumn.background-none .multicolumn-card {
+ border-radius: 0;
+}
+
+.multicolumn-card__info .link {
+ text-decoration: none;
+ font-size: inherit;
+ margin-top: 1.5rem;
+}
+
+.multicolumn-card__info .icon-wrap {
+ margin-left: 0.8rem;
+ white-space: nowrap;
+}
+
+@media screen and (min-width: 990px) {
+ .multicolumn-list__item--empty {
+ display: list-item;
+ }
+}
diff --git a/assets/section-password.css b/assets/section-password.css
new file mode 100644
index 0000000..c6dc730
--- /dev/null
+++ b/assets/section-password.css
@@ -0,0 +1,333 @@
+/* Base */
+
+*,
+*::before,
+*::after {
+ box-sizing: inherit;
+}
+
+html {
+ box-sizing: border-box;
+ font-size: calc(var(--font-body-scale) * 62.5%);
+}
+
+body {
+ background-color: rgb(var(--color-background));
+ color: rgb(var(--color-foreground));
+ font-size: 1.5rem;
+ letter-spacing: 0.07rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ margin: 0;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ font-weight: var(--font-body-weight);
+}
+
+@media screen and (min-width: 750px) {
+ body {
+ font-size: 1.6rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ }
+}
+
+.password-modal__content-heading {
+ font-size: 1.8rem;
+ font-weight: 400;
+ line-height: calc(1 + 0.6 / var(--font-body-scale));
+}
+
+@media only screen and (min-width: 750px) {
+ .password-modal__content-heading {
+ font-size: 1.8rem;
+ }
+}
+
+/* Password Section */
+
+.full-height {
+ height: 100%;
+}
+
+.password {
+ background-color: rgb(var(--color-background));
+ height: 100%;
+}
+
+.password-link {
+ align-items: center;
+ font-size: 1.4rem;
+ font-weight: 400;
+ white-space: nowrap;
+}
+
+.password-link svg {
+ width: 1.8rem;
+ height: 1.8rem;
+ margin-right: 1rem;
+}
+
+.password-modal__content {
+ padding: 4.5rem 3.2rem;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ width: 100%;
+ height: 100%;
+ box-sizing: border-box;
+}
+
+.password-modal__content-heading {
+ font-size: 1.8rem;
+ font-weight: 400;
+ line-height: calc(1 + 0.6 / var(--font-body-scale));
+}
+
+@media only screen and (min-width: 750px) {
+ .password-modal__content-heading {
+ font-size: 1.8rem;
+ }
+}
+
+.password-modal .password-form {
+ max-width: 50rem;
+}
+
+.password-form {
+ display: flex;
+ flex-wrap: wrap;
+ align-items: center;
+ margin-top: 4rem;
+ margin-bottom: 2rem;
+ width: 100%;
+}
+
+.password-field.field {
+ flex: 1 20rem;
+}
+
+.password-field .form__message {
+ margin-top: 1.5rem;
+}
+
+.password-button {
+ margin-top: 3rem;
+ width: 100%;
+}
+
+@media only screen and (max-width: 749px) {
+ .password-field--error + .password-button {
+ margin-top: 1.5rem;
+ }
+}
+
+@media only screen and (min-width: 750px) {
+ .password-button {
+ margin-top: 0;
+ margin-left: 2rem;
+ width: auto;
+ align-self: start;
+ }
+}
+
+.password-logo {
+ width: 100%;
+ margin-bottom: 1.5rem;
+}
+
+@media only screen and (min-width: 750px) {
+ .password-logo {
+ margin-bottom: 0;
+ }
+}
+
+.password-heading {
+ margin-top: 5rem;
+ font-weight: 400;
+}
+
+.password-main {
+ flex-grow: 1;
+}
+
+.password-main > section:only-child {
+ height: 100%;
+}
+
+.password-main > section:only-child > .newsletter {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+ margin-top: 0;
+}
+
+.password-main > section:only-child .newsletter__wrapper:not(.email-signup-banner__box) {
+ width: 100%;
+}
+
+.password-main > section:only-child > :not(.newsletter--narrow) > .newsletter__wrapper {
+ height: 100%;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+}
+
+.password__footer-text a {
+ padding: 0;
+ font-size: 1.3rem;
+ font-weight: 400;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+}
+
+.password__footer-login {
+ margin-top: 1.2rem;
+ padding-bottom: 4rem;
+}
+
+.password-modal .icon-close {
+ color: rgb(var(--color-foreground));
+}
+
+.password__footer {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding-top: 4rem;
+ background-color: rgb(var(--color-background));
+ color: rgb(var(--color-foreground));
+}
+
+hr {
+ margin: 0 !important;
+}
+
+.list-social:not(:empty) + .password__footer-caption {
+ margin-top: 3rem;
+}
+
+.password__footer-caption a {
+ padding: 0;
+ color: rgb(var(--color-link));
+}
+
+.modal__toggle,
+.modal__close-button {
+ list-style-type: none;
+}
+
+details[open] .modal__toggle,
+.modal__close-button {
+ position: absolute;
+ top: 2.2rem;
+ right: 2.2rem;
+ padding: 0.8rem;
+ color: rgb(var(--color-foreground));
+ background-color: transparent;
+}
+
+.no-js .modal__close-button {
+ display: none;
+}
+
+.no-js .modal__toggle {
+ z-index: 2;
+}
+
+.modal__toggle::-webkit-details-marker {
+ display: none;
+}
+
+details.modal .modal__toggle-close {
+ display: none;
+}
+
+details[open].modal .modal__toggle-close {
+ background: rgb(var(--color-background));
+ cursor: pointer;
+ display: flex;
+ padding: 0.8rem;
+ z-index: 1;
+}
+
+details[open].modal .modal__toggle-close svg,
+.modal__close-button svg {
+ height: 1.7rem;
+ width: 1.7rem;
+}
+
+details[open].modal .modal__toggle-close:hover {
+ opacity: 0.75;
+}
+
+.js details[open].modal .modal__toggle-close {
+ display: none;
+}
+
+details.modal .modal__toggle-open {
+ display: flex;
+}
+
+.no-js details[open].modal .modal__toggle-open {
+ display: none;
+}
+
+.password-header {
+ padding: 2rem 1.5rem 2.5rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ flex-direction: column;
+ color: rgb(var(--color-foreground));
+ max-width: var(--page-width);
+ margin: 0 auto;
+ text-align: center;
+}
+
+@media only screen and (min-width: 750px) {
+ .password-header {
+ display: grid;
+ gap: 3rem;
+ grid-template-columns: 1fr 1.5fr 1fr;
+ padding: 2rem 5rem 2.5rem;
+ text-align: left;
+ }
+}
+
+.password-header details-modal {
+ flex-shrink: 0;
+}
+
+.password-content {
+ text-align: center;
+}
+
+@media only screen and (max-width: 749px) {
+ .password-content {
+ margin-bottom: 1.8rem;
+ margin-top: 1rem;
+ }
+}
+
+.shopify-name {
+ overflow: hidden;
+ position: absolute;
+ height: 1px;
+ width: 1px;
+}
+
+.icon-shopify {
+ width: 7rem;
+ height: 2rem;
+ vertical-align: top;
+ color: rgb(var(--color-foreground));
+}
+
+password-modal {
+ justify-self: flex-end;
+ grid-column: 3;
+}
diff --git a/assets/section-related-products.css b/assets/section-related-products.css
new file mode 100644
index 0000000..f9d67e7
--- /dev/null
+++ b/assets/section-related-products.css
@@ -0,0 +1,7 @@
+.related-products {
+ display: block;
+}
+
+.related-products__heading {
+ margin: 0 0 3rem;
+}
diff --git a/assets/section-rich-text.css b/assets/section-rich-text.css
new file mode 100644
index 0000000..e2ac8c9
--- /dev/null
+++ b/assets/section-rich-text.css
@@ -0,0 +1,86 @@
+.rich-text {
+ z-index: 1;
+}
+
+.rich-text__wrapper {
+ display: flex;
+ justify-content: center;
+ width: calc(100% - 4rem / var(--font-body-scale));
+}
+
+.rich-text:not(.rich-text--full-width) .rich-text__wrapper {
+ margin: auto;
+ width: calc(100% - 8rem / var(--font-body-scale));
+}
+
+.rich-text__blocks {
+ width: 100%;
+}
+
+@media screen and (min-width: 750px) {
+ .rich-text__wrapper {
+ width: 100%;
+ }
+
+ .rich-text__wrapper--left {
+ justify-content: flex-start;
+ }
+
+ .rich-text__wrapper--right {
+ justify-content: flex-end;
+ }
+
+ .rich-text__blocks {
+ max-width: 50rem;
+ }
+}
+
+@media screen and (min-width: 990px) {
+ .rich-text__blocks {
+ max-width: 78rem;
+ }
+}
+
+.rich-text__blocks * {
+ overflow-wrap: break-word;
+}
+
+.rich-text__blocks > * {
+ margin-top: 0;
+ margin-bottom: 0;
+}
+
+.rich-text__blocks > * + * {
+ margin-top: 2rem;
+}
+
+.rich-text__blocks > * + a {
+ margin-top: 3rem;
+}
+
+.rich-text__buttons {
+ display: inline-flex;
+ justify-content: center;
+ flex-wrap: wrap;
+ gap: 1rem;
+ width: 100%;
+ max-width: 45rem;
+ word-break: break-word;
+}
+
+.rich-text__buttons--multiple > * {
+ flex-grow: 1;
+ min-width: 22rem;
+}
+
+.rich-text__buttons + .rich-text__buttons {
+ margin-top: 1rem;
+}
+
+.rich-text__blocks.left .rich-text__buttons {
+ justify-content: flex-start;
+}
+
+.rich-text__blocks.right .rich-text__buttons {
+ justify-content: flex-end;
+}
diff --git a/assets/share.js b/assets/share.js
new file mode 100644
index 0000000..953c46e
--- /dev/null
+++ b/assets/share.js
@@ -0,0 +1,56 @@
+if (!customElements.get('share-button')) {
+ customElements.define(
+ 'share-button',
+ class ShareButton extends DetailsDisclosure {
+ constructor() {
+ super();
+
+ this.elements = {
+ shareButton: this.querySelector('button'),
+ shareSummary: this.querySelector('summary'),
+ closeButton: this.querySelector('.share-button__close'),
+ successMessage: this.querySelector('[id^="ShareMessage"]'),
+ urlInput: this.querySelector('input'),
+ };
+ this.urlToShare = this.elements.urlInput ? this.elements.urlInput.value : document.location.href;
+
+ if (navigator.share) {
+ this.mainDetailsToggle.setAttribute('hidden', '');
+ this.elements.shareButton.classList.remove('hidden');
+ this.elements.shareButton.addEventListener('click', () => {
+ navigator.share({ url: this.urlToShare, title: document.title });
+ });
+ } else {
+ this.mainDetailsToggle.addEventListener('toggle', this.toggleDetails.bind(this));
+ this.mainDetailsToggle
+ .querySelector('.share-button__copy')
+ .addEventListener('click', this.copyToClipboard.bind(this));
+ this.mainDetailsToggle.querySelector('.share-button__close').addEventListener('click', this.close.bind(this));
+ }
+ }
+
+ toggleDetails() {
+ if (!this.mainDetailsToggle.open) {
+ this.elements.successMessage.classList.add('hidden');
+ this.elements.successMessage.textContent = '';
+ this.elements.closeButton.classList.add('hidden');
+ this.elements.shareSummary.focus();
+ }
+ }
+
+ copyToClipboard() {
+ navigator.clipboard.writeText(this.elements.urlInput.value).then(() => {
+ this.elements.successMessage.classList.remove('hidden');
+ this.elements.successMessage.textContent = window.accessibilityStrings.shareSuccess;
+ this.elements.closeButton.classList.remove('hidden');
+ this.elements.closeButton.focus();
+ });
+ }
+
+ updateUrl(url) {
+ this.urlToShare = url;
+ this.elements.urlInput.value = url;
+ }
+ }
+ );
+}
diff --git a/assets/show-more.js b/assets/show-more.js
new file mode 100644
index 0000000..a67b400
--- /dev/null
+++ b/assets/show-more.js
@@ -0,0 +1,27 @@
+if (!customElements.get('show-more-button')) {
+ customElements.define(
+ 'show-more-button',
+ class ShowMoreButton extends HTMLElement {
+ constructor() {
+ super();
+ const button = this.querySelector('button');
+ button.addEventListener('click', (event) => {
+ this.expandShowMore(event);
+ const nextElementToFocus = event.target.closest('.parent-display').querySelector('.show-more-item');
+ if (nextElementToFocus && !nextElementToFocus.classList.contains('hidden') && nextElementToFocus.querySelector('input')) {
+ nextElementToFocus.querySelector('input').focus();
+ }
+ });
+ }
+ expandShowMore(event) {
+ const parentDisplay = event.target.closest('[id^="Show-More-"]').closest('.parent-display');
+ const parentWrap = parentDisplay.querySelector('.parent-wrap');
+ this.querySelectorAll('.label-text').forEach((element) => element.classList.toggle('hidden'));
+ parentDisplay.querySelectorAll('.show-more-item').forEach((item) => item.classList.toggle('hidden'));
+ if (!this.querySelector('.label-show-less')) {
+ this.classList.add('hidden');
+ }
+ }
+ }
+ );
+}
diff --git a/assets/sparkle.gif b/assets/sparkle.gif
new file mode 100644
index 0000000..0255c9a
Binary files /dev/null and b/assets/sparkle.gif differ
diff --git a/assets/template-collection.css b/assets/template-collection.css
new file mode 100644
index 0000000..b820519
--- /dev/null
+++ b/assets/template-collection.css
@@ -0,0 +1,99 @@
+@media screen and (max-width: 749px) {
+ .collection .grid__item:only-child {
+ flex: 0 0 100%;
+ max-width: 100%;
+ }
+}
+
+@media screen and (max-width: 989px) {
+ .collection .slider.slider--tablet {
+ margin-bottom: 1.5rem;
+ }
+}
+
+.collection .loading-overlay {
+ position: absolute;
+ z-index: 1;
+ width: 1.8rem;
+}
+
+@media screen and (max-width: 749px) {
+ .collection .loading-overlay {
+ top: 0;
+ right: 0;
+ }
+}
+
+@media screen and (min-width: 750px) {
+ .collection .loading-overlay {
+ left: 0;
+ }
+}
+
+.collection .loading-overlay {
+ top: 0;
+ right: 0;
+ bottom: 0;
+ left: 0;
+ display: none;
+ width: 100%;
+ padding: 0 1.5rem;
+ opacity: 0.7;
+}
+
+@media screen and (min-width: 750px) {
+ .collection .loading-overlay {
+ padding-left: 5rem;
+ padding-right: 5rem;
+ }
+}
+
+.collection.loading .loading-overlay {
+ display: block;
+}
+
+.collection--empty .title-wrapper {
+ margin-top: 10rem;
+ margin-bottom: 15rem;
+}
+
+@media screen and (max-width: 989px) {
+ .collection .slider--tablet.product-grid {
+ scroll-padding-left: 1.5rem;
+ }
+}
+
+.collection__description > * {
+ margin: 0;
+}
+
+.collection__title.title-wrapper {
+ margin-bottom: 2.5rem;
+}
+
+.collection__title .title:not(:only-child) {
+ margin-bottom: 1rem;
+}
+
+@media screen and (min-width: 990px) {
+ .collection__title--desktop-slider .title {
+ margin-bottom: 2.5rem;
+ }
+
+ .collection__title.title-wrapper--self-padded-tablet-down {
+ padding: 0 5rem;
+ }
+
+ .collection slider-component:not(.page-width-desktop) {
+ padding: 0;
+ }
+
+ .collection--full-width slider-component:not(.slider-component-desktop) {
+ padding: 0 1.5rem;
+ max-width: none;
+ }
+}
+
+.collection__view-all a:not(.link) {
+ margin-top: 1rem;
+}
diff --git a/assets/template-giftcard.css b/assets/template-giftcard.css
new file mode 100644
index 0000000..7cf71f9
--- /dev/null
+++ b/assets/template-giftcard.css
@@ -0,0 +1,331 @@
+/* Base */
+*,
+*::before,
+*::after {
+ box-sizing: inherit;
+}
+
+a:empty,
+ul:empty,
+dl:empty,
+div:empty,
+section:empty,
+article:empty,
+p:empty,
+h1:empty,
+h2:empty,
+h3:empty,
+h4:empty,
+h5:empty,
+h6:empty {
+ display: none;
+}
+
+html {
+ font-size: calc(var(--font-body-scale) * 62.5%);
+ box-sizing: border-box;
+ height: 100%;
+}
+
+body {
+ background-color: rgb(var(--color-background));
+ color: rgb(var(--color-foreground));
+ letter-spacing: 0.07rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ max-width: var(--page-width);
+ margin: 0 auto;
+ flex: 1 0 auto;
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ font-weight: var(--font-body-weight);
+}
+
+@media only screen and (min-width: 750px) {
+ body {
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ }
+}
+
+::selection {
+ background-color: rgba(var(--color-foreground), 0.2);
+}
+
+h1,
+.h1,
+h2,
+.h2 {
+ font-family: var(--font-heading-family);
+ font-style: var(--font-heading-style);
+ font-weight: var(--font-heading-weight);
+ letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
+ line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
+ text-align: center;
+}
+
+h1,
+.h1 {
+ font-size: calc(var(--font-heading-scale) * 3rem);
+}
+
+@media only screen and (min-width: 750px) {
+ h1,
+ .h1 {
+ font-size: calc(var(--font-heading-scale) * 4rem);
+ }
+}
+
+h2,
+.h2 {
+ font-size: calc(var(--font-heading-scale) * 2rem);
+}
+
+@media only screen and (min-width: 750px) {
+ h2,
+ .h2 {
+ font-size: calc(var(--font-heading-scale) * 2.4rem);
+ }
+}
+
+.button {
+ font-family: inherit;
+ cursor: pointer;
+ display: inline-flex;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ border: none;
+ padding: 1.5rem 3rem;
+ text-decoration: none;
+ background-color: rgb(var(--color-button));
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-button));
+ color: rgb(var(--color-button-label));
+ min-width: 12rem;
+ height: auto;
+ font-size: 1.5rem;
+ letter-spacing: 0.1rem;
+ line-height: calc(1 + 0.2 / var(--font-body-scale));
+}
+
+.button::selection {
+ background-color: rgba(var(--color-button-label), 0.3);
+}
+
+.button:hover {
+ box-shadow: 0 0 0 0.2rem rgb(var(--color-button));
+}
+
+.button--secondary {
+ color: rgb(var(--color-secondary-button-label));
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-secondary-button-label));
+ background-color: transparent;
+}
+
+.button--secondary::selection {
+ background-color: rgba(var(--color-secondary-button-label), 0.3);
+}
+
+.button--secondary:hover {
+ box-shadow: 0 0 0 0.2rem rgb(var(--color-secondary-button-label));
+}
+
+@media (forced-colors: active) {
+ .button {
+ border: transparent solid 1px;
+ }
+}
+
+.gift-card {
+ padding: 3rem;
+}
+
+@media only screen and (min-width: 750px) {
+ .gift-card {
+ padding: 5rem 5rem 3rem;
+ }
+}
+
+.gift-card__image-wrapper {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100%;
+ margin: 3rem auto;
+ max-width: 40rem;
+}
+
+.gift-card__image {
+ max-width: 100%;
+ height: auto;
+ object-fit: scale-down;
+ max-height: 26rem;
+}
+
+@media only screen and (min-width: 750px) {
+ .gift-card__image {
+ padding: 0;
+ }
+}
+
+.gift-card__price {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 0rem 1rem;
+ align-items: center;
+ justify-content: center;
+ letter-spacing: 1px;
+ opacity: 0.8;
+}
+
+.gift-card__price h1 {
+ margin: 0;
+}
+
+.gift-card__number {
+ color: rgb(var(--color-foreground));
+ font-size: 1.8rem;
+ line-height: calc(1 + 0.6 / var(--font-body-scale));
+ text-align: center;
+ letter-spacing: 0.25rem;
+ opacity: 0.8;
+ margin: 3rem 0;
+}
+
+.gift-card__text-wrapper {
+ max-width: 30rem;
+ margin: 0 auto;
+}
+
+.gift-card__text {
+ text-align: center;
+ font-size: 1.7rem;
+ opacity: 0.6;
+ margin: 0;
+ line-height: calc(1 + 0.5 / var(--font-body-scale));
+}
+
+.badge {
+ border: 1px solid transparent;
+ border-radius: 4rem;
+ display: inline-block;
+ font-size: 1.2rem;
+ letter-spacing: 0.1rem;
+ line-height: 1;
+ padding: 0.6rem 1.3rem;
+ text-align: center;
+ background-color: rgb(var(--color-background));
+ border-color: rgba(var(--color-foreground), 0.04);
+ color: rgb(var(--color-foreground));
+}
+
+.badge--expired {
+ background-color: rgb(var(--color-soldout-badge));
+ color: rgb(var(--color-soldout-badge-label));
+ border-color: rgba(var(--color-soldout-badge-label), 0.04);
+}
+
+.gift-card__qr-code {
+ margin: 3rem 0;
+}
+
+.gift-card__qr-code img {
+ margin: 0 auto;
+}
+
+.gift_card__apple-wallet {
+ line-height: 0;
+ display: block;
+ margin-bottom: 3rem;
+ text-align: center;
+}
+
+.gift-card__buttons {
+ display: flex;
+ flex-direction: column;
+ max-width: 25rem;
+ flex-wrap: wrap;
+ margin: 0 auto;
+}
+
+.gift-card__buttons > .button {
+ display: block;
+ margin: 1rem 0;
+}
+
+/*
+ Focus ring - default (with offset)
+*/
+
+/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
+*:focus {
+ outline: 0;
+ box-shadow: none;
+}
+
+*:focus-visible {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
+.focused,
+.no-js *:focus {
+ outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
+ outline-offset: 0.3rem;
+ box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.button:focus-visible {
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-button)), 0 0 0 0.3rem rgb(var(--color-background)),
+ 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+/* Negate the fallback side-effect for browsers that support :focus-visible */
+.no-js *:focus:not(:focus-visible) {
+ outline: 0;
+ box-shadow: none;
+}
+
+.button:focus {
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-button)), 0 0 0 0.3rem rgb(var(--color-background)),
+ 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.button--secondary:focus-visible {
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-secondary-button-label)), 0 0 0 0.3rem rgb(var(--color-background)),
+ 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.button--secondary:focus {
+ box-shadow: 0 0 0 0.1rem rgb(var(--color-secondary-button-label)), 0 0 0 0.3rem rgb(var(--color-background)),
+ 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
+}
+
+.form__message {
+ align-items: center;
+ display: flex;
+ font-size: 1.2rem;
+ line-height: 1.5rem;
+ justify-content: center;
+ margin-bottom: 0.5rem;
+ opacity: 0.8;
+}
+
+.form__message .icon {
+ flex-shrink: 0;
+ height: 1.3rem;
+ margin-right: 0.5rem;
+ width: 1.3rem;
+}
+
+@media print {
+ .no-print {
+ display: none;
+ }
+}
+
+.gradient {
+ background: rgb(var(--color-background));
+ background: var(--gradient-background);
+ background-attachment: fixed;
+}
diff --git a/assets/theme-editor.js b/assets/theme-editor.js
new file mode 100644
index 0000000..557c908
--- /dev/null
+++ b/assets/theme-editor.js
@@ -0,0 +1,47 @@
+function hideProductModal() {
+ const productModal = document.querySelectorAll('product-modal[open]');
+ productModal && productModal.forEach((modal) => modal.hide());
+}
+
+document.addEventListener('shopify:block:select', function (event) {
+ hideProductModal();
+ const blockSelectedIsSlide = event.target.classList.contains('slideshow__slide');
+ if (!blockSelectedIsSlide) return;
+
+ const parentSlideshowComponent = event.target.closest('slideshow-component');
+ parentSlideshowComponent.pause();
+
+ setTimeout(function () {
+ parentSlideshowComponent.slider.scrollTo({
+ left: event.target.offsetLeft,
+ });
+ }, 200);
+});
+
+document.addEventListener('shopify:block:deselect', function (event) {
+ const blockDeselectedIsSlide = event.target.classList.contains('slideshow__slide');
+ if (!blockDeselectedIsSlide) return;
+ const parentSlideshowComponent = event.target.closest('slideshow-component');
+ if (parentSlideshowComponent.autoplayButtonIsSetToPlay) parentSlideshowComponent.play();
+});
+
+document.addEventListener('shopify:section:load', () => {
+ hideProductModal();
+ const zoomOnHoverScript = document.querySelector('[id^=EnableZoomOnHover]');
+ if (!zoomOnHoverScript) return;
+ if (zoomOnHoverScript) {
+ const newScriptTag = document.createElement('script');
+ newScriptTag.src = zoomOnHoverScript.src;
+ zoomOnHoverScript.parentNode.replaceChild(newScriptTag, zoomOnHoverScript);
+ }
+});
+
+document.addEventListener('shopify:section:reorder', () => hideProductModal());
+
+document.addEventListener('shopify:section:select', () => hideProductModal());
+
+document.addEventListener('shopify:section:deselect', () => hideProductModal());
+
+document.addEventListener('shopify:inspector:activate', () => hideProductModal());
+
+document.addEventListener('shopify:inspector:deactivate', () => hideProductModal());
diff --git a/assets/video-section.css b/assets/video-section.css
new file mode 100644
index 0000000..a662ebc
--- /dev/null
+++ b/assets/video-section.css
@@ -0,0 +1,48 @@
+.video-section__media {
+ --ratio-percent: 56.25%;
+ position: relative;
+ padding-bottom: calc(var(--ratio-percent) - var(--media-border-width));
+}
+
+/* Needed for gradient continuity with or without animation so that transparent PNG images come up as we would expect */
+.scroll-trigger:where(.gradient.video-section__media) {
+ background: transparent;
+}
+
+.video-section__media.global-media-settings--full-width {
+ padding-bottom: var(--ratio-percent);
+}
+
+.video-section__media.deferred-media {
+ box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
+ rgba(var(--color-shadow), var(--media-shadow-opacity));
+}
+
+.video-section__media.deferred-media:after {
+ content: none;
+}
+
+.video-section__poster.deferred-media__poster:focus {
+ outline-offset: 0.3rem;
+}
+
+.video-section__media iframe {
+ background-color: rgba(var(--color-foreground), 0.03);
+ border: 0;
+}
+
+.video-section__poster,
+.video-section__media iframe,
+.video-section__media video {
+ position: absolute;
+ width: 100%;
+ height: 100%;
+}
+
+.video-section__media video {
+ background: #000000;
+}
+
+.video-section__media.media-fit-cover video {
+ object-fit: cover;
+}
diff --git a/config/settings_data.json b/config/settings_data.json
new file mode 100644
index 0000000..1feccea
--- /dev/null
+++ b/config/settings_data.json
@@ -0,0 +1,189 @@
+{
+ "current": "Default",
+ "presets": {
+ "Default": {
+ "logo_width": 90,
+ "color_schemes": {
+ "background-1": {
+ "settings": {
+ "background": "#FFFFFF",
+ "background_gradient": "",
+ "text": "#121212",
+ "button": "#121212",
+ "button_label": "#FFFFFF",
+ "secondary_button_label": "#121212",
+ "shadow": "#121212"
+ }
+ },
+ "background-2": {
+ "settings": {
+ "background": "#F3F3F3",
+ "background_gradient": "",
+ "text": "#121212",
+ "button": "#121212",
+ "button_label": "#F3F3F3",
+ "secondary_button_label": "#121212",
+ "shadow": "#121212"
+ }
+ },
+ "inverse": {
+ "settings": {
+ "background": "#242833",
+ "background_gradient": "",
+ "text": "#FFFFFF",
+ "button": "#FFFFFF",
+ "button_label": "#000000",
+ "secondary_button_label": "#FFFFFF",
+ "shadow": "#121212"
+ }
+ },
+ "accent-1": {
+ "settings": {
+ "background": "#121212",
+ "background_gradient": "",
+ "text": "#FFFFFF",
+ "button": "#FFFFFF",
+ "button_label": "#121212",
+ "secondary_button_label": "#FFFFFF",
+ "shadow": "#121212"
+ }
+ },
+ "accent-2": {
+ "settings": {
+ "background": "#334FB4",
+ "background_gradient": "",
+ "text": "#FFFFFF",
+ "button": "#FFFFFF",
+ "button_label": "#334FB4",
+ "secondary_button_label": "#FFFFFF",
+ "shadow": "#121212"
+ }
+ }
+ },
+ "type_header_font": "assistant_n4",
+ "heading_scale": 100,
+ "type_body_font": "assistant_n4",
+ "body_scale": 100,
+ "page_width": 1200,
+ "spacing_sections": 0,
+ "spacing_grid_horizontal": 8,
+ "spacing_grid_vertical": 8,
+ "buttons_border_thickness": 1,
+ "buttons_border_opacity": 100,
+ "buttons_radius": 0,
+ "buttons_shadow_opacity": 0,
+ "buttons_shadow_horizontal_offset": 0,
+ "buttons_shadow_vertical_offset": 4,
+ "buttons_shadow_blur": 5,
+ "variant_pills_border_thickness": 1,
+ "variant_pills_border_opacity": 55,
+ "variant_pills_radius": 40,
+ "variant_pills_shadow_opacity": 0,
+ "variant_pills_shadow_horizontal_offset": 0,
+ "variant_pills_shadow_vertical_offset": 4,
+ "variant_pills_shadow_blur": 5,
+ "inputs_border_thickness": 1,
+ "inputs_border_opacity": 55,
+ "inputs_radius": 0,
+ "inputs_shadow_opacity": 0,
+ "inputs_shadow_horizontal_offset": 0,
+ "inputs_shadow_vertical_offset": 4,
+ "inputs_shadow_blur": 5,
+ "card_style": "standard",
+ "card_image_padding": 0,
+ "card_text_alignment": "left",
+ "card_color_scheme": "background-2",
+ "card_border_thickness": 0,
+ "card_border_opacity": 10,
+ "card_corner_radius": 0,
+ "card_shadow_opacity": 0,
+ "card_shadow_horizontal_offset": 0,
+ "card_shadow_vertical_offset": 4,
+ "card_shadow_blur": 5,
+ "collection_card_style": "standard",
+ "collection_card_image_padding": 0,
+ "collection_card_text_alignment": "left",
+ "collection_card_color_scheme": "background-2",
+ "collection_card_border_thickness": 0,
+ "collection_card_border_opacity": 10,
+ "collection_card_corner_radius": 0,
+ "collection_card_shadow_opacity": 0,
+ "collection_card_shadow_horizontal_offset": 0,
+ "collection_card_shadow_vertical_offset": 4,
+ "collection_card_shadow_blur": 5,
+ "blog_card_style": "standard",
+ "blog_card_image_padding": 0,
+ "blog_card_text_alignment": "left",
+ "blog_card_color_scheme": "background-2",
+ "blog_card_border_thickness": 0,
+ "blog_card_border_opacity": 10,
+ "blog_card_corner_radius": 0,
+ "blog_card_shadow_opacity": 0,
+ "blog_card_shadow_horizontal_offset": 0,
+ "blog_card_shadow_vertical_offset": 4,
+ "blog_card_shadow_blur": 5,
+ "text_boxes_border_thickness": 0,
+ "text_boxes_border_opacity": 10,
+ "text_boxes_radius": 0,
+ "text_boxes_shadow_opacity": 0,
+ "text_boxes_shadow_horizontal_offset": 0,
+ "text_boxes_shadow_vertical_offset": 4,
+ "text_boxes_shadow_blur": 5,
+ "media_border_thickness": 1,
+ "media_border_opacity": 5,
+ "media_radius": 0,
+ "media_shadow_opacity": 0,
+ "media_shadow_horizontal_offset": 0,
+ "media_shadow_vertical_offset": 4,
+ "media_shadow_blur": 5,
+ "popup_border_thickness": 1,
+ "popup_border_opacity": 10,
+ "popup_corner_radius": 0,
+ "popup_shadow_opacity": 5,
+ "popup_shadow_horizontal_offset": 0,
+ "popup_shadow_vertical_offset": 4,
+ "popup_shadow_blur": 5,
+ "drawer_border_thickness": 1,
+ "drawer_border_opacity": 10,
+ "drawer_shadow_opacity": 0,
+ "drawer_shadow_horizontal_offset": 0,
+ "drawer_shadow_vertical_offset": 4,
+ "drawer_shadow_blur": 5,
+ "badge_position": "bottom left",
+ "badge_corner_radius": 40,
+ "sale_badge_color_scheme": "accent-2",
+ "sold_out_badge_color_scheme": "inverse",
+ "social_twitter_link": "",
+ "social_facebook_link": "",
+ "social_pinterest_link": "",
+ "social_instagram_link": "",
+ "social_tiktok_link": "",
+ "social_tumblr_link": "",
+ "social_snapchat_link": "",
+ "social_youtube_link": "",
+ "social_vimeo_link": "",
+ "predictive_search_enabled": true,
+ "predictive_search_show_vendor": false,
+ "predictive_search_show_price": false,
+ "currency_code_enabled": true,
+ "cart_type": "notification",
+ "show_vendor": false,
+ "show_cart_note": false,
+ "cart_drawer_collection": "",
+ "sections": {
+ "main-password-header": {
+ "type": "main-password-header",
+ "settings": {
+ "color_scheme": "background-1"
+ }
+ },
+ "main-password-footer": {
+ "type": "main-password-footer",
+ "settings": {
+ "color_scheme": "background-1"
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/config/settings_schema.json b/config/settings_schema.json
new file mode 100644
index 0000000..48e3502
--- /dev/null
+++ b/config/settings_schema.json
@@ -0,0 +1,1469 @@
+[
+ {
+ "name": "theme_info",
+ "theme_name": "Dawn",
+ "theme_version": "11.0.0",
+ "theme_author": "Shopify",
+ "theme_documentation_url": "https://help.shopify.com/manual/online-store/themes",
+ "theme_support_url": "https://support.shopify.com/"
+ },
+ {
+ "name": "t:settings_schema.logo.name",
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "logo",
+ "label": "t:settings_schema.logo.settings.logo_image.label"
+ },
+ {
+ "type": "range",
+ "id": "logo_width",
+ "min": 50,
+ "max": 300,
+ "step": 10,
+ "default": 100,
+ "unit": "px",
+ "label": "t:settings_schema.logo.settings.logo_width.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "favicon",
+ "label": "t:settings_schema.logo.settings.favicon.label",
+ "info": "t:settings_schema.logo.settings.favicon.info"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.colors.name",
+ "settings": [
+ {
+ "type": "color_scheme_group",
+ "id": "color_schemes",
+ "definition": [
+ {
+ "type": "color",
+ "id": "background",
+ "label": "t:settings_schema.colors.settings.background.label",
+ "default": "#FFFFFF"
+ },
+ {
+ "type": "color_background",
+ "id": "background_gradient",
+ "label": "t:settings_schema.colors.settings.background_gradient.label",
+ "info": "t:settings_schema.colors.settings.background_gradient.info"
+ },
+ {
+ "type": "color",
+ "id": "text",
+ "label": "t:settings_schema.colors.settings.text.label",
+ "default": "#121212"
+ },
+ {
+ "type": "color",
+ "id": "button",
+ "label": "t:settings_schema.colors.settings.button_background.label",
+ "default": "#121212"
+ },
+ {
+ "type": "color",
+ "id": "button_label",
+ "label": "t:settings_schema.colors.settings.button_label.label",
+ "default": "#FFFFFF"
+ },
+ {
+ "type": "color",
+ "id": "secondary_button_label",
+ "label": "t:settings_schema.colors.settings.secondary_button_label.label",
+ "default": "#121212"
+ },
+ {
+ "type": "color",
+ "id": "shadow",
+ "label": "t:settings_schema.colors.settings.shadow.label",
+ "default": "#121212"
+ }
+ ],
+ "role": {
+ "text": "text",
+ "background": {
+ "solid": "background",
+ "gradient": "background_gradient"
+ },
+ "links": "secondary_button_label",
+ "icons": "text",
+ "primary_button": "button",
+ "on_primary_button": "button_label",
+ "primary_button_border": "button",
+ "secondary_button": "background",
+ "on_secondary_button": "secondary_button_label",
+ "secondary_button_border": "secondary_button_label"
+ }
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.typography.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.typography.settings.header__1.content"
+ },
+ {
+ "type": "font_picker",
+ "id": "type_header_font",
+ "default": "assistant_n4",
+ "label": "t:settings_schema.typography.settings.type_header_font.label",
+ "info": "t:settings_schema.typography.settings.type_header_font.info"
+ },
+ {
+ "type": "range",
+ "id": "heading_scale",
+ "min": 100,
+ "max": 150,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.typography.settings.heading_scale.label",
+ "default": 100
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.typography.settings.header__2.content"
+ },
+ {
+ "type": "font_picker",
+ "id": "type_body_font",
+ "default": "assistant_n4",
+ "label": "t:settings_schema.typography.settings.type_body_font.label",
+ "info": "t:settings_schema.typography.settings.type_body_font.info"
+ },
+ {
+ "type": "range",
+ "id": "body_scale",
+ "min": 100,
+ "max": 130,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.typography.settings.body_scale.label",
+ "default": 100
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.layout.name",
+ "settings": [
+ {
+ "type": "range",
+ "id": "page_width",
+ "min": 1000,
+ "max": 1600,
+ "step": 100,
+ "default": 1200,
+ "unit": "px",
+ "label": "t:settings_schema.layout.settings.page_width.label"
+ },
+ {
+ "type": "range",
+ "id": "spacing_sections",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:settings_schema.layout.settings.spacing_sections.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.layout.settings.header__grid.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:settings_schema.layout.settings.paragraph__grid.content"
+ },
+ {
+ "type": "range",
+ "id": "spacing_grid_horizontal",
+ "min": 4,
+ "max": 40,
+ "step": 4,
+ "default": 8,
+ "unit": "px",
+ "label": "t:settings_schema.layout.settings.spacing_grid_horizontal.label"
+ },
+ {
+ "type": "range",
+ "id": "spacing_grid_vertical",
+ "min": 4,
+ "max": 40,
+ "step": 4,
+ "default": 8,
+ "unit": "px",
+ "label": "t:settings_schema.layout.settings.spacing_grid_vertical.label"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.animations.name",
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "animations_reveal_on_scroll",
+ "label": "t:settings_schema.animations.settings.animations_reveal_on_scroll.label",
+ "default": true
+ },
+ {
+ "type": "select",
+ "id": "animations_hover_elements",
+ "options": [
+ {
+ "value": "default",
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.options__1.label"
+ },
+ {
+ "value": "vertical-lift",
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.options__2.label"
+ },
+ {
+ "value": "3d-lift",
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.options__3.label"
+ }
+ ],
+ "default": "default",
+ "label": "t:settings_schema.animations.settings.animations_hover_elements.label",
+ "info": "t:settings_schema.animations.settings.animations_hover_elements.info"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.buttons.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "buttons_border_thickness",
+ "min": 0,
+ "max": 12,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 1
+ },
+ {
+ "type": "range",
+ "id": "buttons_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 100
+ },
+ {
+ "type": "range",
+ "id": "buttons_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "buttons_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "buttons_shadow_horizontal_offset",
+ "min": -12,
+ "max": 12,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "buttons_shadow_vertical_offset",
+ "min": -12,
+ "max": 12,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "buttons_shadow_blur",
+ "min": 0,
+ "max": 20,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.variant_pills.name",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:settings_schema.variant_pills.paragraph"
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_border_thickness",
+ "min": 0,
+ "max": 12,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 1
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 55
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 40
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_shadow_horizontal_offset",
+ "min": -12,
+ "max": 12,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_shadow_vertical_offset",
+ "min": -12,
+ "max": 12,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "variant_pills_shadow_blur",
+ "min": 0,
+ "max": 20,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.inputs.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "inputs_border_thickness",
+ "min": 0,
+ "max": 12,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 1
+ },
+ {
+ "type": "range",
+ "id": "inputs_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 55
+ },
+ {
+ "type": "range",
+ "id": "inputs_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "inputs_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "inputs_shadow_horizontal_offset",
+ "min": -12,
+ "max": 12,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "inputs_shadow_vertical_offset",
+ "min": -12,
+ "max": 12,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "inputs_shadow_blur",
+ "min": 0,
+ "max": 20,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.cards.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "card_style",
+ "options": [
+ {
+ "value": "standard",
+ "label": "t:settings_schema.cards.settings.style.options__1.label"
+ },
+ {
+ "value": "card",
+ "label": "t:settings_schema.cards.settings.style.options__2.label"
+ }
+ ],
+ "default": "standard",
+ "label": "t:settings_schema.cards.settings.style.label"
+ },
+ {
+ "type": "range",
+ "id": "card_image_padding",
+ "min": 0,
+ "max": 20,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.image_padding.label",
+ "default": 0
+ },
+ {
+ "type": "select",
+ "id": "card_text_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:settings_schema.global.settings.text_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:settings_schema.global.settings.text_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:settings_schema.global.settings.text_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:settings_schema.global.settings.text_alignment.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "card_color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-2"
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "card_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "card_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "card_corner_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "card_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 10
+ },
+ {
+ "type": "range",
+ "id": "card_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "card_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "card_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.collection_cards.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "collection_card_style",
+ "options": [
+ {
+ "value": "standard",
+ "label": "t:settings_schema.collection_cards.settings.style.options__1.label"
+ },
+ {
+ "value": "card",
+ "label": "t:settings_schema.collection_cards.settings.style.options__2.label"
+ }
+ ],
+ "default": "standard",
+ "label": "t:settings_schema.collection_cards.settings.style.label"
+ },
+ {
+ "type": "range",
+ "id": "collection_card_image_padding",
+ "min": 0,
+ "max": 20,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.image_padding.label",
+ "default": 0
+ },
+ {
+ "type": "select",
+ "id": "collection_card_text_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:settings_schema.global.settings.text_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:settings_schema.global.settings.text_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:settings_schema.global.settings.text_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:settings_schema.global.settings.text_alignment.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "collection_card_color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-2"
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "collection_card_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "collection_card_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "collection_card_corner_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "collection_card_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 10
+ },
+ {
+ "type": "range",
+ "id": "collection_card_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "collection_card_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "collection_card_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.blog_cards.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "blog_card_style",
+ "options": [
+ {
+ "value": "standard",
+ "label": "t:settings_schema.blog_cards.settings.style.options__1.label"
+ },
+ {
+ "value": "card",
+ "label": "t:settings_schema.blog_cards.settings.style.options__2.label"
+ }
+ ],
+ "default": "standard",
+ "label": "t:settings_schema.blog_cards.settings.style.label"
+ },
+ {
+ "type": "range",
+ "id": "blog_card_image_padding",
+ "min": 0,
+ "max": 20,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.image_padding.label",
+ "default": 0
+ },
+ {
+ "type": "select",
+ "id": "blog_card_text_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:settings_schema.global.settings.text_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:settings_schema.global.settings.text_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:settings_schema.global.settings.text_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:settings_schema.global.settings.text_alignment.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "blog_card_color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-2"
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "blog_card_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "blog_card_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "blog_card_corner_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "blog_card_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 10
+ },
+ {
+ "type": "range",
+ "id": "blog_card_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "blog_card_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "blog_card_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.content_containers.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "text_boxes_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.media.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "media_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 1
+ },
+ {
+ "type": "range",
+ "id": "media_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 5
+ },
+ {
+ "type": "range",
+ "id": "media_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "media_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "media_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "media_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "media_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.popups.name",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:settings_schema.popups.paragraph"
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "popup_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 1
+ },
+ {
+ "type": "range",
+ "id": "popup_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 10
+ },
+ {
+ "type": "range",
+ "id": "popup_corner_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "popup_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "popup_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "popup_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "popup_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.drawers.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__border.content"
+ },
+ {
+ "type": "range",
+ "id": "drawer_border_thickness",
+ "min": 0,
+ "max": 24,
+ "step": 1,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.thickness.label",
+ "default": 1
+ },
+ {
+ "type": "range",
+ "id": "drawer_border_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 10
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.global.settings.header__shadow.content"
+ },
+ {
+ "type": "range",
+ "id": "drawer_shadow_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 5,
+ "unit": "%",
+ "label": "t:settings_schema.global.settings.opacity.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "drawer_shadow_horizontal_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.horizontal_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "drawer_shadow_vertical_offset",
+ "min": -40,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.vertical_offset.label",
+ "default": 0
+ },
+ {
+ "type": "range",
+ "id": "drawer_shadow_blur",
+ "min": 0,
+ "max": 40,
+ "step": 5,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.blur.label",
+ "default": 0
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.badges.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "badge_position",
+ "options": [
+ {
+ "value": "bottom left",
+ "label": "t:settings_schema.badges.settings.position.options__1.label"
+ },
+ {
+ "value": "bottom right",
+ "label": "t:settings_schema.badges.settings.position.options__2.label"
+ },
+ {
+ "value": "top left",
+ "label": "t:settings_schema.badges.settings.position.options__3.label"
+ },
+ {
+ "value": "top right",
+ "label": "t:settings_schema.badges.settings.position.options__4.label"
+ }
+ ],
+ "default": "bottom left",
+ "label": "t:settings_schema.badges.settings.position.label"
+ },
+ {
+ "type": "range",
+ "id": "badge_corner_radius",
+ "min": 0,
+ "max": 40,
+ "step": 2,
+ "unit": "px",
+ "label": "t:settings_schema.global.settings.corner_radius.label",
+ "default": 40
+ },
+ {
+ "type": "color_scheme",
+ "id": "sale_badge_color_scheme",
+ "label": "t:settings_schema.badges.settings.sale_badge_color_scheme.label",
+ "default": "accent-2"
+ },
+ {
+ "type": "color_scheme",
+ "id": "sold_out_badge_color_scheme",
+ "label": "t:settings_schema.badges.settings.sold_out_badge_color_scheme.label",
+ "default": "inverse"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.brand_information.name",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:settings_schema.brand_information.settings.paragraph.content"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "brand_headline",
+ "label": "t:settings_schema.brand_information.settings.brand_headline.label"
+ },
+ {
+ "type": "richtext",
+ "id": "brand_description",
+ "label": "t:settings_schema.brand_information.settings.brand_description.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "brand_image",
+ "label": "t:settings_schema.brand_information.settings.brand_image.label"
+ },
+ {
+ "type": "range",
+ "id": "brand_image_width",
+ "min": 50,
+ "max": 550,
+ "step": 5,
+ "default": 100,
+ "unit": "px",
+ "label": "t:settings_schema.brand_information.settings.brand_image_width.label"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.social-media.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.social-media.settings.header.content"
+ },
+ {
+ "type": "text",
+ "id": "social_facebook_link",
+ "label": "t:settings_schema.social-media.settings.social_facebook_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_facebook_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_instagram_link",
+ "label": "t:settings_schema.social-media.settings.social_instagram_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_instagram_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_youtube_link",
+ "label": "t:settings_schema.social-media.settings.social_youtube_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_youtube_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_tiktok_link",
+ "label": "t:settings_schema.social-media.settings.social_tiktok_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_tiktok_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_twitter_link",
+ "label": "t:settings_schema.social-media.settings.social_twitter_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_twitter_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_snapchat_link",
+ "label": "t:settings_schema.social-media.settings.social_snapchat_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_snapchat_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_pinterest_link",
+ "label": "t:settings_schema.social-media.settings.social_pinterest_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_pinterest_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_tumblr_link",
+ "label": "t:settings_schema.social-media.settings.social_tumblr_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_tumblr_link.info"
+ },
+ {
+ "type": "text",
+ "id": "social_vimeo_link",
+ "label": "t:settings_schema.social-media.settings.social_vimeo_link.label",
+ "placeholder": "t:settings_schema.social-media.settings.social_vimeo_link.info"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.search_input.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.search_input.settings.header.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "predictive_search_enabled",
+ "default": true,
+ "label": "t:settings_schema.search_input.settings.predictive_search_enabled.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "predictive_search_show_vendor",
+ "default": false,
+ "label": "t:settings_schema.search_input.settings.predictive_search_show_vendor.label",
+ "info": "t:settings_schema.search_input.settings.predictive_search_show_vendor.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "predictive_search_show_price",
+ "default": false,
+ "label": "t:settings_schema.search_input.settings.predictive_search_show_price.label",
+ "info": "t:settings_schema.search_input.settings.predictive_search_show_price.info"
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.currency_format.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:settings_schema.currency_format.settings.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:settings_schema.currency_format.settings.paragraph"
+ },
+ {
+ "type": "checkbox",
+ "id": "currency_code_enabled",
+ "label": "t:settings_schema.currency_format.settings.currency_code_enabled.label",
+ "default": true
+ }
+ ]
+ },
+ {
+ "name": "t:settings_schema.cart.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "cart_type",
+ "options": [
+ {
+ "value": "drawer",
+ "label": "t:settings_schema.cart.settings.cart_type.drawer.label"
+ },
+ {
+ "value": "page",
+ "label": "t:settings_schema.cart.settings.cart_type.page.label"
+ },
+ {
+ "value": "notification",
+ "label": "t:settings_schema.cart.settings.cart_type.notification.label"
+ }
+ ],
+ "default": "notification",
+ "label": "t:settings_schema.cart.settings.cart_type.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_vendor",
+ "label": "t:settings_schema.cart.settings.show_vendor.label",
+ "default": false
+ },
+ {
+ "type": "checkbox",
+ "id": "show_cart_note",
+ "label": "t:settings_schema.cart.settings.show_cart_note.label",
+ "default": false
+ },
+ {
+ "type": "header",
+ "content": "t:settings_schema.cart.settings.cart_drawer.header"
+ },
+ {
+ "type": "collection",
+ "id": "cart_drawer_collection",
+ "label": "t:settings_schema.cart.settings.cart_drawer.collection.label",
+ "info": "t:settings_schema.cart.settings.cart_drawer.collection.info"
+ },
+ {
+ "type": "color_scheme",
+ "id": "cart_color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ }
+ ]
+ }
+]
diff --git a/layout/password.liquid b/layout/password.liquid
new file mode 100644
index 0000000..c03433a
--- /dev/null
+++ b/layout/password.liquid
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+ {%- if settings.favicon != blank -%}
+
+ {%- endif -%}
+
+ {%- unless settings.type_header_font.system? -%}
+
+ {%- endunless -%}
+
+ {{ shop.name }}
+
+
+
+ {% render 'meta-tags' %}
+
+ {{ content_for_header }}
+
+ {%- liquid
+ assign body_font_bold = settings.type_body_font | font_modify: 'weight', 'bold'
+ assign body_font_italic = settings.type_body_font | font_modify: 'style', 'italic'
+ assign body_font_bold_italic = body_font_bold | font_modify: 'style', 'italic'
+ %}
+
+ {% style %}
+ {{ settings.type_body_font | font_face: font_display: 'swap' }}
+ {{ body_font_bold | font_face: font_display: 'swap' }}
+ {{ body_font_italic | font_face: font_display: 'swap' }}
+ {{ body_font_bold_italic | font_face: font_display: 'swap' }}
+ {{ settings.type_header_font | font_face: font_display: 'swap' }}
+
+ {% for scheme in settings.color_schemes -%}
+ {% assign scheme_classes = scheme_classes | append: ', .color-' | append: scheme.id %}
+ {% if forloop.index == 1 -%}
+ :root,
+ {%- endif %}
+ .color-{{ scheme.id }} {
+ --color-background: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ {% if scheme.settings.background_gradient != empty %}
+ --gradient-background: {{ scheme.settings.background_gradient }};
+ {% else %}
+ --gradient-background: {{ scheme.settings.background }};
+ {% endif %}
+ --color-foreground: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --color-shadow: {{ scheme.settings.shadow.red }},{{ scheme.settings.shadow.green }},{{ scheme.settings.shadow.blue }};
+ --color-button: {{ scheme.settings.button.red }},{{ scheme.settings.button.green }},{{ scheme.settings.button.blue }};
+ --color-button-text: {{ scheme.settings.button_label.red }},{{ scheme.settings.button_label.green }},{{ scheme.settings.button_label.blue }};
+ --color-secondary-button: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ --color-secondary-button-text: {{ scheme.settings.secondary_button_label.red }},{{ scheme.settings.secondary_button_label.green }},{{ scheme.settings.secondary_button_label.blue }};
+ --color-link: {{ scheme.settings.secondary_button_label.red }},{{ scheme.settings.secondary_button_label.green }},{{ scheme.settings.secondary_button_label.blue }};
+ --color-badge-foreground: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --color-badge-background: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ --color-badge-border: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --payment-terms-background-color: rgb({{ scheme.settings.background.rgb }});
+ }
+ {% endfor %}
+
+ {{ scheme_classes | prepend: 'body' }} {
+ color: rgba(var(--color-foreground), 0.75);
+ background-color: rgb(var(--color-background));
+ }
+
+ :root {
+ --font-body-family: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
+ --font-body-style: {{ settings.type_body_font.style }};
+ --font-body-weight: {{ settings.type_body_font.weight }};
+
+ --font-heading-family: {{ settings.type_header_font.family }}, {{ settings.type_header_font.fallback_families }};
+ --font-heading-style: {{ settings.type_header_font.style }};
+ --font-heading-weight: {{ settings.type_header_font.weight }};
+
+ --font-body-scale: {{ settings.body_scale | divided_by: 100.0 }};
+ --font-heading-scale: {{ settings.heading_scale | times: 1.0 | divided_by: settings.body_scale }};
+ --media-padding: {{ settings.media_padding }}px;
+ --media-border-opacity: {{ settings.media_border_opacity | divided_by: 100.0 }};
+ --media-border-width: {{ settings.media_border_thickness }}px;
+ --media-radius: {{ settings.media_radius }}px;
+ --media-shadow-opacity: {{ settings.media_shadow_opacity | divided_by: 100.0 }};
+ --media-shadow-horizontal-offset: {{ settings.media_shadow_horizontal_offset }}px;
+ --media-shadow-vertical-offset: {{ settings.media_shadow_vertical_offset }}px;
+ --media-shadow-blur-radius: {{ settings.media_shadow_blur }}px;
+ --media-shadow-visible: {% if settings.media_shadow_opacity > 0 %}1{% else %}0{% endif %};
+
+ --page-width: {{ settings.page_width | divided_by: 10 }}rem;
+ --page-width-margin: {% if settings.page_width == '1600' %}2{% else %}0{% endif %}rem;
+
+ --product-card-image-padding: {{ settings.card_image_padding | divided_by: 10.0 }}rem;
+ --product-card-corner-radius: {{ settings.card_corner_radius | divided_by: 10.0 }}rem;
+ --product-card-text-alignment: {{ settings.card_text_alignment }};
+ --product-card-border-width: {{ settings.card_border_thickness | divided_by: 10.0 }}rem;
+ --product-card-border-opacity: {{ settings.card_border_opacity | divided_by: 100.0 }};
+ --product-card-shadow-opacity: {{ settings.card_shadow_opacity | divided_by: 100.0 }};
+ --product-card-shadow-visible: {% if settings.card_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --product-card-shadow-horizontal-offset: {{ settings.card_shadow_horizontal_offset | divided_by: 10.0 }}rem;
+ --product-card-shadow-vertical-offset: {{ settings.card_shadow_vertical_offset | divided_by: 10.0 }}rem;
+ --product-card-shadow-blur-radius: {{ settings.card_shadow_blur | divided_by: 10.0 }}rem;
+
+ --collection-card-image-padding: {{ settings.collection_card_image_padding | divided_by: 10.0 }}rem;
+ --collection-card-corner-radius: {{ settings.collection_card_corner_radius | divided_by: 10.0 }}rem;
+ --collection-card-text-alignment: {{ settings.collection_card_text_alignment }};
+ --collection-card-border-width: {{ settings.collection_card_border_thickness | divided_by: 10.0 }}rem;
+ --collection-card-border-opacity: {{ settings.collection_card_border_opacity | divided_by: 100.0 }};
+ --collection-card-shadow-opacity: {{ settings.collection_card_shadow_opacity | divided_by: 100.0 }};
+ --collection-card-shadow-visible: {% if settings.collection_card_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --collection-card-shadow-horizontal-offset: {{ settings.collection_card_shadow_horizontal_offset | divided_by: 10.0 }}rem;
+ --collection-card-shadow-vertical-offset: {{ settings.collection_card_shadow_vertical_offset | divided_by: 10.0 }}rem;
+ --collection-card-shadow-blur-radius: {{ settings.collection_card_shadow_blur | divided_by: 10.0 }}rem;
+
+ --blog-card-image-padding: {{ settings.blog_card_image_padding | divided_by: 10.0 }}rem;
+ --blog-card-corner-radius: {{ settings.blog_card_corner_radius | divided_by: 10.0 }}rem;
+ --blog-card-text-alignment: {{ settings.blog_card_text_alignment }};
+ --blog-card-border-width: {{ settings.blog_card_border_thickness | divided_by: 10.0 }}rem;
+ --blog-card-border-opacity: {{ settings.blog_card_border_opacity | divided_by: 100.0 }};
+ --blog-card-shadow-opacity: {{ settings.blog_card_shadow_opacity | divided_by: 100.0 }};
+ --blog-card-shadow-visible: {% if settings.blog_card_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --blog-card-shadow-horizontal-offset: {{ settings.blog_card_shadow_horizontal_offset | divided_by: 10.0 }}rem;
+ --blog-card-shadow-vertical-offset: {{ settings.blog_card_shadow_vertical_offset | divided_by: 10.0 }}rem;
+ --blog-card-shadow-blur-radius: {{ settings.blog_card_shadow_blur | divided_by: 10.0 }}rem;
+
+ --badge-corner-radius: {{ settings.badge_corner_radius | divided_by: 10.0 }}rem;
+
+ --spacing-sections-desktop: {{ settings.spacing_sections }}px;
+ --spacing-sections-mobile: {% if settings.spacing_sections < 24 %}{{ settings.spacing_sections }}{% else %}{{ settings.spacing_sections | times: 0.7 | round | at_least: 20 }}{% endif %}px;
+
+ --grid-desktop-vertical-spacing: {{ settings.spacing_grid_vertical }}px;
+ --grid-desktop-horizontal-spacing: {{ settings.spacing_grid_horizontal }}px;
+ --grid-mobile-vertical-spacing: {{ settings.spacing_grid_vertical | divided_by: 2 }}px;
+ --grid-mobile-horizontal-spacing: {{ settings.spacing_grid_horizontal | divided_by: 2 }}px;
+
+ --text-boxes-border-opacity: {{ settings.text_boxes_border_opacity | divided_by: 100.0 }};
+ --text-boxes-border-width: {{ settings.text_boxes_border_thickness }}px;
+ --text-boxes-radius: {{ settings.text_boxes_radius }}px;
+ --text-boxes-shadow-opacity: {{ settings.text_boxes_shadow_opacity | divided_by: 100.0 }};
+ --text-boxes-shadow-visible: {% if settings.text_boxes_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --text-boxes-shadow-horizontal-offset: {{ settings.text_boxes_shadow_horizontal_offset }}px;
+ --text-boxes-shadow-vertical-offset: {{ settings.text_boxes_shadow_vertical_offset }}px;
+ --text-boxes-shadow-blur-radius: {{ settings.text_boxes_shadow_blur }}px;
+
+ --buttons-radius: {{ settings.buttons_radius }}px;
+ --buttons-radius-outset: {% if settings.buttons_radius > 0 %}{{ settings.buttons_radius | plus: settings.buttons_border_thickness }}{% else %}0{% endif %}px;
+ --buttons-border-width: {% if settings.buttons_border_opacity > 0 %}{{ settings.buttons_border_thickness }}{% else %}0{% endif %}px;
+ --buttons-border-opacity: {{ settings.buttons_border_opacity | divided_by: 100.0 }};
+ --buttons-shadow-opacity: {{ settings.buttons_shadow_opacity | divided_by: 100.0 }};
+ --buttons-shadow-visible: {% if settings.buttons_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --buttons-shadow-horizontal-offset: {{ settings.buttons_shadow_horizontal_offset }}px;
+ --buttons-shadow-vertical-offset: {{ settings.buttons_shadow_vertical_offset }}px;
+ --buttons-shadow-blur-radius: {{ settings.buttons_shadow_blur }}px;
+ --buttons-border-offset: {% if settings.buttons_radius > 0 or settings.buttons_shadow_opacity > 0 %}0.3{% else %}0{% endif %}px;
+
+ --inputs-radius: {{ settings.inputs_radius }}px;
+ --inputs-border-width: {{ settings.inputs_border_thickness }}px;
+ --inputs-border-opacity: {{ settings.inputs_border_opacity | divided_by: 100.0 }};
+ --inputs-shadow-opacity: {{ settings.inputs_shadow_opacity | divided_by: 100.0 }};
+ --inputs-shadow-horizontal-offset: {{ settings.inputs_shadow_horizontal_offset }}px;
+ --inputs-margin-offset: {% if settings.inputs_shadow_vertical_offset != 0 and settings.inputs_shadow_opacity > 0 %}{{ settings.inputs_shadow_vertical_offset | abs }}{% else %}0{% endif %}px;
+ --inputs-shadow-vertical-offset: {{ settings.inputs_shadow_vertical_offset }}px;
+ --inputs-shadow-blur-radius: {{ settings.inputs_shadow_blur }}px;
+ --inputs-radius-outset: {% if settings.inputs_radius > 0 %}{{ settings.inputs_radius | plus: settings.inputs_border_thickness }}{% else %}0{% endif %}px;
+
+ --variant-pills-radius: {{ settings.variant_pills_radius }}px;
+ --variant-pills-border-width: {{ settings.variant_pills_border_thickness }}px;
+ --variant-pills-border-opacity: {{ settings.variant_pills_border_opacity | divided_by: 100.0 }};
+ --variant-pills-shadow-opacity: {{ settings.variant_pills_shadow_opacity | divided_by: 100.0 }};
+ --variant-pills-shadow-horizontal-offset: {{ settings.variant_pills_shadow_horizontal_offset }}px;
+ --variant-pills-shadow-vertical-offset: {{ settings.variant_pills_shadow_vertical_offset }}px;
+ --variant-pills-shadow-blur-radius: {{ settings.variant_pills_shadow_blur }}px;
+ }
+ {% endstyle %}
+
+ {%- unless settings.type_body_font.system? -%}
+
+ {%- endunless -%}
+ {%- unless settings.type_header_font.system? -%}
+
+ {%- endunless -%}
+
+ {{ 'section-password.css' | asset_url | stylesheet_tag }}
+ {{ 'base.css' | asset_url | stylesheet_tag }}
+ {{ 'component-list-social.css' | asset_url | stylesheet_tag }}
+
+
+
+
+
+
+
+
+
+ {{ 'accessibility.skip_to_text' | t }}
+
+
+ {% section 'main-password-header' %}
+
+
+ {{ content_for_layout }}
+
+
+ {% section 'main-password-footer' %}
+
+
+ {{ 'accessibility.link_messages.new_window' | t }}
+
+
+
diff --git a/layout/theme.liquid b/layout/theme.liquid
new file mode 100644
index 0000000..31feb21
--- /dev/null
+++ b/layout/theme.liquid
@@ -0,0 +1,352 @@
+
+
+
+
+
+
+
+
+
+ {%- if settings.favicon != blank -%}
+
+ {%- endif -%}
+
+ {%- unless settings.type_header_font.system? and settings.type_body_font.system? -%}
+
+ {%- endunless -%}
+
+
+ {{ page_title }}
+ {%- if current_tags %} – tagged "{{ current_tags | join: ', ' }}"{% endif -%}
+ {%- if current_page != 1 %} – Page {{ current_page }}{% endif -%}
+ {%- unless page_title contains shop.name %} – {{ shop.name }}{% endunless -%}
+
+
+ {% if page_description %}
+
+ {% endif %}
+
+ {% render 'meta-tags' %}
+
+
+
+
+ {%- if settings.animations_reveal_on_scroll -%}
+
+ {%- endif -%}
+
+ {{ content_for_header }}
+
+ {%- liquid
+ assign body_font_bold = settings.type_body_font | font_modify: 'weight', 'bold'
+ assign body_font_italic = settings.type_body_font | font_modify: 'style', 'italic'
+ assign body_font_bold_italic = body_font_bold | font_modify: 'style', 'italic'
+ %}
+
+ {% style %}
+ {{ settings.type_body_font | font_face: font_display: 'swap' }}
+ {{ body_font_bold | font_face: font_display: 'swap' }}
+ {{ body_font_italic | font_face: font_display: 'swap' }}
+ {{ body_font_bold_italic | font_face: font_display: 'swap' }}
+ {{ settings.type_header_font | font_face: font_display: 'swap' }}
+
+ {% for scheme in settings.color_schemes -%}
+ {% assign scheme_classes = scheme_classes | append: ', .color-' | append: scheme.id %}
+ {% if forloop.index == 1 -%}
+ :root,
+ {%- endif %}
+ .color-{{ scheme.id }} {
+ --color-background: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ {% if scheme.settings.background_gradient != empty %}
+ --gradient-background: {{ scheme.settings.background_gradient }};
+ {% else %}
+ --gradient-background: {{ scheme.settings.background }};
+ {% endif %}
+
+ {% liquid
+ assign background_color = scheme.settings.background
+ assign background_color_brightness = background_color | color_brightness
+ if background_color_brightness <= 26
+ assign background_color_contrast = background_color | color_lighten: 50
+ elsif background_color_brightness <= 65
+ assign background_color_contrast = background_color | color_lighten: 5
+ else
+ assign background_color_contrast = background_color | color_darken: 25
+ endif
+ %}
+
+ --color-foreground: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --color-background-contrast: {{ background_color_contrast.red }},{{ background_color_contrast.green }},{{ background_color_contrast.blue }};
+ --color-shadow: {{ scheme.settings.shadow.red }},{{ scheme.settings.shadow.green }},{{ scheme.settings.shadow.blue }};
+ --color-button: {{ scheme.settings.button.red }},{{ scheme.settings.button.green }},{{ scheme.settings.button.blue }};
+ --color-button-text: {{ scheme.settings.button_label.red }},{{ scheme.settings.button_label.green }},{{ scheme.settings.button_label.blue }};
+ --color-secondary-button: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ --color-secondary-button-text: {{ scheme.settings.secondary_button_label.red }},{{ scheme.settings.secondary_button_label.green }},{{ scheme.settings.secondary_button_label.blue }};
+ --color-link: {{ scheme.settings.secondary_button_label.red }},{{ scheme.settings.secondary_button_label.green }},{{ scheme.settings.secondary_button_label.blue }};
+ --color-badge-foreground: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --color-badge-background: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ --color-badge-border: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --payment-terms-background-color: rgb({{ scheme.settings.background.rgb }});
+ }
+ {% endfor %}
+
+ {{ scheme_classes | prepend: 'body' }} {
+ color: rgba(var(--color-foreground), 0.75);
+ background-color: rgb(var(--color-background));
+ }
+
+ :root {
+ --font-body-family: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
+ --font-body-style: {{ settings.type_body_font.style }};
+ --font-body-weight: {{ settings.type_body_font.weight }};
+ --font-body-weight-bold: {{ settings.type_body_font.weight | plus: 300 | at_most: 1000 }};
+
+ --font-heading-family: {{ settings.type_header_font.family }}, {{ settings.type_header_font.fallback_families }};
+ --font-heading-style: {{ settings.type_header_font.style }};
+ --font-heading-weight: {{ settings.type_header_font.weight }};
+
+ --font-body-scale: {{ settings.body_scale | divided_by: 100.0 }};
+ --font-heading-scale: {{ settings.heading_scale | times: 1.0 | divided_by: settings.body_scale }};
+
+ --media-padding: {{ settings.media_padding }}px;
+ --media-border-opacity: {{ settings.media_border_opacity | divided_by: 100.0 }};
+ --media-border-width: {{ settings.media_border_thickness }}px;
+ --media-radius: {{ settings.media_radius }}px;
+ --media-shadow-opacity: {{ settings.media_shadow_opacity | divided_by: 100.0 }};
+ --media-shadow-horizontal-offset: {{ settings.media_shadow_horizontal_offset }}px;
+ --media-shadow-vertical-offset: {{ settings.media_shadow_vertical_offset }}px;
+ --media-shadow-blur-radius: {{ settings.media_shadow_blur }}px;
+ --media-shadow-visible: {% if settings.media_shadow_opacity > 0 %}1{% else %}0{% endif %};
+
+ --page-width: {{ settings.page_width | divided_by: 10 }}rem;
+ --page-width-margin: {% if settings.page_width == '1600' %}2{% else %}0{% endif %}rem;
+
+ --product-card-image-padding: {{ settings.card_image_padding | divided_by: 10.0 }}rem;
+ --product-card-corner-radius: {{ settings.card_corner_radius | divided_by: 10.0 }}rem;
+ --product-card-text-alignment: {{ settings.card_text_alignment }};
+ --product-card-border-width: {{ settings.card_border_thickness | divided_by: 10.0 }}rem;
+ --product-card-border-opacity: {{ settings.card_border_opacity | divided_by: 100.0 }};
+ --product-card-shadow-opacity: {{ settings.card_shadow_opacity | divided_by: 100.0 }};
+ --product-card-shadow-visible: {% if settings.card_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --product-card-shadow-horizontal-offset: {{ settings.card_shadow_horizontal_offset | divided_by: 10.0 }}rem;
+ --product-card-shadow-vertical-offset: {{ settings.card_shadow_vertical_offset | divided_by: 10.0 }}rem;
+ --product-card-shadow-blur-radius: {{ settings.card_shadow_blur | divided_by: 10.0 }}rem;
+
+ --collection-card-image-padding: {{ settings.collection_card_image_padding | divided_by: 10.0 }}rem;
+ --collection-card-corner-radius: {{ settings.collection_card_corner_radius | divided_by: 10.0 }}rem;
+ --collection-card-text-alignment: {{ settings.collection_card_text_alignment }};
+ --collection-card-border-width: {{ settings.collection_card_border_thickness | divided_by: 10.0 }}rem;
+ --collection-card-border-opacity: {{ settings.collection_card_border_opacity | divided_by: 100.0 }};
+ --collection-card-shadow-opacity: {{ settings.collection_card_shadow_opacity | divided_by: 100.0 }};
+ --collection-card-shadow-visible: {% if settings.collection_card_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --collection-card-shadow-horizontal-offset: {{ settings.collection_card_shadow_horizontal_offset | divided_by: 10.0 }}rem;
+ --collection-card-shadow-vertical-offset: {{ settings.collection_card_shadow_vertical_offset | divided_by: 10.0 }}rem;
+ --collection-card-shadow-blur-radius: {{ settings.collection_card_shadow_blur | divided_by: 10.0 }}rem;
+
+ --blog-card-image-padding: {{ settings.blog_card_image_padding | divided_by: 10.0 }}rem;
+ --blog-card-corner-radius: {{ settings.blog_card_corner_radius | divided_by: 10.0 }}rem;
+ --blog-card-text-alignment: {{ settings.blog_card_text_alignment }};
+ --blog-card-border-width: {{ settings.blog_card_border_thickness | divided_by: 10.0 }}rem;
+ --blog-card-border-opacity: {{ settings.blog_card_border_opacity | divided_by: 100.0 }};
+ --blog-card-shadow-opacity: {{ settings.blog_card_shadow_opacity | divided_by: 100.0 }};
+ --blog-card-shadow-visible: {% if settings.blog_card_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --blog-card-shadow-horizontal-offset: {{ settings.blog_card_shadow_horizontal_offset | divided_by: 10.0 }}rem;
+ --blog-card-shadow-vertical-offset: {{ settings.blog_card_shadow_vertical_offset | divided_by: 10.0 }}rem;
+ --blog-card-shadow-blur-radius: {{ settings.blog_card_shadow_blur | divided_by: 10.0 }}rem;
+
+ --badge-corner-radius: {{ settings.badge_corner_radius | divided_by: 10.0 }}rem;
+
+ --popup-border-width: {{ settings.popup_border_thickness }}px;
+ --popup-border-opacity: {{ settings.popup_border_opacity | divided_by: 100.0 }};
+ --popup-corner-radius: {{ settings.popup_corner_radius }}px;
+ --popup-shadow-opacity: {{ settings.popup_shadow_opacity | divided_by: 100.0 }};
+ --popup-shadow-horizontal-offset: {{ settings.popup_shadow_horizontal_offset }}px;
+ --popup-shadow-vertical-offset: {{ settings.popup_shadow_vertical_offset }}px;
+ --popup-shadow-blur-radius: {{ settings.popup_shadow_blur }}px;
+
+ --drawer-border-width: {{ settings.drawer_border_thickness }}px;
+ --drawer-border-opacity: {{ settings.drawer_border_opacity | divided_by: 100.0 }};
+ --drawer-shadow-opacity: {{ settings.drawer_shadow_opacity | divided_by: 100.0 }};
+ --drawer-shadow-horizontal-offset: {{ settings.drawer_shadow_horizontal_offset }}px;
+ --drawer-shadow-vertical-offset: {{ settings.drawer_shadow_vertical_offset }}px;
+ --drawer-shadow-blur-radius: {{ settings.drawer_shadow_blur }}px;
+
+ --spacing-sections-desktop: {{ settings.spacing_sections }}px;
+ --spacing-sections-mobile: {% if settings.spacing_sections < 24 %}{{ settings.spacing_sections }}{% else %}{{ settings.spacing_sections | times: 0.7 | round | at_least: 20 }}{% endif %}px;
+
+ --grid-desktop-vertical-spacing: {{ settings.spacing_grid_vertical }}px;
+ --grid-desktop-horizontal-spacing: {{ settings.spacing_grid_horizontal }}px;
+ --grid-mobile-vertical-spacing: {{ settings.spacing_grid_vertical | divided_by: 2 }}px;
+ --grid-mobile-horizontal-spacing: {{ settings.spacing_grid_horizontal | divided_by: 2 }}px;
+
+ --text-boxes-border-opacity: {{ settings.text_boxes_border_opacity | divided_by: 100.0 }};
+ --text-boxes-border-width: {{ settings.text_boxes_border_thickness }}px;
+ --text-boxes-radius: {{ settings.text_boxes_radius }}px;
+ --text-boxes-shadow-opacity: {{ settings.text_boxes_shadow_opacity | divided_by: 100.0 }};
+ --text-boxes-shadow-visible: {% if settings.text_boxes_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --text-boxes-shadow-horizontal-offset: {{ settings.text_boxes_shadow_horizontal_offset }}px;
+ --text-boxes-shadow-vertical-offset: {{ settings.text_boxes_shadow_vertical_offset }}px;
+ --text-boxes-shadow-blur-radius: {{ settings.text_boxes_shadow_blur }}px;
+
+ --buttons-radius: {{ settings.buttons_radius }}px;
+ --buttons-radius-outset: {% if settings.buttons_radius > 0 %}{{ settings.buttons_radius | plus: settings.buttons_border_thickness }}{% else %}0{% endif %}px;
+ --buttons-border-width: {% if settings.buttons_border_opacity > 0 %}{{ settings.buttons_border_thickness }}{% else %}0{% endif %}px;
+ --buttons-border-opacity: {{ settings.buttons_border_opacity | divided_by: 100.0 }};
+ --buttons-shadow-opacity: {{ settings.buttons_shadow_opacity | divided_by: 100.0 }};
+ --buttons-shadow-visible: {% if settings.buttons_shadow_opacity > 0 %}1{% else %}0{% endif %};
+ --buttons-shadow-horizontal-offset: {{ settings.buttons_shadow_horizontal_offset }}px;
+ --buttons-shadow-vertical-offset: {{ settings.buttons_shadow_vertical_offset }}px;
+ --buttons-shadow-blur-radius: {{ settings.buttons_shadow_blur }}px;
+ --buttons-border-offset: {% if settings.buttons_radius > 0 or settings.buttons_shadow_opacity > 0 %}0.3{% else %}0{% endif %}px;
+
+ --inputs-radius: {{ settings.inputs_radius }}px;
+ --inputs-border-width: {{ settings.inputs_border_thickness }}px;
+ --inputs-border-opacity: {{ settings.inputs_border_opacity | divided_by: 100.0 }};
+ --inputs-shadow-opacity: {{ settings.inputs_shadow_opacity | divided_by: 100.0 }};
+ --inputs-shadow-horizontal-offset: {{ settings.inputs_shadow_horizontal_offset }}px;
+ --inputs-margin-offset: {% if settings.inputs_shadow_vertical_offset != 0 and settings.inputs_shadow_opacity > 0 %}{{ settings.inputs_shadow_vertical_offset | abs }}{% else %}0{% endif %}px;
+ --inputs-shadow-vertical-offset: {{ settings.inputs_shadow_vertical_offset }}px;
+ --inputs-shadow-blur-radius: {{ settings.inputs_shadow_blur }}px;
+ --inputs-radius-outset: {% if settings.inputs_radius > 0 %}{{ settings.inputs_radius | plus: settings.inputs_border_thickness }}{% else %}0{% endif %}px;
+
+ --variant-pills-radius: {{ settings.variant_pills_radius }}px;
+ --variant-pills-border-width: {{ settings.variant_pills_border_thickness }}px;
+ --variant-pills-border-opacity: {{ settings.variant_pills_border_opacity | divided_by: 100.0 }};
+ --variant-pills-shadow-opacity: {{ settings.variant_pills_shadow_opacity | divided_by: 100.0 }};
+ --variant-pills-shadow-horizontal-offset: {{ settings.variant_pills_shadow_horizontal_offset }}px;
+ --variant-pills-shadow-vertical-offset: {{ settings.variant_pills_shadow_vertical_offset }}px;
+ --variant-pills-shadow-blur-radius: {{ settings.variant_pills_shadow_blur }}px;
+ }
+
+ *,
+ *::before,
+ *::after {
+ box-sizing: inherit;
+ }
+
+ html {
+ box-sizing: border-box;
+ font-size: calc(var(--font-body-scale) * 62.5%);
+ height: 100%;
+ }
+
+ body {
+ display: grid;
+ grid-template-rows: auto auto 1fr auto;
+ grid-template-columns: 100%;
+ min-height: 100%;
+ margin: 0;
+ font-size: 1.5rem;
+ letter-spacing: 0.06rem;
+ line-height: calc(1 + 0.8 / var(--font-body-scale));
+ font-family: var(--font-body-family);
+ font-style: var(--font-body-style);
+ font-weight: var(--font-body-weight);
+ }
+
+ @media screen and (min-width: 750px) {
+ body {
+ font-size: 1.6rem;
+ }
+ }
+ {% endstyle %}
+
+ {{ 'base.css' | asset_url | stylesheet_tag }}
+
+ {%- unless settings.type_body_font.system? -%}
+
+ {%- endunless -%}
+ {%- unless settings.type_header_font.system? -%}
+
+ {%- endunless -%}
+
+ {%- if localization.available_countries.size > 1 or localization.available_languages.size > 1 -%}
+ {{ 'component-localization-form.css' | asset_url | stylesheet_tag: preload: true }}
+
+ {%- endif -%}
+
+ {%- if settings.predictive_search_enabled -%}
+
+ {%- endif -%}
+
+
+
+
+
+
+ {{ 'accessibility.skip_to_text' | t }}
+
+
+ {%- if settings.cart_type == 'drawer' -%}
+ {%- render 'cart-drawer' -%}
+ {%- endif -%}
+
+ {% sections 'header-group' %}
+
+
+ {{ content_for_layout }}
+
+
+ {% sections 'footer-group' %}
+
+
+ {{ 'accessibility.refresh_page' | t }}
+ {{ 'accessibility.link_messages.new_window' | t }}
+
+
+
+
+ {%- if settings.predictive_search_enabled -%}
+
+ {%- endif -%}
+
+
diff --git a/locales/bg-BG.json b/locales/bg-BG.json
new file mode 100644
index 0000000..707695f
--- /dev/null
+++ b/locales/bg-BG.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Влизане в магазина с парола:",
+ "login_password_button": "Влизане с парола",
+ "login_form_password_label": "Парола",
+ "login_form_password_placeholder": "Вашата парола",
+ "login_form_error": "Неправилна парола.",
+ "login_form_submit": "Въведете",
+ "admin_link_html": "Вие ли сте собственикът на магазина? Влезте тук ",
+ "powered_by_shopify_html": "Този магазин ще се поддържа от {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Споделяне чрез Facebook",
+ "share_on_twitter": "Изпращане на туит в Twitter",
+ "share_on_pinterest": "Отбелязване в Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Продължете да пазарувате",
+ "pagination": {
+ "label": "Страниране",
+ "page": "Страница {{ number }}",
+ "next": "Следваща страница",
+ "previous": "Предишна страница"
+ },
+ "search": {
+ "search": "Търсене",
+ "reset": "Изчисти думата за търсене"
+ },
+ "cart": {
+ "view": "Покажи количката ({{ count }})",
+ "item_added": "Артикулът е добавен в количката",
+ "view_empty_cart": "Покажи количката"
+ },
+ "share": {
+ "copy_to_clipboard": "Копиране на връзката",
+ "share_url": "Връзка",
+ "success_message": "Връзката е копирана в клипборда",
+ "close": "Затваряне на споделянето"
+ },
+ "slider": {
+ "of": "от",
+ "next_slide": "Плъзгане надясно",
+ "previous_slide": "Плъзгане наляво",
+ "name": "Плъзгач"
+ }
+ },
+ "newsletter": {
+ "label": "Имейл",
+ "success": "Благодарим, че се абонирахте",
+ "button_label": "Абониране"
+ },
+ "accessibility": {
+ "skip_to_text": "Преминаване към съдържанието",
+ "close": "Затваряне",
+ "unit_price_separator": "за",
+ "vendor": "Доставчик:",
+ "error": "Грешка",
+ "refresh_page": "При задаване на избор се опреснява цялата страница.",
+ "link_messages": {
+ "new_window": "Отваря се в нов прозорец.",
+ "external": "Отваря външен уебсайт."
+ },
+ "loading": "Зареждане...",
+ "skip_to_product_info": "Прескочи към информацията за продукта",
+ "total_reviews": "общ брой мнения",
+ "star_reviews_info": "{{ rating_value }} от {{ rating_max }} звезди",
+ "collapsible_content_title": "Съдържание, което може да се свива",
+ "complementary_products": "Допълващи продукти"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Блог",
+ "read_more_title": "Прочетете още: {{ title }}",
+ "comments": {
+ "one": "{{ count }} коментар",
+ "other": "{{ count }} коментара"
+ },
+ "moderated": "Имайте предвид, че коментарите трябва да бъдат одобрени, преди да се публикуват.",
+ "comment_form_title": "Оставяне на коментар",
+ "name": "Име",
+ "email": "Имейл",
+ "message": "Коментар",
+ "post": "Публикуване на коментар",
+ "back_to_blog": "Назад към блога",
+ "share": "Споделяне на тази статия",
+ "success": "Коментарът ви е публикуван успешно. Благодарим.",
+ "success_moderated": "Коментарът ви е изпратен успешно. Ще бъде публикуван след малко, тъй като блогът има модератор."
+ }
+ },
+ "onboarding": {
+ "collection_title": "Име на вашата колекция",
+ "product_title": "Примерно название на продукт"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Добавяне към количката",
+ "description": "Описание",
+ "on_sale": "Разпродажба",
+ "quantity": {
+ "label": "Количество",
+ "input_label": "Количество за {{ product }}",
+ "increase": "Увеличаване на количеството за {{ product }}",
+ "decrease": "Намаляване на количеството за {{ product }}",
+ "minimum_of": "Минимум: {{ quantity }}",
+ "maximum_of": "Максимум: {{ quantity }}",
+ "multiples_of": "Стъпки от {{ quantity }}",
+ "in_cart_html": "{{ quantity }} в количката",
+ "note": "Преглед на правилата за количества"
+ },
+ "price": {
+ "from_price_html": "От {{ price }}",
+ "regular_price": "Обичайна цена",
+ "sale_price": "Цена при разпродажба",
+ "unit_price": "Единична цена"
+ },
+ "share": "Споделяне на този продукт",
+ "unavailable": "Неналично",
+ "vendor": "Доставчик",
+ "video_exit_message": "{{ title }} отваря видео на цял екран в същия прозорец.",
+ "xr_button": "Преглед във вашето пространство",
+ "xr_button_label": "При „Преглед във вашето пространство“ елементът се зарежда в прозорец с обогатена реалност.",
+ "sold_out": "Изчерпано",
+ "pickup_availability": {
+ "view_store_info": "Вижте информация за магазина",
+ "check_other_stores": "Проверка за наличност в други магазини",
+ "pick_up_available": "Възможност за взимане",
+ "pick_up_available_at_html": "Възможност за взимане от {{ location_name }} ",
+ "pick_up_unavailable_at_html": "В момента няма възможност за взимане от {{ location_name }} ",
+ "unavailable": "Не може да се зареди възможността за взимане",
+ "refresh": "Обнови"
+ },
+ "media": {
+ "open_media": "Отваряне на мултимедия {{ index }} в модален елемент",
+ "play_model": "Възпроизвеждане с 3D Viewer",
+ "play_video": "Възпроизвеждане на видеоклип",
+ "gallery_viewer": "Визуализатор на галерията",
+ "load_image": "Зареждане на изображение {{ index }} във визуализатора на галерията",
+ "load_model": "Зареждане на 3D модел {{ index }} във визуализатора на галерията",
+ "load_video": "Пускане на видео {{ index }} във визуализатора на галерията",
+ "image_available": "Изображение {{ index }} вече е налично във визуализатора на галерията"
+ },
+ "view_full_details": "Покажи пълните подробности",
+ "include_taxes": "С включени данъци.",
+ "shipping_policy_html": "Доставката се изчислява при плащане.",
+ "choose_options": "Изберете опции",
+ "choose_product_options": "Изберете опции за {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – неналично",
+ "variant_sold_out_or_unavailable": "Вариантът е изчерпан или неналичен.",
+ "inventory_in_stock": "В наличност",
+ "inventory_in_stock_show_count": "{{ quantity }} в наличност",
+ "inventory_low_stock": "Ниски наличности",
+ "inventory_low_stock_show_count": "Ниски наличности: остават {{ quantity }}",
+ "inventory_out_of_stock": "Изчерпано количество",
+ "inventory_out_of_stock_continue_selling": "В наличност",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Цени на едро",
+ "note": "Има възможност за цени на едро",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "при {{ price }}/бр.",
+ "price_range": "{{ minimum }} – {{ maximum }}"
+ },
+ "product_variants": "Варианти на продукта"
+ },
+ "modal": {
+ "label": "Мултимедийна галерия"
+ },
+ "facets": {
+ "apply": "Приложи",
+ "clear": "Изчисти",
+ "clear_all": "Премахване на всички",
+ "from": "От",
+ "filter_and_sort": "Филтриране и сортиране",
+ "filter_by_label": "Филтър:",
+ "filter_button": "Филтър",
+ "filters_selected": {
+ "one": "Избрани: {{ count }}",
+ "other": "Избрани: {{ count }}"
+ },
+ "max_price": "Най-високата цена е {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} от {{ count }} продукт",
+ "other": "{{ product_count }} от {{ count }} продукта"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} продукт",
+ "other": "{{ count }} продукта"
+ },
+ "reset": "Нулиране",
+ "sort_button": "Сортиране",
+ "sort_by_label": "Сортиране по:",
+ "to": "Към",
+ "clear_filter": "Премахване на филтъра",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} избрани филтъра)",
+ "show_more": "Покажи повече",
+ "show_less": "Покажи по-малко",
+ "filter_and_operator_subtitle": "Изрявняване за всички"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Няма резултати за „{{ terms }}“. Проверете начина на изписване или използвайте различна дума или фраза.",
+ "results_with_count": {
+ "one": "{{ count }} резултат",
+ "other": "{{ count }} резултата"
+ },
+ "title": "Резултати от търсенето",
+ "page": "Страница",
+ "products": "Продукти",
+ "search_for": "Търсене на „{{ terms }}“",
+ "results_with_count_and_term": {
+ "one": "Открит е {{ count }} резултат за „{{ terms }}“",
+ "other": "Открити са {{ count }} резултата за „{{ terms }}“"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} страница",
+ "other": "{{ count }} страници"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} предложениe",
+ "other": "{{ count }} предложения"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} продукт",
+ "other": "{{ count }} продукта"
+ },
+ "suggestions": "Предложения",
+ "pages": "Страници"
+ },
+ "cart": {
+ "cart": "Количка"
+ },
+ "contact": {
+ "form": {
+ "name": "Име",
+ "email": "Имейл",
+ "comment": "Коментар",
+ "send": "Изпрати",
+ "post_success": "Благодарим, че се свързахте с нас. Ще се свържем с вас възможно най-скоро.",
+ "error_heading": "Коригирайте следното:",
+ "phone": "Телефонен номер",
+ "title": "Формуляр за контакт"
+ }
+ },
+ "404": {
+ "title": "Страницата не е открита",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Известие",
+ "menu": "Меню",
+ "cart_count": {
+ "one": "{{ count }} артикул",
+ "other": "{{ count }} артикула"
+ }
+ },
+ "cart": {
+ "title": "Вашата количка",
+ "caption": "Артикули в количката",
+ "remove_title": "Премахване на {{ title }}",
+ "checkout": "Преминаване към плащане",
+ "empty": "Количката ви е празна.",
+ "cart_error": "При актуализирането на количката ви възникна грешка. Опитайте отново.",
+ "cart_quantity_error_html": "Можете да добавите само {{ quantity }} броя от този артикул в количката си.",
+ "taxes_and_shipping_policy_at_checkout_html": "Данъците, отстъпките и доставката се изчисляват при плащане",
+ "taxes_included_but_shipping_at_checkout": "Данъците са включени, а доставката и отстъпките се изчисляват при плащане",
+ "taxes_included_and_shipping_policy_html": "С включени данъци. Доставката и отстъпките се изчисляват при плащане.",
+ "taxes_and_shipping_at_checkout": "Данъците, отстъпките и доставката се изчисляват при плащане",
+ "headings": {
+ "product": "Продукт",
+ "price": "Цена",
+ "total": "Обща сума",
+ "quantity": "Количество",
+ "image": "Изображение на продукта"
+ },
+ "update": "Актуализиране",
+ "note": "Специални инструкции за поръчката",
+ "login": {
+ "title": "Имате профил?",
+ "paragraph_html": "Влезте за по-бързо преминаване към плащане."
+ },
+ "estimated_total": "Очаквана обща сума",
+ "new_estimated_total": "Нова очаквана обща сума"
+ },
+ "footer": {
+ "payment": "Начини на плащане"
+ },
+ "featured_blog": {
+ "view_all": "Покажи всички",
+ "onboarding_title": "Публикация в блог",
+ "onboarding_content": "Обобщете накратко блог публикацията"
+ },
+ "featured_collection": {
+ "view_all": "Покажи всички",
+ "view_all_label": "Покажи всички продукти в колекция {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Покажи всички"
+ },
+ "collection_template": {
+ "title": "Колекция",
+ "empty": "Не са открити продукти",
+ "use_fewer_filters_html": "Използвайте по-малко филтри или премахнете всички "
+ },
+ "video": {
+ "load_video": "Зареждане на видео: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Зареждане на слайд",
+ "previous_slideshow": "Предишен слайд",
+ "next_slideshow": "Следващ слайд",
+ "pause_slideshow": "Пауза на слайдшоуто",
+ "play_slideshow": "Възпроизвеждане на слайдшоу",
+ "carousel": "Въртележка",
+ "slide": "Слайд"
+ },
+ "page": {
+ "title": "Заглавие на страница"
+ },
+ "announcements": {
+ "previous_announcement": "Предишно известие",
+ "next_announcement": "Следващо известие",
+ "carousel": "Въртележка",
+ "announcement": "Известие",
+ "announcement_bar": "Лента с известия"
+ },
+ "quick_order_list": {
+ "product_total": "Междинна сума за продукти",
+ "view_cart": "Покажи количката",
+ "each": "{{ money }}/бр.",
+ "product": "Продукт",
+ "variant": "Вариант",
+ "variant_total": "Обща сума за варианта",
+ "items_added": {
+ "one": "{{ quantity }} артикул е добавен",
+ "other": "{{ quantity }} артикула са добавени"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} артикул е премахнат",
+ "other": "{{ quantity }} артикула са премахнати"
+ },
+ "product_variants": "Варианти на продукта",
+ "total_items": "Общо артикули",
+ "remove_all_items_confirmation": "Премахване на всички {{ quantity }} артикула от количката?",
+ "remove_all": "Премахване на всички",
+ "cancel": "Отказ"
+ }
+ },
+ "localization": {
+ "country_label": "Държава/регион",
+ "language_label": "Език",
+ "update_language": "Актуализиране на езика",
+ "update_country": "Актуализиране на държава/регион"
+ },
+ "customer": {
+ "account_fallback": "Профил",
+ "activate_account": {
+ "subtext": "Създайте парола, за да активирате профила си.",
+ "password": "Парола",
+ "title": "Активиране на профил",
+ "password_confirm": "Потвърждаване на паролата",
+ "submit": "Активиране на профил",
+ "cancel": "Отхвърляне на поканата"
+ },
+ "addresses": {
+ "default": "По подразбиране",
+ "edit_address": "Редактиране на адрес",
+ "company": "Фирма",
+ "address1": "Адрес 1",
+ "address2": "Адрес 2",
+ "city": "Град",
+ "country": "Държава/регион",
+ "province": "Провинция",
+ "phone": "Телефон",
+ "set_default": "Задаване като адрес по подразбиране",
+ "cancel": "Отказ",
+ "edit": "Редактиране",
+ "delete": "Изтриване",
+ "delete_confirm": "Наистина ли искате да изтриете този адрес?",
+ "title": "Адреси",
+ "add_new": "Добавяне на нов адрес",
+ "first_name": "Собствено име",
+ "last_name": "Фамилно име",
+ "zip": "Пощенски код",
+ "add": "Добавяне на адрес",
+ "update": "Актуализиране на адрес"
+ },
+ "log_in": "Влизане",
+ "log_out": "Излизане",
+ "login_page": {
+ "cancel": "Отказ",
+ "email": "Имейл",
+ "forgot_password": "Забравена парола?",
+ "guest_continue": "Напред",
+ "guest_title": "Продължаване като гост",
+ "password": "Парола",
+ "title": "Влизане",
+ "sign_in": "Влизане",
+ "submit": "Изпрати",
+ "create_account": "Създаване на профил"
+ },
+ "orders": {
+ "order_number": "Поръчка",
+ "order_number_link": "Номер на поръчка: {{ number }}",
+ "date": "Дата",
+ "total": "Обща сума",
+ "none": "Все още не сте поръчвали.",
+ "title": "Хронология на поръчките",
+ "payment_status": "Статус на плащане",
+ "fulfillment_status": "Статус на изпълнение"
+ },
+ "recover_password": {
+ "title": "Подновяване на паролата",
+ "subtext": "Ще ви изпратим имейл, за да подновите паролата си",
+ "success": "Изпратихме ви имейл с връзка, чрез която да актуализирате паролата си."
+ },
+ "register": {
+ "email": "Имейл",
+ "password": "Парола",
+ "submit": "Създаване",
+ "title": "Създаване на профил",
+ "first_name": "Собствено име",
+ "last_name": "Фамилно име"
+ },
+ "reset_password": {
+ "title": "Подновяване на паролата за профила",
+ "subtext": "Въведете нова парола",
+ "password": "Парола",
+ "password_confirm": "Потвърждаване на паролата",
+ "submit": "Подновяване на паролата"
+ },
+ "account": {
+ "title": "Профил",
+ "details": "Информация за профила",
+ "view_addresses": "Покажи адресите",
+ "return": "Назад към информацията за профила"
+ },
+ "order": {
+ "title": "Поръчка {{ name }}",
+ "date_html": "Направена на {{ date }}",
+ "cancelled_html": "Поръчката е анулирана на {{ date }}",
+ "cancelled_reason": "Причина: {{ reason }}",
+ "billing_address": "Адрес за фактуриране",
+ "payment_status": "Статус на плащане",
+ "shipping_address": "Адрес за доставка",
+ "fulfillment_status": "Статус на изпълнение",
+ "discount": "Отстъпка",
+ "shipping": "Доставка",
+ "tax": "Данъци",
+ "product": "Продукт",
+ "sku": "SKU",
+ "price": "Цена",
+ "quantity": "Количество",
+ "total": "Обща сума",
+ "fulfilled_at_html": "Изпълнена на: {{ date }}",
+ "track_shipment": "Проследяване на пратката",
+ "tracking_url": "Връзка за проследяване",
+ "tracking_company": "Превозвач",
+ "tracking_number": "Номер за проследяване",
+ "subtotal": "Междинна сума",
+ "total_duties": "Мито",
+ "total_refunded": "Възстановени"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Това е остатъкът от вашия ваучер за подарък на стойност {{ value }} за {{ shop }}!",
+ "gift_card_code": "Код на ваучер за подарък",
+ "shop_link": "Посетете магазина онлайн",
+ "add_to_apple_wallet": "Добавяне към Apple Wallet",
+ "qr_image_alt": "QR код – сканирайте го, за да използвате ваучера за подарък",
+ "copy_code": "Копиране на кода на ваучер за подарък",
+ "expired": "Изтекъл",
+ "copy_code_success": "Кодът е копиран успешно",
+ "subtext": "Вашият ваучер за подарък",
+ "how_to_use_gift_card": "Използвайте ваучера за подарък онлайн или QR код в магазина",
+ "expiration_date": "Изтича на {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Искам да изпратя като подарък",
+ "email_label": "Имейл на получателя",
+ "email": "Имейл",
+ "name_label": "Име на получателя (незадължително)",
+ "name": "Име",
+ "message_label": "Съобщение (незадължително)",
+ "message": "Съобщение",
+ "max_characters": "Макс. {{ max_chars }} знака",
+ "email_label_optional_for_no_js_behavior": "Имейл на получателя (незадължително)",
+ "send_on": "ГГГГ-ММ-ДД",
+ "send_on_label": "Изпращане на (незадължително)",
+ "expanded": "Формулярът за получател на ваучер за подарък е разгънат",
+ "collapsed": "Формулярът за получател на ваучер за подарък е свит"
+ }
+ }
+}
diff --git a/locales/cs.json b/locales/cs.json
new file mode 100644
index 0000000..3da8a96
--- /dev/null
+++ b/locales/cs.json
@@ -0,0 +1,536 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Zadejte heslo, abyste mohli vstoupit do obchodu:",
+ "login_password_button": "Vstoupit pomocí hesla",
+ "login_form_password_label": "Heslo",
+ "login_form_password_placeholder": "Vaše heslo",
+ "login_form_error": "Heslo není správné!",
+ "login_form_submit": "Zadat",
+ "admin_link_html": "Jste majitelem obchodu? Přihlaste se zde ",
+ "powered_by_shopify_html": "Obchod bude využívat platformu {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Sdílet na Facebooku",
+ "share_on_twitter": "Tweetnout na Twitteru",
+ "share_on_pinterest": "Připnout na Pinterestu"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Pokračovat v nákupu",
+ "pagination": {
+ "label": "Stránkování",
+ "page": "Strana {{ number }}",
+ "next": "Další stránka",
+ "previous": "Předchozí stránka"
+ },
+ "search": {
+ "search": "Hledání",
+ "reset": "Vymazat hledaný termín"
+ },
+ "cart": {
+ "view": "Zobrazit košík ({{ count }})",
+ "item_added": "Položka byla přidána do košíku",
+ "view_empty_cart": "Zobrazit košík"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopírovat odkaz",
+ "share_url": "Odkaz",
+ "success_message": "Odkaz byl zkopírován do schránky",
+ "close": "Zavřít okno pro sdílení"
+ },
+ "slider": {
+ "of": "z",
+ "next_slide": "Snímek vpravo",
+ "previous_slide": "Snímek vlevo",
+ "name": "Posuvník"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Děkujeme za přihlášení k odběru",
+ "button_label": "Přihlásit k odběru"
+ },
+ "accessibility": {
+ "skip_to_text": "Přejít k obsahu",
+ "close": "Zavřít",
+ "unit_price_separator": "za",
+ "vendor": "Dodavatel:",
+ "error": "Chyba",
+ "refresh_page": "Po volbě výběru se obnoví celá stránka.",
+ "loading": "Načítání...",
+ "link_messages": {
+ "new_window": "Otevře se v novém okně.",
+ "external": "Otevře externí webovou stránku."
+ },
+ "skip_to_product_info": "Přejít na informace o produktu",
+ "total_reviews": "celkový počet recenzí",
+ "star_reviews_info": "{{ rating_value }} z {{ rating_max }} hvězdiček",
+ "collapsible_content_title": "Sbalitelný obsah",
+ "complementary_products": "Doplňkové produkty"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Přečtěte si více: {{ title }}",
+ "moderated": "Upozorňujeme, že komentáře musí být před zveřejněním schváleny.",
+ "comment_form_title": "Napište komentář",
+ "name": "Název",
+ "email": "E-mail",
+ "message": "Komentář",
+ "post": "Zveřejnit komentář",
+ "back_to_blog": "Zpět na blog",
+ "share": "Nasdílet tento článek",
+ "success": "Váš komentář byl úspěšně publikován! Děkujeme!",
+ "success_moderated": "Váš komentář byl úspěšně publikován. Zveřejníme jej až za chvíli, protože náš blog je moderován.",
+ "comments": {
+ "one": "{{ count }} komentář",
+ "other": "Počet komentářů: {{ count }}",
+ "few": "Počet komentářů: {{ count }}",
+ "many": "Počet komentářů: {{ count }}"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Vzorový název produktu",
+ "collection_title": "Název vaší kolekce"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Přidat do košíku",
+ "description": "Popis",
+ "on_sale": "Sleva",
+ "share": "Sdílet tento produkt",
+ "sold_out": "Vyprodáno",
+ "unavailable": "Není k dispozici",
+ "vendor": "Dodavatel",
+ "video_exit_message": "{{ title }} otevře ve stejném okně video na celé obrazovce.",
+ "xr_button": "Zobrazit ve vašem prostoru",
+ "xr_button_label": "Zobrazit ve vašem prostoru: Umožňuje načíst položku v okně rozšířené reality",
+ "quantity": {
+ "label": "Množství",
+ "input_label": "Množství produktu {{ product }}",
+ "increase": "Zvýšit množství produktu {{ product }}",
+ "decrease": "Snížit množství produktu {{ product }}",
+ "minimum_of": "Minimum: {{ quantity }}",
+ "maximum_of": "Maximum: {{ quantity }}",
+ "multiples_of": "Přírůstky: {{ quantity }}",
+ "in_cart_html": "{{ quantity }} v košíku",
+ "note": "Zobrazit pravidla množství"
+ },
+ "price": {
+ "from_price_html": "Od {{ price }}",
+ "regular_price": "Běžná cena",
+ "sale_price": "Výprodejová cena",
+ "unit_price": "Jednotková cena"
+ },
+ "pickup_availability": {
+ "view_store_info": "Zobrazit informace o obchodě",
+ "check_other_stores": "Zkontrolovat dostupnost v ostatních obchodech",
+ "pick_up_available": "Vyzvednutí k dispozici",
+ "pick_up_available_at_html": "Vyzvednutí je k dispozici v lokalitě {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Vyzvednutí není momentálně v lokalitě {{ location_name }} k dispozici",
+ "unavailable": "Dostupnost vyzvednutí nebylo možné načíst",
+ "refresh": "Aktualizovat"
+ },
+ "media": {
+ "open_media": "Otevřít multimédia {{ index }} v modálním okně",
+ "play_model": "Přehrát v 3D prohlížeči",
+ "play_video": "Přehrát video",
+ "gallery_viewer": "Prohlížeč galerie",
+ "load_image": "Načíst obrázek {{ index }} do zobrazení galerie",
+ "load_model": "Načíst 3D model {{ index }} do zobrazení galerie",
+ "load_video": "Přehrát video {{ index }} v zobrazení galerie",
+ "image_available": "Obrázek {{ index }} je nyní k dispozici v zobrazení galerie"
+ },
+ "view_full_details": "Zobrazit veškeré podrobnosti",
+ "include_taxes": "Včetně daní.",
+ "shipping_policy_html": "Poštovné se vypočítá na pokladně.",
+ "choose_options": "Výběr možností",
+ "choose_product_options": "Zvolte možnosti pro: {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – není k dispozici",
+ "variant_sold_out_or_unavailable": "Vyprodaná nebo nedostupná varianta",
+ "inventory_in_stock": "Skladem",
+ "inventory_in_stock_show_count": "{{ quantity }} skladem",
+ "inventory_low_stock": "Skladové zásoby docházejí",
+ "inventory_low_stock_show_count": "Skladové zásoby docházejí, zbývající množství: {{ quantity }}",
+ "inventory_out_of_stock": "Není skladem",
+ "sku": "SKU",
+ "inventory_out_of_stock_continue_selling": "Skladem",
+ "volume_pricing": {
+ "title": "Ceny s objemovou slevou",
+ "note": "Ceny s objemovou slevou k dispozici",
+ "minimum": "{{ quantity }} a více",
+ "price_at_each": "{{ price }} / ks",
+ "price_range": "{{ minimum }}–{{ maximum }}"
+ },
+ "product_variants": "Varianty produktu"
+ },
+ "modal": {
+ "label": "Galerie multimédií"
+ },
+ "facets": {
+ "apply": "Použít",
+ "clear": "Vymazat",
+ "clear_all": "Odebrat vše",
+ "from": "Od",
+ "filter_and_sort": "Filtrování a řazení",
+ "filter_by_label": "Filtrovat:",
+ "filter_button": "Filtr",
+ "max_price": "Nejvyšší cena je {{ price }}",
+ "reset": "Resetovat",
+ "sort_button": "Seřadit",
+ "sort_by_label": "Seřadit podle:",
+ "to": "Do",
+ "filters_selected": {
+ "one": "Vybráno: {{ count }}",
+ "other": "Vybráno: {{ count }}",
+ "few": "Vybráno: {{ count }}",
+ "many": "Vybráno: {{ count }}"
+ },
+ "product_count": {
+ "one": "{{ product_count }} z {{ count }} produktu",
+ "other": "{{ product_count }} z {{ count }} produktů",
+ "few": "{{ product_count }} z {{ count }} produktů",
+ "many": "{{ product_count }} z {{ count }} produktů"
+ },
+ "product_count_simple": {
+ "one": "Počet produktů: {{ count }}",
+ "other": "Počet produktů: {{ count }}",
+ "few": "Počet produktů: {{ count }}",
+ "many": "Počet produktů: {{ count }}"
+ },
+ "clear_filter": "Odebrat filtr",
+ "filter_selected_accessibility": "{{ type }} (počet vybraných filtrů: {{ count }})",
+ "show_more": "Zobrazit více",
+ "show_less": "Zobrazit méně",
+ "filter_and_operator_subtitle": "Shoda se všemi kritérii"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nebyly nalezeny žádné výsledky pro {{ terms }}. Zkontrolujte pravopis nebo zadejte jiné slovo či slovní spojení.",
+ "title": "Výsledky hledání",
+ "results_with_count": {
+ "one": "{{ count }} výsledek",
+ "other": "Výsledky: {{ count }}",
+ "few": "Výsledky: {{ count }}",
+ "many": "Výsledky: {{ count }}"
+ },
+ "page": "Stránka",
+ "products": "Produkty",
+ "search_for": "Vyhledat: {{ terms }}",
+ "results_with_count_and_term": {
+ "one": "Pro dotaz {{ terms }} byl nalezen {{ count }} výsledek",
+ "other": "Pro dotaz {{ terms }} byl nalezen tento počet výsledků: {{ count }}",
+ "few": "Pro dotaz {{ terms }} byl nalezen tento počet výsledků: {{ count }}",
+ "many": "Pro dotaz {{ terms }} byl nalezen tento počet výsledků: {{ count }}"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} stránka",
+ "other": "{{ count }} str.",
+ "few": "{{ count }} str.",
+ "many": "{{ count }} str."
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} prod.",
+ "few": "{{ count }} prod.",
+ "many": "{{ count }} prod."
+ },
+ "suggestions": "Návrhy",
+ "pages": "Stránky",
+ "results_suggestions_with_count": {
+ "one": "Počet návrhů: {{ count }}",
+ "other": "Počet návrhů: {{ count }}",
+ "few": "Počet návrhů: {{ count }}",
+ "many": "Počet návrhů: {{ count }}"
+ }
+ },
+ "cart": {
+ "cart": "Košík"
+ },
+ "contact": {
+ "form": {
+ "name": "Jméno",
+ "email": "E-mail",
+ "phone": "Telefonní číslo",
+ "comment": "Komentář",
+ "send": "Odeslat",
+ "post_success": "Děkujeme, že jste nás kontaktovali. Ozveme se vám co možná nejdříve.",
+ "error_heading": "Upravte prosím následující informace:",
+ "title": "Kontaktní formulář"
+ }
+ },
+ "404": {
+ "title": "Stránka nebyla nalezena",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Oznámení",
+ "menu": "Nabídka",
+ "cart_count": {
+ "one": "{{ count }} položka",
+ "other": "{{ count }} polož.",
+ "few": "{{ count }} polož.",
+ "many": "{{ count }} polož."
+ }
+ },
+ "cart": {
+ "title": "Váš košík",
+ "caption": "Položky košíku",
+ "remove_title": "Odebrat: {{ title }}",
+ "note": "Zvláštní pokyny k objednávce",
+ "checkout": "Pokladna",
+ "empty": "Košík je prázdný",
+ "cart_error": "Při aktualizaci vašeho košíku došlo k chybě. Zkuste to prosím znovu.",
+ "cart_quantity_error_html": "Do košíku můžete přidat jen následující množství dané položky: {{ quantity }}.",
+ "taxes_and_shipping_policy_at_checkout_html": "Daně, slevy a poštovné se vypočítají na pokladně.",
+ "taxes_included_but_shipping_at_checkout": "Příslušná daň, poštovné a slevy se vypočítají na pokladně.",
+ "taxes_included_and_shipping_policy_html": "Včetně daní. Poštovné a slevy se vypočítají na pokladně.",
+ "taxes_and_shipping_at_checkout": "Daně, slevy a poštovné se vypočítají na pokladně.",
+ "update": "Aktualizovat",
+ "headings": {
+ "product": "Produkt",
+ "price": "Cena",
+ "total": "Celkem",
+ "quantity": "Množství",
+ "image": "Obrázek produktu"
+ },
+ "login": {
+ "title": "Máte účet?",
+ "paragraph_html": "Přihlaste se , abyste si urychlili proces pokladny."
+ },
+ "estimated_total": "Odhadovaný součet",
+ "new_estimated_total": "Nový odhadovaný součet"
+ },
+ "footer": {
+ "payment": "Platební metody"
+ },
+ "featured_blog": {
+ "view_all": "Zobrazit vše",
+ "onboarding_title": "Blogový příspěvek",
+ "onboarding_content": "Shrňte pro zákazníky obsah svého blogového příspěvku"
+ },
+ "featured_collection": {
+ "view_all": "Zobrazit vše",
+ "view_all_label": "Zobrazit všechny produkty v kolekci {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Zobrazit vše"
+ },
+ "collection_template": {
+ "title": "Kolekce",
+ "empty": "Nenalezeny žádné produkty",
+ "use_fewer_filters_html": "Můžete použít méně filtrů nebo všechny odebrat "
+ },
+ "video": {
+ "load_video": "Načíst video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Načíst snímek",
+ "previous_slideshow": "Předchozí snímek",
+ "next_slideshow": "Další snímek",
+ "pause_slideshow": "Pozastavit prezentaci",
+ "play_slideshow": "Přehrát prezentaci",
+ "carousel": "Karusel",
+ "slide": "Snímek"
+ },
+ "page": {
+ "title": "Název stránky"
+ },
+ "announcements": {
+ "previous_announcement": "Předchozí oznámení",
+ "next_announcement": "Další oznámení",
+ "carousel": "Karusel",
+ "announcement": "Oznámení",
+ "announcement_bar": "Panel oznámení"
+ },
+ "quick_order_list": {
+ "product_total": "Mezisoučet produktu",
+ "view_cart": "Zobrazit košík",
+ "each": "{{ money }} / ks",
+ "product": "Produkt",
+ "variant": "Varianta",
+ "variant_total": "Varianta celkem",
+ "items_added": {
+ "one": "Byla přidána {{ quantity }} položka",
+ "other": "Byl přidán tento počet položek: {{ quantity }}",
+ "few": "Byl přidán tento počet položek: {{ quantity }}",
+ "many": "Byl přidán tento počet položek: {{ quantity }}"
+ },
+ "items_removed": {
+ "one": "Byla odebrána {{ quantity }} položka",
+ "other": "Byla odebrán tento počet položek: {{ quantity }}",
+ "few": "Byla odebrán tento počet položek: {{ quantity }}",
+ "many": "Byla odebrán tento počet položek: {{ quantity }}"
+ },
+ "product_variants": "Varianty produktu",
+ "total_items": "Celkový počet položek",
+ "remove_all_items_confirmation": "Chcete z košíku odebrat všechny položky ({{ quantity }})?",
+ "remove_all": "Odebrat vše",
+ "cancel": "Zrušit"
+ }
+ },
+ "localization": {
+ "country_label": "Země/oblast",
+ "language_label": "Jazyk",
+ "update_language": "Aktualizovat jazyk",
+ "update_country": "Aktualizovat zemi/oblast"
+ },
+ "customer": {
+ "account": {
+ "title": "Účet",
+ "details": "Podrobnosti účtu",
+ "view_addresses": "Zobrazit adresy",
+ "return": "Vrátit se k podrobnostem účtu"
+ },
+ "account_fallback": "Účet",
+ "log_in": "Přihlásit se",
+ "log_out": "Odhlásit se",
+ "activate_account": {
+ "title": "Aktivovat účet",
+ "subtext": "Vytvořte heslo pro aktivaci účtu.",
+ "password": "Heslo",
+ "password_confirm": "Potvrdit heslo",
+ "submit": "Aktivovat účet",
+ "cancel": "Odmítnout pozvánku"
+ },
+ "addresses": {
+ "title": "Adresy",
+ "default": "Výchozí",
+ "add_new": "Přidat novou adresu",
+ "edit_address": "Upravit adresu",
+ "first_name": "Jméno",
+ "last_name": "Příjmení",
+ "company": "Společnost",
+ "address1": "Adresa 1",
+ "address2": "Adresa 2",
+ "city": "Město",
+ "country": "Země/oblast",
+ "province": "Provincie",
+ "zip": "PSČ",
+ "phone": "Telefon",
+ "set_default": "Nastavit jako výchozí adresu",
+ "add": "Přidat adresu",
+ "update": "Aktualizovat adresu",
+ "cancel": "Zrušit",
+ "edit": "Upravit",
+ "delete": "Odstranit",
+ "delete_confirm": "Opravdu chcete tuto adresu odstranit?"
+ },
+ "login_page": {
+ "cancel": "Zrušit",
+ "create_account": "Vytvořit účet",
+ "email": "E-mail",
+ "forgot_password": "Zapomněli jste heslo?",
+ "guest_continue": "Pokračovat",
+ "guest_title": "Pokračovat jako host",
+ "password": "Heslo",
+ "title": "Přihlášení",
+ "sign_in": "Přihlásit se",
+ "submit": "Odeslat"
+ },
+ "orders": {
+ "title": "Historie objednávek",
+ "order_number": "Objednávka",
+ "order_number_link": "Číslo objednávky: {{ number }}",
+ "date": "Datum",
+ "payment_status": "Stav platby",
+ "fulfillment_status": "Stav plnění",
+ "total": "Celkem",
+ "none": "Zatím jste nezadali žádné objednávky."
+ },
+ "recover_password": {
+ "title": "Resetujte si heslo",
+ "subtext": "Pošleme vám e-mail, abyste si mohli resetovat heslo",
+ "success": "Poslali jsme vám e-mail s odkazem na aktualizaci hesla."
+ },
+ "register": {
+ "title": "Vytvořit účet",
+ "first_name": "Jméno",
+ "last_name": "Příjmení",
+ "email": "E-mail",
+ "password": "Heslo",
+ "submit": "Vytvořit"
+ },
+ "reset_password": {
+ "title": "Resetujte heslo účtu",
+ "subtext": "Zadejte nové heslo",
+ "password": "Heslo",
+ "password_confirm": "Potvrdit heslo",
+ "submit": "Resetovat heslo"
+ },
+ "order": {
+ "title": "Objednávka {{ name }}",
+ "date_html": "Datum vytvoření: {{ date }}",
+ "cancelled_html": "Datum zrušení objednávky: {{ date }}",
+ "cancelled_reason": "Důvod: {{ reason }}",
+ "billing_address": "Fakturační adresa",
+ "payment_status": "Stav platby",
+ "shipping_address": "Dodací adresa",
+ "fulfillment_status": "Stav plnění",
+ "discount": "Sleva",
+ "shipping": "Doprava",
+ "tax": "Daň",
+ "product": "Produkt",
+ "sku": "SKU",
+ "price": "Cena",
+ "quantity": "Množství",
+ "total": "Celkem",
+ "fulfilled_at_html": "Splněno: {{ date }}",
+ "track_shipment": "Sledovat zásilku",
+ "tracking_url": "Odkaz pro sledování",
+ "tracking_company": "Dopravce",
+ "tracking_number": "Číslo pro sledování",
+ "subtotal": "Mezisoučet",
+ "total_duties": "Cla",
+ "total_refunded": "Vrácená částka"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Zůstatek vaší dárkové karty pro obchod {{ shop }} je: {{ value }}!",
+ "subtext": "Vaše dárková karta",
+ "gift_card_code": "Kód dárkové karty",
+ "shop_link": "Navštívit online obchod",
+ "add_to_apple_wallet": "Přidat do Apple Wallet",
+ "qr_image_alt": "QR kód: po naskenování můžete uplatnit svou dárkovou kartu",
+ "copy_code": "Zkopírovat kód dárkové karty",
+ "expired": "Platnost vypršela",
+ "copy_code_success": "Kód byl úspěšně zkopírován",
+ "how_to_use_gift_card": "Použijte kód dárkové karty online nebo QR kód na prodejně",
+ "expiration_date": "Platnost skončí {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Chci zboží poslat jako dárek",
+ "email_label": "E-mail příjemce",
+ "email": "E-mail",
+ "name_label": "Jméno příjemce (volitelné)",
+ "name": "Jméno",
+ "message_label": "Zpráva (volitelné)",
+ "message": "Zpráva",
+ "max_characters": "Maximální počet znaků: {{ max_chars }}",
+ "email_label_optional_for_no_js_behavior": "E-mail příjemce (volitelné)",
+ "send_on": "RRRR-MM-DD",
+ "send_on_label": "Datum odeslání (volitelné)",
+ "expanded": "Formulář pro příjemce dárkové karty se rozbalil.",
+ "collapsed": "Formulář pro příjemce dárkové karty se sbalil."
+ }
+ }
+}
diff --git a/locales/cs.schema.json b/locales/cs.schema.json
new file mode 100644
index 0000000..b1a25d0
--- /dev/null
+++ b/locales/cs.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Barvy",
+ "settings": {
+ "background": {
+ "label": "Pozadí"
+ },
+ "background_gradient": {
+ "label": "Přechod pozadí",
+ "info": "Přechod pozadí nahrazuje pozadí, kde je to možné."
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_background": {
+ "label": "Pozadí tlačítek v jednolité barvě"
+ },
+ "button_label": {
+ "label": "Text tlačítka v jednolité barvě"
+ },
+ "secondary_button_label": {
+ "label": "Tlačítko s obrysem"
+ },
+ "shadow": {
+ "label": "Stín"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografie",
+ "settings": {
+ "type_header_font": {
+ "label": "Písmo",
+ "info": "Výběr jiného písma může ovlivnit rychlost obchodu. [Zjistěte více o systémových písmech.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Nadpisy"
+ },
+ "header__2": {
+ "content": "Hlavní část"
+ },
+ "type_body_font": {
+ "label": "Písmo",
+ "info": "Výběr jiného písma může ovlivnit rychlost obchodu. [Zjistěte více o systémových písmech.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Škála velikostí písem"
+ },
+ "body_scale": {
+ "label": "Škála velikostí písem"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Sociální sítě",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Účty na sociálních sítích"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Formát měny",
+ "settings": {
+ "content": "Kódy měn",
+ "currency_code_enabled": {
+ "label": "Zobrazit kódy měn"
+ },
+ "paragraph": "Košík a ceny na pokladně vždy zahrnují kódy měn. Příklad: 1,00 USD ($)"
+ }
+ },
+ "layout": {
+ "name": "Rozvržení",
+ "settings": {
+ "page_width": {
+ "label": "Šířka stránky"
+ },
+ "spacing_sections": {
+ "label": "Mezera mezi sekcemi šablony"
+ },
+ "header__grid": {
+ "content": "Mřížka"
+ },
+ "paragraph__grid": {
+ "content": "Ovlivňuje oblasti s více sloupci nebo řádky."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Mezera ve vodorovném směru"
+ },
+ "spacing_grid_vertical": {
+ "label": "Mezera ve svislém směru"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Chování hledání",
+ "settings": {
+ "header": {
+ "content": "Návrhy hledaných výrazů"
+ },
+ "predictive_search_enabled": {
+ "label": "Povolit návrhy hledaných výrazů"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Zobrazit dodavatele produktu",
+ "info": "Zobrazuje se v případě, že jsou povoleny návrhy hledaných výrazů."
+ },
+ "predictive_search_show_price": {
+ "label": "Zobrazit cenu produktu",
+ "info": "Zobrazuje se v případě, že jsou povoleny návrhy hledaných výrazů."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Ohraničení"
+ },
+ "header__shadow": {
+ "content": "Stín"
+ },
+ "blur": {
+ "label": "Rozostření"
+ },
+ "corner_radius": {
+ "label": "Poloměr rohu"
+ },
+ "horizontal_offset": {
+ "label": "Vodorovné odsazení"
+ },
+ "vertical_offset": {
+ "label": "Svislé odsazení"
+ },
+ "thickness": {
+ "label": "Tloušťka"
+ },
+ "opacity": {
+ "label": "Neprůhlednost"
+ },
+ "image_padding": {
+ "label": "Vnitřní okraj obrázku"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání textu"
+ }
+ }
+ },
+ "badges": {
+ "name": "Odznaky",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Dole vlevo"
+ },
+ "options__2": {
+ "label": "Dole vpravo"
+ },
+ "options__3": {
+ "label": "Nahoře vlevo"
+ },
+ "options__4": {
+ "label": "Nahoře vpravo"
+ },
+ "label": "Pozice na kartách"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Barevné schéma odznaku Sleva"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Barevné schéma odznaku Vyprodáno"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Tlačítka"
+ },
+ "variant_pills": {
+ "name": "Kulaté přepínače variant",
+ "paragraph": "Kulaté přepínače variant jsou jedním ze způsobů, jak zobrazit varianty produktu. [Zjistit více](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Vstupy"
+ },
+ "content_containers": {
+ "name": "Kontejnery obsahu"
+ },
+ "popups": {
+ "name": "Rozevírací nabídky a automaticky otevíraná okna",
+ "paragraph": "Ovlivňuje oblasti jako, rozevírací nabídky navigace, automaticky otevíraná modální okna nebo automaticky otevíraná okna košíku."
+ },
+ "media": {
+ "name": "Multimédia"
+ },
+ "drawers": {
+ "name": "Zásuvky"
+ },
+ "cart": {
+ "name": "Košík",
+ "settings": {
+ "cart_type": {
+ "label": "Typ košíku",
+ "drawer": {
+ "label": "Výsuvný panel"
+ },
+ "page": {
+ "label": "Stránka"
+ },
+ "notification": {
+ "label": "Notifikace ve vyskakovacím okně"
+ }
+ },
+ "show_vendor": {
+ "label": "Zobrazit dodavatele"
+ },
+ "show_cart_note": {
+ "label": "Povolit poznámku ke košíku"
+ },
+ "cart_drawer": {
+ "header": "Výsuvný košík",
+ "collection": {
+ "label": "Kolekce",
+ "info": "Zobrazí se v případě, že je výsuvný košík prázdný."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Karty produktů",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standardní"
+ },
+ "options__2": {
+ "label": "Karta"
+ },
+ "label": "Styl"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Karty kolekce",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standardní"
+ },
+ "options__2": {
+ "label": "Karta"
+ },
+ "label": "Styl"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Karty blogu",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standardní"
+ },
+ "options__2": {
+ "label": "Karta"
+ },
+ "label": "Styl"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Šířka loga v počítači",
+ "info": "Šířka loga se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "favicon": {
+ "label": "Obrázek favikony",
+ "info": "Dojde ke zmenšení na 32 × 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informace o značce",
+ "settings": {
+ "brand_headline": {
+ "label": "Titulek"
+ },
+ "brand_description": {
+ "label": "Popis"
+ },
+ "brand_image": {
+ "label": "Obrázek"
+ },
+ "brand_image_width": {
+ "label": "Šířka obrázku"
+ },
+ "paragraph": {
+ "content": "Přidejte do zápatí obchodu popis značky."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animace",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Zobrazit sekce při skrolování"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Žádný"
+ },
+ "options__2": {
+ "label": "Svislé vysunutí"
+ },
+ "label": "Efekt najetí",
+ "info": "Ovlivňuje karty a tlačítka.",
+ "options__3": {
+ "label": "3D vysunutí"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Vnitřní okraj sekce",
+ "padding_top": "Horní vnitřní okraj",
+ "padding_bottom": "Dolní vnitřní okraj"
+ },
+ "spacing": "Rozestupy",
+ "colors": {
+ "label": "Barevné schéma",
+ "has_cards_info": "Pokud chcete změnit barevné schéma karty, aktualizujte nastavení motivu."
+ },
+ "heading_size": {
+ "label": "Velikost nadpisu",
+ "options__1": {
+ "label": "Malý"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velký"
+ },
+ "options__4": {
+ "label": "Extra velká"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Výchozí"
+ },
+ "options__2": {
+ "label": "Oblouk"
+ },
+ "options__3": {
+ "label": "Blob"
+ },
+ "options__4": {
+ "label": "Dvojitá šipka vlevo"
+ },
+ "options__5": {
+ "label": "Dvojitá šipka vpravo"
+ },
+ "options__6": {
+ "label": "Kosočtverec"
+ },
+ "options__7": {
+ "label": "Rovnoběžník"
+ },
+ "options__8": {
+ "label": "Kruh"
+ },
+ "label": "Tvar obrázku",
+ "info": "Karty ve standardním stylu nemají ohraničení v případě, že je tvar obrázku aktivní."
+ },
+ "animation": {
+ "content": "Animace",
+ "image_behavior": {
+ "options__1": {
+ "label": "Žádné"
+ },
+ "options__2": {
+ "label": "Krouživý pohyb"
+ },
+ "label": "Chování obrázku",
+ "options__3": {
+ "label": "Neměnná pozice na pozadí"
+ },
+ "options__4": {
+ "label": "Přiblížit skrolování"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Panel oznámení",
+ "blocks": {
+ "announcement": {
+ "name": "Oznámení",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_alignment": {
+ "label": "Zarovnání textu",
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ }
+ },
+ "link": {
+ "label": "Odkaz"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Automaticky střídat oznámení"
+ },
+ "change_slides_speed": {
+ "label": "Změnit co"
+ },
+ "header__1": {
+ "content": "Ikony sociálních sítí",
+ "info": "Pokud chcete zobrazit své účty na sociálních sítích, přidejte na ně v [nastavení motivu](/editor?context=theme&category=social%20media) příslušné odkazy."
+ },
+ "header__2": {
+ "content": "Oznámení"
+ },
+ "show_social": {
+ "label": "Zobrazit ikony na ploše"
+ },
+ "header__3": {
+ "content": "Selektor země/oblasti",
+ "info": "Pokud chcete přidat zemi nebo oblast, přejděte na [nastavení trhu.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Povolit selektor země/oblasti"
+ },
+ "header__4": {
+ "content": "Selektor jazyka",
+ "info": "Pokud chcete přidat jazyk, přejděte na [jazykové nastavení.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Povolit selektor jazyka"
+ }
+ },
+ "presets": {
+ "name": "Panel oznámení"
+ }
+ },
+ "collage": {
+ "name": "Koláž",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ },
+ "desktop_layout": {
+ "label": "Desktopové rozvržení",
+ "options__1": {
+ "label": "Velký levý blok"
+ },
+ "options__2": {
+ "label": "Velký pravý blok"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobilní rozvržení",
+ "options__1": {
+ "label": "Koláž"
+ },
+ "options__2": {
+ "label": "Sloupec"
+ }
+ },
+ "card_styles": {
+ "label": "Styl karty",
+ "info": "Styly karet produktů, kolekcí a blogů je možné aktualizovat v nastavení motivu.",
+ "options__1": {
+ "label": "Použít individuální styly karet"
+ },
+ "options__2": {
+ "label": "Nastavit všude styl karet produktů"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Obrázek",
+ "settings": {
+ "image": {
+ "label": "Obrázek"
+ }
+ }
+ },
+ "product": {
+ "name": "Produkt",
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Zobrazit sekundární pozadí"
+ },
+ "second_image": {
+ "label": "Zobrazit druhý obrázek po najetí myší/prstem"
+ }
+ }
+ },
+ "collection": {
+ "name": "Kolekce",
+ "settings": {
+ "collection": {
+ "label": "Kolekce"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Titulní obrázek"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Jestliže sekce obsahuje další bloky, přehraje se video v automaticky otevíraném okně.",
+ "placeholder": "Zadejte adresu URL z YouTube nebo Vimea"
+ },
+ "description": {
+ "label": "Alternativní text videa",
+ "info": "Popište video pro zákazníky používající čtečky obrazovky. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Koláž"
+ }
+ },
+ "collection-list": {
+ "name": "Seznam kolekcí",
+ "settings": {
+ "title": {
+ "label": "Nadpis"
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "info": "Přidejte obrázky tak, že začnete upravovat kolekce. [Zjistit více](https://help.shopify.com/manual/products/collections)",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Povolit potažení prstem na mobilním zařízení"
+ },
+ "show_view_all": {
+ "label": "Povolit tlačítko Zobrazit vše v případě, že seznam obsahuje více kolekcí, než kolik se zobrazuje"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců na počítači"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců na mobilu",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Kolekce",
+ "settings": {
+ "collection": {
+ "label": "Kolekce"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Seznam kolekcí"
+ }
+ },
+ "contact-form": {
+ "name": "Kontaktní formulář",
+ "presets": {
+ "name": "Kontaktní formulář"
+ }
+ },
+ "custom-liquid": {
+ "name": "Vlastní kód Liquidu",
+ "settings": {
+ "custom_liquid": {
+ "label": "Kód Liquidu",
+ "info": "Přidejte fragmenty aplikací nebo jiný kód a vytvořte pokročilá přizpůsobení. [Zjistit více](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Vlastní kód Liquidu"
+ }
+ },
+ "featured-blog": {
+ "name": "Blogové příspěvky",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Počet blogových příspěvků, které se mají zobrazit"
+ },
+ "show_view_all": {
+ "label": "Povolit tlačítko Zobrazit vše v případě, že blog obsahuje více blogových příspěvků, než kolik se zobrazuje"
+ },
+ "show_image": {
+ "label": "Zobrazit propagovaný obrázek",
+ "info": "Nejlepších výsledků dosáhnete použitím obrázku s poměrem stran 3:2. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Zobrazit datum"
+ },
+ "show_author": {
+ "label": "Zobrazit autora"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců na počítači"
+ }
+ },
+ "presets": {
+ "name": "Blogové příspěvky"
+ }
+ },
+ "featured-collection": {
+ "name": "Propagovaná kolekce",
+ "settings": {
+ "title": {
+ "label": "Nadpis"
+ },
+ "collection": {
+ "label": "Kolekce"
+ },
+ "products_to_show": {
+ "label": "Maximální počet zobrazovaných produktů"
+ },
+ "show_view_all": {
+ "label": "Povolit možnost Zobrazit vše v případě, že kolekce obsahuje více produktů, než kolik se jich zobrazuje"
+ },
+ "header": {
+ "content": "Karta produktu"
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Zobrazit druhý obrázek po najetí myší/prstem"
+ },
+ "show_vendor": {
+ "label": "Zobrazit dodavatele"
+ },
+ "show_rating": {
+ "label": "Zobrazit hodnocení produktů",
+ "info": "Pokud chcete zobrazovat hodnocení, přidejte si aplikaci pro hodnocení produktů. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců na počítači"
+ },
+ "description": {
+ "label": "Popis"
+ },
+ "show_description": {
+ "label": "Zobrazit popis kolekce z administrátorského rozhraní"
+ },
+ "description_style": {
+ "label": "Styl popisu",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ }
+ },
+ "view_all_style": {
+ "label": "Zobrazit vše – styl",
+ "options__1": {
+ "label": "Odkaz"
+ },
+ "options__2": {
+ "label": "Tlačítko s obrysem"
+ },
+ "options__3": {
+ "label": "Tlačítko v jednolité barvě"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Povolit karusel na desktopovém zařízení"
+ },
+ "full_width": {
+ "label": "Nastavit plnou šířku produktů"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců na mobilu",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Povolit potažení prstem na mobilním zařízení"
+ },
+ "enable_quick_buy": {
+ "label": "Povolit tlačítko Rychlé přidání",
+ "info": "Je optimální pro košík typu vyskakovací okno nebo výsuvný košík."
+ }
+ },
+ "presets": {
+ "name": "Propagovaná kolekce"
+ }
+ },
+ "footer": {
+ "name": "Zápatí",
+ "blocks": {
+ "link_list": {
+ "name": "Nabídka",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ },
+ "menu": {
+ "label": "Nabídka",
+ "info": "Umožňuje zobrazit jen položky nabídky na nejvyšší úrovni."
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ },
+ "subtext": {
+ "label": "Text nižší úrovně"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informace o značce",
+ "settings": {
+ "paragraph": {
+ "content": "Tento blok zobrazí informace o značce. [Upravte informace o značce.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Ikony sociálních sítí"
+ },
+ "show_social": {
+ "label": "Zobrazit ikony sociálních sítí",
+ "info": "Pokud chcete zobrazit své účty na sociálních sítích, přidejte na ně v [nastavení motivu](/editor?context=theme&category=social%20media) příslušné odkazy."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Zobrazit přihlášení k odběru e-mailů"
+ },
+ "newsletter_heading": {
+ "label": "Nadpis"
+ },
+ "header__1": {
+ "content": "Přihlášení k odběru e-mailů",
+ "info": "Odběratelé byli automaticky přidáni do vašeho seznamu zákazníků, kteří přijímají marketing. [Zjistit více](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Ikony sociálních sítí",
+ "info": "Pokud chcete zobrazit své účty na sociálních sítích, přidejte na ně v [nastavení motivu](/editor?context=theme&category=social%20media) příslušné odkazy."
+ },
+ "show_social": {
+ "label": "Zobrazit ikony sociálních sítí"
+ },
+ "header__3": {
+ "content": "Selektor země/oblasti"
+ },
+ "header__4": {
+ "info": "Pokud chcete přidat zemi nebo oblast, přejděte na [nastavení trhu.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Povolit selektor země/oblasti"
+ },
+ "header__5": {
+ "content": "Selektor jazyka"
+ },
+ "header__6": {
+ "info": "Pokud chcete přidat jazyk, přejděte na [jazykové nastavení.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Povolit selektor jazyka"
+ },
+ "header__7": {
+ "content": "Platební metody"
+ },
+ "payment_enable": {
+ "label": "Zobrazit ikony plateb"
+ },
+ "margin_top": {
+ "label": "Horní okraj"
+ },
+ "header__8": {
+ "content": "Odkazy na zásady",
+ "info": "Pokud chcete přidat zásady obchodu, přejděte do [nastavení zásad](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Zobrazit odkazy na zásady"
+ },
+ "header__9": {
+ "content": "Sledování v aplikaci Shop",
+ "info": "Pokud chcete zákazníkům umožnit sledování vašeho obchodu v aplikaci Shop přes cílovou stránku obchodu, musíte povolit Shop Pay. [Zjistit více](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Povolit sledování v aplikaci Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Záhlaví",
+ "settings": {
+ "logo_position": {
+ "label": "Pozice loga na počítači",
+ "options__1": {
+ "label": "Uprostřed vlevo"
+ },
+ "options__2": {
+ "label": "Nahoře vlevo"
+ },
+ "options__3": {
+ "label": "Nahoře ve středu"
+ },
+ "options__4": {
+ "label": "Uprostřed ve středu"
+ }
+ },
+ "menu": {
+ "label": "Nabídka"
+ },
+ "show_line_separator": {
+ "label": "Zobrazit oddělovací čáru"
+ },
+ "margin_bottom": {
+ "label": "Dolní okraj"
+ },
+ "menu_type_desktop": {
+ "label": "Typ desktopové nabídky",
+ "info": "Typ nabídky se automaticky optimalizuje pro mobilní prostředí.",
+ "options__1": {
+ "label": "Rozevírací nabídka"
+ },
+ "options__2": {
+ "label": "Mega nabídka"
+ },
+ "options__3": {
+ "label": "Výsuvný panel"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobilní rozvržení"
+ },
+ "mobile_logo_position": {
+ "label": "Pozice loga v mobilním zařízení",
+ "options__1": {
+ "label": "Uprostřed"
+ },
+ "options__2": {
+ "label": "Vlevo"
+ }
+ },
+ "logo_help": {
+ "content": "Logo upravíte v [nastavení motivu](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Plovoucí záhlaví",
+ "options__1": {
+ "label": "Žádné"
+ },
+ "options__2": {
+ "label": "Při skrolování"
+ },
+ "options__3": {
+ "label": "Vždy"
+ },
+ "options__4": {
+ "label": "Vždy, zmenšit logo"
+ }
+ },
+ "header__3": {
+ "content": "Selektor země/oblasti"
+ },
+ "header__4": {
+ "info": "Pokud chcete přidat zemi nebo oblast, přejděte na [nastavení trhu.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Povolit selektor země/oblasti"
+ },
+ "header__5": {
+ "content": "Selektor jazyka"
+ },
+ "header__6": {
+ "info": "Pokud chcete přidat jazyk, přejděte na [jazykové nastavení.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Povolit selektor jazyka"
+ },
+ "header__1": {
+ "content": "Barva"
+ },
+ "menu_color_scheme": {
+ "label": "Barevné schéma nabídky"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Obrázkový banner",
+ "settings": {
+ "image": {
+ "label": "První obrázek"
+ },
+ "image_2": {
+ "label": "Druhý obrázek"
+ },
+ "stack_images_on_mobile": {
+ "label": "Zobrazit obrázky na mobilním zařízení nad sebou"
+ },
+ "show_text_box": {
+ "label": "Zobrazit kontejner na počítači"
+ },
+ "image_overlay_opacity": {
+ "label": "Neprůhlednost překryvu obrázku"
+ },
+ "show_text_below": {
+ "label": "Zobrazit kontejner na mobilním zařízení"
+ },
+ "image_height": {
+ "label": "Výška banneru",
+ "options__1": {
+ "label": "Přizpůsobení prvnímu obrázku"
+ },
+ "options__2": {
+ "label": "Malý"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "info": "Nejlepších výsledků dosáhnete použitím obrázku s poměrem stran 3:2. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Velký"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Nahoře vlevo"
+ },
+ "options__2": {
+ "label": "Nahoře ve středu"
+ },
+ "options__3": {
+ "label": "Nahoře vpravo"
+ },
+ "options__4": {
+ "label": "Uprostřed vlevo"
+ },
+ "options__5": {
+ "label": "Uprostřed ve středu"
+ },
+ "options__6": {
+ "label": "Uprostřed vpravo"
+ },
+ "options__7": {
+ "label": "Dole vlevo"
+ },
+ "options__8": {
+ "label": "Dole ve středu"
+ },
+ "options__9": {
+ "label": "Dole vpravo"
+ },
+ "label": "Pozice obsahu na počítači"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu na počítači"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu v mobilním prostředí"
+ },
+ "mobile": {
+ "content": "Mobilní rozvržení"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nadpis",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Popis"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ },
+ "label": "Textový styl"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Tlačítka",
+ "settings": {
+ "button_label_1": {
+ "label": "První text tlačítka",
+ "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text."
+ },
+ "button_link_1": {
+ "label": "První tlačítkový odkaz"
+ },
+ "button_style_secondary_1": {
+ "label": "Použít styl tlačítka s obrysem"
+ },
+ "button_label_2": {
+ "label": "Druhý text tlačítka",
+ "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text."
+ },
+ "button_link_2": {
+ "label": "Druhý tlačítkový odkaz"
+ },
+ "button_style_secondary_2": {
+ "label": "Použít styl tlačítka s obrysem"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Obrázkový banner"
+ }
+ },
+ "image-with-text": {
+ "name": "Obrázek s textem",
+ "settings": {
+ "image": {
+ "label": "Obrázek"
+ },
+ "height": {
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Malá"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "label": "Výška obrázku",
+ "options__4": {
+ "label": "Velký"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Obrázek jako první"
+ },
+ "options__2": {
+ "label": "Druhý obrázek"
+ },
+ "label": "Poloha obrázku na počítači",
+ "info": "Výchozí mobilní rozvržení představuje možnost Obrázek jako první."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Malá"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velká"
+ },
+ "label": "Šířka obrázku na počítači",
+ "info": "Obrázek se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu na počítači"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Nahoře"
+ },
+ "options__2": {
+ "label": "Uprostřed"
+ },
+ "options__3": {
+ "label": "Dole"
+ },
+ "label": "Pozice obsahu na počítači"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Bez překrytí"
+ },
+ "options__2": {
+ "label": "S překrytím"
+ },
+ "label": "Rozvržení obsahu"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu v mobilním prostředí"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nadpis",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Obsah"
+ },
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Tlačítko",
+ "settings": {
+ "button_label": {
+ "label": "Text tlačítka",
+ "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text."
+ },
+ "button_link": {
+ "label": "Tlačítkový odkaz"
+ },
+ "outline_button": {
+ "label": "Použít styl tlačítka s obrysem"
+ }
+ }
+ },
+ "caption": {
+ "name": "Titulek",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Podtitul"
+ },
+ "options__2": {
+ "label": "Velká písmena"
+ }
+ },
+ "caption_size": {
+ "label": "Velikost textu",
+ "options__1": {
+ "label": "Malý"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velký"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Obrázek s textem"
+ }
+ },
+ "main-article": {
+ "name": "Blogový příspěvek",
+ "blocks": {
+ "featured_image": {
+ "name": "Propagovaný obrázek",
+ "settings": {
+ "image_height": {
+ "label": "Výška propagovaného obrázku",
+ "info": "Nejlepších výsledků dosáhnete pomocí obrázku s poměrem stran 16:9. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Malá"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "options__4": {
+ "label": "Velká"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Název",
+ "settings": {
+ "blog_show_date": {
+ "label": "Zobrazit datum"
+ },
+ "blog_show_author": {
+ "label": "Zobrazit autora"
+ }
+ }
+ },
+ "content": {
+ "name": "Obsah"
+ },
+ "share": {
+ "name": "Sdílet",
+ "settings": {
+ "featured_image_info": {
+ "content": "Pokud v příspěvcích na sociálních sítích uvedete odkaz, jako náhledový obrázek se zobrazí propagovaný obrázek stránky. [Zjistit více](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "U náhledového obrázku je uveden také název a popis obchodu. [Zjistit více](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blogové příspěvky",
+ "settings": {
+ "header": {
+ "content": "Karta blogového příspěvku"
+ },
+ "show_image": {
+ "label": "Zobrazit propagovaný obrázek"
+ },
+ "paragraph": {
+ "content": "Změňte úryvky tak, že začnete upravovat blogové příspěvky. [Zjistit více](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Zobrazit datum"
+ },
+ "show_author": {
+ "label": "Zobrazit autora"
+ },
+ "layout": {
+ "label": "Rozvržení v počítači",
+ "options__1": {
+ "label": "Mřížka"
+ },
+ "options__2": {
+ "label": "Koláž"
+ },
+ "info": "Příspěvky se v mobilním prostředí zobrazují nad sebou."
+ },
+ "image_height": {
+ "label": "Výška propagovaného obrázku",
+ "info": "Nejlepších výsledků dosáhnete použitím obrázku s poměrem stran 3:2. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Malá"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "options__4": {
+ "label": "Velká"
+ }
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Mezisoučet",
+ "blocks": {
+ "subtotal": {
+ "name": "Mezisoučet ceny"
+ },
+ "buttons": {
+ "name": "Tlačítko pokladny"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Položky"
+ },
+ "main-collection-banner": {
+ "name": "Banner kolekce",
+ "settings": {
+ "paragraph": {
+ "content": "Přidejte popis nebo obrázek tak, že začnete upravovat příslušnou kolekci. [Zjistit více](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Zobrazit popis kolekce"
+ },
+ "show_collection_image": {
+ "label": "Zobrazit obrázek kolekce",
+ "info": "Nejlepších výsledků dosáhnete pomocí obrázku s poměrem stran 16:9. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Mřížka produktů",
+ "settings": {
+ "products_per_page": {
+ "label": "Počet produktů na stránku"
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Zobrazit druhý obrázek po najetí myší/prstem"
+ },
+ "show_vendor": {
+ "label": "Zobrazit dodavatele"
+ },
+ "enable_tags": {
+ "label": "Povolit filtrování",
+ "info": "Přizpůsobte si filtry pomocí aplikace Search & Discovery. [Zjistit více](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Povolit filtrování",
+ "info": "Přizpůsobte si filtry pomocí aplikace Search & Discovery. [Zjistit více](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Povolit řazení"
+ },
+ "header__1": {
+ "content": "Filtrování a řazení"
+ },
+ "header__3": {
+ "content": "Karta produktu"
+ },
+ "show_rating": {
+ "label": "Zobrazit hodnocení produktů",
+ "info": "Pokud chcete zobrazovat hodnocení, přidejte si aplikaci pro hodnocení produktů. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců na počítači"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců na mobilu",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ },
+ "enable_quick_buy": {
+ "label": "Povolit tlačítko Rychlé přidání",
+ "info": "Je optimální pro košík typu vyskakovací okno nebo výsuvný košík."
+ },
+ "filter_type": {
+ "label": "Rozvržení filtru v počítači",
+ "options__1": {
+ "label": "Vodorovně"
+ },
+ "options__2": {
+ "label": "Svisle"
+ },
+ "options__3": {
+ "label": "Výsuvný panel"
+ },
+ "info": "Výchozí mobilní rozvržení představuje výsuvný panel."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Stránka se seznamem kolekcí",
+ "settings": {
+ "title": {
+ "label": "Nadpis"
+ },
+ "sort": {
+ "label": "Seřadit kolekce:",
+ "options__1": {
+ "label": "Abecedně, A–Z"
+ },
+ "options__2": {
+ "label": "Abecedně, Z–A"
+ },
+ "options__3": {
+ "label": "Datum od nejnovějšího"
+ },
+ "options__4": {
+ "label": "Datum od nejstaršího"
+ },
+ "options__5": {
+ "label": "Od nejvyššího počtu produktů po nejnižší"
+ },
+ "options__6": {
+ "label": "Od nejnižšího počtu produktů po nejvyšší"
+ }
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "info": "Přidejte obrázky tak, že začnete upravovat kolekce. [Zjistit více](https://help.shopify.com/manual/products/collections)",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ }
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců v počítači"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců v mobilním zařízení",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Stránka"
+ },
+ "main-password-footer": {
+ "name": "Zápatí hesla"
+ },
+ "main-password-header": {
+ "name": "Záhlaví hesla",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Logo upravíte v nastavení motivu."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Informace o produktu",
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Název"
+ },
+ "price": {
+ "name": "Cena"
+ },
+ "quantity_selector": {
+ "name": "Selektor množství"
+ },
+ "variant_picker": {
+ "name": "Selektor variant",
+ "settings": {
+ "picker_type": {
+ "label": "Typ",
+ "options__1": {
+ "label": "Rozevírací nabídka"
+ },
+ "options__2": {
+ "label": "Kulaté přepínače"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Tlačítka nákupu",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Zobrazit dynamická tlačítka pokladny",
+ "info": "V rámci platebních metod dostupných v obchodě uvidí zákazníci tu, kterou nejvíce preferují, jako například PayPal nebo Apple Pay. [Zjistit více](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Zobrazit formulář s informacemi o příjemci u dárkových karet",
+ "info": "Umožňuje kupujícím odeslat dárkové karty v naplánované datum společně s osobní zprávou. [Zjistit více](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Dostupnost vyzvednutí"
+ },
+ "description": {
+ "name": "Popis"
+ },
+ "share": {
+ "name": "Sdílet",
+ "settings": {
+ "featured_image_info": {
+ "content": "Pokud v příspěvcích na sociálních sítích uvedete odkaz, jako náhledový obrázek se zobrazí propagovaný obrázek stránky. [Zjistit více](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "U náhledového obrázku je uveden také název a popis obchodu. [Zjistit více](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Sbalitelný řádek",
+ "settings": {
+ "heading": {
+ "info": "Připojte nadpis, který popíše obsah.",
+ "label": "Nadpis"
+ },
+ "content": {
+ "label": "Obsah řádku"
+ },
+ "page": {
+ "label": "Obsah řádku ze stránky"
+ },
+ "icon": {
+ "label": "Ikona",
+ "options__1": {
+ "label": "Žádná"
+ },
+ "options__2": {
+ "label": "Jablko"
+ },
+ "options__3": {
+ "label": "Banán"
+ },
+ "options__4": {
+ "label": "Láhev"
+ },
+ "options__5": {
+ "label": "Krabice"
+ },
+ "options__6": {
+ "label": "Mrkev"
+ },
+ "options__7": {
+ "label": "Bublina chatu"
+ },
+ "options__8": {
+ "label": "Zatržítko"
+ },
+ "options__9": {
+ "label": "Psací podložka s klipem"
+ },
+ "options__10": {
+ "label": "Mléčný produkt"
+ },
+ "options__11": {
+ "label": "Bez mléka"
+ },
+ "options__12": {
+ "label": "Sušička"
+ },
+ "options__13": {
+ "label": "Oko"
+ },
+ "options__14": {
+ "label": "Oheň"
+ },
+ "options__15": {
+ "label": "Bezlepkový produkt"
+ },
+ "options__16": {
+ "label": "Srdce"
+ },
+ "options__17": {
+ "label": "Žehlička"
+ },
+ "options__18": {
+ "label": "List"
+ },
+ "options__19": {
+ "label": "Kůže"
+ },
+ "options__20": {
+ "label": "Blesk"
+ },
+ "options__21": {
+ "label": "Rtěnka"
+ },
+ "options__22": {
+ "label": "Zámek"
+ },
+ "options__23": {
+ "label": "Špendlík na mapě"
+ },
+ "options__24": {
+ "label": "Bez ořechů"
+ },
+ "options__25": {
+ "label": "Kalhoty"
+ },
+ "options__26": {
+ "label": "Otisk tlapky"
+ },
+ "options__27": {
+ "label": "Pepř"
+ },
+ "options__28": {
+ "label": "Parfém"
+ },
+ "options__29": {
+ "label": "Letadlo"
+ },
+ "options__30": {
+ "label": "Rostlina"
+ },
+ "options__31": {
+ "label": "Cenovka"
+ },
+ "options__32": {
+ "label": "Otazník"
+ },
+ "options__33": {
+ "label": "Recyklace"
+ },
+ "options__34": {
+ "label": "Vrácení"
+ },
+ "options__35": {
+ "label": "Pravítko"
+ },
+ "options__36": {
+ "label": "Servírovací mísa"
+ },
+ "options__37": {
+ "label": "Košile"
+ },
+ "options__38": {
+ "label": "Bota"
+ },
+ "options__39": {
+ "label": "Silueta"
+ },
+ "options__40": {
+ "label": "Sněhová vločka"
+ },
+ "options__41": {
+ "label": "Hvězdička"
+ },
+ "options__42": {
+ "label": "Stopky"
+ },
+ "options__43": {
+ "label": "Nákladní vůz"
+ },
+ "options__44": {
+ "label": "Praní"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Automaticky otevírané okno",
+ "settings": {
+ "link_label": {
+ "label": "Text odkazu"
+ },
+ "page": {
+ "label": "Stránka"
+ }
+ }
+ },
+ "rating": {
+ "name": "Hodnocení produktů",
+ "settings": {
+ "paragraph": {
+ "content": "Pokud chcete zobrazovat hodnocení, přidejte si aplikaci pro hodnocení produktů. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Doplňkové produkty",
+ "settings": {
+ "paragraph": {
+ "content": "Pokud chcete vybrat doplňkové produkty, přidejte si aplikaci Search & Discovery. [Zjistit více](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Nadpis"
+ },
+ "make_collapsible_row": {
+ "label": "Zobrazit jako sbalitelný řádek"
+ },
+ "icon": {
+ "info": "Zobrazuje se v případě, že se zobrazuje sbalitelný řádek."
+ },
+ "product_list_limit": {
+ "label": "Maximální počet zobrazovaných produktů"
+ },
+ "products_per_page": {
+ "label": "Počet produktů na stránku"
+ },
+ "pagination_style": {
+ "label": "Styl stránkování",
+ "options": {
+ "option_1": "Tečky",
+ "option_2": "Počítadlo",
+ "option_3": "Čísla"
+ }
+ },
+ "product_card": {
+ "heading": "Karta produktu"
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options": {
+ "option_1": "Na výšku",
+ "option_2": "Čtverec"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Povolit tlačítko Rychlé přidání"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ikona s textem",
+ "settings": {
+ "layout": {
+ "label": "Rozvržení",
+ "options__1": {
+ "label": "Vodorovně"
+ },
+ "options__2": {
+ "label": "Svisle"
+ }
+ },
+ "content": {
+ "label": "Obsah",
+ "info": "Zvolte ikonu nebo přidejte obrázek pro každý sloupec nebo řádek."
+ },
+ "heading": {
+ "info": "Pokud chcete sloupec s ikonami skrýt, nechejte popisek záhlaví prázdný."
+ },
+ "icon_1": {
+ "label": "První ikona"
+ },
+ "image_1": {
+ "label": "První obrázek"
+ },
+ "heading_1": {
+ "label": "První nadpis"
+ },
+ "icon_2": {
+ "label": "Druhá ikona"
+ },
+ "image_2": {
+ "label": "Druhý obrázek"
+ },
+ "heading_2": {
+ "label": "Druhý nadpis"
+ },
+ "icon_3": {
+ "label": "Třetí ikona"
+ },
+ "image_3": {
+ "label": "Třetí obrázek"
+ },
+ "heading_3": {
+ "label": "Třetí nadpis"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Stav skladových zásob",
+ "settings": {
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Práh docházejících skladových zásob",
+ "info": "Zvolte 0, pokud chcete vždy zobrazoval stav Skladem, když je zboží k dispozici."
+ },
+ "show_inventory_quantity": {
+ "label": "Zobrazovat objem skladových zásob"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Multimédia",
+ "info": "Zjistěte více o [typech multimédií](https://help.shopify.com/manual/products/product-media)."
+ },
+ "enable_video_looping": {
+ "label": "Povolit smyčky videa"
+ },
+ "enable_sticky_info": {
+ "label": "Povolit plovoucí obsah v počítači"
+ },
+ "hide_variants": {
+ "label": "Po výběru varianty skrýt multimédia ostatních variant"
+ },
+ "gallery_layout": {
+ "label": "Rozvržení v počítači",
+ "options__1": {
+ "label": "Nad sebou"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ },
+ "options__3": {
+ "label": "Miniatury"
+ },
+ "options__4": {
+ "label": "Karusel miniatur"
+ }
+ },
+ "media_size": {
+ "label": "Šířka multimédií v počítači",
+ "info": "Multimédia se automaticky optimalizují pro mobilní prostředí.",
+ "options__1": {
+ "label": "Malá"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velká"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Mobilní rozvržení",
+ "options__1": {
+ "label": "2 sloupce"
+ },
+ "options__2": {
+ "label": "Zobrazit miniatury"
+ },
+ "options__3": {
+ "label": "Skrýt miniatury"
+ }
+ },
+ "media_position": {
+ "label": "Pozice multimediálního obsahu na počítači",
+ "info": "Pozice se automaticky optimalizuje pro mobilní prostředí.",
+ "options__1": {
+ "label": "Vlevo"
+ },
+ "options__2": {
+ "label": "Vpravo"
+ }
+ },
+ "image_zoom": {
+ "label": "Zvětšení obrázků",
+ "info": "Klikněte a podržte kurzor nad výchozími možnostmi. Tím otevřete Lightbox na mobilním zařízení.",
+ "options__1": {
+ "label": "Otevřít Lightbox"
+ },
+ "options__2": {
+ "label": "Kliknout a podržet kurzor"
+ },
+ "options__3": {
+ "label": "Bez zvětšení"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Zmenšit multimédia na výšku obrazovky"
+ },
+ "media_fit": {
+ "label": "Přizpůsobení multimédií",
+ "options__1": {
+ "label": "Originál"
+ },
+ "options__2": {
+ "label": "Výplň"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Výsledky hledání",
+ "settings": {
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Zobrazit druhý obrázek po najetí myší/prstem"
+ },
+ "show_vendor": {
+ "label": "Zobrazit dodavatele"
+ },
+ "header__1": {
+ "content": "Karta produktu"
+ },
+ "header__2": {
+ "content": "Karta blogu",
+ "info": "Styly karet blogů se ve výsledcích hledání dají nastavit také u karet stránek. Pokud chcete styly karet změnit, aktualizujte nastavení motivu."
+ },
+ "article_show_date": {
+ "label": "Zobrazit datum"
+ },
+ "article_show_author": {
+ "label": "Zobrazit autora"
+ },
+ "show_rating": {
+ "label": "Zobrazit hodnocení produktů",
+ "info": "Pokud chcete zobrazovat hodnocení, přidejte si aplikaci pro hodnocení produktů. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců na počítači"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců na mobilu",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Více sloupců",
+ "settings": {
+ "title": {
+ "label": "Nadpis"
+ },
+ "image_width": {
+ "label": "Šířka obrázku",
+ "options__1": {
+ "label": "Třetinová šířka sloupce"
+ },
+ "options__2": {
+ "label": "Poloviční šířka sloupce"
+ },
+ "options__3": {
+ "label": "Plná šířka sloupce"
+ }
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ },
+ "options__4": {
+ "label": "Kruh"
+ }
+ },
+ "column_alignment": {
+ "label": "Zarovnání sloupce",
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ }
+ },
+ "background_style": {
+ "label": "Sekundární pozadí",
+ "options__1": {
+ "label": "Žádné"
+ },
+ "options__2": {
+ "label": "Zobrazit jako pozadí sloupce"
+ }
+ },
+ "button_label": {
+ "label": "Text tlačítka"
+ },
+ "button_link": {
+ "label": "Tlačítkový odkaz"
+ },
+ "swipe_on_mobile": {
+ "label": "Povolit potažení prstem na mobilním zařízení"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců na počítači"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců na mobilu",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Sloupec",
+ "settings": {
+ "image": {
+ "label": "Obrázek"
+ },
+ "title": {
+ "label": "Nadpis"
+ },
+ "text": {
+ "label": "Popis"
+ },
+ "link_label": {
+ "label": "Text odkazu"
+ },
+ "link": {
+ "label": "Odkaz"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Více sloupců"
+ }
+ },
+ "newsletter": {
+ "name": "Přihlášení k odběru e-mailů",
+ "settings": {
+ "full_width": {
+ "label": "Nastavit plnou šířku sekce"
+ },
+ "paragraph": {
+ "content": "Každý odběr e-mailů vytvoří zákaznický účet. [Zjistit více](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nadpis",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Podnadpis",
+ "settings": {
+ "paragraph": {
+ "label": "Popis"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-mailový formulář"
+ }
+ },
+ "presets": {
+ "name": "Přihlášení k odběru e-mailů"
+ }
+ },
+ "page": {
+ "name": "Stránka",
+ "settings": {
+ "page": {
+ "label": "Stránka"
+ }
+ },
+ "presets": {
+ "name": "Stránka"
+ }
+ },
+ "rich-text": {
+ "name": "Formát RTF",
+ "settings": {
+ "full_width": {
+ "label": "Nastavit plnou šířku sekce"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Vlevo"
+ },
+ "options__2": {
+ "label": "Uprostřed"
+ },
+ "options__3": {
+ "label": "Vpravo"
+ },
+ "label": "Pozice obsahu v počítači",
+ "info": "Pozice se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nadpis",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Popis"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Tlačítka",
+ "settings": {
+ "button_label_1": {
+ "label": "První text tlačítka",
+ "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text."
+ },
+ "button_link_1": {
+ "label": "První tlačítkový odkaz"
+ },
+ "button_style_secondary_1": {
+ "label": "Použít styl tlačítka s obrysem"
+ },
+ "button_label_2": {
+ "label": "Druhý text tlačítka",
+ "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text."
+ },
+ "button_link_2": {
+ "label": "Druhý tlačítkový odkaz"
+ },
+ "button_style_secondary_2": {
+ "label": "Použít styl tlačítka s obrysem"
+ }
+ }
+ },
+ "caption": {
+ "name": "Titulek",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Podtitul"
+ },
+ "options__2": {
+ "label": "Velká písmena"
+ }
+ },
+ "caption_size": {
+ "label": "Velikost textu",
+ "options__1": {
+ "label": "Malý"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velký"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Formát RTF"
+ }
+ },
+ "apps": {
+ "name": "Aplikace",
+ "settings": {
+ "include_margins": {
+ "label": "Nastavit okraje sekce podle motivu"
+ }
+ },
+ "presets": {
+ "name": "Aplikace"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Záhlaví"
+ },
+ "cover_image": {
+ "label": "Titulní obrázek"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Zadejte adresu URL z YouTube nebo Vimea"
+ },
+ "description": {
+ "label": "Alternativní text videa",
+ "info": "Popište video pro zákazníky používající čtečky obrazovky. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Přidat vnitřní okraj obrázku",
+ "info": "Pokud nechcete, aby došlo k oříznutí vašeho titulního obrázku, vyberte u něj vnitřní okraj."
+ },
+ "full_width": {
+ "label": "Nastavit plnou šířku sekce"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Přehrát video jako smyčku"
+ },
+ "header__1": {
+ "content": "Video hostované Shopify"
+ },
+ "header__2": {
+ "content": "Nebo vložte video přes URL"
+ },
+ "header__3": {
+ "content": "Styl"
+ },
+ "paragraph": {
+ "content": "Zobrazí se v případě, že není vybráno žádné video hostované Shopify."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Propagovaný produkt",
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Název"
+ },
+ "price": {
+ "name": "Cena"
+ },
+ "quantity_selector": {
+ "name": "Selektor množství"
+ },
+ "variant_picker": {
+ "name": "Selektor variant",
+ "settings": {
+ "picker_type": {
+ "label": "Typ",
+ "options__1": {
+ "label": "Rozevírací nabídka"
+ },
+ "options__2": {
+ "label": "Kulaté přepínače"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Tlačítka nákupu",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Zobrazit dynamická tlačítka pokladny",
+ "info": "V rámci platebních metod dostupných v obchodě uvidí zákazníci tu, kterou nejvíce preferují, jako například PayPal nebo Apple Pay. [Zjistit více](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Popis"
+ },
+ "share": {
+ "name": "Sdílet",
+ "settings": {
+ "featured_image_info": {
+ "content": "Pokud v příspěvcích na sociálních sítích uvedete odkaz, jako náhledový obrázek se zobrazí propagovaný obrázek stránky. [Zjistit více](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "U náhledového obrázku je uveden také název a popis obchodu. [Zjistit více](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ },
+ "rating": {
+ "name": "Hodnocení produktů",
+ "settings": {
+ "paragraph": {
+ "content": "Pokud chcete zobrazovat hodnocení, přidejte si aplikaci pro hodnocení produktů. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Textový styl",
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "options__3": {
+ "label": "Velká písmena"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Zobrazit sekundární pozadí"
+ },
+ "header": {
+ "content": "Multimédia",
+ "info": "Zjistit více o [typech multimédií](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Povolit smyčky videa"
+ },
+ "hide_variants": {
+ "label": "Skrýt v počítači multimédia nevybraných variant"
+ },
+ "media_position": {
+ "label": "Pozice multimediálního obsahu na počítači",
+ "info": "Pozice se automaticky optimalizuje pro mobilní prostředí.",
+ "options__1": {
+ "label": "Vlevo"
+ },
+ "options__2": {
+ "label": "Vpravo"
+ }
+ }
+ },
+ "presets": {
+ "name": "Propagovaný produkt"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner přihlášení k odběru e-mailů",
+ "settings": {
+ "paragraph": {
+ "content": "Každý odběr e-mailů vytvoří zákaznický účet. [Zjistit více](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Obrázek na pozadí"
+ },
+ "show_background_image": {
+ "label": "Zobrazit obrázek na pozadí"
+ },
+ "show_text_box": {
+ "label": "Zobrazit kontejner na počítači"
+ },
+ "image_overlay_opacity": {
+ "label": "Neprůhlednost překryvu obrázku"
+ },
+ "show_text_below": {
+ "label": "Na mobilním zařízení zobrazovat obsah pod obrázkem",
+ "info": "Nejlepších výsledků dosáhnete použitím obrázku s poměrem stran 16:9. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Výška banneru",
+ "options__1": {
+ "label": "Přizpůsobit velikosti obrázku"
+ },
+ "options__2": {
+ "label": "Malá"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "options__4": {
+ "label": "Velká"
+ },
+ "info": "Nejlepších výsledků dosáhnete použitím obrázku s poměrem stran 16:9. [Zjistit více](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Nahoře vlevo"
+ },
+ "options__2": {
+ "label": "Nahoře ve středu"
+ },
+ "options__3": {
+ "label": "Nahoře vpravo"
+ },
+ "options__4": {
+ "label": "Uprostřed vlevo"
+ },
+ "options__5": {
+ "label": "Uprostřed ve středu"
+ },
+ "options__6": {
+ "label": "Uprostřed vpravo"
+ },
+ "options__7": {
+ "label": "Dole vlevo"
+ },
+ "options__8": {
+ "label": "Dole ve středu"
+ },
+ "options__9": {
+ "label": "Dole vpravo"
+ },
+ "label": "Pozice obsahu na počítači"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu na počítači"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu v mobilním prostředí"
+ },
+ "header": {
+ "content": "Mobilní rozvržení"
+ },
+ "color_scheme": {
+ "info": "Zobrazuje se v případě, že se zobrazuje kontejner."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Záhlaví",
+ "settings": {
+ "heading": {
+ "label": "Záhlaví"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Odstavec",
+ "settings": {
+ "paragraph": {
+ "label": "Popis"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "label": "Textový styl"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-mailový formulář"
+ }
+ },
+ "presets": {
+ "name": "Banner přihlášení k odběru e-mailů"
+ }
+ },
+ "slideshow": {
+ "name": "Prezentace",
+ "settings": {
+ "layout": {
+ "label": "Rozvržení",
+ "options__1": {
+ "label": "Plná šířka"
+ },
+ "options__2": {
+ "label": "Mřížka"
+ }
+ },
+ "slide_height": {
+ "label": "Výška snímku",
+ "options__1": {
+ "label": "Přizpůsobení prvnímu obrázku"
+ },
+ "options__2": {
+ "label": "Malá"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "options__4": {
+ "label": "Velká"
+ }
+ },
+ "slider_visual": {
+ "label": "Styl stránkování",
+ "options__1": {
+ "label": "Počítadlo"
+ },
+ "options__2": {
+ "label": "Tečky"
+ },
+ "options__3": {
+ "label": "Čísla"
+ }
+ },
+ "auto_rotate": {
+ "label": "Automaticky otočit snímky"
+ },
+ "change_slides_speed": {
+ "label": "Změnit snímek co"
+ },
+ "show_text_below": {
+ "label": "Na mobilním zařízení zobrazovat obsah pod obrázky"
+ },
+ "mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "accessibility": {
+ "content": "Přístupnost",
+ "label": "Popis prezentace",
+ "info": "Popište prezentaci pro zákazníky používající čtečky obrazovky."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Snímek",
+ "settings": {
+ "image": {
+ "label": "Obrázek"
+ },
+ "heading": {
+ "label": "Nadpis"
+ },
+ "subheading": {
+ "label": "Podnadpis"
+ },
+ "button_label": {
+ "label": "Text tlačítka",
+ "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text."
+ },
+ "link": {
+ "label": "Tlačítkový odkaz"
+ },
+ "secondary_style": {
+ "label": "Použít styl tlačítka s obrysem"
+ },
+ "box_align": {
+ "label": "Pozice obsahu na počítači",
+ "options__1": {
+ "label": "Nahoře vlevo"
+ },
+ "options__2": {
+ "label": "Nahoře ve středu"
+ },
+ "options__3": {
+ "label": "Nahoře vpravo"
+ },
+ "options__4": {
+ "label": "Uprostřed vlevo"
+ },
+ "options__5": {
+ "label": "Uprostřed ve středu"
+ },
+ "options__6": {
+ "label": "Uprostřed vpravo"
+ },
+ "options__7": {
+ "label": "Dole vlevo"
+ },
+ "options__8": {
+ "label": "Dole ve středu"
+ },
+ "options__9": {
+ "label": "Dole vpravo"
+ },
+ "info": "Pozice se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "show_text_box": {
+ "label": "Zobrazit kontejner na počítači"
+ },
+ "text_alignment": {
+ "label": "Zarovnání obsahu na počítači",
+ "option_1": {
+ "label": "Doleva"
+ },
+ "option_2": {
+ "label": "Na střed"
+ },
+ "option_3": {
+ "label": "Doprava"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Neprůhlednost překryvu obrázku"
+ },
+ "text_alignment_mobile": {
+ "label": "Zarovnání obsahu v mobilním prostředí",
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Prezentace"
+ }
+ },
+ "collapsible_content": {
+ "name": "Sbalitelný obsah",
+ "settings": {
+ "caption": {
+ "label": "Titulek"
+ },
+ "heading": {
+ "label": "Nadpis"
+ },
+ "heading_alignment": {
+ "label": "Zarovnání nadpisu",
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ }
+ },
+ "layout": {
+ "label": "Rozvržení",
+ "options__1": {
+ "label": "Žádný kontejner"
+ },
+ "options__2": {
+ "label": "Kontejner řádků"
+ },
+ "options__3": {
+ "label": "Kontejner sekcí"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Otevřít první sbalitelný řádek"
+ },
+ "header": {
+ "content": "Rozvržení obrázku"
+ },
+ "image": {
+ "label": "Obrázek"
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Malý"
+ },
+ "options__3": {
+ "label": "Velký"
+ }
+ },
+ "desktop_layout": {
+ "label": "Rozvržení v počítači",
+ "options__1": {
+ "label": "Obrázek jako první"
+ },
+ "options__2": {
+ "label": "Obrázek jako druhý"
+ },
+ "info": "Obrázek je v mobilním prostředí vždy první."
+ },
+ "container_color_scheme": {
+ "label": "Barevné schéma kontejneru",
+ "info": "Zobrazí se v případě, že je rozvržení nastaveno na kontejner řádků nebo sekcí."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Sbalitelný řádek",
+ "settings": {
+ "heading": {
+ "info": "Připojte nadpis, který popíše obsah.",
+ "label": "Nadpis"
+ },
+ "row_content": {
+ "label": "Obsah řádku"
+ },
+ "page": {
+ "label": "Obsah řádku ze stránky"
+ },
+ "icon": {
+ "label": "Ikona",
+ "options__1": {
+ "label": "Žádná"
+ },
+ "options__2": {
+ "label": "Jablko"
+ },
+ "options__3": {
+ "label": "Banán"
+ },
+ "options__4": {
+ "label": "Láhev"
+ },
+ "options__5": {
+ "label": "Krabice"
+ },
+ "options__6": {
+ "label": "Mrkev"
+ },
+ "options__7": {
+ "label": "Bublina chatu"
+ },
+ "options__8": {
+ "label": "Zatržítko"
+ },
+ "options__9": {
+ "label": "Psací podložka s klipem"
+ },
+ "options__10": {
+ "label": "Mléčný produkt"
+ },
+ "options__11": {
+ "label": "Bez mléka"
+ },
+ "options__12": {
+ "label": "Sušička"
+ },
+ "options__13": {
+ "label": "Oko"
+ },
+ "options__14": {
+ "label": "Oheň"
+ },
+ "options__15": {
+ "label": "Bezlepkový produkt"
+ },
+ "options__16": {
+ "label": "Srdce"
+ },
+ "options__17": {
+ "label": "Žehlička"
+ },
+ "options__18": {
+ "label": "List"
+ },
+ "options__19": {
+ "label": "Kůže"
+ },
+ "options__20": {
+ "label": "Blesk"
+ },
+ "options__21": {
+ "label": "Rtěnka"
+ },
+ "options__22": {
+ "label": "Zámek"
+ },
+ "options__23": {
+ "label": "Špendlík na mapě"
+ },
+ "options__24": {
+ "label": "Bez ořechů"
+ },
+ "options__25": {
+ "label": "Kalhoty"
+ },
+ "options__26": {
+ "label": "Otisk tlapky"
+ },
+ "options__27": {
+ "label": "Pepř"
+ },
+ "options__28": {
+ "label": "Parfém"
+ },
+ "options__29": {
+ "label": "Letadlo"
+ },
+ "options__30": {
+ "label": "Rostlina"
+ },
+ "options__31": {
+ "label": "Cenovka"
+ },
+ "options__32": {
+ "label": "Otazník"
+ },
+ "options__33": {
+ "label": "Recyklace"
+ },
+ "options__34": {
+ "label": "Vrácení"
+ },
+ "options__35": {
+ "label": "Pravítko"
+ },
+ "options__36": {
+ "label": "Servírovací mísa"
+ },
+ "options__37": {
+ "label": "Košile"
+ },
+ "options__38": {
+ "label": "Bota"
+ },
+ "options__39": {
+ "label": "Silueta"
+ },
+ "options__40": {
+ "label": "Sněhová vločka"
+ },
+ "options__41": {
+ "label": "Hvězdička"
+ },
+ "options__42": {
+ "label": "Stopky"
+ },
+ "options__43": {
+ "label": "Nákladní vůz"
+ },
+ "options__44": {
+ "label": "Praní"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Sbalitelný obsah"
+ }
+ },
+ "main-account": {
+ "name": "Účet"
+ },
+ "main-activate-account": {
+ "name": "Aktivace účtu"
+ },
+ "main-addresses": {
+ "name": "Adresy"
+ },
+ "main-login": {
+ "name": "Přihlášení"
+ },
+ "main-order": {
+ "name": "Objednávka"
+ },
+ "main-register": {
+ "name": "Registrace"
+ },
+ "main-reset-password": {
+ "name": "Reset hesla"
+ },
+ "related-products": {
+ "name": "Související produkty",
+ "settings": {
+ "heading": {
+ "label": "Nadpis"
+ },
+ "products_to_show": {
+ "label": "Maximální počet zobrazovaných produktů"
+ },
+ "columns_desktop": {
+ "label": "Počet sloupců v počítači"
+ },
+ "paragraph__1": {
+ "content": "Dynamická doporučení využívají informace o objednávkách a produktech, aby se postupem času měnila a vylepšovala. [Zjistit více](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Karta produktu"
+ },
+ "image_ratio": {
+ "label": "Poměr obrázku",
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Na výšku"
+ },
+ "options__3": {
+ "label": "Čtverec"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Zobrazit druhý obrázek po najetí myší/prstem"
+ },
+ "show_vendor": {
+ "label": "Zobrazit dodavatele"
+ },
+ "show_rating": {
+ "label": "Zobrazit hodnocení produktů",
+ "info": "Pokud chcete zobrazovat hodnocení, přidejte si aplikaci pro hodnocení produktů. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ },
+ "columns_mobile": {
+ "label": "Počet sloupců v mobilním zařízení",
+ "options__1": {
+ "label": "1 sloupec"
+ },
+ "options__2": {
+ "label": "2 sloupce"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Více řádků",
+ "settings": {
+ "image": {
+ "label": "Obrázek"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Přizpůsobení obrázku"
+ },
+ "options__2": {
+ "label": "Malý"
+ },
+ "options__3": {
+ "label": "Střední"
+ },
+ "options__4": {
+ "label": "Velký"
+ },
+ "label": "Výška obrázku"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Malý"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velký"
+ },
+ "label": "Šířka obrázku v počítači",
+ "info": "Obrázek se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Malý"
+ },
+ "options__2": {
+ "label": "Střední"
+ },
+ "options__3": {
+ "label": "Velký"
+ },
+ "label": "Velikost nadpisu"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Hlavní část"
+ },
+ "options__2": {
+ "label": "Podtitul"
+ },
+ "label": "Textový styl"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Tlačítko v jednolité barvě"
+ },
+ "options__2": {
+ "label": "Tlačítko s obrysem"
+ },
+ "label": "Styl tlačítka"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu v počítači"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Nahoře"
+ },
+ "options__2": {
+ "label": "Uprostřed"
+ },
+ "options__3": {
+ "label": "Dole"
+ },
+ "label": "Pozice obsahu v počítači",
+ "info": "Pozice se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Prostřídání zleva"
+ },
+ "options__2": {
+ "label": "Prostřídání zprava"
+ },
+ "options__3": {
+ "label": "Zarovnání doleva"
+ },
+ "options__4": {
+ "label": "Zarovnání doprava"
+ },
+ "label": "Poloha obrázku v počítači",
+ "info": "Poloha se automaticky optimalizuje pro mobilní prostředí."
+ },
+ "container_color_scheme": {
+ "label": "Barevné schéma kontejneru"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Doleva"
+ },
+ "options__2": {
+ "label": "Na střed"
+ },
+ "options__3": {
+ "label": "Doprava"
+ },
+ "label": "Zarovnání obsahu v mobilním prostředí"
+ },
+ "header_mobile": {
+ "content": "Mobilní rozvržení"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Řádek",
+ "settings": {
+ "image": {
+ "label": "Obrázek"
+ },
+ "caption": {
+ "label": "Titulek"
+ },
+ "heading": {
+ "label": "Nadpis"
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_label": {
+ "label": "Text tlačítka"
+ },
+ "button_link": {
+ "label": "Tlačítkový odkaz"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Více řádků"
+ }
+ },
+ "quick-order-list": {
+ "name": "Seznam pro rychlé objednávky",
+ "settings": {
+ "show_image": {
+ "label": "Zobrazit obrázky"
+ },
+ "show_sku": {
+ "label": "Zobrazit SKU"
+ }
+ },
+ "presets": {
+ "name": "Seznam pro rychlé objednávky"
+ }
+ }
+ }
+}
diff --git a/locales/da.json b/locales/da.json
new file mode 100644
index 0000000..82a7a57
--- /dev/null
+++ b/locales/da.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Brug adgangskode for at få adgang til butikken:",
+ "login_password_button": "Brug adgangskode for at få adgang",
+ "login_form_password_label": "Adgangskode",
+ "login_form_password_placeholder": "Din adgangskode",
+ "login_form_error": "Forkert adgangskode!",
+ "login_form_submit": "Få adgang",
+ "admin_link_html": "Er du butiksejeren? Log ind her ",
+ "powered_by_shopify_html": "Denne butik vil blive drevet af {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Del på Facebook",
+ "share_on_twitter": "Tweet på Twitter",
+ "share_on_pinterest": "Pin på Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Tilbage til butikken",
+ "pagination": {
+ "label": "Sideinddeling",
+ "page": "Side {{ number }}",
+ "next": "Næste side",
+ "previous": "Forrige side"
+ },
+ "search": {
+ "search": "Søg",
+ "reset": "Ryd søgeord"
+ },
+ "cart": {
+ "view": "Se indkøbskurv ({{ count }})",
+ "item_added": "Varen er lagt i indkøbskurven",
+ "view_empty_cart": "Se indkøbskurv"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopiér link",
+ "share_url": "Link",
+ "success_message": "Linket er kopieret til udklipsholderen",
+ "close": "Luk deling"
+ },
+ "slider": {
+ "of": "af",
+ "next_slide": "Skub til højre",
+ "previous_slide": "Skub til venstre",
+ "name": "Diasshow"
+ }
+ },
+ "newsletter": {
+ "label": "Mail",
+ "success": "Tak, fordi du har tegnet et abonnement",
+ "button_label": "Abonner"
+ },
+ "accessibility": {
+ "skip_to_text": "Gå til indhold",
+ "close": "Luk",
+ "unit_price_separator": "pr.",
+ "vendor": "Forhandler:",
+ "error": "Fejl",
+ "refresh_page": "Hele siden bliver genindlæst, når du vælger et afsnit.",
+ "link_messages": {
+ "new_window": "Åbner i et nyt vindue.",
+ "external": "Åbner eksternt website."
+ },
+ "loading": "Indlæser...",
+ "skip_to_product_info": "Gå til produktoplysninger",
+ "total_reviews": "anmeldelser i alt",
+ "star_reviews_info": "{{ rating_value }} ud af {{ rating_max }} stjerner",
+ "collapsible_content_title": "Indhold, der kan skjules",
+ "complementary_products": "Supplerende produkter"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Læs mere: {{ title }}",
+ "comments": {
+ "one": "{{ count }} kommentar",
+ "other": "{{ count }} kommentarer"
+ },
+ "moderated": "Bemærk, at kommentarer skal godkendes, før de bliver offentliggjort.",
+ "comment_form_title": "Indsend en kommentar",
+ "name": "Navn",
+ "email": "Mailadresse",
+ "message": "Kommentar",
+ "post": "Skriv kommentar",
+ "back_to_blog": "Tilbage til blog",
+ "share": "Del denne artikel",
+ "success": "Din kommentar er blevet offentliggjort! Tak!",
+ "success_moderated": "Din kommentar er blevet offentliggjort. Den bliver offentliggjort om lidt, da vores blog er under opsyn."
+ }
+ },
+ "onboarding": {
+ "product_title": "Eksempel på produkttitel",
+ "collection_title": "Navnet på din kollektion"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Læg i indkøbskurv",
+ "description": "Beskrivelse",
+ "on_sale": "Udsalg",
+ "quantity": {
+ "label": "Antal",
+ "input_label": "Antal for {{ product }}",
+ "increase": "Øg antallet for {{ product }}",
+ "decrease": "Reducer antallet for {{ product }}",
+ "minimum_of": "Minimum på {{ quantity }}",
+ "maximum_of": "Maksimum på {{ quantity }}",
+ "multiples_of": "Intervaller på {{ quantity }}",
+ "in_cart_html": "{{ quantity }} i indkøbskurven",
+ "note": "Se mængderegler"
+ },
+ "price": {
+ "from_price_html": "Fra {{ price }}",
+ "regular_price": "Normalpris",
+ "sale_price": "Udsalgspris",
+ "unit_price": "Stykpris"
+ },
+ "share": "Del dette produkt",
+ "sold_out": "Udsolgt",
+ "unavailable": "Ikke tilgængelig",
+ "vendor": "Forhandler",
+ "video_exit_message": "{{ title }} åbner video i fuld skærm i samme vindue.",
+ "xr_button": "Se den i dit område",
+ "xr_button_label": "Se den i dine omgivelser – indlæser vare i et augmented reality-vindue",
+ "pickup_availability": {
+ "view_store_info": "Se butiksoplysninger",
+ "check_other_stores": "Kontrollér tilgængelighed i andre butikker",
+ "pick_up_available": "Afhentning er tilgængelig",
+ "pick_up_available_at_html": "Afhentning er tilgængelig på {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Afhentning er ikke tilgængelig på {{ location_name }} i øjeblikket",
+ "unavailable": "Tilgængelighed for afhentning kunne ikke indlæses",
+ "refresh": "Opdater"
+ },
+ "media": {
+ "open_media": "Åbn mediet {{ index }} i modus",
+ "play_model": "Afspil 3D-fremviser",
+ "play_video": "Afspil video",
+ "gallery_viewer": "Fremviser til Galleri",
+ "load_image": "Indlæs billedet {{ index }} i gallerivisning",
+ "load_model": "Indlæs 3D-modellen {{ index }} i gallerivisning",
+ "load_video": "Afspil videoen {{ index }} i gallerivisning",
+ "image_available": "Billedet {{ index }} er nu tilgængeligt i gallerivisning"
+ },
+ "view_full_details": "Se komplette oplysninger",
+ "include_taxes": "Inklusive skat.",
+ "shipping_policy_html": "Levering beregnes ved betaling.",
+ "choose_options": "Vælg muligheder",
+ "choose_product_options": "Vælg muligheder for {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Ikke tilgængelig",
+ "variant_sold_out_or_unavailable": "Varianten er udsolgt eller utilgængelig",
+ "inventory_in_stock": "På lager",
+ "inventory_in_stock_show_count": "{{ quantity }} på lager",
+ "inventory_low_stock": "Lav lagerbeholdning",
+ "inventory_low_stock_show_count": "Lav lagerbeholdning: {{ quantity }} tilbage",
+ "inventory_out_of_stock": "Ikke på lager",
+ "inventory_out_of_stock_continue_selling": "På lager",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Mængderabat",
+ "note": "Mængderabat tilgængelig",
+ "minimum": "Mere end {{ quantity }}",
+ "price_at_each": "til {{ price }}/stk",
+ "price_range": "{{ minimum }} – {{ maximum }}"
+ },
+ "product_variants": "Produktvarianter"
+ },
+ "modal": {
+ "label": "Mediegalleri"
+ },
+ "facets": {
+ "apply": "Anvend",
+ "clear": "Ryd",
+ "clear_all": "Fjern alle",
+ "from": "Fra",
+ "filter_and_sort": "Filtrer og sortér",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filtrer",
+ "filters_selected": {
+ "one": "{{ count }} valgt",
+ "other": "{{ count }} valgt"
+ },
+ "max_price": "Den højeste pris er {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} af {{ count }} produkt",
+ "other": "{{ product_count }} af {{ count }} produkter"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkter"
+ },
+ "reset": "Nulstil",
+ "sort_button": "Sortér",
+ "sort_by_label": "Sortér efter:",
+ "to": "Til",
+ "clear_filter": "Fjern filter",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtre er valgt)",
+ "show_more": "Vis mere",
+ "show_less": "Vis mindre",
+ "filter_and_operator_subtitle": "Match alle"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Der blev ikke fundet nogen resultater for “{{ terms }}”. Kontrollér stavemåden, eller brug et andet ord eller udtryk.",
+ "results_with_count": {
+ "one": "{{ count }} resultat",
+ "other": "{{ count }} resultater"
+ },
+ "title": "Søgeresultater",
+ "page": "Side",
+ "products": "Produkter",
+ "search_for": "Søg efter “{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "Der blev fundet {{ count }} resultat for “{{ terms }}”",
+ "other": "Der blev fundet {{ count }} resultater for “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} side",
+ "other": "{{ count }} sider"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkter"
+ },
+ "suggestions": "Forslag",
+ "pages": "Sider",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} forslag",
+ "other": "{{ count }} forslag"
+ }
+ },
+ "cart": {
+ "cart": "Indkøbskurv"
+ },
+ "contact": {
+ "form": {
+ "name": "Navn",
+ "email": "Mailadresse",
+ "phone": "Telefonnummer",
+ "comment": "Kommentar",
+ "send": "Send",
+ "post_success": "Tak for din henvendelse. Vi kontakter dig hurtigst muligt.",
+ "error_heading": "Juster følgende:",
+ "title": "Kontaktformular"
+ }
+ },
+ "404": {
+ "title": "Siden blev ikke fundet",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Meddelelse",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} vare",
+ "other": "{{ count }} varer"
+ }
+ },
+ "cart": {
+ "title": "Din indkøbskurv",
+ "caption": "Varer i indkøbskurv",
+ "remove_title": "Fjern {{ title }}",
+ "note": "Særlige instruktioner til ordre",
+ "checkout": "Gå til betaling",
+ "empty": "Din indkøbskurv er tom",
+ "cart_error": "Der opstod en fejl under opdatering af din indkøbskurv. Prøv igen.",
+ "cart_quantity_error_html": "Du kan kun lægge {{ quantity }} af denne vare i indkøbskurven.",
+ "taxes_and_shipping_policy_at_checkout_html": "Skatter, rabatter og levering beregnes ved betaling",
+ "taxes_included_but_shipping_at_checkout": "Inklusive skat. Levering og rabatter beregnes ved betaling",
+ "taxes_included_and_shipping_policy_html": "Inklusive skat. Levering og rabatter beregnes ved betaling.",
+ "taxes_and_shipping_at_checkout": "Skatter, rabatter og levering beregnes ved betaling",
+ "headings": {
+ "product": "Produkt",
+ "price": "Pris",
+ "total": "I alt",
+ "quantity": "Antal",
+ "image": "Produktbillede"
+ },
+ "update": "Opdater",
+ "login": {
+ "title": "Har du en konto?",
+ "paragraph_html": "Log ind for at betale hurtigere."
+ },
+ "estimated_total": "Estimeret totalbeløb",
+ "new_estimated_total": "Ny estimeret totalbeløb"
+ },
+ "footer": {
+ "payment": "Betalingsmetoder"
+ },
+ "featured_blog": {
+ "view_all": "Se alle",
+ "onboarding_title": "Blogopslag",
+ "onboarding_content": "Giv dine kunder en oversigt over dit blogopslag"
+ },
+ "featured_collection": {
+ "view_all": "Se alle",
+ "view_all_label": "Se alle produkter i kollektionen {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Se alle"
+ },
+ "collection_template": {
+ "title": "Kollektion",
+ "empty": "Der blev ikke fundet nogen produkter",
+ "use_fewer_filters_html": "Brug færre filtre, eller fjern alle "
+ },
+ "video": {
+ "load_video": "Indlæs video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Indlæs dias",
+ "previous_slideshow": "Forrige dias",
+ "next_slideshow": "Næste dias",
+ "pause_slideshow": "Sæt diasshow på pause",
+ "play_slideshow": "Afspil diasshow",
+ "carousel": "Karrusel",
+ "slide": "Dias"
+ },
+ "page": {
+ "title": "Sidetitel"
+ },
+ "announcements": {
+ "previous_announcement": "Forrige meddelelse",
+ "next_announcement": "Næste meddelelse",
+ "carousel": "Karrusel",
+ "announcement": "Meddelelse",
+ "announcement_bar": "Meddelelseslinje"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotal for produkt",
+ "view_cart": "Se indkøbskurv",
+ "each": "{{ money }}/stk.",
+ "product": "Produkt",
+ "variant": "Variant",
+ "variant_total": "Variant i alt",
+ "items_added": {
+ "one": "{{ quantity }} vare tilføjet",
+ "other": "{{ quantity }} varer tilføjet"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} vare fjernet",
+ "other": "{{ quantity }} varer fjernet"
+ },
+ "product_variants": "Produktvarianter",
+ "total_items": "Varer i alt",
+ "remove_all_items_confirmation": "Vil du fjerne alle {{ quantity }} varer fra din indkøbskurv?",
+ "remove_all": "Fjern alle",
+ "cancel": "Annuller"
+ }
+ },
+ "localization": {
+ "country_label": "Land/område",
+ "language_label": "Sprog",
+ "update_language": "Opdater sprog",
+ "update_country": "Opdater land/område"
+ },
+ "customer": {
+ "account": {
+ "title": "Konto",
+ "details": "Kontooplysninger",
+ "view_addresses": "Se adresser",
+ "return": "Tilbage til kontooplysninger"
+ },
+ "account_fallback": "Konto",
+ "activate_account": {
+ "title": "Aktivér konto",
+ "subtext": "Opret en adgangskode, så du kan aktivere din konto.",
+ "password": "Adgangskode",
+ "password_confirm": "Bekræft adgangskode",
+ "submit": "Aktivér konto",
+ "cancel": "Afslå invitation"
+ },
+ "addresses": {
+ "title": "Adresser",
+ "default": "Standard",
+ "add_new": "Tilføj en ny adresse",
+ "edit_address": "Rediger adresse",
+ "first_name": "Fornavn",
+ "last_name": "Efternavn",
+ "company": "Firma",
+ "address1": "Adresse 1",
+ "address2": "Adresse 2",
+ "city": "By",
+ "country": "Land/område",
+ "province": "Provins",
+ "zip": "Postnummer",
+ "phone": "Telefon",
+ "set_default": "Indstil som standardadresse",
+ "add": "Tilføj adresse",
+ "update": "Opdater adresse",
+ "cancel": "Annuller",
+ "edit": "Rediger",
+ "delete": "Slet",
+ "delete_confirm": "Er du sikker på, at du vil slette denne adresse?"
+ },
+ "log_in": "Log ind",
+ "log_out": "Log af",
+ "login_page": {
+ "cancel": "Annuller",
+ "create_account": "Opret konto",
+ "email": "Mailadresse",
+ "forgot_password": "Har du glemt din adgangskode?",
+ "guest_continue": "Fortsæt",
+ "guest_title": "Fortsæt som gæst",
+ "password": "Adgangskode",
+ "title": "Login",
+ "sign_in": "Log ind",
+ "submit": "Indsend"
+ },
+ "orders": {
+ "title": "Ordrehistorik",
+ "order_number": "Ordre",
+ "order_number_link": "Ordrenummer {{ number }}",
+ "date": "Dato",
+ "payment_status": "Betalingsstatus",
+ "fulfillment_status": "Klargøringsstatus",
+ "total": "I alt",
+ "none": "Du har ikke afgivet nogen ordrer endnu."
+ },
+ "recover_password": {
+ "title": "Nulstil din adgangskode",
+ "subtext": "Vi sender dig en mail, så du kan forny din adgangskode",
+ "success": "Vi har sendt dig en mail med et link, så du kan opdatere din adgangskode."
+ },
+ "register": {
+ "title": "Opret konto",
+ "first_name": "Fornavn",
+ "last_name": "Efternavn",
+ "email": "Mailadresse",
+ "password": "Adgangskode",
+ "submit": "Opret"
+ },
+ "reset_password": {
+ "title": "Forny adgangskode til konto",
+ "subtext": "Indtast en ny adgangskode",
+ "password": "Adgangskode",
+ "password_confirm": "Bekræft adgangskode",
+ "submit": "Nulstil adgangskode"
+ },
+ "order": {
+ "title": "Ordre {{ name }}",
+ "date_html": "Afgivet den {{ date }}",
+ "cancelled_html": "Ordre annulleret den {{ date }}",
+ "cancelled_reason": "Årsag: {{ reason }}",
+ "billing_address": "Faktureringsadresse",
+ "payment_status": "Betalingsstatus",
+ "shipping_address": "Leveringsadresse",
+ "fulfillment_status": "Klargøringsstatus",
+ "discount": "Rabat",
+ "shipping": "Levering",
+ "tax": "Moms",
+ "product": "Produkt",
+ "sku": "SKU",
+ "price": "Pris",
+ "quantity": "Antal",
+ "total": "I alt",
+ "fulfilled_at_html": "Klargjort den {{ date }}",
+ "track_shipment": "Følg forsendelse",
+ "tracking_url": "Sporingslink",
+ "tracking_company": "Fragtfirma",
+ "tracking_number": "Trackingnummer",
+ "subtotal": "Subtotal",
+ "total_duties": "Told",
+ "total_refunded": "Refunderet"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Her er din gavekortsaldo ({{ value }}) for {{ shop }}!",
+ "subtext": "Dit gavekort",
+ "gift_card_code": "Gavekortskode",
+ "shop_link": "Besøg webshop",
+ "add_to_apple_wallet": "Føj til Apple Wallet",
+ "qr_image_alt": "QR-kode – scan for at indløse gavekort",
+ "copy_code": "Kopiér gavekortskode",
+ "expired": "Udløbet",
+ "copy_code_success": "Koden er blevet kopieret",
+ "how_to_use_gift_card": "Brug gavekortkoden online eller som QR-kode i butikken",
+ "expiration_date": "Udløber {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Jeg vil sende som en gave",
+ "email_label": "Modtagers mailadresse",
+ "email": "Mail",
+ "name_label": "Modtagerens navn (valgfrit)",
+ "name": "Navn",
+ "message_label": "Besked (valgfrit)",
+ "message": "Besked",
+ "max_characters": "Højst {{ max_chars }} tegn",
+ "email_label_optional_for_no_js_behavior": "Modtagerens mailadresse (valgfrit)",
+ "send_on": "ÅÅÅÅ-MM-DD",
+ "send_on_label": "Send (valgfrit)",
+ "expanded": "Formularen til modtager af gavekort er vist",
+ "collapsed": "Formularen til modtager af gavekort er skjult"
+ }
+ }
+}
diff --git a/locales/da.schema.json b/locales/da.schema.json
new file mode 100644
index 0000000..3132cb0
--- /dev/null
+++ b/locales/da.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Farver",
+ "settings": {
+ "background": {
+ "label": "Baggrund"
+ },
+ "background_gradient": {
+ "label": "Baggrundsgraduering",
+ "info": "Baggrundsgraduering erstatter baggrunden, hvor det er muligt."
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_background": {
+ "label": "Udfyldt knapbaggrund"
+ },
+ "button_label": {
+ "label": "Udfyldt knaptekst"
+ },
+ "secondary_button_label": {
+ "label": "Rammeknap"
+ },
+ "shadow": {
+ "label": "Skygge"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografi",
+ "settings": {
+ "type_header_font": {
+ "label": "Skrifttype",
+ "info": "Valget af en anden skrifttype kan påvirke hastigheden i din butik. [Få mere at vide om systemskrifttyper.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Overskrifter"
+ },
+ "header__2": {
+ "content": "Brødtekst"
+ },
+ "type_body_font": {
+ "label": "Skrifttype",
+ "info": "Valget af en anden skrifttype kan påvirke hastigheden i din butik. [Få mere at vide om systemskrifttyper.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Størrelsesskala for skrifttype"
+ },
+ "body_scale": {
+ "label": "Størrelsesskala for skrifttype"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Sociale medier",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "SoMe-konti"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Valutaformat",
+ "settings": {
+ "content": "Valutakoder",
+ "currency_code_enabled": {
+ "label": "Vis valutakoder"
+ },
+ "paragraph": "Priser i indkøbskurv og betalingsproces viser altid valutakoder. Eksempel: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Layout",
+ "settings": {
+ "page_width": {
+ "label": "Sidebredde"
+ },
+ "spacing_sections": {
+ "label": "Mellemrum mellem skabelonafsnit"
+ },
+ "header__grid": {
+ "content": "Gitter"
+ },
+ "paragraph__grid": {
+ "content": "Påvirker områder med flere kolonner eller rækker."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Lodret afstand"
+ },
+ "spacing_grid_vertical": {
+ "label": "Vandret afstand"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Søgeadfærd",
+ "settings": {
+ "header": {
+ "content": "Søgningsforslag"
+ },
+ "predictive_search_enabled": {
+ "label": "Aktivér søgningsforslag"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Vis produktforhandler",
+ "info": "Synlig, når søgningsforslag er aktiveret."
+ },
+ "predictive_search_show_price": {
+ "label": "Vis produktpris",
+ "info": "Synlig, når søgningsforslag er aktiveret."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Kant"
+ },
+ "header__shadow": {
+ "content": "Skygge"
+ },
+ "blur": {
+ "label": "Slør"
+ },
+ "corner_radius": {
+ "label": "Hjørneradius"
+ },
+ "horizontal_offset": {
+ "label": "Vandret forskydning"
+ },
+ "vertical_offset": {
+ "label": "Lodret forskydning"
+ },
+ "thickness": {
+ "label": "Tykkelse"
+ },
+ "opacity": {
+ "label": "Uigennemsigtighed"
+ },
+ "image_padding": {
+ "label": "Billedmargen"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Tekstjustering"
+ }
+ }
+ },
+ "badges": {
+ "name": "Badges",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Nederst til venstre"
+ },
+ "options__2": {
+ "label": "Nederst til højre"
+ },
+ "options__3": {
+ "label": "Øverst til venstre"
+ },
+ "options__4": {
+ "label": "Øverst til højre"
+ },
+ "label": "Placering på kort"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Farveskema for udsalg-badges"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Farveskema for udsolgt-badges"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knapper"
+ },
+ "variant_pills": {
+ "name": "Variantetiketter",
+ "paragraph": "Variantetiketter er en måde at vise dine produktvarianter på. [Få mere at vide](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Inputs"
+ },
+ "content_containers": {
+ "name": "Objektbeholder til indhold"
+ },
+ "popups": {
+ "name": "Rullemenuer og pop-ops",
+ "paragraph": "Påvirker områder som navigationsrullemenuer, pop op-modusser og indkøbskurve som pop-ops."
+ },
+ "media": {
+ "name": "Medie"
+ },
+ "drawers": {
+ "name": "Skuffer"
+ },
+ "cart": {
+ "name": "Indkøbskurv",
+ "settings": {
+ "cart_type": {
+ "label": "Indkøbskurvtype",
+ "drawer": {
+ "label": "Skuffe"
+ },
+ "page": {
+ "label": "Side"
+ },
+ "notification": {
+ "label": "Pop op-meddelelse"
+ }
+ },
+ "show_vendor": {
+ "label": "Vis forhandler"
+ },
+ "show_cart_note": {
+ "label": "Aktivér bemærkning til indkøbskurv"
+ },
+ "cart_drawer": {
+ "header": "Indkøbskurvskuffe",
+ "collection": {
+ "label": "Kollektion",
+ "info": "Synlig, når indkøbskurvskuffen er tom."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Produktkort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Kollektionskort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Blogkort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Logobredde på computer",
+ "info": "Logobredden optimeres automatisk til mobiltelefoner."
+ },
+ "favicon": {
+ "label": "Billede for favoritikon",
+ "info": "Skaleres ned til 32 x 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Brandoplysninger",
+ "settings": {
+ "brand_headline": {
+ "label": "Overskrift"
+ },
+ "brand_description": {
+ "label": "Beskrivelse"
+ },
+ "brand_image": {
+ "label": "Billede"
+ },
+ "brand_image_width": {
+ "label": "Billedbredde"
+ },
+ "paragraph": {
+ "content": "Føj en brandbeskrivelse til din butiks sidefod."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animationer",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Afslør afsnit ved rulning"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Lodret løft"
+ },
+ "label": "Svæveeffekt",
+ "info": "Påvirker kort og knapper.",
+ "options__3": {
+ "label": "3D-løft"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Indre margen, afsnit",
+ "padding_top": "Indre margen, top",
+ "padding_bottom": "Indre margen, bund"
+ },
+ "spacing": "Mellemrum",
+ "colors": {
+ "label": "Farveskema",
+ "has_cards_info": "Hvis du vil ændre farveskemaet for kort, skal du opdatere dine temaindstillinger."
+ },
+ "heading_size": {
+ "label": "Størrelse for overskrift",
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "options__4": {
+ "label": "Ekstra stor"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Bue"
+ },
+ "options__3": {
+ "label": "Blob"
+ },
+ "options__4": {
+ "label": "Venstre chevron"
+ },
+ "options__5": {
+ "label": "Højre chevron"
+ },
+ "options__6": {
+ "label": "Diamant"
+ },
+ "options__7": {
+ "label": "Parallelogram"
+ },
+ "options__8": {
+ "label": "Rund"
+ },
+ "label": "Billedform",
+ "info": "Kort i standardstil har ingen kanter, når en billedform er aktiv."
+ },
+ "animation": {
+ "content": "Animationer",
+ "image_behavior": {
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Omgivende bevægelse"
+ },
+ "label": "Billedadfærd",
+ "options__3": {
+ "label": "Fast baggrundsplacering"
+ },
+ "options__4": {
+ "label": "Zoom ind på rullefelt"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Meddelelseslinje",
+ "blocks": {
+ "announcement": {
+ "name": "Meddelelse",
+ "settings": {
+ "text": {
+ "label": "Tekstfarve"
+ },
+ "text_alignment": {
+ "label": "Tekstjustering",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ }
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Roter meddelelser automatisk"
+ },
+ "change_slides_speed": {
+ "label": "Skift hver"
+ },
+ "header__1": {
+ "content": "Ikoner for sociale medier",
+ "info": "Hvis du vil vise dine konti på sociale medier, skal du linke dem i dine [temaindstillinger](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Meddelelser"
+ },
+ "show_social": {
+ "label": "Vis ikoner på skrivebordet"
+ },
+ "header__3": {
+ "content": "Lande-/områdevælger",
+ "info": "Hvis du vil tilføje et land/område, skal du gå til dine [markedsindstillinger.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Aktivér lande-/områdevælger"
+ },
+ "header__4": {
+ "content": "Sprogvælger",
+ "info": "Hvis du vil tilføje et sprog, skal du gå til dine [sprogindstillinger.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Aktivér sprogvælger"
+ }
+ },
+ "presets": {
+ "name": "Meddelelseslinje"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "desktop_layout": {
+ "label": "Skrivebordslayout",
+ "options__1": {
+ "label": "Stor blok til venstre"
+ },
+ "options__2": {
+ "label": "Stor blok til højre"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobillayout",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Kolonne"
+ }
+ },
+ "card_styles": {
+ "label": "Kortstilart",
+ "info": "Produkt-,\nkollektion- og blogkortstil kan opdateres i temaindstillingerne.",
+ "options__1": {
+ "label": "Brug individuel kortstil"
+ },
+ "options__2": {
+ "label": "Style alle som produktkort"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Billede",
+ "settings": {
+ "image": {
+ "label": "Billede"
+ }
+ }
+ },
+ "product": {
+ "name": "Produkt",
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Vis sekundær baggrund"
+ },
+ "second_image": {
+ "label": "Vis sekundær baggrund, når der peges"
+ }
+ }
+ },
+ "collection": {
+ "name": "Kollektion",
+ "settings": {
+ "collection": {
+ "label": "Kollektion"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Coverbillede"
+ },
+ "video_url": {
+ "label": "Webadresse",
+ "info": "Videoer afspilles i et pop op-vindue, hvis afsnittet indeholder andre blokke.",
+ "placeholder": "Brug en YouTube- eller Vimeo-webadresse"
+ },
+ "description": {
+ "label": "Alternativ tekst til video",
+ "info": "Beskriv videoen for kunder med en skærmlæser. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Kollektionsliste",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Firkantet"
+ },
+ "info": "Tilføj billeder ved at redigere dine kollektioner. [Få mere at vide](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Aktivér swipe på mobilen"
+ },
+ "show_view_all": {
+ "label": "Aktivér knappen \"Se alle\", hvis en liste indeholder flere kollektioner, end der vises"
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Kollektion",
+ "settings": {
+ "collection": {
+ "label": "Kollektion"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kollektionsliste"
+ }
+ },
+ "contact-form": {
+ "name": "Kontaktformular",
+ "presets": {
+ "name": "Kontaktformular"
+ }
+ },
+ "custom-liquid": {
+ "name": "Tilpasset Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid-kode",
+ "info": "Tilføj appkodestykker eller anden kode for at oprette avancerede tilpasninger. [Få mere at vide](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Tilpasset Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blogopslag",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Antallet af blogopslag, der skal vises"
+ },
+ "show_view_all": {
+ "label": "Aktivér knappen \"Se alle\", hvis bloggen indeholder flere blogopslag, end der vises"
+ },
+ "show_image": {
+ "label": "Vis udvalgt billede",
+ "info": "Brug et billede med et højde-bredde-forhold på 3:2 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Vis dato"
+ },
+ "show_author": {
+ "label": "Vis forfatter"
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ }
+ },
+ "presets": {
+ "name": "Blogopslag"
+ }
+ },
+ "featured-collection": {
+ "name": "Udvalgt kollektion",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "collection": {
+ "label": "Kollektion"
+ },
+ "products_to_show": {
+ "label": "Maksimalt antal produkter, der skal vises"
+ },
+ "show_view_all": {
+ "label": "Aktivér “Se alle”, hvis kollektionen indeholder flere produkter, end der vises"
+ },
+ "header": {
+ "content": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Firkantet"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundær baggrund, når der peges"
+ },
+ "show_vendor": {
+ "label": "Vis forhandler"
+ },
+ "show_rating": {
+ "label": "Vis produktbedømmelser",
+ "info": "Hvis du vil vise bedømmelser, skal du tilføje en app til produktbedømmelse. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Aktivér knap til hurtig tilføjelse",
+ "info": "Optimal med indkøbskurv som pop op-vindue eller skuffe."
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "description": {
+ "label": "Beskrivelse"
+ },
+ "show_description": {
+ "label": "Vis kollektionsbeskrivelse fra administratoren"
+ },
+ "description_style": {
+ "label": "Beskrivelsesstil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Underoverskrift"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Rammeknap"
+ },
+ "options__3": {
+ "label": "Udfyldt knap"
+ },
+ "label": "Stilarten “Se alle”"
+ },
+ "enable_desktop_slider": {
+ "label": "Aktivér karrusel på computer"
+ },
+ "full_width": {
+ "label": "Gør produkter til fuld bredde"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Aktivér swipe på mobilen"
+ }
+ },
+ "presets": {
+ "name": "Udvalgt kollektion"
+ }
+ },
+ "footer": {
+ "name": "Sidefod",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Viser kun menupunkter på øverste niveau."
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "subtext": {
+ "label": "Undertekst"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Brandoplysninger",
+ "settings": {
+ "paragraph": {
+ "content": "Denne blok vil vise dine brandoplysninger. (Rediger brandoplysninger.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Ikoner for sociale medier"
+ },
+ "show_social": {
+ "label": "Vis ikoner for sociale medier",
+ "info": "Hvis du vil vise dine konti på sociale medier, skal du linke dem i dine [temaindstillinger](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Vis tilmelding med mail"
+ },
+ "newsletter_heading": {
+ "label": "Overskrift"
+ },
+ "header__1": {
+ "content": "Tilmelding med mail",
+ "info": "Abonnenter, der automatisk er føjet til kundelisten “Accepterer markedsføring”. [Få mere at vide](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Ikoner for sociale medier",
+ "info": "Hvis du vil vise dine konti på sociale medier, skal du linke dem i dine [temaindstillinger](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Vis ikoner for sociale medier"
+ },
+ "header__3": {
+ "content": "Land/område-vælger"
+ },
+ "header__4": {
+ "info": "Hvis du vil tilføje et land/område, skal du gå til dine [markedsindstillinger.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Aktivér land/område-vælger"
+ },
+ "header__5": {
+ "content": "Sprogvælger"
+ },
+ "header__6": {
+ "info": "Hvis du vil tilføje et sprog, skal du gå til dine [sprogindstillinger](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Aktivér sprogvælger"
+ },
+ "header__7": {
+ "content": "Betalingsmetoder"
+ },
+ "payment_enable": {
+ "label": "Vis betalingsikoner"
+ },
+ "margin_top": {
+ "label": "Øverste margen"
+ },
+ "header__8": {
+ "content": "Links til politikker",
+ "info": "Gå til dine [politikindstillinger](/admin/settings/legal) for at tilføje butikspolitikker."
+ },
+ "show_policy": {
+ "label": "Vis links til politikker"
+ },
+ "header__9": {
+ "content": "Følg på Shop",
+ "info": "Hvis du vil give kunder mulighed for at følge din butik i Shop-appen via dit butikslayout, skal du have aktiveret Shop Pay. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Aktivér Følg på Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Sidehoved",
+ "settings": {
+ "logo_position": {
+ "label": "Placering af logo på computer",
+ "options__1": {
+ "label": "Midt på til venstre"
+ },
+ "options__2": {
+ "label": "Øverst til venstre"
+ },
+ "options__3": {
+ "label": "Øverst i midten"
+ },
+ "options__4": {
+ "label": "Midt på centreret"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Vis adskillelseslinje"
+ },
+ "margin_bottom": {
+ "label": "Nederste margen"
+ },
+ "menu_type_desktop": {
+ "label": "Computermenutype",
+ "info": "Menutypen optimeres automatisk til mobil.",
+ "options__1": {
+ "label": "Rullemenu"
+ },
+ "options__2": {
+ "label": "Megamenu"
+ },
+ "options__3": {
+ "label": "Skuffe"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobillayout"
+ },
+ "mobile_logo_position": {
+ "label": "Placering af logo på mobiltelefon",
+ "options__1": {
+ "label": "Centreret"
+ },
+ "options__2": {
+ "label": "Venstre"
+ }
+ },
+ "logo_help": {
+ "content": "Rediger dit logo i [temaindstillinger](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Fastgjort sidehoved",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Ved oprulning"
+ },
+ "options__3": {
+ "label": "Altid"
+ },
+ "options__4": {
+ "label": "Altid, reducer størrelsen på logo"
+ }
+ },
+ "header__3": {
+ "content": "Lande-/områdevælger"
+ },
+ "header__4": {
+ "info": "Hvis du vil tilføje et land/område, skal du gå til dine [markedsindstillinger.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Aktivér lande-/områdevælger"
+ },
+ "header__5": {
+ "content": "Sprogvælger"
+ },
+ "header__6": {
+ "info": "Hvis du vil tilføje et sprog, skal du gå til dine [sprogindstillinger.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Aktivér sprogvælger"
+ },
+ "header__1": {
+ "content": "Farve"
+ },
+ "menu_color_scheme": {
+ "label": "Farveskema for menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Billedbanner",
+ "settings": {
+ "image": {
+ "label": "Første billede"
+ },
+ "image_2": {
+ "label": "Andet billede"
+ },
+ "stack_images_on_mobile": {
+ "label": "Stabl billeder på mobilenheder"
+ },
+ "show_text_box": {
+ "label": "Vis container på skrivebord"
+ },
+ "image_overlay_opacity": {
+ "label": "Billedoverlejringens uigennemsigtighed"
+ },
+ "show_text_below": {
+ "label": "Vis container på mobiltelefon"
+ },
+ "image_height": {
+ "label": "Bannerhøjde",
+ "options__1": {
+ "label": "Tilpas til første billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Mellem"
+ },
+ "info": "Brug et billede med et højde-bredde-forhold på 3:2 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Øverst til venstre"
+ },
+ "options__2": {
+ "label": "Øverst i midten"
+ },
+ "options__3": {
+ "label": "Øverst til højre"
+ },
+ "options__4": {
+ "label": "Midt på til venstre"
+ },
+ "options__5": {
+ "label": "Midt på centreret"
+ },
+ "options__6": {
+ "label": "Midt på til højre"
+ },
+ "options__7": {
+ "label": "Nederst til venstre"
+ },
+ "options__8": {
+ "label": "Nederst i midten"
+ },
+ "options__9": {
+ "label": "Nederst til højre"
+ },
+ "label": "Placering af indhold på computer"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på computer"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på mobil"
+ },
+ "mobile": {
+ "content": "Mobillayout"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Beskrivelse"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ },
+ "label": "Teksttypografi"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knapper",
+ "settings": {
+ "button_label_1": {
+ "label": "Første knaptekst",
+ "info": "Lad feltet være tomt for at skjule knappen."
+ },
+ "button_link_1": {
+ "label": "Første knaplink"
+ },
+ "button_style_secondary_1": {
+ "label": "Brug rammeknaptypografi"
+ },
+ "button_label_2": {
+ "label": "Anden knaptekst",
+ "info": "Lad feltet være tomt for at skjule knappen."
+ },
+ "button_link_2": {
+ "label": "Andet knaplink"
+ },
+ "button_style_secondary_2": {
+ "label": "Brug rammeknaptypografi"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Billedbanner"
+ }
+ },
+ "image-with-text": {
+ "name": "Billede med tekst",
+ "settings": {
+ "image": {
+ "label": "Billede"
+ },
+ "height": {
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Mellem"
+ },
+ "label": "Billedhøjde",
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Billede først"
+ },
+ "options__2": {
+ "label": "Andet billede"
+ },
+ "label": "Billedplacering på computer",
+ "info": "Billede først er standardmobillayoutet."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Billedbredde på computer",
+ "info": "Billedet er automatisk optimeret til mobiltelefoner."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på computer",
+ "options__2": {
+ "label": "Centreret"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Top"
+ },
+ "options__2": {
+ "label": "I midten"
+ },
+ "options__3": {
+ "label": "Bund"
+ },
+ "label": "Placering af indhold på computer"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Ingen overlapning"
+ },
+ "options__2": {
+ "label": "Overlapning"
+ },
+ "label": "Indholdslayout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på mobil",
+ "options__2": {
+ "label": "Centreret"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Indhold"
+ },
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Knap",
+ "settings": {
+ "button_label": {
+ "label": "Knaptekst",
+ "info": "Lad feltet være tomt for at skjule knappen."
+ },
+ "button_link": {
+ "label": "Knaplink"
+ },
+ "outline_button": {
+ "label": "Brug rammeknaptypografi"
+ }
+ }
+ },
+ "caption": {
+ "name": "Billedtekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Underoverskrift"
+ },
+ "options__2": {
+ "label": "Store bogstaver"
+ }
+ },
+ "caption_size": {
+ "label": "Tekststørrelse",
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Billede med tekst"
+ }
+ },
+ "main-article": {
+ "name": "Blogopslag",
+ "blocks": {
+ "featured_image": {
+ "name": "Udvalgt billede",
+ "settings": {
+ "image_height": {
+ "label": "Højde på udvalgt billede",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "info": "Brug et billede med et højde-bredde-forhold på 16:9 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Stor"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel",
+ "settings": {
+ "blog_show_date": {
+ "label": "Vis dato"
+ },
+ "blog_show_author": {
+ "label": "Vis forfatter"
+ }
+ }
+ },
+ "content": {
+ "name": "Indhold"
+ },
+ "share": {
+ "name": "Del",
+ "settings": {
+ "featured_image_info": {
+ "content": "Hvis du inkluderer et link i opslag på sociale medier, vil sidens udvalgte billede blive vist som billedeksempel. [Få mere at vide](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Der er inkluderet en butikstitel og -beskrivelse med billedeksemplet. [Få mere at vide](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blogopslag",
+ "settings": {
+ "header": {
+ "content": "Kort med blogopslag"
+ },
+ "show_image": {
+ "label": "Vis udvalgt billede"
+ },
+ "paragraph": {
+ "content": "Skift uddrag ved at redigere dine blogopslag. [Få mere at vide](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Vis dato"
+ },
+ "show_author": {
+ "label": "Vis forfatter"
+ },
+ "layout": {
+ "label": "Layout til computer",
+ "options__1": {
+ "label": "Gitter"
+ },
+ "options__2": {
+ "label": "Kollage"
+ },
+ "info": "Opslag stables på mobilen."
+ },
+ "image_height": {
+ "label": "Højde på udvalgt billede",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "info": "Brug et billede med et højde-bredde-forhold på 3:2 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotal",
+ "blocks": {
+ "subtotal": {
+ "name": "Subtotal"
+ },
+ "buttons": {
+ "name": "Betalingsknap"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Varer"
+ },
+ "main-collection-banner": {
+ "name": "Kollektionsbanner",
+ "settings": {
+ "paragraph": {
+ "content": "Tilføj en beskrivelse eller et billede ved at redigere din kollektion. [Få mere at vide](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Vis kollektionsbeskrivelse"
+ },
+ "show_collection_image": {
+ "label": "Vis kollektionsbillede",
+ "info": "Brug et billede med et højde-bredde-forhold på 16:9 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Produktgitter",
+ "settings": {
+ "products_per_page": {
+ "label": "Produkter pr. side"
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Firkantet"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundær baggrund, når der peges"
+ },
+ "show_vendor": {
+ "label": "Vis forhandler"
+ },
+ "enable_tags": {
+ "label": "Aktivér filtrering",
+ "info": "Tilpas filtrene med appen Search & Discovery. [Få mere at vide](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Aktivér filtrering",
+ "info": "Tilpas filtrene med appen Search & Discovery. [Få mere at vide](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Aktivér sortering"
+ },
+ "header__1": {
+ "content": "Filtrering og sortering"
+ },
+ "header__3": {
+ "content": "Produktkort"
+ },
+ "show_rating": {
+ "label": "Vis produktbedømmelser",
+ "info": "Hvis du vil vise bedømmelser, skal du tilføje en app til produktbedømmelse. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Aktivér knap til hurtig tilføjelse",
+ "info": "Optimal med indkøbskurv som pop op-vindue eller skuffe."
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ },
+ "filter_type": {
+ "label": "Layout til computerfilter",
+ "options__1": {
+ "label": "Vandret"
+ },
+ "options__2": {
+ "label": "Lodret"
+ },
+ "options__3": {
+ "label": "Skuffe"
+ },
+ "info": "Skuffe er standardlayoutet til mobil."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Siden Kollektionsliste",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "sort": {
+ "label": "Sortér kollektioner efter:",
+ "options__1": {
+ "label": "Alfabetisk, A-Å"
+ },
+ "options__2": {
+ "label": "Alfabetisk, Å-A"
+ },
+ "options__3": {
+ "label": "Dato, nyere til ældre"
+ },
+ "options__4": {
+ "label": "Dato, ældre til nyere"
+ },
+ "options__5": {
+ "label": "Produktantal, høj til lav"
+ },
+ "options__6": {
+ "label": "Produktantal, lav til høj"
+ }
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Firkantet"
+ },
+ "info": "Tilføj billeder ved at redigere dine kollektioner. [Få mere at vide](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Side"
+ },
+ "main-password-footer": {
+ "name": "Sidefod på adgangskodeside"
+ },
+ "main-password-header": {
+ "name": "Sidehoved på adgangskodesiden",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Rediger dit logo i temaindstillinger."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Produktoplysninger",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekstfarve"
+ },
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Pris"
+ },
+ "quantity_selector": {
+ "name": "Antalsvælger"
+ },
+ "variant_picker": {
+ "name": "Variantvælger",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Rullemenu"
+ },
+ "options__2": {
+ "label": "Etiketter"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Køb-knapper",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Vis dynamiske betalingsknapper",
+ "info": "Via de tilgængelige betalingsmetoder i din butik ser kunderne deres foretrukne mulighed, som f.eks. PayPal eller Apple Pay. [Få mere at vide](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Vis formularer til modtageroplysninger for gavekort",
+ "info": "Giver købere mulighed for at sende gavekort på en planlagt dato sammen med en personlig besked. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Mulighed for afhentning"
+ },
+ "description": {
+ "name": "Beskrivelse"
+ },
+ "share": {
+ "name": "Del",
+ "settings": {
+ "featured_image_info": {
+ "content": "Hvis du inkluderer et link i opslag på sociale medier, vil sidens udvalgte billede blive vist som billedeksempel. [Få mere at vide](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Der er inkluderet en butikstitel og -beskrivelse med billedeksemplet. [Få mere at vide](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Række, der kan skjules",
+ "settings": {
+ "heading": {
+ "info": "Inkluder en overskrift, der forklarer indholdet.",
+ "label": "Overskrift"
+ },
+ "content": {
+ "label": "Rækkeindhold"
+ },
+ "page": {
+ "label": "Rækkeindhold fra side"
+ },
+ "icon": {
+ "label": "Ikon",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Æble"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Flaske"
+ },
+ "options__5": {
+ "label": "Æske"
+ },
+ "options__6": {
+ "label": "Gulerod"
+ },
+ "options__7": {
+ "label": "Chatboble"
+ },
+ "options__8": {
+ "label": "Flueben"
+ },
+ "options__9": {
+ "label": "Clipboard"
+ },
+ "options__10": {
+ "label": "Mejeri"
+ },
+ "options__11": {
+ "label": "Laktosefri"
+ },
+ "options__12": {
+ "label": "Tørrer"
+ },
+ "options__13": {
+ "label": "Øje"
+ },
+ "options__14": {
+ "label": "Ild"
+ },
+ "options__15": {
+ "label": "Glutenfri"
+ },
+ "options__16": {
+ "label": "Hjerte"
+ },
+ "options__17": {
+ "label": "Jern"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Læder"
+ },
+ "options__20": {
+ "label": "Lyn"
+ },
+ "options__21": {
+ "label": "Læbestift"
+ },
+ "options__22": {
+ "label": "Lås"
+ },
+ "options__23": {
+ "label": "Kortnål"
+ },
+ "options__24": {
+ "label": "Nøddefri"
+ },
+ "options__25": {
+ "label": "Bukser"
+ },
+ "options__26": {
+ "label": "Poteaftryk"
+ },
+ "options__27": {
+ "label": "Peber"
+ },
+ "options__28": {
+ "label": "Parfume"
+ },
+ "options__29": {
+ "label": "Fly"
+ },
+ "options__30": {
+ "label": "Plante"
+ },
+ "options__31": {
+ "label": "Prismærke"
+ },
+ "options__32": {
+ "label": "Spørgsmålstegn"
+ },
+ "options__33": {
+ "label": "Genanvendelse"
+ },
+ "options__34": {
+ "label": "Returnering"
+ },
+ "options__35": {
+ "label": "Lineal"
+ },
+ "options__36": {
+ "label": "Serveringsfad"
+ },
+ "options__37": {
+ "label": "Skjorte"
+ },
+ "options__38": {
+ "label": "Sko"
+ },
+ "options__39": {
+ "label": "Silhuet"
+ },
+ "options__40": {
+ "label": "Snefnug"
+ },
+ "options__41": {
+ "label": "Stjerne"
+ },
+ "options__42": {
+ "label": "Stopur"
+ },
+ "options__43": {
+ "label": "Lastbil"
+ },
+ "options__44": {
+ "label": "Vask"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-op",
+ "settings": {
+ "link_label": {
+ "label": "Navn på link"
+ },
+ "page": {
+ "label": "Side"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktvurdering",
+ "settings": {
+ "paragraph": {
+ "content": "Hvis du vil vise bedømmelser, skal du tilføje en app til produktbedømmelse. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Supplerende produkter",
+ "settings": {
+ "paragraph": {
+ "content": "Tilføj Search & Discovery-appen for at vælge supplerende produkter. [Få mere at vide](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "make_collapsible_row": {
+ "label": "Vis som række, der kan skjules"
+ },
+ "icon": {
+ "info": "Synlig, når rækken, der kan skjules, vises."
+ },
+ "product_list_limit": {
+ "label": "Maksimalt antal produkter, der skal vises"
+ },
+ "products_per_page": {
+ "label": "Antal produkter pr. side"
+ },
+ "pagination_style": {
+ "label": "Sideinddelingsstil",
+ "options": {
+ "option_1": "Prikker",
+ "option_2": "Tæller",
+ "option_3": "Tal"
+ }
+ },
+ "product_card": {
+ "heading": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options": {
+ "option_1": "Stående",
+ "option_2": "Kvadrat"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Aktivér knap til hurtig tilføjelse"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ikon med tekst",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Vandret"
+ },
+ "options__2": {
+ "label": "Lodret"
+ }
+ },
+ "content": {
+ "label": "Indhold",
+ "info": "Vælg et ikon, eller tilføj et billede for hver kolonne eller række."
+ },
+ "heading": {
+ "info": "Lad overskriftsfeltet være tomt for at skjule ikonkolonnen."
+ },
+ "icon_1": {
+ "label": "Første ikon"
+ },
+ "image_1": {
+ "label": "Første billede"
+ },
+ "heading_1": {
+ "label": "Første overskrift"
+ },
+ "icon_2": {
+ "label": "Andet ikon"
+ },
+ "image_2": {
+ "label": "Andet billede"
+ },
+ "heading_2": {
+ "label": "Anden overskrift"
+ },
+ "icon_3": {
+ "label": "Tredje ikon"
+ },
+ "image_3": {
+ "label": "Tredje billede"
+ },
+ "heading_3": {
+ "label": "Tredje overskrift"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Underoverskrift"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Lagerstatus",
+ "settings": {
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Underoverskrift"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Lav grænse for lagerbeholdning",
+ "info": "Vælg 0 for altid at vise på lager, hvis tilgængelig."
+ },
+ "show_inventory_quantity": {
+ "label": "Vis lagerantal"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Medie",
+ "info": "Få mere at vide om [medietyper.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Aktivér looping af videoer"
+ },
+ "enable_sticky_info": {
+ "label": "Aktivér klæbende indhold på computer"
+ },
+ "hide_variants": {
+ "label": "Skjul andre varianters medier, når du har valgt en variant"
+ },
+ "gallery_layout": {
+ "label": "Layout til computer",
+ "options__1": {
+ "label": "Stablet"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ },
+ "options__3": {
+ "label": "Miniaturer"
+ },
+ "options__4": {
+ "label": "Miniaturekarussel"
+ }
+ },
+ "media_size": {
+ "label": "Computermediets bredde",
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "info": "Medieindhold optimeres automatisk til mobil."
+ },
+ "mobile_thumbnails": {
+ "label": "Mobillayout",
+ "options__1": {
+ "label": "2 kolonner"
+ },
+ "options__2": {
+ "label": "Vis miniaturer"
+ },
+ "options__3": {
+ "label": "Skjul miniaturer"
+ }
+ },
+ "media_position": {
+ "label": "Placering af medie på computer",
+ "info": "Placeringen optimeres automatisk til mobil.",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Højre"
+ }
+ },
+ "image_zoom": {
+ "label": "Billedzoom",
+ "info": "Klik og hold musen over standarder for at åbne lightbox på mobilen.",
+ "options__1": {
+ "label": "Åbn lightbox"
+ },
+ "options__2": {
+ "label": "Klik og hold musen over"
+ },
+ "options__3": {
+ "label": "Ingen zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Begræns mediet til skærmhøjden"
+ },
+ "media_fit": {
+ "label": "Medietilpasning",
+ "options__1": {
+ "label": "Oprindelig"
+ },
+ "options__2": {
+ "label": "Udfyld"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Søgeresultater",
+ "settings": {
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Firkantet"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundær baggrund, når der peges"
+ },
+ "show_vendor": {
+ "label": "Vis forhandler"
+ },
+ "header__1": {
+ "content": "Produktkort"
+ },
+ "header__2": {
+ "content": "Blogkort",
+ "info": "Blogkortstile anvendes også på sidekort i søgeresultater. For at ændre kortstile skal du opdatere dine temaindstillinger."
+ },
+ "article_show_date": {
+ "label": "Vis dato"
+ },
+ "article_show_author": {
+ "label": "Vis forfatter"
+ },
+ "show_rating": {
+ "label": "Vis produktbedømmelser",
+ "info": "Hvis du vil vise bedømmelser, skal du tilføje en app til produktbedømmelse. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Flere kolonner",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "image_width": {
+ "label": "Billedbredde",
+ "options__1": {
+ "label": "En tredjedel af kolonnens bredde"
+ },
+ "options__2": {
+ "label": "Halvdelen af kolonnens bredde"
+ },
+ "options__3": {
+ "label": "Hele kolonnens bredde"
+ }
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Firkantet"
+ },
+ "options__4": {
+ "label": "Cirkel"
+ }
+ },
+ "column_alignment": {
+ "label": "Kolonnejustering",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ }
+ },
+ "background_style": {
+ "label": "Sekundær baggrund",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Vis som kolonnebaggrund"
+ }
+ },
+ "button_label": {
+ "label": "Knaptekst"
+ },
+ "button_link": {
+ "label": "Knaplink"
+ },
+ "swipe_on_mobile": {
+ "label": "Aktivér swipe på mobilen"
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Kolonne",
+ "settings": {
+ "image": {
+ "label": "Billede"
+ },
+ "title": {
+ "label": "Overskrift"
+ },
+ "text": {
+ "label": "Beskrivelse"
+ },
+ "link_label": {
+ "label": "Navn på link"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Flere kolonner"
+ }
+ },
+ "newsletter": {
+ "name": "Tilmelding med mail",
+ "settings": {
+ "full_width": {
+ "label": "Gør afsnittet til fuld bredde"
+ },
+ "paragraph": {
+ "content": "Alle mailabonnementer opretter en kundekonto. [Få mere at vide](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Underoverskrift",
+ "settings": {
+ "paragraph": {
+ "label": "Beskrivelse"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Mailformular"
+ }
+ },
+ "presets": {
+ "name": "Tilmelding med mail"
+ }
+ },
+ "page": {
+ "name": "Side",
+ "settings": {
+ "page": {
+ "label": "Side"
+ }
+ },
+ "presets": {
+ "name": "Side"
+ }
+ },
+ "rich-text": {
+ "name": "RTF",
+ "settings": {
+ "full_width": {
+ "label": "Gør afsnittet til fuld bredde"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Placering af indhold på computer",
+ "info": "Placeringen optimeres automatisk til mobil."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Indholdsjustering"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Beskrivelse"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knapper",
+ "settings": {
+ "button_label_1": {
+ "label": "Første knaptekst",
+ "info": "Lad feltet være tomt for at skjule knappen."
+ },
+ "button_link_1": {
+ "label": "Første knaplink"
+ },
+ "button_style_secondary_1": {
+ "label": "Brug rammeknaptypografi"
+ },
+ "button_label_2": {
+ "label": "Anden knaptekst",
+ "info": "Lad feltet være tomt for at skjule knappen."
+ },
+ "button_link_2": {
+ "label": "Andet knaplink"
+ },
+ "button_style_secondary_2": {
+ "label": "Brug rammeknaptypografi"
+ }
+ }
+ },
+ "caption": {
+ "name": "Billedtekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Underoverskrift"
+ },
+ "options__2": {
+ "label": "Store bogstaver"
+ }
+ },
+ "caption_size": {
+ "label": "Tekststørrelse",
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "RTF"
+ }
+ },
+ "apps": {
+ "name": "Apps",
+ "settings": {
+ "include_margins": {
+ "label": "Gør afsnitsmargener til det samme som tema"
+ }
+ },
+ "presets": {
+ "name": "Apps"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "cover_image": {
+ "label": "Coverbillede"
+ },
+ "video_url": {
+ "label": "Webadresse",
+ "info": "Brug en YouTube- eller Vimeo-webadresse"
+ },
+ "description": {
+ "label": "Alternativ tekst til video",
+ "info": "Beskriv videoen for kunder med en skærmlæser. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Tilføj billedmargen",
+ "info": "Vælg billedmargen, hvis du ikke vil have, at dit coverbillede bliver beskåret."
+ },
+ "full_width": {
+ "label": "Gør afsnittet til fuld bredde"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Afspil video i loop"
+ },
+ "header__1": {
+ "content": "Video hostet af Shopify"
+ },
+ "header__2": {
+ "content": "Eller integrer video fra webadresse"
+ },
+ "header__3": {
+ "content": "Stil"
+ },
+ "paragraph": {
+ "content": "Vises, når der ikke er valgt en video, der er hostet af Shopify."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Fremhævet produkt",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Pris"
+ },
+ "quantity_selector": {
+ "name": "Antalsvælger"
+ },
+ "variant_picker": {
+ "name": "Variantvælger",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Rullemenu"
+ },
+ "options__2": {
+ "label": "Etiketter"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Køb-knapper",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Vis dynamiske betalingsknapper",
+ "info": "Via de tilgængelige betalingsmetoder i din butik ser kunderne deres foretrukne mulighed, som f.eks. PayPal eller Apple Pay. [Få mere at vide](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Beskrivelse"
+ },
+ "share": {
+ "name": "Del",
+ "settings": {
+ "featured_image_info": {
+ "content": "Hvis du inkluderer et link i opslag på sociale medier, vil sidens udvalgte billede blive vist som billedeksempel. [Få mere at vide](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Der er inkluderet en butikstitel og -beskrivelse med billedeksemplet. [Få mere at vide](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktbedømmelser",
+ "settings": {
+ "paragraph": {
+ "content": "Hvis du vil vise bedømmelser, skal du tilføje en app til produktbedømmelse. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Teksttypografi",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Underoverskrift"
+ },
+ "options__3": {
+ "label": "Store bogstaver"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Vis sekundær baggrund"
+ },
+ "header": {
+ "content": "Medie",
+ "info": "Få mere at vide om [medietyper](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Aktivér looping af videoer"
+ },
+ "hide_variants": {
+ "label": "Skjul medier for ikke-valgte varianter på computer"
+ },
+ "media_position": {
+ "label": "Placering af medie på computer",
+ "info": "Placeringen optimeres automatisk til mobil.",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Højre"
+ }
+ }
+ },
+ "presets": {
+ "name": "Fremhævet produkt"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner for tilmelding med mail",
+ "settings": {
+ "paragraph": {
+ "content": "Alle mailabonnementer opretter en kundekonto. [Få mere at vide](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Baggrundsbillede"
+ },
+ "show_background_image": {
+ "label": "Vis baggrundsbillede"
+ },
+ "show_text_box": {
+ "label": "Vis container på skrivebord"
+ },
+ "image_overlay_opacity": {
+ "label": "Billedoverlejringens uigennemsigtighed"
+ },
+ "show_text_below": {
+ "label": "Vis indhold under billede på mobiltelefon",
+ "info": "Brug et billede med et højde-bredde-forhold på 16:9 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Bannerhøjde",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "info": "Brug et billede med et højde-bredde-forhold på 16:9 for at opnå det bedste resultat. [Få mere at vide](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "Midt på til venstre"
+ },
+ "options__5": {
+ "label": "Midt på centreret"
+ },
+ "options__6": {
+ "label": "Midt på til højre"
+ },
+ "options__7": {
+ "label": "Nederst til venstre"
+ },
+ "options__8": {
+ "label": "Nederst i midten"
+ },
+ "options__9": {
+ "label": "Nederst til højre"
+ },
+ "options__1": {
+ "label": "Øverst til venstre"
+ },
+ "options__2": {
+ "label": "Øverst i midten"
+ },
+ "options__3": {
+ "label": "Øverst til højre"
+ },
+ "label": "Placering af indhold på computer"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på computer"
+ },
+ "header": {
+ "content": "Mobillayout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på mobil"
+ },
+ "color_scheme": {
+ "info": "Synlig, når objektbeholderen vises."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Afsnit",
+ "settings": {
+ "paragraph": {
+ "label": "Beskrivelse"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "label": "Teksttypografi"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Mailformular"
+ }
+ },
+ "presets": {
+ "name": "Banner for tilmelding med mail"
+ }
+ },
+ "slideshow": {
+ "name": "Diasshow",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Fuld bredde"
+ },
+ "options__2": {
+ "label": "Gitter"
+ }
+ },
+ "slide_height": {
+ "label": "Diashøjde",
+ "options__1": {
+ "label": "Tilpas til første side"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "slider_visual": {
+ "label": "Sideinddeling – stil",
+ "options__1": {
+ "label": "Tæller"
+ },
+ "options__2": {
+ "label": "Prikker"
+ },
+ "options__3": {
+ "label": "Tal"
+ }
+ },
+ "auto_rotate": {
+ "label": "Roter automatisk slides"
+ },
+ "change_slides_speed": {
+ "label": "Skift slide hver"
+ },
+ "mobile": {
+ "content": "Mobillayout"
+ },
+ "show_text_below": {
+ "label": "Vis indhold under billeder på mobiltelefoner"
+ },
+ "accessibility": {
+ "content": "Tilgængelighed",
+ "label": "Beskrivelse af diasshow",
+ "info": "Beskriv diasshowet for kunder med en skærmlæser."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Slide",
+ "settings": {
+ "image": {
+ "label": "Billede"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "subheading": {
+ "label": "Underoverskrift"
+ },
+ "button_label": {
+ "label": "Knaptekst",
+ "info": "Lad feltet være tomt for at skjule knappen."
+ },
+ "link": {
+ "label": "Knaplink"
+ },
+ "secondary_style": {
+ "label": "Brug rammeknaptypografi"
+ },
+ "box_align": {
+ "label": "Placering af indhold på computer",
+ "options__1": {
+ "label": "Øverst til venstre"
+ },
+ "options__2": {
+ "label": "Øverst i midten"
+ },
+ "options__3": {
+ "label": "Øverst til højre"
+ },
+ "options__4": {
+ "label": "Midt på til venstre"
+ },
+ "options__5": {
+ "label": "Midt på centreret"
+ },
+ "options__6": {
+ "label": "Midt på til højre"
+ },
+ "options__7": {
+ "label": "Nederst til venstre"
+ },
+ "options__8": {
+ "label": "Nederst i midten"
+ },
+ "options__9": {
+ "label": "Nederst til højre"
+ },
+ "info": "Placeringen optimeres automatisk til mobil."
+ },
+ "show_text_box": {
+ "label": "Vis container på skrivebord"
+ },
+ "text_alignment": {
+ "label": "Justering af indhold på computer",
+ "option_1": {
+ "label": "Venstre"
+ },
+ "option_2": {
+ "label": "Centreret"
+ },
+ "option_3": {
+ "label": "Højre"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Billedoverlejringens uigennemsigtighed"
+ },
+ "text_alignment_mobile": {
+ "label": "Justering af indhold på mobil",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Diasshow"
+ }
+ },
+ "collapsible_content": {
+ "name": "Indhold, der kan skjules",
+ "settings": {
+ "caption": {
+ "label": "Billedtekst"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "heading_alignment": {
+ "label": "Justering af overskrift",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ }
+ },
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Ingen beholder"
+ },
+ "options__2": {
+ "label": "Objektbeholder til række"
+ },
+ "options__3": {
+ "label": "Objektbeholder til afsnit"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Åbn første række, der kan skjules"
+ },
+ "header": {
+ "content": "Billedlayout"
+ },
+ "image": {
+ "label": "Billede"
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ },
+ "desktop_layout": {
+ "label": "Skrivebordslayout",
+ "options__1": {
+ "label": "Billede først"
+ },
+ "options__2": {
+ "label": "Billede efterfølgende"
+ },
+ "info": "Billedet er altid først på mobiler."
+ },
+ "container_color_scheme": {
+ "label": "Objektbeholder til farveskema",
+ "info": "Synlig, når Layout er angivet til objektbeholder til Række eller Afsnit."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Række, der kan skjules",
+ "settings": {
+ "heading": {
+ "info": "Inkluder en overskrift, der forklarer indholdet.",
+ "label": "Overskrift"
+ },
+ "row_content": {
+ "label": "Rækkeindhold"
+ },
+ "page": {
+ "label": "Rækkeindhold fra side"
+ },
+ "icon": {
+ "label": "Ikon",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Æble"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Flaske"
+ },
+ "options__5": {
+ "label": "Æske"
+ },
+ "options__6": {
+ "label": "Gulerod"
+ },
+ "options__7": {
+ "label": "Chatboble"
+ },
+ "options__8": {
+ "label": "Flueben"
+ },
+ "options__9": {
+ "label": "Clipboard"
+ },
+ "options__10": {
+ "label": "Mejeri"
+ },
+ "options__11": {
+ "label": "Laktosefri"
+ },
+ "options__12": {
+ "label": "Tørrer"
+ },
+ "options__13": {
+ "label": "Øje"
+ },
+ "options__14": {
+ "label": "Ild"
+ },
+ "options__15": {
+ "label": "Glutenfri"
+ },
+ "options__16": {
+ "label": "Hjerte"
+ },
+ "options__17": {
+ "label": "Jern"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Læder"
+ },
+ "options__20": {
+ "label": "Lyn"
+ },
+ "options__21": {
+ "label": "Læbestift"
+ },
+ "options__22": {
+ "label": "Lås"
+ },
+ "options__23": {
+ "label": "Kortnål"
+ },
+ "options__24": {
+ "label": "Nøddefri"
+ },
+ "options__25": {
+ "label": "Bukser"
+ },
+ "options__26": {
+ "label": "Poteaftryk"
+ },
+ "options__27": {
+ "label": "Peber"
+ },
+ "options__28": {
+ "label": "Parfume"
+ },
+ "options__29": {
+ "label": "Fly"
+ },
+ "options__30": {
+ "label": "Plante"
+ },
+ "options__31": {
+ "label": "Prismærke"
+ },
+ "options__32": {
+ "label": "Spørgsmålstegn"
+ },
+ "options__33": {
+ "label": "Genanvendelse"
+ },
+ "options__34": {
+ "label": "Returnering"
+ },
+ "options__35": {
+ "label": "Lineal"
+ },
+ "options__36": {
+ "label": "Serveringsfad"
+ },
+ "options__37": {
+ "label": "Skjorte"
+ },
+ "options__38": {
+ "label": "Sko"
+ },
+ "options__39": {
+ "label": "Silhuet"
+ },
+ "options__40": {
+ "label": "Snefnug"
+ },
+ "options__41": {
+ "label": "Stjerne"
+ },
+ "options__42": {
+ "label": "Stopur"
+ },
+ "options__43": {
+ "label": "Lastbil"
+ },
+ "options__44": {
+ "label": "Vask"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Indhold, der kan skjules"
+ }
+ },
+ "main-account": {
+ "name": "Konto"
+ },
+ "main-activate-account": {
+ "name": "Aktivering af konto"
+ },
+ "main-addresses": {
+ "name": "Adresser"
+ },
+ "main-login": {
+ "name": "Login"
+ },
+ "main-order": {
+ "name": "Ordre"
+ },
+ "main-register": {
+ "name": "Registrering"
+ },
+ "main-reset-password": {
+ "name": "Nulstilling af adgangskode"
+ },
+ "related-products": {
+ "name": "Relaterede produkter",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "products_to_show": {
+ "label": "Maksimalt antal produkter, der skal vises"
+ },
+ "columns_desktop": {
+ "label": "Antallet af kolonner på computer"
+ },
+ "paragraph__1": {
+ "content": "Dynamiske anbefalinger bruger ordre- og produktoplysninger til at foretage ændringer og forbedringer med tiden. [Få mere at vide](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Billedforhold",
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Kvadrat"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundært billede, når der peges"
+ },
+ "show_vendor": {
+ "label": "Vis forhandler"
+ },
+ "show_rating": {
+ "label": "Vis produktbedømmelser",
+ "info": "Hvis du vil vise bedømmelser, skal du tilføje en app til produktbedømmelse. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antallet af kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Flere rækker",
+ "settings": {
+ "image": {
+ "label": "Billede"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Tilpas til billede"
+ },
+ "options__2": {
+ "label": "Lille"
+ },
+ "options__3": {
+ "label": "Mellem"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "label": "Billedhøjde"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Mellem"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Billedbredde på computer",
+ "info": "Billedet er automatisk optimeret til mobiltelefoner."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Lille"
+ },
+ "options__2": {
+ "label": "Mellem"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Størrelse for overskrift"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Underoverskrift"
+ },
+ "label": "Teksttypografi"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Udfyldt knap"
+ },
+ "options__2": {
+ "label": "Rammeknap"
+ },
+ "label": "Knaptypografi"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på computer"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Top"
+ },
+ "options__2": {
+ "label": "I midten"
+ },
+ "options__3": {
+ "label": "Bund"
+ },
+ "label": "Placering af indhold på computer",
+ "info": "Placeringen optimeres automatisk til mobil."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Skift fra venstre"
+ },
+ "options__2": {
+ "label": "Skift fra højre"
+ },
+ "options__3": {
+ "label": "Venstrejusteret"
+ },
+ "options__4": {
+ "label": "Højrejusteret"
+ },
+ "label": "Billedplacering på computer",
+ "info": "Placeringen er automatisk optimeret til mobiltelefoner."
+ },
+ "container_color_scheme": {
+ "label": "Objektbeholder til farveskema"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Centreret"
+ },
+ "options__3": {
+ "label": "Højre"
+ },
+ "label": "Justering af indhold på mobil"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Række",
+ "settings": {
+ "image": {
+ "label": "Billede"
+ },
+ "caption": {
+ "label": "Billedtekst"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "text": {
+ "label": "Sms"
+ },
+ "button_label": {
+ "label": "Knaptekst"
+ },
+ "button_link": {
+ "label": "Knaplink"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Flere rækker"
+ }
+ },
+ "quick-order-list": {
+ "name": "Hurtig ordreliste",
+ "settings": {
+ "show_image": {
+ "label": "Vis billeder"
+ },
+ "show_sku": {
+ "label": "Vis SKU'er"
+ }
+ },
+ "presets": {
+ "name": "Hurtig ordreliste"
+ }
+ }
+ }
+}
diff --git a/locales/de.json b/locales/de.json
new file mode 100644
index 0000000..635924c
--- /dev/null
+++ b/locales/de.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Shop mit Passwort betreten:",
+ "login_password_button": "Mit Passwort betreten",
+ "login_form_password_label": "Passwort",
+ "login_form_password_placeholder": "Dein Passwort",
+ "login_form_error": "Falsches Passwort!",
+ "login_form_submit": "Eingeben",
+ "admin_link_html": "Bist du der Shop-Inhaber? Hier einloggen ",
+ "powered_by_shopify_html": "Dieser Shop wird unterstützt von {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Auf Facebook teilen",
+ "share_on_twitter": "Auf Twitter twittern",
+ "share_on_pinterest": "Auf Pinterest pinnen"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Weiter shoppen",
+ "pagination": {
+ "label": "Seitennummerierung",
+ "page": "Seite {{ number }}",
+ "next": "Nächste Seite",
+ "previous": "Vorherige Seite"
+ },
+ "search": {
+ "search": "Suchen",
+ "reset": "Suchbegriff zurücksetzen"
+ },
+ "cart": {
+ "view": "Warenkorb ansehen ({{ count }})",
+ "item_added": "Artikel wurde in den Warenkorb gelegt",
+ "view_empty_cart": "Warenkorb ansehen"
+ },
+ "share": {
+ "copy_to_clipboard": "Link kopieren",
+ "share_url": "Link",
+ "success_message": "Link in die Zwischenablage kopiert",
+ "close": "Teilen schließen"
+ },
+ "slider": {
+ "of": "von",
+ "next_slide": "Nach rechts schieben",
+ "previous_slide": "Nach links schieben",
+ "name": "Slider"
+ }
+ },
+ "newsletter": {
+ "label": "E-Mail",
+ "success": "Danke für deine Anmeldung",
+ "button_label": "Abonnieren"
+ },
+ "accessibility": {
+ "skip_to_text": "Direkt zum Inhalt",
+ "close": "Schließen",
+ "unit_price_separator": "pro",
+ "vendor": "Anbieter:",
+ "error": "Fehler",
+ "refresh_page": "Wenn du dich für eine Auswahl entscheidest, wird die Seite komplett aktualisiert.",
+ "link_messages": {
+ "new_window": "Wird in einem neuen Fenster geöffnet.",
+ "external": "Öffnet externe Webseite."
+ },
+ "loading": "Wird geladen ...",
+ "skip_to_product_info": "Zu Produktinformationen springen",
+ "total_reviews": "Bewertungen insgesamt",
+ "star_reviews_info": "{{ rating_value }} von {{ rating_max }} Sternen",
+ "collapsible_content_title": "Einklappbarer Inhalt",
+ "complementary_products": "Ergänzende Produkte"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Weiterlesen: {{ title }}",
+ "comments": {
+ "one": "{{ count }} Kommentar",
+ "other": "{{ count }} Kommentare"
+ },
+ "moderated": "Bitte beachte, dass Kommentare vor der Veröffentlichung freigegeben werden müssen.",
+ "comment_form_title": "Hinterlasse einen Kommentar",
+ "name": "Name",
+ "email": "E-Mail",
+ "message": "Kommentar",
+ "post": "Kommentar posten",
+ "back_to_blog": "Zurück zum Blog",
+ "share": "Diesen Artikel teilen",
+ "success": "Dein Kommentar wurde erfolgreich gepostet! Vielen Dank!",
+ "success_moderated": "Dein Kommentar wurde erfolgreich gepostet. Da unser Blog moderiert wird, werden wir ihn erst kurze Zeit später veröffentlichen."
+ }
+ },
+ "onboarding": {
+ "product_title": "Beispiel für Produkttitel",
+ "collection_title": "Name deiner Kategorie"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "In den Warenkorb legen",
+ "description": "Beschreibung",
+ "on_sale": "Sale",
+ "quantity": {
+ "label": "Anzahl",
+ "input_label": "Anzahl von {{ product }}",
+ "increase": "Erhöhe die Menge für {{ product }}",
+ "decrease": "Verringere die Menge für {{ product }}",
+ "minimum_of": "Mindestens {{ quantity }}",
+ "maximum_of": "Maximal {{ quantity }}",
+ "multiples_of": "In {{ quantity }}er Schritten",
+ "in_cart_html": "{{ quantity }} im Warenkorb",
+ "note": "Mengenregeln anzeigen"
+ },
+ "price": {
+ "from_price_html": "Von {{ price }}",
+ "regular_price": "Normaler Preis",
+ "sale_price": "Verkaufspreis",
+ "unit_price": "Stückpreis"
+ },
+ "share": "Dieses Produkt teilen",
+ "sold_out": "Ausverkauft",
+ "unavailable": "Nicht verfügbar",
+ "vendor": "Anbieter",
+ "video_exit_message": "{{ title }} öffnet das Video auf derselben Seite im Vollbildmodus.",
+ "xr_button": "In deinem Bereich ansehen",
+ "xr_button_label": "\"Ansicht in deinem Raum\" lädt den Artikel in ein Augmented-Reality-Fenster",
+ "pickup_availability": {
+ "view_store_info": "Shop-Informationen anzeigen",
+ "check_other_stores": "Verfügbarkeit in anderen Shops überprüfen",
+ "pick_up_available": "Abholung verfügbar",
+ "pick_up_available_at_html": "Abholung bei {{ location_name }} verfügbar",
+ "pick_up_unavailable_at_html": "Abholung bei {{ location_name }} derzeit nicht verfügbar",
+ "unavailable": "Verfügbarkeit für Abholungen konnte nicht geladen werden",
+ "refresh": "Aktualisieren"
+ },
+ "media": {
+ "open_media": "Medien {{ index }} in Modal öffnen",
+ "play_model": "3D-Viewer abspielen",
+ "play_video": "Video abspielen",
+ "gallery_viewer": "Galerie-Viewer",
+ "load_image": "Bild {{ index }} in Galerieansicht laden",
+ "load_model": "3D-Modell {{ index }} in Galerieansicht laden",
+ "load_video": "Video {{ index }} in Galerieansicht abspielen",
+ "image_available": "Bild {{ index }} ist nun in der Galerieansicht verfügbar"
+ },
+ "view_full_details": "Vollständige Details anzeigen",
+ "include_taxes": "inkl. MwSt.",
+ "shipping_policy_html": "Versand wird beim Checkout berechnet",
+ "choose_options": "Optionen auswählen",
+ "choose_product_options": "Optionen für {{ product_name }} auswählen",
+ "value_unavailable": "{{ option_value }} – nicht verfügbar",
+ "variant_sold_out_or_unavailable": "Variante ausverkauft oder nicht verfügbar",
+ "inventory_in_stock": "Auf Lager",
+ "inventory_in_stock_show_count": "{{ quantity }} auf Lager",
+ "inventory_low_stock": "Niedriger Lagerbestand",
+ "inventory_low_stock_show_count": "Niedriger Lagerbestand: {{ quantity }} verbleibend",
+ "inventory_out_of_stock": "Nicht vorrätig",
+ "inventory_out_of_stock_continue_selling": "Auf Lager",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Volumenabhängige Preisgestaltung",
+ "note": "Volumenabhängige Preisgestaltung verfügbar",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "bei {{ price }}/Stück",
+ "price_range": "{{ minimum }}–{{ maximum }}"
+ },
+ "product_variants": "Produktvarianten"
+ },
+ "modal": {
+ "label": "Medien-Galerie"
+ },
+ "facets": {
+ "apply": "Anwenden",
+ "clear": "Löschen",
+ "clear_all": "Alle entfernen",
+ "from": "Von",
+ "filter_and_sort": "Filtern und sortieren",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filter",
+ "filters_selected": {
+ "one": "{{ count }} ausgewählt",
+ "other": "{{ count }} ausgewählt"
+ },
+ "max_price": "Der höchste Preis ist {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} von {{ count }} Produkt",
+ "other": "{{ product_count }} von {{ count }} Produkten"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} Produkt",
+ "other": "{{ count }} Produkte"
+ },
+ "reset": "Zurücksetzen",
+ "sort_button": "Sortieren",
+ "sort_by_label": "Sortieren nach:",
+ "to": "Bis",
+ "clear_filter": "Filter entfernen",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} Filter ausgewählt)",
+ "show_more": "Mehr anzeigen",
+ "show_less": "Weniger anzeigen",
+ "filter_and_operator_subtitle": "Allen entsprechen"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Keine Ergebnisse gefunden für \"{{ terms }}\". Überprüfe die Schreibweise oder versuche es mit einer anderen Suchanfrage.",
+ "results_with_count": {
+ "one": "{{ count }} Ergebnis",
+ "other": "{{ count }} Ergebnisse"
+ },
+ "title": "Suchergebnisse",
+ "page": "Seite",
+ "products": "Produkte",
+ "search_for": "Nach \"{{ terms }}\" suchen",
+ "results_with_count_and_term": {
+ "one": "{{ count }} Ergebnis für \"{{ terms }}\" gefunden",
+ "other": "{{ count }} Ergebnisse für \"{{ terms }}\" gefunden"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} Seite",
+ "other": "{{ count }} Seiten"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} Vorschlag",
+ "other": "{{ count }} Vorschläge"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} Produkt",
+ "other": "{{ count }} Produkte"
+ },
+ "suggestions": "Vorschläge",
+ "pages": "Seiten"
+ },
+ "cart": {
+ "cart": "Warenkorb"
+ },
+ "contact": {
+ "form": {
+ "name": "Name",
+ "email": "E-Mail",
+ "phone": "Telefonnummer",
+ "comment": "Kommentar",
+ "send": "Senden",
+ "post_success": "Danke, dass du uns kontaktiert hast. Wir werden uns so schnell wie möglich bei dir melden.",
+ "error_heading": "Bitte passe Folgendes an:",
+ "title": "Kontaktformular"
+ }
+ },
+ "404": {
+ "title": "Seite nicht gefunden",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Ankündigung",
+ "menu": "Menü",
+ "cart_count": {
+ "one": "{{ count }} Artikel",
+ "other": "{{ count }} Artikel"
+ }
+ },
+ "cart": {
+ "title": "Dein Warenkorb",
+ "caption": "Artikel im Warenkorb",
+ "remove_title": "{{ title }} entfernen",
+ "note": "Spezielle Bestellanweisungen",
+ "checkout": "Auschecken",
+ "empty": "Dein Warenkorb ist leer",
+ "cart_error": "Beim Aktualisieren deines Warenkorbs ist ein Fehler aufgetreten. Bitte versuche es erneut.",
+ "cart_quantity_error_html": "Du kannst deinem Warenkorb nur {{ quantity }} Stück dieses Artikels hinzufügen.",
+ "taxes_and_shipping_policy_at_checkout_html": "Steuern, Rabatte und Versand werden beim Checkout berechnet",
+ "taxes_included_but_shipping_at_checkout": "Inklusive Steuern, Versand und Rabatte werden beim Checkout berechnet",
+ "taxes_included_and_shipping_policy_html": "Inklusive Steuern. Versand und Rabatte werden beim Checkout berechnet.",
+ "taxes_and_shipping_at_checkout": "Steuern, Rabatte und Versand werden beim Checkout berechnet",
+ "headings": {
+ "product": "Produkt",
+ "price": "Preis",
+ "total": "Gesamtsumme",
+ "quantity": "Anzahl",
+ "image": "Produktbild"
+ },
+ "update": "Aktualisieren",
+ "login": {
+ "title": "Hast du ein Konto?",
+ "paragraph_html": "Logge dich ein , damit es beim Checkout schneller geht."
+ },
+ "estimated_total": "Geschätzte Gesamtkosten",
+ "new_estimated_total": "Neuer geschätzter Gesamtbetrag"
+ },
+ "footer": {
+ "payment": "Zahlungsmethoden"
+ },
+ "featured_blog": {
+ "view_all": "Alle anzeigen",
+ "onboarding_title": "Blog-Beitrag",
+ "onboarding_content": "Verschaffe deinen Kunden eine Übersicht über deinen Blog-Beitrag"
+ },
+ "featured_collection": {
+ "view_all": "Alle anzeigen",
+ "view_all_label": "Alle Produkte in der Kategorie {{ collection_name }} anzeigen"
+ },
+ "collection_list": {
+ "view_all": "Alle anzeigen"
+ },
+ "collection_template": {
+ "title": "Kategorie",
+ "empty": "Keine Produkte gefunden",
+ "use_fewer_filters_html": "Verwende weniger Filter oder entferne alle "
+ },
+ "video": {
+ "load_video": "Video laden: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Folie laden",
+ "previous_slideshow": "Vorherige Folie",
+ "next_slideshow": "Nächste Folie",
+ "pause_slideshow": "Slideshow pausieren",
+ "play_slideshow": "Slideshow abspielen",
+ "carousel": "Karussell",
+ "slide": "Folie"
+ },
+ "page": {
+ "title": "Seitentitel"
+ },
+ "announcements": {
+ "previous_announcement": "Vorherige Ankündigung",
+ "next_announcement": "Nächste Ankündigung",
+ "carousel": "Karussell",
+ "announcement": "Ankündigung",
+ "announcement_bar": "Ankündigungsleiste"
+ },
+ "quick_order_list": {
+ "product_total": "Produktzwischensumme",
+ "view_cart": "Warenkorb ansehen",
+ "each": "{{ money }}/Stück",
+ "product": "Produkt",
+ "variant": "Variante",
+ "variant_total": "Varianten insgesamt",
+ "items_added": {
+ "one": "{{ quantity }} Artikel hinzugefügt",
+ "other": "{{ quantity }} Artikel hinzugefügt"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} Artikel entfernt",
+ "other": "{{ quantity }} Artikel entfernt"
+ },
+ "product_variants": "Produktvarianten",
+ "total_items": "Artikel gesamt",
+ "remove_all_items_confirmation": "Alle {{ quantity }} Artikel aus deinem Warenkorb entfernen?",
+ "remove_all": "Alle entfernen",
+ "cancel": "Abbrechen"
+ }
+ },
+ "localization": {
+ "country_label": "Land/Region",
+ "language_label": "Sprache",
+ "update_language": "Sprache aktualisieren",
+ "update_country": "Land/Region aktualisieren"
+ },
+ "customer": {
+ "account": {
+ "title": "Konto",
+ "details": "Kontodetails",
+ "view_addresses": "Adressen anzeigen",
+ "return": "Zurück zu Kontodetails"
+ },
+ "account_fallback": "Konto",
+ "activate_account": {
+ "title": "Konto aktivieren",
+ "subtext": "Erstelle ein Passwort, um dein Konto zu aktiveren.",
+ "password": "Passwort",
+ "password_confirm": "Passwort bestätigen",
+ "submit": "Konto aktivieren",
+ "cancel": "Einladung ablehnen"
+ },
+ "addresses": {
+ "title": "Adressen",
+ "default": "Standard",
+ "add_new": "Neue Adresse hinzufügen",
+ "edit_address": "Adresse bearbeiten",
+ "first_name": "Vorname",
+ "last_name": "Nachname",
+ "company": "Unternehmen",
+ "address1": "Adresse 1",
+ "address2": "Adresse 2",
+ "city": "Ort",
+ "country": "Land/Region",
+ "province": "Bundesland/Provinz",
+ "zip": "PLZ",
+ "phone": "Telefonnummer",
+ "set_default": "Als Standard-Adresse festlegen",
+ "add": "Adresse hinzufügen",
+ "update": "Adresse aktualisieren",
+ "cancel": "Abbrechen",
+ "edit": "Bearbeiten",
+ "delete": "Löschen",
+ "delete_confirm": "Bist du sicher, dass du diese Adresse löschen möchtest?"
+ },
+ "log_in": "Einloggen",
+ "log_out": "Abmelden",
+ "login_page": {
+ "cancel": "Abbrechen",
+ "create_account": "Konto erstellen",
+ "email": "E-Mail",
+ "forgot_password": "Hast du dein Passwort vergessen?",
+ "guest_continue": "Fortfahren",
+ "guest_title": "Als Gast fortsetzen",
+ "password": "Passwort",
+ "title": "Login",
+ "sign_in": "Anmelden",
+ "submit": "Senden"
+ },
+ "orders": {
+ "title": "Bestellhistorie",
+ "order_number": "Bestellung",
+ "order_number_link": "Bestellnummer {{ number }}",
+ "date": "Datum",
+ "payment_status": "Zahlungsstatus",
+ "fulfillment_status": "Fulfillmentstatus",
+ "total": "Gesamtsumme",
+ "none": "Du hast noch keine Bestellungen aufgegeben."
+ },
+ "recover_password": {
+ "title": "Setze dein Passwort zurück",
+ "subtext": "Wir werden dir eine E-Mail zum Zurücksetzen deines Passworts schicken",
+ "success": "Wir haben dir eine E-Mail mit einem Link zum Aktualisieren deines Passworts geschickt."
+ },
+ "register": {
+ "title": "Konto erstellen",
+ "first_name": "Vorname",
+ "last_name": "Nachname",
+ "email": "E-Mail",
+ "password": "Passwort",
+ "submit": "Erstellen"
+ },
+ "reset_password": {
+ "title": "Passwort für Konto zurücksetzen",
+ "subtext": "Neues Passwort eingeben",
+ "password": "Passwort",
+ "password_confirm": "Passwort bestätigen",
+ "submit": "Passwort zurücksetzen"
+ },
+ "order": {
+ "title": "Bestellung {{ name }}",
+ "date_html": "Aufgegeben am {{ date }}",
+ "cancelled_html": "Bestellung storniert am {{ date }}",
+ "cancelled_reason": "Grund: {{ reason }}",
+ "billing_address": "Rechnungsadresse",
+ "payment_status": "Zahlungsstatus",
+ "shipping_address": "Lieferadresse",
+ "fulfillment_status": "Fulfillmentstatus",
+ "discount": "Rabatt",
+ "shipping": "Versand",
+ "tax": "Steuer",
+ "product": "Produkt",
+ "sku": "SKU",
+ "price": "Preis",
+ "quantity": "Menge",
+ "total": "Gesamtsumme",
+ "fulfilled_at_html": "Ausgeführt am {{ date }}",
+ "track_shipment": "Sendung nachverfolgen",
+ "tracking_url": "Tracking-Link",
+ "tracking_company": "Versanddienstleister",
+ "tracking_number": "Trackingnummer",
+ "subtotal": "Zwischensumme",
+ "total_duties": "Zollgebühren",
+ "total_refunded": "Zurückerstattet"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Hier ist dein {{ value }}-Geschenkgutschein für {{ shop }}!",
+ "subtext": "Dein Geschenkgutschein",
+ "gift_card_code": "Gutscheincode",
+ "shop_link": "Onlineshop besuchen",
+ "add_to_apple_wallet": "Zu Apple Wallet hinzufügen",
+ "qr_image_alt": "QR-Code – Scannen, um Geschenkgutschein einzulösen",
+ "copy_code": "Geschenkgutscheincode kopieren",
+ "expired": "Abgelaufen",
+ "copy_code_success": "Code erfolgreich kopiert",
+ "how_to_use_gift_card": "Verwende diesen Geschenkgutscheincode online oder verwende den QR-Code im Shop",
+ "expiration_date": "Gültig bis {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Ich möchte dies als Geschenk senden",
+ "email_label": "Empfänger E-Mail",
+ "email": "E-Mail",
+ "name_label": "Name des Empfängers (optional)",
+ "name": "Name",
+ "message_label": "Nachricht (optional)",
+ "message": "Nachricht",
+ "max_characters": "Maximal {{ max_chars }} Zeichen",
+ "email_label_optional_for_no_js_behavior": "E-Mail-Adresse des Empfängers (optional)",
+ "send_on": "JJJJ-MM-TT",
+ "send_on_label": "Senden am (optional)",
+ "expanded": "Formular für den Empfänger des Geschenkgutscheins erweitert",
+ "collapsed": "Formular für den Empfänger des Geschenkgutscheins minimiert"
+ }
+ }
+}
diff --git a/locales/de.schema.json b/locales/de.schema.json
new file mode 100644
index 0000000..f6bffbd
--- /dev/null
+++ b/locales/de.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Farben",
+ "settings": {
+ "background": {
+ "label": "Hintergrund"
+ },
+ "background_gradient": {
+ "label": "Hintergrundfarbverlauf",
+ "info": "Wo möglich, ersetzt der Hintergrundfarbverlauf den Hintergrund."
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_background": {
+ "label": "Hintergrund für durchgehende Schaltfläche"
+ },
+ "button_label": {
+ "label": "Beschriftung für durchgehende Schaltfläche"
+ },
+ "secondary_button_label": {
+ "label": "Umriss-Schaltfläche"
+ },
+ "shadow": {
+ "label": "Schatten"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografie",
+ "settings": {
+ "type_header_font": {
+ "label": "Schriftart",
+ "info": "Die Auswahl einer anderen Schriftart kann sich auf die Geschwindigkeit deines Shops auswirken. [Weitere Informationen zu Systemschriftarten.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Überschriften"
+ },
+ "header__2": {
+ "content": "Nachricht"
+ },
+ "type_body_font": {
+ "label": "Schriftart",
+ "info": "Die Auswahl einer anderen Schriftart kann sich auf die Geschwindigkeit deines Shops auswirken. [Weitere Informationen zu Systemschriftarten.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Schriftgrößenmaßstab"
+ },
+ "body_scale": {
+ "label": "Schriftgrößenmaßstab"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Social Media",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://vimeo.com/shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Social-Media-Konten"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Währungsformat",
+ "settings": {
+ "content": "Währungscodes",
+ "currency_code_enabled": {
+ "label": "Währungscodes anzeigen"
+ },
+ "paragraph": "Warenkorb- und Checkout-Preise zeigen immer Währungscodes an. Beispiel: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Layout",
+ "settings": {
+ "page_width": {
+ "label": "Seitenbreite"
+ },
+ "spacing_sections": {
+ "label": "Platz zwischen Vorlagenabschnitten"
+ },
+ "header__grid": {
+ "content": "Raster"
+ },
+ "paragraph__grid": {
+ "content": "Wirkt sich auf Bereiche mit mehreren Spalten oder Reihen aus."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Horizontaler Abstand"
+ },
+ "spacing_grid_vertical": {
+ "label": "Vertikaler Abstand"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Suchverhalten",
+ "settings": {
+ "header": {
+ "content": "Suchvorschläge"
+ },
+ "predictive_search_enabled": {
+ "label": "Suchvorschläge aktivieren"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Produktanbieter anzeigen",
+ "info": "Sichtbar, wenn Suchvorschläge aktiviert sind."
+ },
+ "predictive_search_show_price": {
+ "label": "Produktpreis anzeigen",
+ "info": "Sichtbar, wenn Suchvorschläge aktiviert sind."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Rand"
+ },
+ "header__shadow": {
+ "content": "Schatten"
+ },
+ "blur": {
+ "label": "Weichzeichnen"
+ },
+ "corner_radius": {
+ "label": "Eckradius"
+ },
+ "horizontal_offset": {
+ "label": "Horizontaler Offset"
+ },
+ "vertical_offset": {
+ "label": "Vertikaler Offset"
+ },
+ "thickness": {
+ "label": "Dicke"
+ },
+ "opacity": {
+ "label": "Opazität"
+ },
+ "image_padding": {
+ "label": "Bild-Padding"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Textausrichtung"
+ }
+ }
+ },
+ "badges": {
+ "name": "Badges",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Unten links"
+ },
+ "options__2": {
+ "label": "Unten rechts"
+ },
+ "options__3": {
+ "label": "Oben links"
+ },
+ "options__4": {
+ "label": "Oben rechts"
+ },
+ "label": "Position auf Karten"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Farbschema für Sale-Badges"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Farbschema für Ausverkauft-Badges"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Schaltflächen"
+ },
+ "variant_pills": {
+ "name": "Varianten-Kapseln",
+ "paragraph": "Varianten-Kapseln sind eine Möglichkeit, deine Produktvarianten zu präsentieren. [Mehr Informationen](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Eingaben"
+ },
+ "content_containers": {
+ "name": "Inhalts-Container"
+ },
+ "popups": {
+ "name": "Dropdown-Listen und Pop-ups",
+ "paragraph": "Wirkt sich auf Bereiche wie das Dropdown-Menü für die Navigation, modale Pop-ups und Warenkorb-Pop-ups aus."
+ },
+ "media": {
+ "name": "Medien"
+ },
+ "drawers": {
+ "name": "Einschübe"
+ },
+ "cart": {
+ "name": "Warenkorb",
+ "settings": {
+ "cart_type": {
+ "label": "Warenkorbstil",
+ "drawer": {
+ "label": "Einschub"
+ },
+ "page": {
+ "label": "Seite"
+ },
+ "notification": {
+ "label": "Pop-up-Benachrichtigung"
+ }
+ },
+ "show_vendor": {
+ "label": "Anbieter anzeigen"
+ },
+ "show_cart_note": {
+ "label": "Warenkorbanmerkung aktivieren"
+ },
+ "cart_drawer": {
+ "header": "Warenkorbeinschub",
+ "collection": {
+ "label": "Kategorie",
+ "info": "Sichtbar, wenn der Warenkorbeinschub leer ist."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Produktkarten",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Karte"
+ },
+ "label": "Optik"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Kategoriekarten",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Karte"
+ },
+ "label": "Optik"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Blog-Karten",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Karte"
+ },
+ "label": "Optik"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Desktop-Logobreite",
+ "info": "Die Logobreite wird automatisch für Mobilgeräte optimiert."
+ },
+ "favicon": {
+ "label": "Favicon-Bild",
+ "info": "Wird auf 32 x 32 Pixel verkleinert"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Markeninformationen",
+ "settings": {
+ "brand_headline": {
+ "label": "Überschrift"
+ },
+ "brand_description": {
+ "label": "Beschreibung"
+ },
+ "brand_image": {
+ "label": "Bild"
+ },
+ "brand_image_width": {
+ "label": "Bildbreite"
+ },
+ "paragraph": {
+ "content": "Füge der Fußzeile deines Shops ein Beschreibung deiner Marke hinzu."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animationen",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Beim Scrollen Abschnitte einblenden"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Keiner"
+ },
+ "options__2": {
+ "label": "Vertikal-Lift"
+ },
+ "label": "Hover-Effekt",
+ "info": "Wirkt sich auf Karten und Schaltflächen aus.",
+ "options__3": {
+ "label": "3D-Lift"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Abschnitts-Padding",
+ "padding_top": "Oberes Padding",
+ "padding_bottom": "Unteres Padding"
+ },
+ "spacing": "Abstand",
+ "colors": {
+ "label": "Farbschema",
+ "has_cards_info": "Aktualisiere deine Theme-Einstellungen, um das Farbschema der Karte zu ändern."
+ },
+ "heading_size": {
+ "label": "Größe der Überschrift",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ },
+ "options__4": {
+ "label": "Extra groß"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Bogen"
+ },
+ "options__3": {
+ "label": "Klecks"
+ },
+ "options__4": {
+ "label": "Chevron nach links"
+ },
+ "options__5": {
+ "label": "Chevron nach rechts"
+ },
+ "options__6": {
+ "label": "Diamant"
+ },
+ "options__7": {
+ "label": "Parallelogramm"
+ },
+ "options__8": {
+ "label": "Rund"
+ },
+ "label": "Bildform",
+ "info": "Karten mit Standarddesign haben keinen Rahmen, wenn eine Bildform aktiv ist."
+ },
+ "animation": {
+ "content": "Animationen",
+ "image_behavior": {
+ "options__1": {
+ "label": "Keine(r)"
+ },
+ "options__2": {
+ "label": "Atmosphärische Bewegung"
+ },
+ "label": "Bildverhalten",
+ "options__3": {
+ "label": "Feste Hintergrundposition"
+ },
+ "options__4": {
+ "label": "Beim Scrollen heranzoomen"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Ankündigungsleiste",
+ "blocks": {
+ "announcement": {
+ "name": "Ankündigung",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "link": {
+ "label": "Link"
+ },
+ "text_alignment": {
+ "label": "Textausrichtung",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Autorotieren der Ankündigungen"
+ },
+ "change_slides_speed": {
+ "label": "Ändern alle"
+ },
+ "header__1": {
+ "content": "Social-Media-Symbole",
+ "info": "Um deine Social-Media-Konten anzuzeigen, verlinke sie in deinen [Theme-Einstellungen](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Ankündigungen"
+ },
+ "show_social": {
+ "label": "Symbole auf dem Desktop anzeigen"
+ },
+ "header__3": {
+ "content": "Auswahl für Land/Region",
+ "info": "Gehe zu den [Markteinstellungen](/admin/settings/markets), um ein Land / eine Region hinzuzufügen."
+ },
+ "enable_country_selector": {
+ "label": "Auswahl für Land/Region aktivieren"
+ },
+ "header__4": {
+ "content": "Sprachauswahl",
+ "info": "Gehe zu den [Spracheinstellungen](/admin/settings/languages), um eine Sprache hinzuzufügen."
+ },
+ "enable_language_selector": {
+ "label": "Sprachauswahl aktivieren"
+ }
+ },
+ "presets": {
+ "name": "Ankündigungsleiste"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ },
+ "desktop_layout": {
+ "label": "Desktop-Layout",
+ "options__1": {
+ "label": "Großer Block links"
+ },
+ "options__2": {
+ "label": "Großer Block rechts"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobiles Layout",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Spalte"
+ }
+ },
+ "card_styles": {
+ "label": "Kartendesign",
+ "info": "Das Design von Produkten, Kategorien und Blogkarten kann in den Theme-Einstellungen aktualisiert werden.",
+ "options__1": {
+ "label": "Individuelle Kartendesigns verwenden"
+ },
+ "options__2": {
+ "label": "Alle als Produktkarten gestalten"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Bild",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ }
+ }
+ },
+ "product": {
+ "name": "Produkt",
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Sekundären Hintergrund anzeigen"
+ },
+ "second_image": {
+ "label": "Hover-Effekt mit zweitem Bild"
+ }
+ }
+ },
+ "collection": {
+ "name": "Kategorie",
+ "settings": {
+ "collection": {
+ "label": "Kategorie"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Titelbild"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Video wird in einem Pop-up abgespielt, wenn der Abschnitt andere Blöcke enthält.",
+ "placeholder": "YouTube- oder Vimeo-URL verwenden"
+ },
+ "description": {
+ "label": "Video-Alt-Text",
+ "info": "Beschreibe das Video für Kunden, die Bildschirmlesegeräte benutzen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Kategorieliste",
+ "settings": {
+ "title": {
+ "label": "Überschrift"
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Porträt"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ },
+ "info": "Bearbeite deine Kategorien, um Bilder hinzuzufügen. [Mehr Informationen](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Wischen auf Mobilgeräten aktivieren"
+ },
+ "show_view_all": {
+ "label": "Aktiviere die Schaltfläche \"Alle anzeigen\", wenn die Liste mehr Kategorien enthält, als angezeigt werden"
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Kategorie",
+ "settings": {
+ "collection": {
+ "label": "Kategorie"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kategorieliste"
+ }
+ },
+ "contact-form": {
+ "name": "Kontaktformular",
+ "presets": {
+ "name": "Kontaktformular"
+ }
+ },
+ "custom-liquid": {
+ "name": "Benutzerdefiniertes Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid-Code",
+ "info": "Füge App-Snippets oder anderen Code hinzu, um fortgeschrittene Anpassungen zu erstellen. [Mehr Informationen](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Benutzerdefiniertes Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blog-Beiträge",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Anzahl der anzuzeigenden Blog-Beiträge"
+ },
+ "show_view_all": {
+ "label": "Aktiviere die Schaltfläche \"Alle anzeigen\", wenn der Blog mehr Blog-Beiträge enthält, als angezeigt werden"
+ },
+ "show_image": {
+ "label": "Feature-Bild anzeigen",
+ "info": "Verwende für Bilder ein Seitenverhältnis von 3:2 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Datum anzeigen"
+ },
+ "show_author": {
+ "label": "Autor anzeigen"
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ }
+ },
+ "presets": {
+ "name": "Blog-Beiträge"
+ }
+ },
+ "featured-collection": {
+ "name": "Vorgestellte Kategorie",
+ "settings": {
+ "title": {
+ "label": "Überschrift"
+ },
+ "collection": {
+ "label": "Kategorie"
+ },
+ "products_to_show": {
+ "label": "Maximal anzuzeigende Produkte"
+ },
+ "show_view_all": {
+ "label": "\"Alles anzeigen\" aktivieren, wenn die Kategorie mehr Produkte enthält, als angezeigt werden"
+ },
+ "header": {
+ "content": "Produktkarte"
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Porträt"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hover-Effekt mit zweitem Bild"
+ },
+ "show_vendor": {
+ "label": "Anbieter anzeigen"
+ },
+ "show_rating": {
+ "label": "Produktbewertung anzeigen",
+ "info": "Um eine Bewertung anzuzeigen, musst du eine Produktbewertungs-App hinzufügen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Schaltfläche zum schnellen Hinzufügen aktivieren",
+ "info": "Optimal bei Warenkörben des Typs Pop-up oder Einschub."
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "description": {
+ "label": "Beschreibung"
+ },
+ "show_description": {
+ "label": "Kategoriebeschreibung im Adminbereich anzeigen"
+ },
+ "description_style": {
+ "label": "Beschreibungsstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Umriss-Schaltfläche"
+ },
+ "options__3": {
+ "label": "Durchgehende Schaltfläche"
+ },
+ "label": "Stil \"Alles anzeigen\""
+ },
+ "enable_desktop_slider": {
+ "label": "Karussell auf Desktop aktivieren"
+ },
+ "full_width": {
+ "label": "Produkte auf gesamte Breite auslegen"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Wischen auf Mobilgeräten aktivieren"
+ }
+ },
+ "presets": {
+ "name": "Vorgestellte Kategorie"
+ }
+ },
+ "footer": {
+ "name": "Fußzeile",
+ "blocks": {
+ "link_list": {
+ "name": "Menü",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ },
+ "menu": {
+ "label": "Menü",
+ "info": "Zeigt nur Top-Level-Menüpunkte an."
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ },
+ "subtext": {
+ "label": "Subtext"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Markeninformationen",
+ "settings": {
+ "paragraph": {
+ "content": "In diesem Block werden deine Markeninformationen angezeigt. [Bearbeite deine Markeninformationen.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Social-Media-Symbole"
+ },
+ "show_social": {
+ "label": "Social-Media-Symbole anzeigen",
+ "info": "Um deine Social-Media-Konten anzuzeigen, verlinke sie in deinen [Theme-Einstellungen](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "E-Mail-Anmeldung anzeigen"
+ },
+ "newsletter_heading": {
+ "label": "Überschrift"
+ },
+ "header__1": {
+ "content": "E-Mail-Anmeldung",
+ "info": "Abonnenten, die automatisch zu deiner Kundenliste \"Akzeptiert Marketing\" hinzugefügt wurden. [Mehr Informationen](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Social Media-Symbole",
+ "info": "Um deine Social-Media-Konten anzuzeigen, verlinke sie in deinen [Theme-Einstellungen](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Social-Media-Symbole anzeigen"
+ },
+ "header__3": {
+ "content": "Auswahl für Land/Region"
+ },
+ "header__4": {
+ "info": "Gehe zu den [Markteinstellungen](/admin/settings/markets), um ein Land / eine Region hinzuzufügen."
+ },
+ "enable_country_selector": {
+ "label": "Auswahl für Land/Region aktivieren"
+ },
+ "header__5": {
+ "content": "Sprachauswahl"
+ },
+ "header__6": {
+ "info": "Gehe zu den [Spracheinstellungen](/admin/settings/languages), um eine Sprache hinzuzufügen."
+ },
+ "enable_language_selector": {
+ "label": "Sprachauswahl aktivieren"
+ },
+ "header__7": {
+ "content": "Zahlungsmethoden"
+ },
+ "payment_enable": {
+ "label": "Zahlungssymbole anzeigen"
+ },
+ "margin_top": {
+ "label": "Oberer Rand"
+ },
+ "header__8": {
+ "content": "Links zu Richtlinien",
+ "info": "Um Richtlinien für den Shop hinzuzufügen, gehe zu deinen [Richtlinien-Einstellungen](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Links zu Richtlinien anzeigen"
+ },
+ "header__9": {
+ "content": "In Shop folgen",
+ "info": "Damit Kunden deinem Shop in der Shop-App über deine Storefront folgen können, muss Shop Pay aktiviert sein. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "\"In Shop folgen\" aktivieren"
+ }
+ }
+ },
+ "header": {
+ "name": "Header",
+ "settings": {
+ "logo_position": {
+ "label": "Desktop-Logoposition",
+ "options__1": {
+ "label": "Mitte links"
+ },
+ "options__2": {
+ "label": "Oben links"
+ },
+ "options__3": {
+ "label": "Oben zentriert"
+ },
+ "options__4": {
+ "label": "Mitte zentriert"
+ }
+ },
+ "menu": {
+ "label": "Menü"
+ },
+ "show_line_separator": {
+ "label": "Trennlinie anzeigen"
+ },
+ "margin_bottom": {
+ "label": "Unterer Rand"
+ },
+ "menu_type_desktop": {
+ "label": "Desktop-Menütyp",
+ "info": "Der Menütyp wird automatisch für die mobile Nutzung optimiert.",
+ "options__1": {
+ "label": "Dropdown"
+ },
+ "options__2": {
+ "label": "Mega-Menü"
+ },
+ "options__3": {
+ "label": "Einschub"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobiles Layout"
+ },
+ "mobile_logo_position": {
+ "label": "Logo-Position für mobile Darstellung",
+ "options__1": {
+ "label": "Zentriert"
+ },
+ "options__2": {
+ "label": "Links"
+ }
+ },
+ "logo_help": {
+ "content": "Bearbeite dein Logo in den [theme settings](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Fixierter Header",
+ "options__1": {
+ "label": "Keine"
+ },
+ "options__2": {
+ "label": "Beim Hochscrollen"
+ },
+ "options__3": {
+ "label": "Immer"
+ },
+ "options__4": {
+ "label": "Immer, Größe des Logos reduzieren"
+ }
+ },
+ "header__3": {
+ "content": "Auswahl für Land/Region"
+ },
+ "header__4": {
+ "info": "Gehe zu den [Markteinstellungen](/admin/settings/markets), um ein Land / eine Region hinzuzufügen."
+ },
+ "enable_country_selector": {
+ "label": "Auswahl für Land/Region aktivieren"
+ },
+ "header__5": {
+ "content": "Sprachauswahl"
+ },
+ "header__6": {
+ "info": "Gehe zu den [Spracheinstellungen](/admin/settings/languages), um eine Sprache hinzuzufügen."
+ },
+ "enable_language_selector": {
+ "label": "Sprachauswahl aktivieren"
+ },
+ "header__1": {
+ "content": "Farbe"
+ },
+ "menu_color_scheme": {
+ "label": "Menü-Farbschema"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Bild-Banner",
+ "settings": {
+ "image": {
+ "label": "Erstes Bild"
+ },
+ "image_2": {
+ "label": "Zweites Bild"
+ },
+ "stack_images_on_mobile": {
+ "label": "Gestapelte Bilder auf Mobilgeräten"
+ },
+ "show_text_box": {
+ "label": "Container auf dem Desktop anzeigen"
+ },
+ "image_overlay_opacity": {
+ "label": "Deckkraft der Bildüberlagerung"
+ },
+ "show_text_below": {
+ "label": "Container auf Mobilgerät anzeigen"
+ },
+ "image_height": {
+ "label": "Bannerhöhe",
+ "options__1": {
+ "label": "An erstes Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "info": "Verwende für Bilder ein Seitenverhältnis von 3:2 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Groß"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Oben links"
+ },
+ "options__2": {
+ "label": "Oben zentriert"
+ },
+ "options__3": {
+ "label": "Oben rechts"
+ },
+ "options__4": {
+ "label": "Mitte links"
+ },
+ "options__5": {
+ "label": "Mitte zentriert"
+ },
+ "options__6": {
+ "label": "Mitte rechts"
+ },
+ "options__7": {
+ "label": "Unten links"
+ },
+ "options__8": {
+ "label": "Unten zentriert"
+ },
+ "options__9": {
+ "label": "Unten rechts"
+ },
+ "label": "Desktopinhaltsposition"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Desktopinhaltsausrichtung"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Mobile Inhaltsausrichtung"
+ },
+ "mobile": {
+ "content": "Mobiles Layout"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titel",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Beschreibung"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ },
+ "label": "Textstil"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Schaltflächen",
+ "settings": {
+ "button_label_1": {
+ "label": "Erste Beschriftung der Schaltfläche",
+ "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden."
+ },
+ "button_link_1": {
+ "label": "Erster Link der Schaltfläche"
+ },
+ "button_style_secondary_1": {
+ "label": "Umriss-Stil für Schaltfläche verwenden"
+ },
+ "button_label_2": {
+ "label": "Zweite Beschriftung der Schaltfläche",
+ "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden."
+ },
+ "button_link_2": {
+ "label": "Zweiter Link der Schaltfläche"
+ },
+ "button_style_secondary_2": {
+ "label": "Umriss-Stil für Schaltfläche verwenden"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bild-Banner"
+ }
+ },
+ "image-with-text": {
+ "name": "Bild mit Text",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "height": {
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "label": "Bildhöhe",
+ "options__4": {
+ "label": "Groß"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Bild zuerst"
+ },
+ "options__2": {
+ "label": "Zweites Bild"
+ },
+ "label": "Desktop-Bildplatzierung",
+ "info": "Das Standardlayout für Mobilgeräte ist \"Bild zuerst\"."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ },
+ "label": "Desktop-Bildbreite",
+ "info": "Bild wird automatisch für die mobile Nutzung optimiert."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Desktop-Inhaltsausrichtung"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Oben"
+ },
+ "options__2": {
+ "label": "Mitte"
+ },
+ "options__3": {
+ "label": "Unten"
+ },
+ "label": "Desktop-Inhaltsposition"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Keine Überlappung"
+ },
+ "options__2": {
+ "label": "Überlappung"
+ },
+ "label": "Layout des Inhalts"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Mobile Inhaltsausrichtung"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titel",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Inhalt"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Schaltfläche",
+ "settings": {
+ "button_label": {
+ "label": "Schaltflächenbeschriftung",
+ "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden."
+ },
+ "button_link": {
+ "label": "Schaltflächenlink"
+ },
+ "outline_button": {
+ "label": "Umriss-Stil für Schaltfläche verwenden"
+ }
+ }
+ },
+ "caption": {
+ "name": "Bildtext",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Untertitel"
+ },
+ "options__2": {
+ "label": "Großbuchstaben"
+ }
+ },
+ "caption_size": {
+ "label": "Textgröße",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bild mit Text"
+ }
+ },
+ "main-article": {
+ "name": "Blog-Beitrag",
+ "blocks": {
+ "featured_image": {
+ "name": "Feature-Bild",
+ "settings": {
+ "image_height": {
+ "label": "Höhe des Feature-Bildes",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "info": "Verwende für Bilder ein Seitenverhältnis von 16:9 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Groß"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel",
+ "settings": {
+ "blog_show_date": {
+ "label": "Datum anzeigen"
+ },
+ "blog_show_author": {
+ "label": "Autor anzeigen"
+ }
+ }
+ },
+ "content": {
+ "name": "Inhalt"
+ },
+ "share": {
+ "name": "Teilen",
+ "settings": {
+ "featured_image_info": {
+ "content": "Wenn du einen Link in Social-Media-Posts einfügst, wird das Feature-Bild der Seite als Vorschaubild angezeigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Ein Titel und eine Beschreibung des Shops sind im Vorschaubild enthalten. [Mehr Informationen](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blog-Beiträge",
+ "settings": {
+ "header": {
+ "content": "Blog-Beitrags-Karte"
+ },
+ "show_image": {
+ "label": "Feature-Bild anzeigen"
+ },
+ "paragraph": {
+ "content": "Bearbeite deine Blog-Beiträge, um Auszüge zu ändern. [Mehr Informationen](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Datum anzeigen"
+ },
+ "show_author": {
+ "label": "Autor anzeigen"
+ },
+ "layout": {
+ "label": "Desktop-Layout",
+ "options__1": {
+ "label": "Raster"
+ },
+ "options__2": {
+ "label": "Collage"
+ },
+ "info": "Beiträge werden bei der mobilen Nutzung gestapelt."
+ },
+ "image_height": {
+ "label": "Höhe des Feature-Bildes",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "options__4": {
+ "label": "Groß"
+ },
+ "info": "Verwende für Bilder ein Seitenverhältnis von 3:2 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Zwischensumme",
+ "blocks": {
+ "subtotal": {
+ "name": "Zwischensumme"
+ },
+ "buttons": {
+ "name": "Checkout-Schaltfläche"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Artikel"
+ },
+ "main-collection-banner": {
+ "name": "Kategoriebanner",
+ "settings": {
+ "paragraph": {
+ "content": "Bearbeite deine Kategorien, um eine Beschreibung oder ein Bild hinzuzufügen. [Mehr Informationen](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Kategoriebeschreibung anzeigen"
+ },
+ "show_collection_image": {
+ "label": "Kategoriebild anzeigen",
+ "info": "Verwende für Bilder ein Seitenverhältnis von 16:9 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Produktraster",
+ "settings": {
+ "products_per_page": {
+ "label": "Produkte pro Seite"
+ },
+ "enable_filtering": {
+ "label": "Filtern aktivieren",
+ "info": "Passe Filter mit der App Search & Discovery an. [Mehr Informationen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Sortieren aktivieren"
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Porträt"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hover-Effekt mit zweitem Bild"
+ },
+ "show_vendor": {
+ "label": "Anbieter anzeigen"
+ },
+ "header__1": {
+ "content": "Filtern und Sortieren"
+ },
+ "header__3": {
+ "content": "Produktkarte"
+ },
+ "enable_tags": {
+ "label": "Filtern aktivieren",
+ "info": "Passe Filter mit der App Search & Discovery an. [Mehr Informationen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "show_rating": {
+ "label": "Produktbewertung anzeigen",
+ "info": "Um eine Bewertung anzuzeigen, musst du eine Produktbewertungs-App hinzufügen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Schaltfläche zum schnellen Hinzufügen aktivieren",
+ "info": "Optimal bei Warenkörben des Typs Pop-up oder Einschub."
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ },
+ "filter_type": {
+ "label": "Desktopfilterlayout",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertikal"
+ },
+ "options__3": {
+ "label": "Einschub"
+ },
+ "info": "Das Standardlayout für Mobilgeräte ist \"Einschub\"."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Listenseite für Kategorien",
+ "settings": {
+ "title": {
+ "label": "Überschrift"
+ },
+ "sort": {
+ "label": "Kategorien sortieren nach:",
+ "options__1": {
+ "label": "Alphabetisch, A-Z"
+ },
+ "options__2": {
+ "label": "Alphabetisch, Z-A"
+ },
+ "options__3": {
+ "label": "Datum, neu zu alt"
+ },
+ "options__4": {
+ "label": "Datum, alt zu neu"
+ },
+ "options__5": {
+ "label": "Produktanzahl, hoch zu niedrig"
+ },
+ "options__6": {
+ "label": "Produktanzahl, niedrig zu hoch"
+ }
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Porträt"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ },
+ "info": "Bearbeite deine Kategorien, um Bilder hinzuzufügen. [Mehr Informationen](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Seite"
+ },
+ "main-password-footer": {
+ "name": "Passwort-Fußzeile"
+ },
+ "main-password-header": {
+ "name": "Passwort-Header",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Bearbeite dein Logo in den Theme-Einstellungen."
+ }
+ }
+ },
+ "main-product": {
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Preis"
+ },
+ "quantity_selector": {
+ "name": "Mengenauswahl"
+ },
+ "variant_picker": {
+ "name": "Variantenauswahl",
+ "settings": {
+ "picker_type": {
+ "label": "Art",
+ "options__1": {
+ "label": "Dropdown"
+ },
+ "options__2": {
+ "label": "Kapseln"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy Buttons",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Dynamischer Checkout-Button anzeigen",
+ "info": "Wenn sie die Zahlungsmethoden verwenden, die in deinem Shop verfügbar sind, sehen Kunden ihre bevorzugte Option, z. B. PayPal oder Apple Pay. [Mehr Informationen](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Formular für Empfängerinformationen für Geschenkgutscheine anzeigen",
+ "info": "So können Käufer Geschenkgutscheine an einem bestimmten Datum mit einer persönlichen Nachricht versenden. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Verfügbarkeit von Abholungen"
+ },
+ "description": {
+ "name": "Beschreibung"
+ },
+ "share": {
+ "name": "Teilen",
+ "settings": {
+ "featured_image_info": {
+ "content": "Wenn du einen Link in Social-Media-Posts einfügst, wird das Feature-Bild der Seite als Vorschaubild angezeigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Ein Titel und eine Beschreibung des Shops sind im Vorschaubild enthalten. [Mehr Informationen](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Einklappbare Reihe",
+ "settings": {
+ "heading": {
+ "info": "Füge eine Überschrift ein, die den Inhalt erklärt.",
+ "label": "Überschrift"
+ },
+ "content": {
+ "label": "Reiheninhalt"
+ },
+ "page": {
+ "label": "Reiheninhalt der Seite"
+ },
+ "icon": {
+ "options__1": {
+ "label": "Ohne"
+ },
+ "options__2": {
+ "label": "Apfel"
+ },
+ "options__3": {
+ "label": "Banane"
+ },
+ "options__4": {
+ "label": "Flasche"
+ },
+ "options__5": {
+ "label": "Box"
+ },
+ "options__6": {
+ "label": "Möhre"
+ },
+ "options__7": {
+ "label": "Chat-Blase"
+ },
+ "options__8": {
+ "label": "Häkchen"
+ },
+ "options__9": {
+ "label": "Klemmbrett"
+ },
+ "options__10": {
+ "label": "Milch"
+ },
+ "options__11": {
+ "label": "Laktosefrei"
+ },
+ "options__12": {
+ "label": "Trockner"
+ },
+ "options__13": {
+ "label": "Auge"
+ },
+ "options__14": {
+ "label": "Feuer"
+ },
+ "options__15": {
+ "label": "Glutenfrei"
+ },
+ "options__16": {
+ "label": "Herz"
+ },
+ "options__17": {
+ "label": "Bügeleisen"
+ },
+ "options__18": {
+ "label": "Blatt"
+ },
+ "options__19": {
+ "label": "Leder"
+ },
+ "options__20": {
+ "label": "Blitz"
+ },
+ "options__21": {
+ "label": "Lippenstift"
+ },
+ "options__22": {
+ "label": "Schloss"
+ },
+ "options__23": {
+ "label": "Pinnnadel"
+ },
+ "options__24": {
+ "label": "Ohne Nüsse"
+ },
+ "label": "Symbol",
+ "options__25": {
+ "label": "Hosen"
+ },
+ "options__26": {
+ "label": "Pfotenabdruck"
+ },
+ "options__27": {
+ "label": "Pfeffer"
+ },
+ "options__28": {
+ "label": "Parfüm"
+ },
+ "options__29": {
+ "label": "Flugzeug"
+ },
+ "options__30": {
+ "label": "Pflanze"
+ },
+ "options__31": {
+ "label": "Preisschild"
+ },
+ "options__32": {
+ "label": "Fragezeichen"
+ },
+ "options__33": {
+ "label": "Recyclen"
+ },
+ "options__34": {
+ "label": "Rückgabe"
+ },
+ "options__35": {
+ "label": "Lineal"
+ },
+ "options__36": {
+ "label": "Servierteller"
+ },
+ "options__37": {
+ "label": "Hemd"
+ },
+ "options__38": {
+ "label": "Schuh"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Schneeflocke"
+ },
+ "options__41": {
+ "label": "Stern"
+ },
+ "options__42": {
+ "label": "Stoppuhr"
+ },
+ "options__43": {
+ "label": "Lieferwagen"
+ },
+ "options__44": {
+ "label": "Wäsche"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-up",
+ "settings": {
+ "link_label": {
+ "label": "Link-Label"
+ },
+ "page": {
+ "label": "Seite"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktbewertung",
+ "settings": {
+ "paragraph": {
+ "content": "Um eine Bewertung anzuzeigen, musst du eine Produktbewertungs-App hinzufügen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Ergänzende Produkte",
+ "settings": {
+ "paragraph": {
+ "content": "Um ergänzende Produkte auszuwählen, füge die Search & Discovery-App hinzu. [Mehr Informationen](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Überschrift"
+ },
+ "make_collapsible_row": {
+ "label": "Als einklappbare Reihe anzeigen"
+ },
+ "icon": {
+ "info": "Sichtbar, wenn einklappbare Reihe angezeigt wird."
+ },
+ "product_list_limit": {
+ "label": "Maximal anzuzeigende Produkte"
+ },
+ "products_per_page": {
+ "label": "Anzahl der Produkte pro Seite"
+ },
+ "pagination_style": {
+ "label": "Seitennummerierungsstil",
+ "options": {
+ "option_1": "Punkte",
+ "option_2": "Zähler",
+ "option_3": "Zahlen"
+ }
+ },
+ "product_card": {
+ "heading": "Produktkarte"
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options": {
+ "option_1": "Hochformat",
+ "option_2": "Quadratisch"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Schaltfläche zum schnellen Hinzufügen aktivieren"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Symbol mit Text",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertikal"
+ }
+ },
+ "content": {
+ "label": "Inhalt",
+ "info": "Wähle ein Symbol oder füge ein Bild für jede Spalte oder Zeile hinzu."
+ },
+ "heading": {
+ "info": "Lasse die Überschrift leer, um die Symbolspalte auszublenden."
+ },
+ "icon_1": {
+ "label": "Erstes Symbol"
+ },
+ "image_1": {
+ "label": "Erstes Bild"
+ },
+ "heading_1": {
+ "label": "Erste Überschrift"
+ },
+ "icon_2": {
+ "label": "Zweites Symbol"
+ },
+ "image_2": {
+ "label": "Zweites Bild"
+ },
+ "heading_2": {
+ "label": "Zweite Überschrift"
+ },
+ "icon_3": {
+ "label": "Drittes Symbol"
+ },
+ "image_3": {
+ "label": "Drittes Bild"
+ },
+ "heading_3": {
+ "label": "Dritte Überschrift"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Inventarstatus",
+ "settings": {
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Geringer Inventarschwellenwert",
+ "info": "Wähle 0 aus, um immer den Lagerbestand anzuzeigen, falls verfügbar."
+ },
+ "show_inventory_quantity": {
+ "label": "Inventar anzeigen"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Medien",
+ "info": "Mehr Informationen über [Medienarten](https://help.shopify.com/manual/products/product-media)."
+ },
+ "enable_video_looping": {
+ "label": "Videoschleife aktivieren"
+ },
+ "enable_sticky_info": {
+ "label": "Fixierte Inhalte für Desktop aktivieren"
+ },
+ "hide_variants": {
+ "label": "Medien anderer Varianten ausblenden, sobald eine Variante ausgewählt wurde"
+ },
+ "gallery_layout": {
+ "label": "Desktop-Layout",
+ "options__1": {
+ "label": "Gestapelt"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ },
+ "options__3": {
+ "label": "Vorschaubilder"
+ },
+ "options__4": {
+ "label": "Karussell mit Vorschaubildern"
+ }
+ },
+ "media_size": {
+ "label": "Medienbreite für Desktop",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ },
+ "info": "Medien werden automatisch für die mobile Nutzung optimiert."
+ },
+ "mobile_thumbnails": {
+ "label": "Mobiles Layout",
+ "options__1": {
+ "label": "2 Spalten"
+ },
+ "options__2": {
+ "label": "Vorschaubilder anzeigen"
+ },
+ "options__3": {
+ "label": "Vorschaubilder ausblenden"
+ }
+ },
+ "media_position": {
+ "label": "Desktop-Medienposition",
+ "info": "Positionen werden automatisch für die mobile Nutzung optimiert.",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Rechts"
+ }
+ },
+ "image_zoom": {
+ "label": "Bildzoom",
+ "info": "Klicke auf und fahre mit der Maus über \"Standards\", um Lightbox auf deinem Mobilgerät zu öffnen.",
+ "options__1": {
+ "label": "Lightbox öffnen"
+ },
+ "options__2": {
+ "label": "Klicken und mit der Maus darüber fahren"
+ },
+ "options__3": {
+ "label": "Nicht zoomen"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Medien auf Bildschirmhöhe beschränken"
+ },
+ "media_fit": {
+ "label": "Medienanpassung",
+ "options__1": {
+ "label": "Original"
+ },
+ "options__2": {
+ "label": "Füllung"
+ }
+ }
+ },
+ "name": "Produktinformationen"
+ },
+ "main-search": {
+ "name": "Suchergebnisse",
+ "settings": {
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Porträt"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hover-Effekt mit zweitem Bild"
+ },
+ "show_vendor": {
+ "label": "Anbieter anzeigen"
+ },
+ "header__1": {
+ "content": "Produktkarte"
+ },
+ "header__2": {
+ "content": "Blog-Karte",
+ "info": "Die Blog-Karten-Optik gilt auch für Seiten-Karten in den Suchergebnissen. Aktualisiere deine Theme-Einstellungen, um die Karten-Optik zu ändern."
+ },
+ "article_show_date": {
+ "label": "Datum anzeigen"
+ },
+ "article_show_author": {
+ "label": "Autor anzeigen"
+ },
+ "show_rating": {
+ "label": "Produktbewertung anzeigen",
+ "info": "Um eine Bewertung anzuzeigen, musst du eine Produktbewertungs-App hinzufügen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Mit mehreren Spalten",
+ "settings": {
+ "title": {
+ "label": "Überschrift"
+ },
+ "image_width": {
+ "label": "Bildbreite",
+ "options__1": {
+ "label": "Drittelbreite der Spalte"
+ },
+ "options__2": {
+ "label": "Halbe Breite der Spalte"
+ },
+ "options__3": {
+ "label": "Ganze Breite der Spalte"
+ }
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Porträt"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ },
+ "options__4": {
+ "label": "Kreis"
+ }
+ },
+ "column_alignment": {
+ "label": "Spaltenausrichtung",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ }
+ },
+ "background_style": {
+ "label": "Sekundärer Hintergrund",
+ "options__1": {
+ "label": "Ohne"
+ },
+ "options__2": {
+ "label": "Als Spaltenhintergrund anzeigen"
+ }
+ },
+ "button_label": {
+ "label": "Schaltflächenbeschriftung"
+ },
+ "button_link": {
+ "label": "Schaltflächenlink"
+ },
+ "swipe_on_mobile": {
+ "label": "Wischen auf Mobilgeräten aktivieren"
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Spalte",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "title": {
+ "label": "Überschrift"
+ },
+ "text": {
+ "label": "Beschreibung"
+ },
+ "link_label": {
+ "label": "Link-Label"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Mit mehreren Spalten"
+ }
+ },
+ "newsletter": {
+ "name": "E-Mail-Anmeldung",
+ "settings": {
+ "full_width": {
+ "label": "Abschnitt über die gesamte Breite"
+ },
+ "paragraph": {
+ "content": "Durch jedes E-Mail-Abonnement wird ein Kundenkonto erstellt. [Mehr Informationen](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titel",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Unter-Überschrift",
+ "settings": {
+ "paragraph": {
+ "label": "Beschreibung"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-Mail-Formular"
+ }
+ },
+ "presets": {
+ "name": "E-Mail-Anmeldung"
+ }
+ },
+ "page": {
+ "name": "Seite",
+ "settings": {
+ "page": {
+ "label": "Seite"
+ }
+ },
+ "presets": {
+ "name": "Seite"
+ }
+ },
+ "rich-text": {
+ "name": "Rich Text",
+ "settings": {
+ "full_width": {
+ "label": "Abschnitt über die gesamte Breite"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Desktop-Inhaltsposition",
+ "info": "Positionen werden automatisch für die mobile Nutzung optimiert."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Inhaltsausrichtung"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titel",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Beschreibung"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Schaltflächen",
+ "settings": {
+ "button_label_1": {
+ "label": "Erste Schaltflächenbeschriftung",
+ "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden."
+ },
+ "button_link_1": {
+ "label": "Erster Schaltflächenlink"
+ },
+ "button_style_secondary_1": {
+ "label": "Umriss-Stil für Schaltfläche verwenden"
+ },
+ "button_label_2": {
+ "label": "Zweite Schaltflächenbeschriftung",
+ "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden."
+ },
+ "button_link_2": {
+ "label": "Zweiter Schaltflächenlink"
+ },
+ "button_style_secondary_2": {
+ "label": "Umriss-Stil für Schaltfläche verwenden"
+ }
+ }
+ },
+ "caption": {
+ "name": "Bildtext",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Untertitel"
+ },
+ "options__2": {
+ "label": "Großbuchstaben"
+ }
+ },
+ "caption_size": {
+ "label": "Textgröße",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich Text"
+ }
+ },
+ "apps": {
+ "name": "Apps",
+ "settings": {
+ "include_margins": {
+ "label": "Abschnittränder so gestalten wie das Theme"
+ }
+ },
+ "presets": {
+ "name": "Apps"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Titel"
+ },
+ "cover_image": {
+ "label": "Titelbild"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "YouTube- oder Vimeo-URL verwenden"
+ },
+ "description": {
+ "label": "Video-Alt-Text",
+ "info": "Beschreibe das Video für Kunden, die Bildschirmlesegeräte benutzen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Bild-Padding hinzufügen",
+ "info": "Wähle Bild-Padding aus, wenn du nicht möchtest, dass dein Titelbild abgeschnitten wird."
+ },
+ "full_width": {
+ "label": "Abschnitt über die gesamte Breite"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Videoschleife abspielen"
+ },
+ "header__1": {
+ "content": "Von Shopify gehostetes Video"
+ },
+ "header__2": {
+ "content": "Oder Video von URL einbetten"
+ },
+ "header__3": {
+ "content": "Stil"
+ },
+ "paragraph": {
+ "content": "Wird angezeigt, wenn kein von Shopify gehostetes Video ausgewählt wurde."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Vorgestelltes Produkt",
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Preis"
+ },
+ "quantity_selector": {
+ "name": "Mengenauswahl"
+ },
+ "variant_picker": {
+ "name": "Variantenauswahl",
+ "settings": {
+ "picker_type": {
+ "label": "Art",
+ "options__1": {
+ "label": "Dropdown"
+ },
+ "options__2": {
+ "label": "Kapseln"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy Buttons",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Dynamischen Checkout-Button anzeigen",
+ "info": "Wenn sie die Zahlungsmethoden verwenden, die in deinem Shop verfügbar sind, sehen Kunden ihre bevorzugte Option, z. B. PayPal oder Apple Pay. [Mehr Informationen](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Beschreibung"
+ },
+ "share": {
+ "name": "Teilen",
+ "settings": {
+ "featured_image_info": {
+ "content": "Wenn du einen Link in Social-Media-Posts einfügst, wird das Feature-Bild der Seite als Vorschaubild angezeigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Ein Titel und eine Beschreibung des Shops sind im Vorschaubild enthalten. [Mehr Informationen](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktbewertung",
+ "settings": {
+ "paragraph": {
+ "content": "Um eine Bewertung anzuzeigen, musst du eine Produktbewertungs-App hinzufügen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "options__3": {
+ "label": "Großbuchstaben"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Sekundären Hintergrund anzeigen"
+ },
+ "header": {
+ "content": "Medien",
+ "info": "Mehr Informationen zu [Medienarten](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Videoschleife aktivieren"
+ },
+ "hide_variants": {
+ "label": "Medien von nicht ausgewählten Varianten auf dem Desktop ausblenden"
+ },
+ "media_position": {
+ "label": "Desktop-Medienposition",
+ "info": "Positionen werden automatisch für die mobile Nutzung optimiert.",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Rechts"
+ }
+ }
+ },
+ "presets": {
+ "name": "Vorgestelltes Produkt"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner für E-Mail-Anmeldung",
+ "settings": {
+ "paragraph": {
+ "content": "Durch jedes E-Mail-Abonnement wird ein Kundenkonto erstellt. [Mehr Informationen](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Hintergrundbild"
+ },
+ "show_background_image": {
+ "label": "Hintergrundbild anzeigen"
+ },
+ "show_text_box": {
+ "label": "Container auf dem Desktop anzeigen"
+ },
+ "image_overlay_opacity": {
+ "label": "Deckkraft der Bildüberlagerung"
+ },
+ "show_text_below": {
+ "label": "Auf Mobilgeräten Inhalt unterhalb der Bilder anzeigen",
+ "info": "Verwende Bilder mit einem Seitenverhältnis von 16:9 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Bannerhöhe",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "options__4": {
+ "label": "Groß"
+ },
+ "info": "Verwende Bilder mit einem Seitenverhältnis von 16:9 für optimale Ergebnisse. [Mehr Informationen](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Oben links"
+ },
+ "options__2": {
+ "label": "Oben zentriert"
+ },
+ "options__3": {
+ "label": "Oben rechts"
+ },
+ "options__4": {
+ "label": "Mitte links"
+ },
+ "options__5": {
+ "label": "Mitte zentriert"
+ },
+ "options__6": {
+ "label": "Mitte rechts"
+ },
+ "options__7": {
+ "label": "Unten links"
+ },
+ "options__8": {
+ "label": "Unten zentriert"
+ },
+ "options__9": {
+ "label": "Unten rechts"
+ },
+ "label": "Desktopinhaltsposition"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Desktopinhaltsausrichtung"
+ },
+ "header": {
+ "content": "Mobiles Layout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Mobile Inhaltsausrichtung"
+ },
+ "color_scheme": {
+ "info": "Sichtbar, wenn Container angezeigt wird."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titel",
+ "settings": {
+ "heading": {
+ "label": "Titel"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Absatz",
+ "settings": {
+ "paragraph": {
+ "label": "Beschreibung"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "label": "Textstil"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-Mail-Formular"
+ }
+ },
+ "presets": {
+ "name": "Banner für E-Mail-Anmeldung"
+ }
+ },
+ "slideshow": {
+ "name": "Slideshow",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Volle Breite"
+ },
+ "options__2": {
+ "label": "Raster"
+ }
+ },
+ "slide_height": {
+ "label": "Diahöhe",
+ "options__1": {
+ "label": "An erstes Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "options__4": {
+ "label": "Groß"
+ }
+ },
+ "slider_visual": {
+ "label": "Seitennummerierungsstil",
+ "options__1": {
+ "label": "Zähler"
+ },
+ "options__2": {
+ "label": "Punkte"
+ },
+ "options__3": {
+ "label": "Zahlen"
+ }
+ },
+ "auto_rotate": {
+ "label": "Autorotieren der Slides"
+ },
+ "change_slides_speed": {
+ "label": "Anzeige der nächsten Folie alle"
+ },
+ "show_text_below": {
+ "label": "Auf Mobilgeräten Inhalt unterhalb der Bilder anzeigen"
+ },
+ "mobile": {
+ "content": "Mobiles Layout"
+ },
+ "accessibility": {
+ "content": "Barrierefreiheit",
+ "label": "Slideshow-Beschreibung",
+ "info": "Beschreibe die Slideshow für Kunden, die Bildschirmlesegeräte benutzen."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Folie",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "heading": {
+ "label": "Titel"
+ },
+ "subheading": {
+ "label": "Unter-Überschrift"
+ },
+ "button_label": {
+ "label": "Schaltflächenbeschriftung",
+ "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden."
+ },
+ "link": {
+ "label": "Schaltflächenlink"
+ },
+ "secondary_style": {
+ "label": "Umriss-Stil für Schaltfläche verwenden"
+ },
+ "box_align": {
+ "label": "Desktop-Inhaltsposition",
+ "options__1": {
+ "label": "Oben links"
+ },
+ "options__2": {
+ "label": "Oben zentriert"
+ },
+ "options__3": {
+ "label": "Oben rechts"
+ },
+ "options__4": {
+ "label": "Mitte links"
+ },
+ "options__5": {
+ "label": "Mitte mittig"
+ },
+ "options__6": {
+ "label": "Mitte rechts"
+ },
+ "options__7": {
+ "label": "Unten links"
+ },
+ "options__8": {
+ "label": "Unten mittig"
+ },
+ "options__9": {
+ "label": "Unten rechts"
+ },
+ "info": "Positionen werden automatisch für die mobile Nutzung optimiert."
+ },
+ "show_text_box": {
+ "label": "Container auf dem Desktop anzeigen"
+ },
+ "text_alignment": {
+ "label": "Desktop-Inhaltsausrichtung",
+ "option_1": {
+ "label": "Links"
+ },
+ "option_2": {
+ "label": "Zentriert"
+ },
+ "option_3": {
+ "label": "Rechts"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Deckkraft der Bildüberlagerung"
+ },
+ "text_alignment_mobile": {
+ "label": "Mobile Inhaltsausrichtung",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Slideshow"
+ }
+ },
+ "collapsible_content": {
+ "name": "Einklappbarer Inhalt",
+ "settings": {
+ "caption": {
+ "label": "Bildtext"
+ },
+ "heading": {
+ "label": "Überschrift"
+ },
+ "heading_alignment": {
+ "label": "Ausrichtung der Überschrift",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ }
+ },
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Kein Container"
+ },
+ "options__2": {
+ "label": "Reihencontainer"
+ },
+ "options__3": {
+ "label": "Abschnittscontainer"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Erste einklappbare Reihe öffnen"
+ },
+ "header": {
+ "content": "Bildlayout"
+ },
+ "image": {
+ "label": "Bild"
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Groß"
+ }
+ },
+ "desktop_layout": {
+ "label": "Desktop-Layout",
+ "options__1": {
+ "label": "Bild zuerst"
+ },
+ "options__2": {
+ "label": "Bild an zweiter Stelle"
+ },
+ "info": "Das Bild wird auf mobilen Geräte immer zuerst angezeigt."
+ },
+ "container_color_scheme": {
+ "label": "Farbschema für Container",
+ "info": "Wird angezeigt, wenn für das Layout Zeilen- oder Abschnitts-Container festgelegt wird."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Einklappbare Reihe",
+ "settings": {
+ "heading": {
+ "info": "Füge eine Überschrift ein, die den Inhalt erklärt.",
+ "label": "Überschrift"
+ },
+ "row_content": {
+ "label": "Reiheninhalt"
+ },
+ "page": {
+ "label": "Reiheninhalt der Seite"
+ },
+ "icon": {
+ "label": "Symbol",
+ "options__1": {
+ "label": "Keine"
+ },
+ "options__2": {
+ "label": "Apfel"
+ },
+ "options__3": {
+ "label": "Banane"
+ },
+ "options__4": {
+ "label": "Flasche"
+ },
+ "options__5": {
+ "label": "Box"
+ },
+ "options__6": {
+ "label": "Möhre"
+ },
+ "options__7": {
+ "label": "Chat-Blase"
+ },
+ "options__8": {
+ "label": "Häkchen"
+ },
+ "options__9": {
+ "label": "Klemmbrett"
+ },
+ "options__10": {
+ "label": "Milch"
+ },
+ "options__11": {
+ "label": "Laktosefrei"
+ },
+ "options__12": {
+ "label": "Trockner"
+ },
+ "options__13": {
+ "label": "Auge"
+ },
+ "options__14": {
+ "label": "Feuer"
+ },
+ "options__15": {
+ "label": "Glutenfrei"
+ },
+ "options__16": {
+ "label": "Herz"
+ },
+ "options__17": {
+ "label": "Bügeleisen"
+ },
+ "options__18": {
+ "label": "Blatt"
+ },
+ "options__19": {
+ "label": "Leder"
+ },
+ "options__20": {
+ "label": "Blitz"
+ },
+ "options__21": {
+ "label": "Lippenstift"
+ },
+ "options__22": {
+ "label": "Schloss"
+ },
+ "options__23": {
+ "label": "Pinnnadel"
+ },
+ "options__24": {
+ "label": "Ohne Nüsse"
+ },
+ "options__25": {
+ "label": "Hosen"
+ },
+ "options__26": {
+ "label": "Pfotenabdruck"
+ },
+ "options__27": {
+ "label": "Pfeffer"
+ },
+ "options__28": {
+ "label": "Parfüm"
+ },
+ "options__29": {
+ "label": "Flugzeug"
+ },
+ "options__30": {
+ "label": "Pflanze"
+ },
+ "options__31": {
+ "label": "Preisschild"
+ },
+ "options__32": {
+ "label": "Fragezeichen"
+ },
+ "options__33": {
+ "label": "Recyclen"
+ },
+ "options__34": {
+ "label": "Rückgabe"
+ },
+ "options__35": {
+ "label": "Lineal"
+ },
+ "options__36": {
+ "label": "Servierteller"
+ },
+ "options__37": {
+ "label": "Hemd"
+ },
+ "options__38": {
+ "label": "Schuh"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Schneeflocke"
+ },
+ "options__41": {
+ "label": "Stern"
+ },
+ "options__42": {
+ "label": "Stoppuhr"
+ },
+ "options__43": {
+ "label": "Lieferwagen"
+ },
+ "options__44": {
+ "label": "Wäsche"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Einklappbarer Inhalt"
+ }
+ },
+ "main-account": {
+ "name": "Konto"
+ },
+ "main-activate-account": {
+ "name": "Kontoaktivierung"
+ },
+ "main-addresses": {
+ "name": "Adressen"
+ },
+ "main-login": {
+ "name": "Login"
+ },
+ "main-order": {
+ "name": "Bestellung"
+ },
+ "main-register": {
+ "name": "Registrierung"
+ },
+ "main-reset-password": {
+ "name": "Passwort zurücksetzen"
+ },
+ "related-products": {
+ "name": "Ähnliche Produkte",
+ "settings": {
+ "heading": {
+ "label": "Überschrift"
+ },
+ "products_to_show": {
+ "label": "Maximal anzuzeigende Produkte"
+ },
+ "columns_desktop": {
+ "label": "Anzahl der Spalten auf dem Desktop"
+ },
+ "paragraph__1": {
+ "content": "Dynamische Empfehlungen nutzen Bestell- und Produktinformationen, um sich mit der Zeit zu verändern und zu verbessern. [Mehr Informationen](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Produktkarte"
+ },
+ "image_ratio": {
+ "label": "Bildverhältnis",
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Hochformat"
+ },
+ "options__3": {
+ "label": "Quadratisch"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hover-Effekt mit zweitem Bild"
+ },
+ "show_vendor": {
+ "label": "Anbieter anzeigen"
+ },
+ "show_rating": {
+ "label": "Produktbewertung anzeigen",
+ "info": "Um eine Bewertung anzuzeigen, musst du eine Produktbewertungs-App hinzufügen. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ },
+ "columns_mobile": {
+ "label": "Anzahl der Spalten auf mobilem Gerät",
+ "options__1": {
+ "label": "1 Spalte"
+ },
+ "options__2": {
+ "label": "2 Spalten"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Mehrreihig",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "An Bild anpassen"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Mittel"
+ },
+ "options__4": {
+ "label": "Groß"
+ },
+ "label": "Bildhöhe"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ },
+ "label": "Desktop-Bildbreite",
+ "info": "Bild wird automatisch für die mobile Nutzung optimiert."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Mittel"
+ },
+ "options__3": {
+ "label": "Groß"
+ },
+ "label": "Größe der Überschrift"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Nachricht"
+ },
+ "options__2": {
+ "label": "Untertitel"
+ },
+ "label": "Textstil"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Durchgehende Schaltfläche"
+ },
+ "options__2": {
+ "label": "Umriss-Schaltfläche"
+ },
+ "label": "Schaltflächenstil"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Desktop-Inhaltsausrichtung"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Oben"
+ },
+ "options__2": {
+ "label": "Mitte"
+ },
+ "options__3": {
+ "label": "Unten"
+ },
+ "label": "Desktop-Inhaltsposition",
+ "info": "Positionen werden automatisch für die mobile Nutzung optimiert."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Abwechselnd von links"
+ },
+ "options__2": {
+ "label": "Abwechselnd von rechts"
+ },
+ "options__3": {
+ "label": "Linksbündig"
+ },
+ "options__4": {
+ "label": "Rechtsbündig"
+ },
+ "label": "Desktop-Bildplatzierung",
+ "info": "Platzierung wird automatisch für die mobile Nutzung optimiert."
+ },
+ "container_color_scheme": {
+ "label": "Farbschema für Container"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Zentriert"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Mobile Inhaltsausrichtung"
+ },
+ "header_mobile": {
+ "content": "Mobiles Layout"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Reihe",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "caption": {
+ "label": "Bildtext"
+ },
+ "heading": {
+ "label": "Überschrift"
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_label": {
+ "label": "Schaltflächenbeschriftung"
+ },
+ "button_link": {
+ "label": "Schaltflächenlink"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Mehrreihig"
+ }
+ },
+ "quick-order-list": {
+ "name": "Schnelle Bestellliste",
+ "settings": {
+ "show_image": {
+ "label": "Bilder anzeigen"
+ },
+ "show_sku": {
+ "label": "SKUs anzeigen"
+ }
+ },
+ "presets": {
+ "name": "Schnelle Bestellliste"
+ }
+ }
+ }
+}
diff --git a/locales/el.json b/locales/el.json
new file mode 100644
index 0000000..6a437a3
--- /dev/null
+++ b/locales/el.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Είσοδος στο κατάστημα με τη χρήση κωδικού πρόσβασης:",
+ "login_password_button": "Είσοδος με τη χρήση κωδικού πρόσβασης",
+ "login_form_password_label": "Κωδικός πρόσβασης",
+ "login_form_password_placeholder": "Ο κωδικός σας πρόσβασης",
+ "login_form_error": "Λανθασμένος κωδικός πρόσβασης!",
+ "login_form_submit": "Είσοδος",
+ "admin_link_html": "Είστε ο ιδιοκτήτης του καταστήματος; Συνδεθείτε εδώ ",
+ "powered_by_shopify_html": "Αυτό το κατάστημα θα υποστηρίζεται από το {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Κοινοποίηση στο Facebook",
+ "share_on_twitter": "Tweet στο Twitter",
+ "share_on_pinterest": "Καρφίτσωμα στο Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Συνέχιση αγορών",
+ "pagination": {
+ "label": "Σελιδοποίηση",
+ "page": "Σελίδα {{ number }}",
+ "next": "Επόμενη σελίδα",
+ "previous": "Προηγούμενη σελίδα"
+ },
+ "search": {
+ "search": "Αναζήτηση",
+ "reset": "Διαγραφή όρου αναζήτησης"
+ },
+ "cart": {
+ "view": "Προβολή καλαθιού ({{ count }})",
+ "item_added": "Το στοιχείο προστέθηκε στο καλάθι σας",
+ "view_empty_cart": "Προβολή καλαθιού"
+ },
+ "share": {
+ "copy_to_clipboard": "Αντιγραφή συνδέσμου",
+ "share_url": "Σύνδεσμος",
+ "success_message": "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο",
+ "close": "Κλείσιμο κοινοποίησης"
+ },
+ "slider": {
+ "of": "από",
+ "next_slide": "Σύρετε δεξιά",
+ "previous_slide": "Σύρετε αριστερά",
+ "name": "Ρυθμιστικό"
+ }
+ },
+ "newsletter": {
+ "label": "Email",
+ "success": "Ευχαριστούμε για την εγγραφή",
+ "button_label": "Εγγραφή"
+ },
+ "accessibility": {
+ "skip_to_text": "Απευθείας μετάβαση στο περιεχόμενο",
+ "close": "Κλείσιμο",
+ "unit_price_separator": "ανά",
+ "vendor": "Προμηθευτής:",
+ "error": "Σφάλμα",
+ "refresh_page": "Ο ορισμός μιας επιλογής έχει ως αποτέλεσμα την πλήρη ανανέωση της σελίδας.",
+ "link_messages": {
+ "new_window": "Ανοίγει σε νέο παράθυρο.",
+ "external": "Ανοίγει εξωτερικό ιστότοπο."
+ },
+ "loading": "Φόρτωση...",
+ "skip_to_product_info": "Μετάβαση στις πληροφορίες προϊόντος",
+ "total_reviews": "σύνολο κριτικών",
+ "star_reviews_info": "{{ rating_value }} από {{ rating_max }} αστέρια",
+ "collapsible_content_title": "Περιεχόμενο με δυνατότητα σύμπτυξης",
+ "complementary_products": "Συμπληρωματικά προϊόντα"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Ιστολόγιο",
+ "read_more_title": "Διαβάστε περισσότερα: {{ title }}",
+ "comments": {
+ "one": "{{ count }} σχόλιο",
+ "other": "{{ count }} σχόλια"
+ },
+ "moderated": "Έχετε υπόψη ότι τα σχόλια χρειάζεται να λάβουν έγκριση προτού δημοσιευτούν.",
+ "comment_form_title": "Υποβάλετε ένα σχόλιο",
+ "name": "Όνομα",
+ "email": "Email",
+ "message": "Σχόλιο",
+ "post": "Ανάρτηση σχολίου",
+ "back_to_blog": "Επιστροφή στο ιστολόγιο",
+ "share": "Κοινοποίηση αυτού του άρθρου",
+ "success": "Το σχόλιό σας αναρτήθηκε επιτυχώς! Ευχαριστούμε!",
+ "success_moderated": "Το σχόλιό σας αναρτήθηκε επιτυχώς. Θα το δημοσιεύσουμε σε λίγο γιατί το ιστολόγιό μας είναι εποπτευόμενο."
+ }
+ },
+ "onboarding": {
+ "product_title": "Παράδειγμα τίτλου προϊόντος",
+ "collection_title": "Το όνομα της συλλογής σας"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Προσθήκη στο καλάθι",
+ "description": "Περιγραφή",
+ "on_sale": "Έκπτωση",
+ "product_variants": "Παραλλαγές προϊόντος",
+ "quantity": {
+ "label": "Ποσότητα",
+ "input_label": "Ποσότητα για {{ product }}",
+ "increase": "Αύξηση ποσότητας για {{ product }}",
+ "decrease": "Μείωση ποσότητας για {{ product }}",
+ "minimum_of": "Ελάχιστο όριο {{ quantity }}",
+ "maximum_of": "Μέγιστο όριο {{ quantity }}",
+ "multiples_of": "Δόσεις {{ quantity }}",
+ "in_cart_html": "{{ quantity }} στο καλάθι",
+ "note": "Προβολή κανόνων ποσότητας"
+ },
+ "price": {
+ "from_price_html": "Από {{ price }}",
+ "regular_price": "Κανονική τιμή",
+ "sale_price": "Τιμή έκπτωσης",
+ "unit_price": "Τιμή μονάδας"
+ },
+ "share": "Κοινοποιήστε αυτό το προϊόν",
+ "sold_out": "Εξαντλήθηκε",
+ "unavailable": "Μη διαθέσιμο",
+ "vendor": "Προμηθευτής",
+ "video_exit_message": "Το {{ title }} ανοίγει βίντεο σε πλήρη οθόνη στο ίδιο παράθυρο.",
+ "xr_button": "Προβολή στον χώρο σας",
+ "xr_button_label": "Η επιλογή \"Προβολή στον χώρο σας\", φορτώνει το αντικείμενο στο παράθυρο επαυξημένης πραγματικότητας",
+ "pickup_availability": {
+ "view_store_info": "Προβολή πληροφοριών καταστήματος",
+ "check_other_stores": "Έλεγχος διαθεσιμότητας σε άλλα καταστήματα",
+ "pick_up_available": "Υπάρχει δυνατότητα παραλαβής",
+ "pick_up_available_at_html": "Υπάρχει δυνατότητα παραλαβής από {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Δεν υπάρχει δυνατότητα παραλαβής από {{ location_name }} ",
+ "unavailable": "Δεν ήταν δυνατή η φόρτωση της διαθεσιμότητας παραλαβής",
+ "refresh": "Ανανέωση"
+ },
+ "media": {
+ "open_media": "Άνοιγμα μέσου {{ index }} στο βοηθητικό παράθυρο",
+ "play_model": "Έναρξη εφαρμογής προβολής 3D",
+ "play_video": "Αναπαραγωγή βίντεο",
+ "gallery_viewer": "Εργαλείο προβολής συλλογής",
+ "load_image": "Φόρτωση εικόνας {{ index }} στην προβολή συλλογής",
+ "load_model": "Φόρτωση μοντέλου 3D {{ index }} στην προβολή συλλογής",
+ "load_video": "Αναπαραγωγή βίντεο {{ index }} στην προβολή συλλογής",
+ "image_available": "Η εικόνα {{ index }} είναι τώρα διαθέσιμη στην προβολή συλλογής"
+ },
+ "view_full_details": "Προβολή όλων των λεπτομερειών",
+ "include_taxes": "Ο φόρος συμπεριλαμβάνεται.",
+ "shipping_policy_html": "Τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.",
+ "choose_options": "Ορίστε επιλογές",
+ "choose_product_options": "Ορίστε επιλογές για {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Μη διαθέσιμο",
+ "variant_sold_out_or_unavailable": "Η παραλλαγή εξαντλήθηκε ή δεν είναι διαθέσιμη",
+ "inventory_in_stock": "Σε απόθεμα",
+ "inventory_in_stock_show_count": "{{ quantity }} σε απόθεμα",
+ "inventory_low_stock": "Χαμηλό απόθεμα",
+ "inventory_low_stock_show_count": "Χαμηλό απόθεμα: Απομένουν {{ quantity }}",
+ "inventory_out_of_stock": "Χωρίς απόθεμα",
+ "inventory_out_of_stock_continue_selling": "Σε απόθεμα",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Τιμολόγηση βάσει ποσότητας",
+ "note": "Διατίθεται τιμολόγηση βάσει ποσότητας",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "στα {{ price }}/τμχ",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Συλλογή μέσων"
+ },
+ "facets": {
+ "apply": "Εφαρμογή",
+ "clear": "Διαγραφή",
+ "clear_all": "Κατάργηση όλων",
+ "from": "Από",
+ "filter_and_sort": "Φιλτράρισμα και ταξινόμηση",
+ "filter_by_label": "Φιλτράρισμα:",
+ "filter_button": "Φιλτράρισμα",
+ "filters_selected": {
+ "one": "Επιλέχθηκε {{ count }}",
+ "other": "Επιλέχθηκαν {{ count }}"
+ },
+ "max_price": "Η υψηλότερη τιμή είναι {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} από {{ count }} προϊόν",
+ "other": "{{ product_count }} από {{ count }} προϊόντα"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} προϊόν",
+ "other": "{{ count }} προϊόντα"
+ },
+ "reset": "Επαναφορά",
+ "sort_button": "Ταξινόμηση",
+ "sort_by_label": "Ταξινόμηση κατά:",
+ "to": "Έως",
+ "clear_filter": "Κατάργηση φίλτρου",
+ "filter_selected_accessibility": "{{ type }} (επιλέχθηκαν {{ count }} φίλτρα)",
+ "show_more": "Εμφάνιση περισσότερων",
+ "show_less": "Εμφάνιση λιγότερων",
+ "filter_and_operator_subtitle": "Αντιστοιχεί με όλα"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Δεν βρέθηκαν αποτελέσματα για «{{ terms }}». Ελέγξτε την ορθογραφία ή χρησιμοποιήστε άλλη λέξη ή φράση.",
+ "results_with_count": {
+ "one": "{{ count }} αποτέλεσμα",
+ "other": "{{ count }} αποτελέσματα"
+ },
+ "title": "Αποτελέσματα αναζήτησης",
+ "page": "Σελίδα",
+ "products": "Προϊόντα",
+ "search_for": "Αναζήτηση για «{{ terms }}»",
+ "results_with_count_and_term": {
+ "one": "Βρέθηκε {{ count }} αποτέλεσμα για «{{ terms }}»",
+ "other": "Βρέθηκαν {{ count }} αποτελέσματα για «{{ terms }}»"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} σελίδα",
+ "other": "{{ count }} σελίδες"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} προϊόν",
+ "other": "{{ count }} προϊόντα"
+ },
+ "suggestions": "Προτάσεις",
+ "pages": "Σελίδες",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} πρόταση",
+ "other": "{{ count }} προτάσεις"
+ }
+ },
+ "cart": {
+ "cart": "Καλάθι"
+ },
+ "contact": {
+ "form": {
+ "name": "Όνομα",
+ "email": "Email",
+ "phone": "Αριθμός τηλεφώνου",
+ "comment": "Σχόλιο",
+ "send": "Αποστολή",
+ "post_success": "Ευχαριστούμε που επικοινωνήσατε μαζί μας. Θα σας απαντήσουμε το συντομότερο δυνατόν.",
+ "error_heading": "Προσαρμόστε τα παρακάτω:",
+ "title": "Φόρμα επικοινωνίας"
+ }
+ },
+ "404": {
+ "title": "Η σελίδα δεν βρέθηκε",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Ανακοίνωση",
+ "menu": "Μενού",
+ "cart_count": {
+ "one": "{{ count }} στοιχείο",
+ "other": "{{ count }} στοιχεία"
+ }
+ },
+ "cart": {
+ "title": "Το καλάθι σας",
+ "caption": "Στοιχεία στο καλάθι",
+ "remove_title": "Κατάργηση {{ title }}",
+ "note": "Ειδικές οδηγίες παραγγελίας",
+ "checkout": "Ολοκλήρωση αγοράς",
+ "empty": "Το καλάθι σας είναι κενό",
+ "cart_error": "Παρουσιάστηκε σφάλμα κατά την ενημέρωση του καλαθιού. Δοκιμάστε ξανά.",
+ "cart_quantity_error_html": "Μπορείτε να προσθέσετε μόνο {{ quantity }} από αυτό το προϊόν στο καλάθι σας.",
+ "taxes_and_shipping_policy_at_checkout_html": "Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς",
+ "taxes_included_but_shipping_at_checkout": "Ο φόρος που συμπεριλαμβάνεται, τα έξοδα αποστολής και οι εκπτώσεις υπολογίζονται κατά την ολοκλήρωση της αγοράς",
+ "taxes_included_and_shipping_policy_html": "Ο φόρος συμπεριλαμβάνεται. Τα έξοδα αποστολής και οι εκπτώσεις υπολογίζονται κατά την ολοκλήρωση της αγοράς.",
+ "taxes_and_shipping_at_checkout": "Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς",
+ "headings": {
+ "product": "Προϊόν",
+ "price": "Τιμή",
+ "total": "Σύνολο",
+ "quantity": "Ποσότητα",
+ "image": "Εικόνα προϊόντος"
+ },
+ "update": "Ενημέρωση",
+ "login": {
+ "title": "Έχετε λογαριασμό;",
+ "paragraph_html": "Συνδεθείτε για ταχύτερη ολοκλήρωση των αγορών σας."
+ },
+ "estimated_total": "Εκτιμώμενο σύνολο",
+ "new_estimated_total": "Νέο εκτιμώμενο σύνολο"
+ },
+ "footer": {
+ "payment": "Μέθοδοι πληρωμής"
+ },
+ "featured_blog": {
+ "view_all": "Προβολή όλων",
+ "onboarding_title": "Ανάρτηση ιστολογίου",
+ "onboarding_content": "Δώστε στους πελάτες σας μια σύνοψη της ανάρτησης ιστολογίου"
+ },
+ "featured_collection": {
+ "view_all": "Προβολή όλων",
+ "view_all_label": "Προβολή όλων των προϊόντων στη συλλογή {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Προβολή όλων"
+ },
+ "collection_template": {
+ "title": "Συλλογή",
+ "empty": "Δεν βρέθηκαν προϊόντα",
+ "use_fewer_filters_html": "Χρησιμοποιήστε λιγότερα φίλτρα ή καταργήστε τα όλα "
+ },
+ "video": {
+ "load_video": "Φόρτωση βίντεο: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Φόρτωση διαφάνειας",
+ "previous_slideshow": "Προηγούμενη διαφάνεια",
+ "next_slideshow": "Επόμενη διαφάνεια",
+ "pause_slideshow": "Παύση παρουσίασης",
+ "play_slideshow": "Αναπαραγωγή παρουσίασης",
+ "carousel": "Καρουζέλ",
+ "slide": "Διαφάνεια"
+ },
+ "page": {
+ "title": "Τίτλος σελίδας"
+ },
+ "announcements": {
+ "previous_announcement": "Προηγούμενη ανακοίνωση",
+ "next_announcement": "Επόμενη ανακοίνωση",
+ "carousel": "Καρουζέλ",
+ "announcement": "Ανακοίνωση",
+ "announcement_bar": "Γραμμή ανακοινώσεων"
+ },
+ "quick_order_list": {
+ "product_total": "Υποσύνολο προϊόντων",
+ "view_cart": "Προβολή καλαθιού",
+ "each": "{{ money }}/έκαστο",
+ "product": "Προϊόν",
+ "variant": "Παραλλαγή",
+ "variant_total": "Σύνολο παραλλαγών",
+ "items_added": {
+ "one": "Προστέθηκε {{ quantity }} προϊόν",
+ "other": "Προστέθηκαν {{ quantity }} προϊόντα"
+ },
+ "items_removed": {
+ "one": "Καταργήθηκε {{ quantity }} προϊόν",
+ "other": "Καταργήθηκαν {{ quantity }} προϊόντα"
+ },
+ "product_variants": "Παραλλαγές προϊόντος",
+ "total_items": "Σύνολο προϊόντων",
+ "remove_all_items_confirmation": "Να καταργηθούν και τα {{ quantity }} προϊόντα από το καλάθι σας;",
+ "remove_all": "Κατάργηση όλων",
+ "cancel": "Ακύρωση"
+ }
+ },
+ "localization": {
+ "country_label": "Χώρα/περιοχή",
+ "language_label": "Γλώσσα",
+ "update_language": "Ενημέρωση γλώσσας",
+ "update_country": "Ενημερώστε τη χώρα/περιοχή"
+ },
+ "customer": {
+ "account": {
+ "title": "Λογαριασμός",
+ "details": "Στοιχεία λογαριασμού",
+ "view_addresses": "Προβολή διευθύνσεων",
+ "return": "Επιστροφή στα στοιχεία λογαριασμού"
+ },
+ "account_fallback": "Λογαριασμός",
+ "activate_account": {
+ "title": "Ενεργοποίηση λογαριασμού",
+ "subtext": "Δημιουργήστε τον κωδικό πρόσβασης για να ενεργοποιήσετε τον λογαριασμό σας.",
+ "password": "Κωδικός πρόσβασης",
+ "password_confirm": "Επιβεβαίωση κωδικού πρόσβασης",
+ "submit": "Ενεργοποίηση λογαριασμού",
+ "cancel": "Απόρριψη πρόσκλησης"
+ },
+ "addresses": {
+ "title": "Διευθύνσεις",
+ "default": "Προεπιλογή",
+ "add_new": "Προσθήκη νέας διεύθυνσης",
+ "edit_address": "Επεξεργασία διεύθυνσης",
+ "first_name": "Όνομα",
+ "last_name": "Επίθετο",
+ "company": "Εταιρεία",
+ "address1": "Διεύθυνση 1",
+ "address2": "Διεύθυνση 2",
+ "city": "Πόλη",
+ "country": "Χώρα/περιοχή",
+ "province": "Επαρχία",
+ "zip": "Ταχυδρομικός κώδικας",
+ "phone": "Τηλέφωνο",
+ "set_default": "Ορισμός ως προεπιλεγμένης διεύθυνσης",
+ "add": "Προσθήκη διεύθυνσης",
+ "update": "Ενημέρωση διεύθυνσης",
+ "cancel": "Ακύρωση",
+ "edit": "Επεξεργασία",
+ "delete": "Διαγραφή",
+ "delete_confirm": "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν τη διεύθυνση;"
+ },
+ "log_in": "Σύνδεση",
+ "log_out": "Αποσύνδεση",
+ "login_page": {
+ "cancel": "Ακύρωση",
+ "create_account": "Δημιουργία λογαριασμού",
+ "email": "Email",
+ "forgot_password": "Ξεχάσατε τον κωδικό πρόσβασης;",
+ "guest_continue": "Συνέχεια",
+ "guest_title": "Συνέχεια ως επισκέπτης",
+ "password": "Κωδικός πρόσβασης",
+ "title": "Σύνδεση",
+ "sign_in": "Σύνδεση",
+ "submit": "Υποβολή"
+ },
+ "orders": {
+ "title": "Ιστορικό παραγγελιών",
+ "order_number": "Παραγγελία",
+ "order_number_link": "Αριθμός παραγγελίας {{ number }}",
+ "date": "Ημερομηνία",
+ "payment_status": "Κατάσταση πληρωμής",
+ "fulfillment_status": "Κατάσταση ολοκλήρωσης",
+ "total": "Σύνολο",
+ "none": "Δεν έχετε κάνει κάποια παραγγελία ακόμη."
+ },
+ "recover_password": {
+ "title": "Επαναφορά του κωδικού σας πρόσβασης",
+ "subtext": "Θα σας στείλουμε ένα email για την επαναφορά του κωδικού πρόσβασης",
+ "success": "Σας στείλαμε ένα email το οποίο περιέχει έναν σύνδεσμο για την ενημέρωση του κωδικού πρόσβασης."
+ },
+ "register": {
+ "title": "Δημιουργία λογαριασμού",
+ "first_name": "Όνομα",
+ "last_name": "Επίθετο",
+ "email": "Email",
+ "password": "Κωδικός πρόσβασης",
+ "submit": "Δημιουργία"
+ },
+ "reset_password": {
+ "title": "Επαναφορά κωδικού πρόσβασης λογαριασμού",
+ "subtext": "Εισαγάγετε νέο κωδικό πρόσβασης",
+ "password": "Κωδικός πρόσβασης",
+ "password_confirm": "Επιβεβαίωση κωδικού πρόσβασης",
+ "submit": "Επαναφορά κωδικού πρόσβασης"
+ },
+ "order": {
+ "title": "Παραγγελία {{ name }}",
+ "date_html": "Πραγματοποιήθηκε στις {{ date }}",
+ "cancelled_html": "Η παραγγελία ακυρώθηκε στις {{ date }}",
+ "cancelled_reason": "Αιτία: {{ reason }}",
+ "billing_address": "Διεύθυνση χρέωσης",
+ "payment_status": "Κατάσταση πληρωμής",
+ "shipping_address": "Διεύθυνση αποστολής",
+ "fulfillment_status": "Κατάσταση ολοκλήρωσης",
+ "discount": "Έκπτωση",
+ "shipping": "Έξοδα αποστολής",
+ "tax": "Φόρος",
+ "product": "Προϊόν",
+ "sku": "SKU",
+ "price": "Τιμή",
+ "quantity": "Ποσότητα",
+ "total": "Σύνολο",
+ "fulfilled_at_html": "Ολοκληρώθηκε στις {{ date }}",
+ "track_shipment": "Παρακολούθηση αποστολής",
+ "tracking_url": "Σύνδεσμος παρακολούθησης",
+ "tracking_company": "Εταιρεία ταχυμεταφοράς",
+ "tracking_number": "Αριθμός παρακολούθησης",
+ "subtotal": "Υποσύνολο",
+ "total_duties": "Δασμοί",
+ "total_refunded": "Τα χρήματα επιστράφηκαν"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Αυτό είναι το υπόλοιπο της δωροκάρτας σας ύψους {{ value }} για το {{ shop }}!",
+ "subtext": "Η δωροκάρτα σας",
+ "gift_card_code": "Κωδικός δωροκάρτας",
+ "shop_link": "Επισκεφτείτε το διαδικτυακό κατάστημα",
+ "add_to_apple_wallet": "Προσθήκη στο Apple Wallet",
+ "qr_image_alt": "Κωδικός QR — σαρώστε για να εξαργυρώσετε τη δωροκάρτα",
+ "copy_code": "Αντιγραφή κωδικού δωροκάρτας",
+ "expired": "Έληξε",
+ "copy_code_success": "Η αντιγραφή του κωδικού ήταν επιτυχής",
+ "how_to_use_gift_card": "Χρησιμοποιήστε τον κωδικό της δωροκάρτας στο διαδίκτυο ή τον κωδικό QR στο κατάστημα",
+ "expiration_date": "Λήγει στις {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Θέλω να το στείλω ως δώρο",
+ "email_label": "Email παραλήπτη",
+ "email": "Email",
+ "name_label": "Όνομα παραλήπτη (προαιρετικά)",
+ "name": "Όνομα",
+ "message_label": "Μήνυμα (προαιρετικά)",
+ "message": "Μήνυμα",
+ "max_characters": "Έως {{ max_chars }} χαρακτήρες",
+ "email_label_optional_for_no_js_behavior": "Email παραλήπτη (προαιρετικά)",
+ "send_on": "ΕΕΕΕ-ΜΜ-ΗΗ",
+ "send_on_label": "Ημερομηνία αποστολής (προαιρετικά)",
+ "expanded": "Η φόρμα παραλήπτη δωροκάρτας αναπτύχθηκε",
+ "collapsed": "Η φόρμα παραλήπτη δωροκάρτας συμπτύχθηκε"
+ }
+ }
+}
diff --git a/locales/en.default.json b/locales/en.default.json
new file mode 100644
index 0000000..52ffeae
--- /dev/null
+++ b/locales/en.default.json
@@ -0,0 +1,513 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Enter store using password:",
+ "login_password_button": "Enter using password",
+ "login_form_password_label": "Password",
+ "login_form_password_placeholder": "Your password",
+ "login_form_error": "Wrong password!",
+ "login_form_submit": "Enter",
+ "admin_link_html": "Are you the store owner? Log in here ",
+ "powered_by_shopify_html": "This shop will be powered by {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Share on Facebook",
+ "share_on_twitter": "Tweet on Twitter",
+ "share_on_pinterest": "Pin on Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Continue shopping",
+ "pagination": {
+ "label": "Pagination",
+ "page": "Page {{ number }}",
+ "next": "Next page",
+ "previous": "Previous page"
+ },
+ "search": {
+ "search": "Search",
+ "reset": "Clear search term"
+ },
+ "cart": {
+ "view": "View cart ({{ count }})",
+ "view_empty_cart": "View cart",
+ "item_added": "Item added to your cart"
+ },
+ "share": {
+ "close": "Close share",
+ "copy_to_clipboard": "Copy link",
+ "share_url": "Link",
+ "success_message": "Link copied to clipboard"
+ },
+ "slider": {
+ "of": "of",
+ "next_slide": "Slide right",
+ "previous_slide": "Slide left",
+ "name": "Slider"
+ }
+ },
+ "newsletter": {
+ "label": "Email",
+ "success": "Thanks for subscribing",
+ "button_label": "Subscribe"
+ },
+ "accessibility": {
+ "skip_to_text": "Skip to content",
+ "skip_to_product_info": "Skip to product information",
+ "close": "Close",
+ "unit_price_separator": "per",
+ "vendor": "Vendor:",
+ "error": "Error",
+ "refresh_page": "Choosing a selection results in a full page refresh.",
+ "link_messages": {
+ "new_window": "Opens in a new window.",
+ "external": "Opens external website."
+ },
+ "loading": "Loading...",
+ "total_reviews": "total reviews",
+ "star_reviews_info": "{{ rating_value }} out of {{ rating_max }} stars",
+ "collapsible_content_title": "Collapsible content",
+ "complementary_products": "Complementary products"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Read more: {{ title }}",
+ "comments": {
+ "one": "{{ count }} comment",
+ "other": "{{ count }} comments"
+ },
+ "moderated": "Please note, comments need to be approved before they are published.",
+ "comment_form_title": "Leave a comment",
+ "name": "Name",
+ "email": "Email",
+ "message": "Comment",
+ "post": "Post comment",
+ "back_to_blog": "Back to blog",
+ "share": "Share this article",
+ "success": "Your comment was posted successfully! Thank you!",
+ "success_moderated": "Your comment was posted successfully. We will publish it in a little while, as our blog is moderated."
+ }
+ },
+ "onboarding": {
+ "product_title": "Example product title",
+ "collection_title": "Your collection's name"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Add to cart",
+ "choose_options": "Choose options",
+ "choose_product_options": "Choose options for {{ product_name }}",
+ "description": "Description",
+ "inventory_in_stock": "In stock",
+ "inventory_in_stock_show_count": "{{ quantity }} in stock",
+ "inventory_low_stock": "Low stock",
+ "inventory_low_stock_show_count": "Low stock: {{ quantity }} left",
+ "inventory_out_of_stock": "Out of stock",
+ "inventory_out_of_stock_continue_selling": "In stock",
+ "sku": "SKU",
+ "on_sale": "Sale",
+ "product_variants": "Product variants",
+ "media": {
+ "gallery_viewer": "Gallery Viewer",
+ "load_image": "Load image {{ index }} in gallery view",
+ "load_model": "Load 3D Model {{ index }} in gallery view",
+ "load_video": "Play video {{ index }} in gallery view",
+ "image_available": "Image {{ index }} is now available in gallery view",
+ "open_media": "Open media {{ index }} in modal",
+ "play_model": "Play 3D Viewer",
+ "play_video": "Play video"
+ },
+ "quantity": {
+ "label": "Quantity",
+ "input_label": "Quantity for {{ product }}",
+ "increase": "Increase quantity for {{ product }}",
+ "decrease": "Decrease quantity for {{ product }}",
+ "minimum_of": "Minimum of {{ quantity }}",
+ "maximum_of": "Maximum of {{ quantity }}",
+ "multiples_of": "Increments of {{ quantity }}",
+ "in_cart_html": "{{ quantity }} in cart",
+ "note": "View quantity rules"
+ },
+ "volume_pricing": {
+ "title": "Volume Pricing",
+ "note": "Volume pricing available",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "at {{ price }}/ea",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "pickup_availability": {
+ "view_store_info": "View store information",
+ "check_other_stores": "Check availability at other stores",
+ "pick_up_available": "Pickup available",
+ "pick_up_available_at_html": "Pickup available at {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Pickup currently unavailable at {{ location_name }} ",
+ "unavailable": "Couldn't load pickup availability",
+ "refresh": "Refresh"
+ },
+ "price": {
+ "from_price_html": "From {{ price }}",
+ "regular_price": "Regular price",
+ "sale_price": "Sale price",
+ "unit_price": "Unit price"
+ },
+ "share": "Share this product",
+ "sold_out": "Sold out",
+ "unavailable": "Unavailable",
+ "vendor": "Vendor",
+ "value_unavailable": "{{ option_value }} - Unavailable",
+ "variant_sold_out_or_unavailable": "Variant sold out or unavailable",
+ "video_exit_message": "{{ title }} opens full screen video in same window.",
+ "view_full_details": "View full details",
+ "xr_button": "View in your space",
+ "xr_button_label": "View in your space, loads item in augmented reality window",
+ "include_taxes": "Tax included.",
+ "shipping_policy_html": "Shipping calculated at checkout."
+ },
+ "modal": {
+ "label": "Media gallery"
+ },
+ "facets": {
+ "filter_and_operator_subtitle": "Match all",
+ "apply": "Apply",
+ "clear": "Clear",
+ "clear_all": "Remove all",
+ "from": "From",
+ "filter_and_sort": "Filter and sort",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filter",
+ "filters_selected": {
+ "one": "{{ count }} selected",
+ "other": "{{ count }} selected"
+ },
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filters selected)",
+ "show_more": "Show more",
+ "show_less": "Show less",
+ "max_price": "The highest price is {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} of {{ count }} product",
+ "other": "{{ product_count }} of {{ count }} products"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} product",
+ "other": "{{ count }} products"
+ },
+ "reset": "Reset",
+ "sort_button": "Sort",
+ "sort_by_label": "Sort by:",
+ "to": "To",
+ "clear_filter": "Remove filter"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "No results found for “{{ terms }}”. Check the spelling or use a different word or phrase.",
+ "page": "Page",
+ "products": "Products",
+ "results_pages_with_count": {
+ "one": "{{ count }} page",
+ "other": "{{ count }} pages"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} suggestion",
+ "other": "{{ count }} suggestions"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} product",
+ "other": "{{ count }} products"
+ },
+ "results_with_count": {
+ "one": "{{ count }} result",
+ "other": "{{ count }} results"
+ },
+ "results_with_count_and_term": {
+ "one": "{{ count }} result found for “{{ terms }}”",
+ "other": "{{ count }} results found for “{{ terms }}”"
+ },
+ "title": "Search results",
+ "search_for": "Search for “{{ terms }}”",
+ "suggestions": "Suggestions",
+ "pages": "Pages"
+ },
+ "cart": {
+ "cart": "Cart"
+ },
+ "contact": {
+ "form": {
+ "title": "Contact form",
+ "name": "Name",
+ "email": "Email",
+ "phone": "Phone number",
+ "comment": "Comment",
+ "send": "Send",
+ "post_success": "Thanks for contacting us. We'll get back to you as soon as possible.",
+ "error_heading": "Please adjust the following:"
+ }
+ },
+ "404": {
+ "title": "Page not found",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "announcements": {
+ "previous_announcement": "Previous announcement",
+ "next_announcement": "Next announcement",
+ "carousel": "Carousel",
+ "announcement": "Announcement",
+ "announcement_bar": "Announcement bar"
+ },
+
+ "header": {
+ "announcement": "Announcement",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} item",
+ "other": "{{ count }} items"
+ }
+ },
+ "cart": {
+ "title": "Your cart",
+ "caption": "Cart items",
+ "remove_title": "Remove {{ title }}",
+ "estimated_total": "Estimated total",
+ "new_estimated_total": "New estimated total",
+ "note": "Order special instructions",
+ "checkout": "Check out",
+ "empty": "Your cart is empty",
+ "cart_error": "There was an error while updating your cart. Please try again.",
+ "cart_quantity_error_html": "You can only add {{ quantity }} of this item to your cart.",
+ "taxes_and_shipping_policy_at_checkout_html": "Taxes, Discounts and shipping calculated at checkout",
+ "taxes_included_but_shipping_at_checkout": "Tax included and shipping and discounts calculated at checkout",
+ "taxes_included_and_shipping_policy_html": "Tax included. Shipping and discounts calculated at checkout.",
+ "taxes_and_shipping_at_checkout": "Taxes, discounts and shipping calculated at checkout",
+ "headings": {
+ "product": "Product",
+ "price": "Price",
+ "total": "Total",
+ "quantity": "Quantity",
+ "image": "Product image"
+ },
+ "update": "Update",
+ "login": {
+ "title": "Have an account?",
+ "paragraph_html": "Log in to check out faster."
+ }
+ },
+ "footer": {
+ "payment": "Payment methods"
+ },
+ "featured_blog": {
+ "view_all": "View all",
+ "onboarding_title": "Blog post",
+ "onboarding_content": "Give your customers a summary of your blog post"
+ },
+ "featured_collection": {
+ "view_all": "View all",
+ "view_all_label": "View all products in the {{ collection_name }} collection"
+ },
+ "collection_list": {
+ "view_all": "View all"
+ },
+ "collection_template": {
+ "empty": "No products found",
+ "title": "Collection",
+ "use_fewer_filters_html": "Use fewer filters or remove all "
+ },
+ "video": {
+ "load_video": "Load video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Load slide",
+ "previous_slideshow": "Previous slide",
+ "next_slideshow": "Next slide",
+ "pause_slideshow": "Pause slideshow",
+ "play_slideshow": "Play slideshow",
+ "carousel": "Carousel",
+ "slide": "Slide"
+ },
+ "page": {
+ "title": "Page title"
+ },
+ "quick_order_list": {
+ "product_total": "Product subtotal",
+ "view_cart": "View cart",
+ "each": "{{ money }}/ea",
+ "product": "Product",
+ "variant": "Variant",
+ "variant_total": "Variant total",
+ "items_added": {
+ "one": "{{ quantity }} item added",
+ "other": "{{ quantity }} items added"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} item removed",
+ "other": "{{ quantity }} items removed"
+ },
+ "product_variants": "Product variants",
+ "total_items": "Total items",
+ "remove_all_items_confirmation": "Remove all {{ quantity }} items from your cart?",
+ "remove_all": "Remove all",
+ "cancel": "Cancel"
+ }
+ },
+ "localization": {
+ "country_label": "Country/region",
+ "language_label": "Language",
+ "update_language": "Update language",
+ "update_country": "Update country/region"
+ },
+ "customer": {
+ "account": {
+ "title": "Account",
+ "details": "Account details",
+ "view_addresses": "View addresses",
+ "return": "Return to Account details"
+ },
+ "account_fallback": "Account",
+ "activate_account": {
+ "title": "Activate account",
+ "subtext": "Create your password to activate your account.",
+ "password": "Password",
+ "password_confirm": "Confirm password",
+ "submit": "Activate account",
+ "cancel": "Decline invitation"
+ },
+ "addresses": {
+ "title": "Addresses",
+ "default": "Default",
+ "add_new": "Add a new address",
+ "edit_address": "Edit address",
+ "first_name": "First name",
+ "last_name": "Last name",
+ "company": "Company",
+ "address1": "Address 1",
+ "address2": "Address 2",
+ "city": "City",
+ "country": "Country/region",
+ "province": "Province",
+ "zip": "Postal/ZIP code",
+ "phone": "Phone",
+ "set_default": "Set as default address",
+ "add": "Add address",
+ "update": "Update address",
+ "cancel": "Cancel",
+ "edit": "Edit",
+ "delete": "Delete",
+ "delete_confirm": "Are you sure you wish to delete this address?"
+ },
+ "log_in": "Log in",
+ "log_out": "Log out",
+ "login_page": {
+ "cancel": "Cancel",
+ "create_account": "Create account",
+ "email": "Email",
+ "forgot_password": "Forgot your password?",
+ "guest_continue": "Continue",
+ "guest_title": "Continue as a guest",
+ "password": "Password",
+ "title": "Login",
+ "sign_in": "Sign in",
+ "submit": "Submit"
+ },
+ "order": {
+ "title": "Order {{ name }}",
+ "date_html": "Placed on {{ date }}",
+ "cancelled_html": "Order Cancelled on {{ date }}",
+ "cancelled_reason": "Reason: {{ reason }}",
+ "billing_address": "Billing Address",
+ "payment_status": "Payment Status",
+ "shipping_address": "Shipping Address",
+ "fulfillment_status": "Fulfillment Status",
+ "discount": "Discount",
+ "shipping": "Shipping",
+ "tax": "Tax",
+ "product": "Product",
+ "sku": "SKU",
+ "price": "Price",
+ "quantity": "Quantity",
+ "total": "Total",
+ "total_refunded": "Refunded",
+ "fulfilled_at_html": "Fulfilled {{ date }}",
+ "track_shipment": "Track shipment",
+ "tracking_url": "Tracking link",
+ "tracking_company": "Carrier",
+ "tracking_number": "Tracking number",
+ "subtotal": "Subtotal",
+ "total_duties": "Duties"
+ },
+ "orders": {
+ "title": "Order history",
+ "order_number": "Order",
+ "order_number_link": "Order number {{ number }}",
+ "date": "Date",
+ "payment_status": "Payment status",
+ "fulfillment_status": "Fulfillment status",
+ "total": "Total",
+ "none": "You haven't placed any orders yet."
+ },
+ "recover_password": {
+ "title": "Reset your password",
+ "subtext": "We will send you an email to reset your password",
+ "success": "We've sent you an email with a link to update your password."
+ },
+ "register": {
+ "title": "Create account",
+ "first_name": "First name",
+ "last_name": "Last name",
+ "email": "Email",
+ "password": "Password",
+ "submit": "Create"
+ },
+ "reset_password": {
+ "title": "Reset account password",
+ "subtext": "Enter a new password",
+ "password": "Password",
+ "password_confirm": "Confirm password",
+ "submit": "Reset password"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "how_to_use_gift_card": "Use the gift card code online or QR code in-store",
+ "title": "Here's your {{ value }} gift card balance for {{ shop }}!",
+ "subtext": "Your gift card",
+ "gift_card_code": "Gift card code",
+ "shop_link": "Visit online store",
+ "add_to_apple_wallet": "Add to Apple Wallet",
+ "qr_image_alt": "QR code — scan to redeem gift card",
+ "copy_code": "Copy gift card code",
+ "expiration_date": "Expires {{ expires_on }}",
+ "copy_code_success": "Code copied successfully",
+ "expired": "Expired"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "I want to send this as a gift",
+ "expanded": "Gift card recipient form expanded",
+ "collapsed": "Gift card recipient form collapsed",
+ "email_label": "Recipient email",
+ "email_label_optional_for_no_js_behavior": "Recipient email (optional)",
+ "email": "Email",
+ "name_label": "Recipient name (optional)",
+ "name": "Name",
+ "message_label": "Message (optional)",
+ "message": "Message",
+ "max_characters": "{{ max_chars }} characters max",
+ "send_on": "YYYY-MM-DD",
+ "send_on_label": "Send on (optional)"
+ }
+ }
+}
diff --git a/locales/en.default.schema.json b/locales/en.default.schema.json
new file mode 100644
index 0000000..4065f89
--- /dev/null
+++ b/locales/en.default.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Border"
+ },
+ "header__shadow": {
+ "content": "Shadow"
+ },
+ "blur": {
+ "label": "Blur"
+ },
+ "corner_radius": {
+ "label": "Corner radius"
+ },
+ "horizontal_offset": {
+ "label": "Horizontal offset"
+ },
+ "vertical_offset": {
+ "label": "Vertical offset"
+ },
+ "thickness": {
+ "label": "Thickness"
+ },
+ "opacity": {
+ "label": "Opacity"
+ },
+ "image_padding": {
+ "label": "Image padding"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Text alignment"
+ }
+ }
+ },
+ "cards": {
+ "name": "Product cards",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Card"
+ },
+ "label": "Style"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Collection cards",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Card"
+ },
+ "label": "Style"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Blog cards",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Card"
+ },
+ "label": "Style"
+ }
+ }
+ },
+ "badges": {
+ "name": "Badges",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Bottom left"
+ },
+ "options__2": {
+ "label": "Bottom right"
+ },
+ "options__3": {
+ "label": "Top left"
+ },
+ "options__4": {
+ "label": "Top right"
+ },
+ "label": "Position on cards"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Sale badge color scheme"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Sold out badge color scheme"
+ }
+ }
+ },
+ "colors": {
+ "name": "Colors",
+ "settings": {
+ "background": {
+ "label": "Background"
+ },
+ "background_gradient": {
+ "label": "Background gradient",
+ "info": "Background gradient replaces background where possible."
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_background": {
+ "label": "Solid button background"
+ },
+ "button_label": {
+ "label": "Solid button label"
+ },
+ "secondary_button_label": {
+ "label": "Outline button"
+ },
+ "shadow": {
+ "label": "Shadow"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Desktop logo width",
+ "info": "Logo width is automatically optimized for mobile."
+ },
+ "favicon": {
+ "label": "Favicon image",
+ "info": "Will be scaled down to 32 x 32px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Brand information",
+ "settings": {
+ "paragraph": {
+ "content": "Add a brand description to your store's footer."
+ },
+ "brand_headline": {
+ "label": "Headline"
+ },
+ "brand_description": {
+ "label": "Description"
+ },
+ "brand_image": {
+ "label": "Image"
+ },
+ "brand_image_width": {
+ "label": "Image width"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typography",
+ "settings": {
+ "type_header_font": {
+ "label": "Font",
+ "info": "Selecting a different font can affect the speed of your store. [Learn more about system fonts.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Font size scale"
+ },
+ "header__1": {
+ "content": "Headings"
+ },
+ "header__2": {
+ "content": "Body"
+ },
+ "type_body_font": {
+ "label": "Font",
+ "info": "Selecting a different font can affect the speed of your store. [Learn more about system fonts.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "body_scale": {
+ "label": "Font size scale"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Buttons"
+ },
+ "variant_pills": {
+ "name": "Variant pills",
+ "paragraph": "Variant pills are one way of displaying your product variants. [Learn more](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Inputs"
+ },
+ "content_containers": {
+ "name": "Content containers"
+ },
+ "popups": {
+ "name": "Dropdowns and pop-ups",
+ "paragraph": "Affects areas like navigation dropdowns, pop-up modals, and cart pop-ups."
+ },
+ "media": {
+ "name": "Media"
+ },
+ "drawers": {
+ "name": "Drawers"
+ },
+ "animations": {
+ "name": "Animations",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Reveal sections on scroll"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "None"
+ },
+ "options__2": {
+ "label": "Vertical lift"
+ },
+ "options__3": {
+ "label": "3D lift"
+ },
+ "label": "Hover effect",
+ "info": "Affects cards and buttons."
+ }
+ }
+ },
+ "social-media": {
+ "name": "Social media",
+ "settings": {
+ "header": {
+ "content": "Social accounts"
+ },
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Search behavior",
+ "settings": {
+ "header": {
+ "content": "Search suggestions"
+ },
+ "predictive_search_enabled": {
+ "label": "Enable search suggestions"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Show product vendor",
+ "info": "Visible when search suggestions enabled."
+ },
+ "predictive_search_show_price": {
+ "label": "Show product price",
+ "info": "Visible when search suggestions enabled."
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Currency format",
+ "settings": {
+ "content": "Currency codes",
+ "paragraph": "Cart and checkout prices always show currency codes. Example: $1.00 USD.",
+ "currency_code_enabled": {
+ "label": "Show currency codes"
+ }
+ }
+ },
+ "cart": {
+ "name": "Cart",
+ "settings": {
+ "cart_type": {
+ "label": "Cart type",
+ "drawer": {
+ "label": "Drawer"
+ },
+ "page": {
+ "label": "Page"
+ },
+ "notification": {
+ "label": "Popup notification"
+ }
+ },
+ "show_vendor": {
+ "label": "Show vendor"
+ },
+ "show_cart_note": {
+ "label": "Enable cart note"
+ },
+ "cart_drawer": {
+ "header": "Cart drawer",
+ "collection": {
+ "label": "Collection",
+ "info": "Visible when cart drawer is empty."
+ }
+ }
+ }
+ },
+ "layout": {
+ "name": "Layout",
+ "settings": {
+ "page_width": {
+ "label": "Page width"
+ },
+ "spacing_sections": {
+ "label": "Space between template sections"
+ },
+ "header__grid": {
+ "content": "Grid"
+ },
+ "paragraph__grid": {
+ "content": "Affects areas with multiple columns or rows."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Horizontal space"
+ },
+ "spacing_grid_vertical": {
+ "label": "Vertical space"
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "animation": {
+ "content": "Animations",
+ "image_behavior": {
+ "options__1": {
+ "label": "None"
+ },
+ "options__2": {
+ "label": "Ambient movement"
+ },
+ "options__3": {
+ "label": "Fixed background position"
+ },
+ "options__4": {
+ "label": "Zoom in on scroll"
+ },
+ "label": "Image behavior"
+ }
+ },
+ "padding": {
+ "section_padding_heading": "Section padding",
+ "padding_top": "Top padding",
+ "padding_bottom": "Bottom padding"
+ },
+ "spacing": "Spacing",
+ "colors": {
+ "label": "Color scheme",
+ "has_cards_info": "To change the card color scheme, update your theme settings."
+ },
+ "heading_size": {
+ "label": "Heading size",
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ },
+ "options__4": {
+ "label": "Extra large"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Default"
+ },
+ "options__2": {
+ "label": "Arch"
+ },
+ "options__3": {
+ "label": "Blob"
+ },
+ "options__4": {
+ "label": "Chevron left"
+ },
+ "options__5": {
+ "label": "Chevron right"
+ },
+ "options__6": {
+ "label": "Diamond"
+ },
+ "options__7": {
+ "label": "Parallelogram"
+ },
+ "options__8": {
+ "label": "Round"
+ },
+ "label": "Image shape",
+ "info": "Standard-styled cards have no borders when an image shape is active."
+ }
+ },
+ "announcement-bar": {
+ "name": "Announcement bar",
+ "settings": {
+ "auto_rotate": {
+ "label": "Auto-rotate announcements"
+ },
+ "change_slides_speed": {
+ "label": "Change every"
+ },
+ "header__1": {
+ "content": "Social media icons",
+ "info": "To display your social media accounts, link them in your [theme settings](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Announcements"
+ },
+ "show_social": {
+ "label": "Show icons on desktop"
+ },
+ "header__3": {
+ "content": "Country/region selector",
+ "info": "To add a country/region, go to your [market settings.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Enable country/region selector"
+ },
+ "header__4": {
+ "content": "Language selector",
+ "info": "To add a language, go to your [language settings.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Enable language selector"
+ }
+ },
+ "blocks": {
+ "announcement": {
+ "name": "Announcement",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_alignment": {
+ "label": "Text alignment",
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ }
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Announcement bar"
+ }
+ },
+ "apps": {
+ "name": "Apps",
+ "settings": {
+ "include_margins": {
+ "label": "Make section margins the same as theme"
+ }
+ },
+ "presets": {
+ "name": "Apps"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ },
+ "desktop_layout": {
+ "label": "Desktop layout",
+ "options__1": {
+ "label": "Left large block"
+ },
+ "options__2": {
+ "label": "Right large block"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobile layout",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Column"
+ }
+ },
+ "card_styles": {
+ "label": "Card style",
+ "info": "Product, collection, and blog card styles can be updated in theme settings.",
+ "options__1": {
+ "label": "Use individual card styles"
+ },
+ "options__2": {
+ "label": "Style all as product cards"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Image",
+ "settings": {
+ "image": {
+ "label": "Image"
+ }
+ }
+ },
+ "product": {
+ "name": "Product",
+ "settings": {
+ "product": {
+ "label": "Product"
+ },
+ "secondary_background": {
+ "label": "Show secondary background"
+ },
+ "second_image": {
+ "label": "Show second image on hover"
+ }
+ }
+ },
+ "collection": {
+ "name": "Collection",
+ "settings": {
+ "collection": {
+ "label": "Collection"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Cover image"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Video plays in a pop-up if the section contains other blocks.",
+ "placeholder": "Use a YouTube or Vimeo URL"
+ },
+ "description": {
+ "label": "Video alt text",
+ "info": "Describe the video for customers using screen readers. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Collection list",
+ "settings": {
+ "title": {
+ "label": "Heading"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "info": "Add images by editing your collections. [Learn more](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "show_view_all": {
+ "label": "Enable \"View all\" button if list includes more collections than shown"
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Enable swipe on mobile"
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Collection",
+ "settings": {
+ "collection": {
+ "label": "Collection"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collection list"
+ }
+ },
+ "contact-form": {
+ "name": "Contact Form",
+ "presets": {
+ "name": "Contact form"
+ }
+ },
+ "custom-liquid": {
+ "name": "Custom Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid code",
+ "info": "Add app snippets or other code to create advanced customizations. [Learn more](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Custom Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blog posts",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Number of blog posts to show"
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "show_view_all": {
+ "label": "Enable \"View all\" button if blog includes more blog posts than shown"
+ },
+ "show_image": {
+ "label": "Show featured image",
+ "info": "For best results, use an image with a 3:2 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Show date"
+ },
+ "show_author": {
+ "label": "Show author"
+ }
+ },
+ "presets": {
+ "name": "Blog posts"
+ }
+ },
+ "featured-collection": {
+ "name": "Featured collection",
+ "settings": {
+ "title": {
+ "label": "Heading"
+ },
+ "description": {
+ "label": "Description"
+ },
+ "show_description": {
+ "label": "Show collection description from the admin"
+ },
+ "description_style": {
+ "label": "Description style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ }
+ },
+ "collection": {
+ "label": "Collection"
+ },
+ "products_to_show": {
+ "label": "Maximum products to show"
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "show_view_all": {
+ "label": "Enable \"View all\" if collection has more products than shown"
+ },
+ "view_all_style": {
+ "label": "\"View all\" style",
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Outline button"
+ },
+ "options__3": {
+ "label": "Solid button"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Enable carousel on desktop"
+ },
+ "full_width": {
+ "label": "Make products full width"
+ },
+ "header": {
+ "content": "Product card"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Show second image on hover"
+ },
+ "show_vendor": {
+ "label": "Show vendor"
+ },
+ "show_rating": {
+ "label": "Show product rating",
+ "info": "To display a rating, add a product rating app. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Enable quick add button",
+ "info": "Optimal with popup or drawer cart type."
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Enable swipe on mobile"
+ }
+ },
+ "presets": {
+ "name": "Featured collection"
+ }
+ },
+ "featured-product": {
+ "name": "Featured product",
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Title"
+ },
+ "price": {
+ "name": "Price"
+ },
+ "quantity_selector": {
+ "name": "Quantity selector"
+ },
+ "variant_picker": {
+ "name": "Variant picker",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Dropdown"
+ },
+ "options__2": {
+ "label": "Pills"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy buttons",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Show dynamic checkout buttons",
+ "info": "Using the payment methods available on your store, customers see their preferred option, like PayPal or Apple Pay. [Learn more](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ }
+ }
+ }
+ },
+ "description": {
+ "name": "Description"
+ },
+ "share": {
+ "name": "Share",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "featured_image_info": {
+ "content": "If you include a link in social media posts, the page’s featured image will be shown as the preview image. [Learn more](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "A store title and description are included with the preview image. [Learn more](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ }
+ }
+ },
+ "rating": {
+ "name": "Product rating",
+ "settings": {
+ "paragraph": {
+ "content": "To display a rating, add a product rating app. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Product"
+ },
+ "secondary_background": {
+ "label": "Show secondary background"
+ },
+ "header": {
+ "content": "Media",
+ "info": "Learn more about [media types](https://help.shopify.com/manual/products/product-media)"
+ },
+ "media_position": {
+ "label": "Desktop media position",
+ "info": "Position is automatically optimized for mobile.",
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Right"
+ }
+ },
+ "hide_variants": {
+ "label": "Hide unselected variants’ media on desktop"
+ },
+ "enable_video_looping": {
+ "label": "Enable video looping"
+ }
+ },
+ "presets": {
+ "name": "Featured product"
+ }
+ },
+ "footer": {
+ "name": "Footer",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Displays only top-level menu items."
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Brand information",
+ "settings": {
+ "paragraph": {
+ "content": "This block will display your brand information. [Edit brand information.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Social media icons"
+ },
+ "show_social": {
+ "label": "Show social media icons",
+ "info": "To display your social media accounts, link them in your [theme settings](/editor?context=theme&category=social%20media)."
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ },
+ "subtext": {
+ "label": "Subtext"
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Show email signup"
+ },
+ "newsletter_heading": {
+ "label": "Heading"
+ },
+ "header__1": {
+ "content": "Email Signup",
+ "info": "Subscribers added automatically to your “accepted marketing” customer list. [Learn more](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Social media icons",
+ "info": "To display your social media accounts, link them in your [theme settings](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Show social media icons"
+ },
+ "header__3": {
+ "content": "Country/region selector"
+ },
+ "header__4": {
+ "info": "To add a country/region, go to your [market settings.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Enable country/region selector"
+ },
+ "header__5": {
+ "content": "Language selector"
+ },
+ "header__6": {
+ "info": "To add a language, go to your [language settings.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Enable language selector"
+ },
+ "header__7": {
+ "content": "Payment methods"
+ },
+ "payment_enable": {
+ "label": "Show payment icons"
+ },
+ "header__8": {
+ "content": "Policy links",
+ "info": "To add store policies, go to your [policy settings](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Show policy links"
+ },
+ "margin_top": {
+ "label": "Top margin"
+ },
+ "header__9": {
+ "content": "Follow on Shop",
+ "info": "To allow customers to follow your store on the Shop app from your storefront, Shop Pay must be enabled. [Learn more](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Enable Follow on Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Header",
+ "settings": {
+ "logo_help": {
+ "content": "Edit your logo in [theme settings](/editor?context=theme&category=logo)."
+ },
+ "logo_position": {
+ "label": "Desktop logo position",
+ "options__1": {
+ "label": "Middle left"
+ },
+ "options__2": {
+ "label": "Top left"
+ },
+ "options__3": {
+ "label": "Top center"
+ },
+ "options__4": {
+ "label": "Middle center"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "menu_type_desktop": {
+ "label": "Desktop menu type",
+ "info": "Menu type is automatically optimized for mobile.",
+ "options__1": {
+ "label": "Dropdown"
+ },
+ "options__2": {
+ "label": "Mega menu"
+ },
+ "options__3": {
+ "label": "Drawer"
+ }
+ },
+ "show_line_separator": {
+ "label": "Show separator line"
+ },
+ "header__1": {
+ "content": "Color"
+ },
+ "menu_color_scheme": {
+ "label": "Menu color scheme"
+ },
+ "sticky_header_type": {
+ "label": "Sticky header",
+ "options__1": {
+ "label": "None"
+ },
+ "options__2": {
+ "label": "On scroll up"
+ },
+ "options__3": {
+ "label": "Always"
+ },
+ "options__4": {
+ "label": "Always, reduce logo size"
+ }
+ },
+ "header__3": {
+ "content": "Country/region selector"
+ },
+ "header__4": {
+ "info": "To add a country/region, go to your [market settings.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Enable country/region selector"
+ },
+ "header__5": {
+ "content": "Language selector"
+ },
+ "header__6": {
+ "info": "To add a language, go to your [language settings.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Enable language selector"
+ },
+ "margin_bottom": {
+ "label": "Bottom margin"
+ },
+ "mobile_layout": {
+ "content": "Mobile layout"
+ },
+ "mobile_logo_position": {
+ "label": "Mobile logo position",
+ "options__1": {
+ "label": "Center"
+ },
+ "options__2": {
+ "label": "Left"
+ }
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Image banner",
+ "settings": {
+ "image": {
+ "label": "First image"
+ },
+ "image_2": {
+ "label": "Second image"
+ },
+ "image_overlay_opacity": {
+ "label": "Image overlay opacity"
+ },
+ "image_height": {
+ "label": "Banner height",
+ "options__1": {
+ "label": "Adapt to first image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ },
+ "info": "For best results, use an image with a 3:2 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Top Left"
+ },
+ "options__2": {
+ "label": "Top Center"
+ },
+ "options__3": {
+ "label": "Top Right"
+ },
+ "options__4": {
+ "label": "Middle Left"
+ },
+ "options__5": {
+ "label": "Middle Center"
+ },
+ "options__6": {
+ "label": "Middle Right"
+ },
+ "options__7": {
+ "label": "Bottom Left"
+ },
+ "options__8": {
+ "label": "Bottom Center"
+ },
+ "options__9": {
+ "label": "Bottom Right"
+ },
+ "label": "Desktop content position"
+ },
+ "show_text_box": {
+ "label": "Show container on desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Desktop content alignment"
+ },
+ "mobile": {
+ "content": "Mobile Layout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Mobile content alignment"
+ },
+ "stack_images_on_mobile": {
+ "label": "Stack images on mobile"
+ },
+ "show_text_below": {
+ "label": "Show container on mobile"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Heading",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Description"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ },
+ "label": "Text style"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Buttons",
+ "settings": {
+ "button_label_1": {
+ "label": "First button label",
+ "info": "Leave the label blank to hide the button."
+ },
+ "button_link_1": {
+ "label": "First button link"
+ },
+ "button_style_secondary_1": {
+ "label": "Use outline button style"
+ },
+ "button_label_2": {
+ "label": "Second button label",
+ "info": "Leave the label blank to hide the button."
+ },
+ "button_link_2": {
+ "label": "Second button link"
+ },
+ "button_style_secondary_2": {
+ "label": "Use outline button style"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Image banner"
+ }
+ },
+ "image-with-text": {
+ "name": "Image with text",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "height": {
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ },
+ "label": "Image height"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ },
+ "label": "Desktop image width",
+ "info": "Image is automatically optimized for mobile."
+ },
+ "layout": {
+ "options__1": {
+ "label": "Image first"
+ },
+ "options__2": {
+ "label": "Image second"
+ },
+ "label": "Desktop image placement",
+ "info": "Image first is the default mobile layout."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Desktop content alignment"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Top"
+ },
+ "options__2": {
+ "label": "Middle"
+ },
+ "options__3": {
+ "label": "Bottom"
+ },
+ "label": "Desktop content position"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "No overlap"
+ },
+ "options__2": {
+ "label": "Overlap"
+ },
+ "label": "Content layout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Mobile content alignment"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Heading",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ }
+ }
+ },
+ "caption": {
+ "name": "Caption",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Subtitle"
+ },
+ "options__2": {
+ "label": "Uppercase"
+ }
+ },
+ "caption_size": {
+ "label": "Text size",
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ }
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Content"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Button",
+ "settings": {
+ "button_label": {
+ "label": "Button label",
+ "info": "Leave the label blank to hide the button."
+ },
+ "button_link": {
+ "label": "Button link"
+ },
+ "outline_button": {
+ "label": "Use outline button style"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Image with text"
+ }
+ },
+ "multirow": {
+ "name": "Multirow",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ },
+ "label": "Image height"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ },
+ "label": "Desktop image width",
+ "info": "Image is automatically optimized for mobile."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ },
+ "label": "Heading size"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "label": "Text style"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Solid button"
+ },
+ "options__2": {
+ "label": "Outline button"
+ },
+ "label": "Button style"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Desktop content alignment"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Top"
+ },
+ "options__2": {
+ "label": "Middle"
+ },
+ "options__3": {
+ "label": "Bottom"
+ },
+ "label": "Desktop content position",
+ "info": "Position is automatically optimized for mobile."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alternate from left"
+ },
+ "options__2": {
+ "label": "Alternate from right"
+ },
+ "options__3": {
+ "label": "Aligned left"
+ },
+ "options__4": {
+ "label": "Aligned right"
+ },
+ "label": "Desktop image placement",
+ "info": "Placement is automatically optimized for mobile."
+ },
+ "container_color_scheme": {
+ "label": "Container color scheme"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Mobile content alignment"
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Row",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "caption": {
+ "label": "Caption"
+ },
+ "heading": {
+ "label": "Heading"
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_label": {
+ "label": "Button label"
+ },
+ "button_link": {
+ "label": "Button link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multirow"
+ }
+ },
+ "main-account": {
+ "name": "Account"
+ },
+ "main-activate-account": {
+ "name": "Account activation"
+ },
+ "main-addresses": {
+ "name": "Addresses"
+ },
+ "main-article": {
+ "name": "Blog post",
+ "blocks": {
+ "featured_image": {
+ "name": "Featured image",
+ "settings": {
+ "image_height": {
+ "label": "Featured image height",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ },
+ "info": "For best results, use an image with a 16:9 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "title": {
+ "name": "Title",
+ "settings": {
+ "blog_show_date": {
+ "label": "Show date"
+ },
+ "blog_show_author": {
+ "label": "Show author"
+ }
+ }
+ },
+ "content": {
+ "name": "Content"
+ },
+ "share": {
+ "name": "Share",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "featured_image_info": {
+ "content": "If you include a link in social media posts, the page’s featured image will be shown as the preview image. [Learn more](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "A store title and description are included with the preview image. [Learn more](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blog posts",
+ "settings": {
+ "header": {
+ "content": "Blog post card"
+ },
+ "show_image": {
+ "label": "Show featured image"
+ },
+ "show_date": {
+ "label": "Show date"
+ },
+ "show_author": {
+ "label": "Show author"
+ },
+ "paragraph": {
+ "content": "Change excerpts by editing your blog posts. [Learn more](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "layout": {
+ "label": "Desktop layout",
+ "options__1": {
+ "label": "Grid"
+ },
+ "options__2": {
+ "label": "Collage"
+ },
+ "info": "Posts are stacked on mobile."
+ },
+ "image_height": {
+ "label": "Featured image height",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ },
+ "info": "For best results, use an image with a 3:2 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotal",
+ "blocks": {
+ "subtotal": {
+ "name": "Subtotal price"
+ },
+ "buttons": {
+ "name": "Checkout button"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Items"
+ },
+ "main-collection-banner": {
+ "name": "Collection banner",
+ "settings": {
+ "paragraph": {
+ "content": "Add a description or image by editing your collection. [Learn more](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Show collection description"
+ },
+ "show_collection_image": {
+ "label": "Show collection image",
+ "info": "For best results, use an image with a 16:9 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Product grid",
+ "settings": {
+ "products_per_page": {
+ "label": "Products per page"
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "enable_filtering": {
+ "label": "Enable filtering",
+ "info": "Customize filters with the Search & Discovery app. [Learn more](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "filter_type": {
+ "label": "Desktop filter layout",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ },
+ "options__3": {
+ "label": "Drawer"
+ },
+ "info": "Drawer is the default mobile layout."
+ },
+ "enable_sorting": {
+ "label": "Enable sorting"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Show second image on hover"
+ },
+ "show_vendor": {
+ "label": "Show vendor"
+ },
+ "show_rating": {
+ "label": "Show product rating",
+ "info": "To display a rating, add a product rating app. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "header__1": {
+ "content": "Filtering and sorting"
+ },
+ "header__3": {
+ "content": "Product card"
+ },
+ "enable_tags": {
+ "label": "Enable filtering",
+ "info": "Customize filters with the Search & Discovery app. [Learn more](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_quick_buy": {
+ "label": "Enable quick add button",
+ "info": "Optimal with popup or drawer cart type."
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Collections list page",
+ "settings": {
+ "title": {
+ "label": "Heading"
+ },
+ "sort": {
+ "label": "Sort collections by:",
+ "options__1": {
+ "label": "Alphabetically, A-Z"
+ },
+ "options__2": {
+ "label": "Alphabetically, Z-A"
+ },
+ "options__3": {
+ "label": "Date, new to old"
+ },
+ "options__4": {
+ "label": "Date, old to new"
+ },
+ "options__5": {
+ "label": "Product count, high to low"
+ },
+ "options__6": {
+ "label": "Product count, low to high"
+ }
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "info": "Add images by editing your collections. [Learn more](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ }
+ }
+ },
+ "main-login": {
+ "name": "Login"
+ },
+ "main-order": {
+ "name": "Order"
+ },
+ "main-page": {
+ "name": "Page"
+ },
+ "main-password-footer": {
+ "name": "Password footer"
+ },
+ "main-password-header": {
+ "name": "Password header",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Edit your logo in theme settings."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Product information",
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Title"
+ },
+ "price": {
+ "name": "Price"
+ },
+ "inventory": {
+ "name": "Inventory status",
+ "settings": {
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Low inventory threshold",
+ "info": "Choose 0 to always show in stock if available."
+ },
+ "show_inventory_quantity": {
+ "label": "Show inventory count"
+ }
+ }
+ },
+ "quantity_selector": {
+ "name": "Quantity selector"
+ },
+ "variant_picker": {
+ "name": "Variant picker",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Dropdown"
+ },
+ "options__2": {
+ "label": "Pills"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy buttons",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Show dynamic checkout buttons",
+ "info": "Using the payment methods available on your store, customers see their preferred option, like PayPal or Apple Pay. [Learn more](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Show recipient information form for gift cards",
+ "info": "Allows buyers to send gift cards on a scheduled date along with a personal message. [Learn more](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Pickup availability"
+ },
+ "description": {
+ "name": "Description"
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "options__3": {
+ "label": "Uppercase"
+ }
+ }
+ }
+ },
+ "share": {
+ "name": "Share",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "featured_image_info": {
+ "content": "If you include a link in social media posts, the page’s featured image will be shown as the preview image. [Learn more](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "A store title and description are included with the preview image. [Learn more](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Collapsible row",
+ "settings": {
+ "heading": {
+ "info": "Include a heading that explains the content.",
+ "label": "Heading"
+ },
+ "content": {
+ "label": "Row content"
+ },
+ "page": {
+ "label": "Row content from page"
+ },
+ "icon": {
+ "label": "Icon",
+ "options__1": {
+ "label": "None"
+ },
+ "options__2": {
+ "label": "Apple"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Bottle"
+ },
+ "options__5": {
+ "label": "Box"
+ },
+ "options__6": {
+ "label": "Carrot"
+ },
+ "options__7": {
+ "label": "Chat bubble"
+ },
+ "options__8": {
+ "label": "Check mark"
+ },
+ "options__9": {
+ "label": "Clipboard"
+ },
+ "options__10": {
+ "label": "Dairy"
+ },
+ "options__11": {
+ "label": "Dairy free"
+ },
+ "options__12": {
+ "label": "Dryer"
+ },
+ "options__13": {
+ "label": "Eye"
+ },
+ "options__14": {
+ "label": "Fire"
+ },
+ "options__15": {
+ "label": "Gluten free"
+ },
+ "options__16": {
+ "label": "Heart"
+ },
+ "options__17": {
+ "label": "Iron"
+ },
+ "options__18": {
+ "label": "Leaf"
+ },
+ "options__19": {
+ "label": "Leather"
+ },
+ "options__20": {
+ "label": "Lightning bolt"
+ },
+ "options__21": {
+ "label": "Lipstick"
+ },
+ "options__22": {
+ "label": "Lock"
+ },
+ "options__23": {
+ "label": "Map pin"
+ },
+ "options__24": {
+ "label": "Nut free"
+ },
+ "options__25": {
+ "label": "Pants"
+ },
+ "options__26": {
+ "label": "Paw print"
+ },
+ "options__27": {
+ "label": "Pepper"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Plane"
+ },
+ "options__30": {
+ "label": "Plant"
+ },
+ "options__31": {
+ "label": "Price tag"
+ },
+ "options__32": {
+ "label": "Question mark"
+ },
+ "options__33": {
+ "label": "Recycle"
+ },
+ "options__34": {
+ "label": "Return"
+ },
+ "options__35": {
+ "label": "Ruler"
+ },
+ "options__36": {
+ "label": "Serving dish"
+ },
+ "options__37": {
+ "label": "Shirt"
+ },
+ "options__38": {
+ "label": "Shoe"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Snowflake"
+ },
+ "options__41": {
+ "label": "Star"
+ },
+ "options__42": {
+ "label": "Stopwatch"
+ },
+ "options__43": {
+ "label": "Truck"
+ },
+ "options__44": {
+ "label": "Washing"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-up",
+ "settings": {
+ "link_label": {
+ "label": "Link label"
+ },
+ "page": {
+ "label": "Page"
+ }
+ }
+ },
+ "rating": {
+ "name": "Product rating",
+ "settings": {
+ "paragraph": {
+ "content": "To display a rating, add a product rating app. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Complementary products",
+ "settings": {
+ "paragraph": {
+ "content": "To select complementary products, add the Search & Discovery app. [Learn more](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Heading"
+ },
+ "make_collapsible_row": {
+ "label": "Show as collapsible row"
+ },
+ "icon": {
+ "info": "Visible when collapsible row is displayed."
+ },
+ "product_list_limit": {
+ "label": "Maximum products to show"
+ },
+ "products_per_page": {
+ "label": "Number of products per page"
+ },
+ "pagination_style": {
+ "label": "Pagination style",
+ "options": {
+ "option_1": "Dots",
+ "option_2": "Counter",
+ "option_3": "Numbers"
+ }
+ },
+ "product_card": {
+ "heading": "Product card"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options": {
+ "option_1": "Portrait",
+ "option_2": "Square"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Enable quick add button"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Icon with text",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ }
+ },
+ "content": {
+ "label": "Content",
+ "info": "Choose an icon or add an image for each column or row."
+ },
+ "heading": {
+ "info": "Leave the heading label blank to hide the icon column."
+ },
+ "icon_1": {
+ "label": "First icon"
+ },
+ "image_1": {
+ "label": "First image"
+ },
+ "heading_1": {
+ "label": "First heading"
+ },
+ "icon_2": {
+ "label": "Second icon"
+ },
+ "image_2": {
+ "label": "Second image"
+ },
+ "heading_2": {
+ "label": "Second heading"
+ },
+ "icon_3": {
+ "label": "Third icon"
+ },
+ "image_3": {
+ "label": "Third image"
+ },
+ "heading_3": {
+ "label": "Third heading"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Media",
+ "info": "Learn more about [media types.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_sticky_info": {
+ "label": "Enable sticky content on desktop"
+ },
+ "gallery_layout": {
+ "label": "Desktop layout",
+ "options__1": {
+ "label": "Stacked"
+ },
+ "options__2": {
+ "label": "2 columns"
+ },
+ "options__3": {
+ "label": "Thumbnails"
+ },
+ "options__4": {
+ "label": "Thumbnail carousel"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Constrain media to screen height"
+ },
+ "media_size": {
+ "label": "Desktop media width",
+ "info": "Media is automatically optimized for mobile.",
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ }
+ },
+ "image_zoom": {
+ "label": "Image zoom",
+ "info": "Click and hover defaults to open lightbox on mobile.",
+ "options__1": {
+ "label": "Open lightbox"
+ },
+ "options__2": {
+ "label": "Click and hover"
+ },
+ "options__3": {
+ "label": "No zoom"
+ }
+ },
+ "media_position": {
+ "label": "Desktop media position",
+ "info": "Position is automatically optimized for mobile.",
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Right"
+ }
+ },
+ "media_fit": {
+ "label": "Media fit",
+ "options__1": {
+ "label": "Original"
+ },
+ "options__2": {
+ "label": "Fill"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Mobile layout",
+ "options__1": {
+ "label": "2 columns"
+ },
+ "options__2": {
+ "label": "Show thumbnails"
+ },
+ "options__3": {
+ "label": "Hide thumbnails"
+ }
+ },
+ "hide_variants": {
+ "label": "Hide other variants’ media after selecting a variant"
+ },
+ "enable_video_looping": {
+ "label": "Enable video looping"
+ }
+ }
+ },
+ "main-register": {
+ "name": "Registration"
+ },
+ "main-reset-password": {
+ "name": "Password reset"
+ },
+ "main-search": {
+ "name": "Search results",
+ "settings": {
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Show second image on hover"
+ },
+ "show_vendor": {
+ "label": "Show vendor"
+ },
+ "show_rating": {
+ "label": "Show product rating",
+ "info": "To display a rating, add a product rating app. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "header__1": {
+ "content": "Product card"
+ },
+ "header__2": {
+ "content": "Blog card",
+ "info": "Blog card styles also apply to page cards in search results. To change card styles update your theme settings."
+ },
+ "article_show_date": {
+ "label": "Show date"
+ },
+ "article_show_author": {
+ "label": "Show author"
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Multicolumn",
+ "settings": {
+ "title": {
+ "label": "Heading"
+ },
+ "image_width": {
+ "label": "Image width",
+ "options__1": {
+ "label": "One-third width of column"
+ },
+ "options__2": {
+ "label": "Half width of column"
+ },
+ "options__3": {
+ "label": "Full width of column"
+ }
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "options__4": {
+ "label": "Circle"
+ }
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "column_alignment": {
+ "label": "Column alignment",
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ }
+ },
+ "background_style": {
+ "label": "Secondary background",
+ "options__1": {
+ "label": "None"
+ },
+ "options__2": {
+ "label": "Show as column background"
+ }
+ },
+ "button_label": {
+ "label": "Button label"
+ },
+ "button_link": {
+ "label": "Button link"
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Enable swipe on mobile"
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Column",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "title": {
+ "label": "Heading"
+ },
+ "text": {
+ "label": "Description"
+ },
+ "link_label": {
+ "label": "Link label"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multicolumn"
+ }
+ },
+ "newsletter": {
+ "name": "Email signup",
+ "settings": {
+ "full_width": {
+ "label": "Make section full width"
+ },
+ "paragraph": {
+ "content": "Each email subscription creates a customer account. [Learn more](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Heading",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Subheading",
+ "settings": {
+ "paragraph": {
+ "label": "Description"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Email form"
+ }
+ },
+ "presets": {
+ "name": "Email signup"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Email signup banner",
+ "settings": {
+ "paragraph": {
+ "content": "Each email subscription creates a customer account. [Learn more](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Background image"
+ },
+ "image_overlay_opacity": {
+ "label": "Image overlay opacity"
+ },
+ "show_background_image": {
+ "label": "Show background image"
+ },
+ "show_text_box": {
+ "label": "Show container on desktop"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Top Left"
+ },
+ "options__2": {
+ "label": "Top Center"
+ },
+ "options__3": {
+ "label": "Top Right"
+ },
+ "options__4": {
+ "label": "Middle Left"
+ },
+ "options__5": {
+ "label": "Middle Center"
+ },
+ "options__6": {
+ "label": "Middle Right"
+ },
+ "options__7": {
+ "label": "Bottom Left"
+ },
+ "options__8": {
+ "label": "Bottom Center"
+ },
+ "options__9": {
+ "label": "Bottom Right"
+ },
+ "label": "Desktop content position"
+ },
+ "color_scheme": {
+ "info": "Visible when container displayed."
+ },
+ "image_height": {
+ "label": "Banner height",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ },
+ "info": "For best results, use an image with a 16:9 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Desktop content alignment"
+ },
+ "header": {
+ "content": "Mobile Layout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Mobile content alignment"
+ },
+ "show_text_below": {
+ "label": "Show content below image on mobile",
+ "info": "For best results, use an image with a 16:9 aspect ratio. [Learn more](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Heading",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Paragraph",
+ "settings": {
+ "paragraph": {
+ "label": "Description"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Body"
+ },
+ "options__2": {
+ "label": "Subtitle"
+ },
+ "label": "Text style"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Email form"
+ }
+ },
+ "presets": {
+ "name": "Email signup banner"
+ }
+ },
+ "page": {
+ "name": "Page",
+ "settings": {
+ "page": {
+ "label": "Page"
+ }
+ },
+ "presets": {
+ "name": "Page"
+ }
+ },
+ "quick-order-list": {
+ "name": "Quick order list",
+ "settings": {
+ "show_image": {
+ "label": "Show images"
+ },
+ "show_sku": {
+ "label": "Show SKUs"
+ }
+ },
+ "presets": {
+ "name": "Quick order list"
+ }
+ },
+ "related-products": {
+ "name": "Related products",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ },
+ "products_to_show": {
+ "label": "Maximum products to show"
+ },
+ "columns_desktop": {
+ "label": "Number of columns on desktop"
+ },
+ "paragraph__1": {
+ "content": "Dynamic recommendations use order and product information to change and improve over time. [Learn more](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Product card"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Show second image on hover"
+ },
+ "show_vendor": {
+ "label": "Show vendor"
+ },
+ "show_rating": {
+ "label": "Show product rating",
+ "info": "To display a rating, add a product rating app. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobile Layout"
+ },
+ "columns_mobile": {
+ "label": "Number of columns on mobile",
+ "options__1": {
+ "label": "1 column"
+ },
+ "options__2": {
+ "label": "2 columns"
+ }
+ }
+ }
+ },
+ "rich-text": {
+ "name": "Rich text",
+ "settings": {
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Desktop content position",
+ "info": "Position is automatically optimized for mobile."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ },
+ "label": "Content alignment"
+ },
+ "full_width": {
+ "label": "Make section full width"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Heading",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ }
+ }
+ },
+ "caption": {
+ "name": "Caption",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Subtitle"
+ },
+ "options__2": {
+ "label": "Uppercase"
+ }
+ },
+ "caption_size": {
+ "label": "Text size",
+ "options__1": {
+ "label": "Small"
+ },
+ "options__2": {
+ "label": "Medium"
+ },
+ "options__3": {
+ "label": "Large"
+ }
+ }
+ }
+ },
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Description"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Buttons",
+ "settings": {
+ "button_label_1": {
+ "label": "First button label",
+ "info": "Leave the label blank to hide the button."
+ },
+ "button_link_1": {
+ "label": "First button link"
+ },
+ "button_style_secondary_1": {
+ "label": "Use outline button style"
+ },
+ "button_label_2": {
+ "label": "Second button label",
+ "info": "Leave the label blank to hide the button."
+ },
+ "button_link_2": {
+ "label": "Second button link"
+ },
+ "button_style_secondary_2": {
+ "label": "Use outline button style"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich text"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Heading"
+ },
+ "cover_image": {
+ "label": "Cover image"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Play video on loop"
+ },
+ "header__1": {
+ "content": "Shopify-hosted video"
+ },
+ "header__2": {
+ "content": "Or embed video from URL"
+ },
+ "header__3": {
+ "content": "Style"
+ },
+ "paragraph": {
+ "content": "Shows when no Shopify-hosted video is selected."
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Use a YouTube or Vimeo URL"
+ },
+ "description": {
+ "label": "Video alt text",
+ "info": "Describe the video for customers using screen readers. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Add image padding",
+ "info": "Select image padding if you don't want your cover image to be cropped."
+ },
+ "full_width": {
+ "label": "Make section full width"
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "slideshow": {
+ "name": "Slideshow",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Full width"
+ },
+ "options__2": {
+ "label": "Grid"
+ }
+ },
+ "slide_height": {
+ "label": "Slide height",
+ "options__1": {
+ "label": "Adapt to first image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Medium"
+ },
+ "options__4": {
+ "label": "Large"
+ }
+ },
+ "slider_visual": {
+ "label": "Pagination style",
+ "options__1": {
+ "label": "Counter"
+ },
+ "options__2": {
+ "label": "Dots"
+ },
+ "options__3": {
+ "label": "Numbers"
+ }
+ },
+ "auto_rotate": {
+ "label": "Auto-rotate slides"
+ },
+ "change_slides_speed": {
+ "label": "Change slides every"
+ },
+ "mobile": {
+ "content": "Mobile layout"
+ },
+ "show_text_below": {
+ "label": "Show content below images on mobile"
+ },
+ "accessibility": {
+ "content": "Accessibility",
+ "label": "Slideshow description",
+ "info": "Describe the slideshow for customers using screen readers."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Slide",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "heading": {
+ "label": "Heading"
+ },
+ "subheading": {
+ "label": "Subheading"
+ },
+ "button_label": {
+ "label": "Button label",
+ "info": "Leave the label blank to hide the button."
+ },
+ "link": {
+ "label": "Button link"
+ },
+ "secondary_style": {
+ "label": "Use outline button style"
+ },
+ "box_align": {
+ "label": "Desktop content position",
+ "info": "Position is automatically optimized for mobile.",
+ "options__1": {
+ "label": "Top left"
+ },
+ "options__2": {
+ "label": "Top center"
+ },
+ "options__3": {
+ "label": "Top right"
+ },
+ "options__4": {
+ "label": "Middle left"
+ },
+ "options__5": {
+ "label": "Middle center"
+ },
+ "options__6": {
+ "label": "Middle right"
+ },
+ "options__7": {
+ "label": "Bottom left"
+ },
+ "options__8": {
+ "label": "Bottom center"
+ },
+ "options__9": {
+ "label": "Bottom right"
+ }
+ },
+ "show_text_box": {
+ "label": "Show container on desktop"
+ },
+ "text_alignment": {
+ "label": "Desktop content alignment",
+ "option_1": {
+ "label": "Left"
+ },
+ "option_2": {
+ "label": "Center"
+ },
+ "option_3": {
+ "label": "Right"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Image overlay opacity"
+ },
+ "text_alignment_mobile": {
+ "label": "Mobile content alignment",
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Slideshow"
+ }
+ },
+ "collapsible_content": {
+ "name": "Collapsible content",
+ "settings": {
+ "caption": {
+ "label": "Caption"
+ },
+ "heading": {
+ "label": "Heading"
+ },
+ "heading_alignment": {
+ "label": "Heading alignment",
+ "options__1": {
+ "label": "Left"
+ },
+ "options__2": {
+ "label": "Center"
+ },
+ "options__3": {
+ "label": "Right"
+ }
+ },
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "No container"
+ },
+ "options__2": {
+ "label": "Row container"
+ },
+ "options__3": {
+ "label": "Section container"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Container color scheme",
+ "info": "Visible when Layout is set to Row or Section container."
+ },
+ "open_first_collapsible_row": {
+ "label": "Open first collapsible row"
+ },
+ "header": {
+ "content": "Image layout"
+ },
+ "image": {
+ "label": "Image"
+ },
+ "image_ratio": {
+ "label": "Image ratio",
+ "options__1": {
+ "label": "Adapt to image"
+ },
+ "options__2": {
+ "label": "Small"
+ },
+ "options__3": {
+ "label": "Large"
+ }
+ },
+ "desktop_layout": {
+ "label": "Desktop layout",
+ "options__1": {
+ "label": "Image first"
+ },
+ "options__2": {
+ "label": "Image second"
+ },
+ "info": "Image is always first on mobile."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Collapsible row",
+ "settings": {
+ "heading": {
+ "info": "Include a heading that explains the content.",
+ "label": "Heading"
+ },
+ "row_content": {
+ "label": "Row content"
+ },
+ "page": {
+ "label": "Row content from page"
+ },
+ "icon": {
+ "label": "Icon",
+ "options__1": {
+ "label": "None"
+ },
+ "options__2": {
+ "label": "Apple"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Bottle"
+ },
+ "options__5": {
+ "label": "Box"
+ },
+ "options__6": {
+ "label": "Carrot"
+ },
+ "options__7": {
+ "label": "Chat bubble"
+ },
+ "options__8": {
+ "label": "Check mark"
+ },
+ "options__9": {
+ "label": "Clipboard"
+ },
+ "options__10": {
+ "label": "Dairy"
+ },
+ "options__11": {
+ "label": "Dairy free"
+ },
+ "options__12": {
+ "label": "Dryer"
+ },
+ "options__13": {
+ "label": "Eye"
+ },
+ "options__14": {
+ "label": "Fire"
+ },
+ "options__15": {
+ "label": "Gluten free"
+ },
+ "options__16": {
+ "label": "Heart"
+ },
+ "options__17": {
+ "label": "Iron"
+ },
+ "options__18": {
+ "label": "Leaf"
+ },
+ "options__19": {
+ "label": "Leather"
+ },
+ "options__20": {
+ "label": "Lightning bolt"
+ },
+ "options__21": {
+ "label": "Lipstick"
+ },
+ "options__22": {
+ "label": "Lock"
+ },
+ "options__23": {
+ "label": "Map pin"
+ },
+ "options__24": {
+ "label": "Nut free"
+ },
+ "options__25": {
+ "label": "Pants"
+ },
+ "options__26": {
+ "label": "Paw print"
+ },
+ "options__27": {
+ "label": "Pepper"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Plane"
+ },
+ "options__30": {
+ "label": "Plant"
+ },
+ "options__31": {
+ "label": "Price tag"
+ },
+ "options__32": {
+ "label": "Question mark"
+ },
+ "options__33": {
+ "label": "Recycle"
+ },
+ "options__34": {
+ "label": "Return"
+ },
+ "options__35": {
+ "label": "Ruler"
+ },
+ "options__36": {
+ "label": "Serving dish"
+ },
+ "options__37": {
+ "label": "Shirt"
+ },
+ "options__38": {
+ "label": "Shoe"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Snowflake"
+ },
+ "options__41": {
+ "label": "Star"
+ },
+ "options__42": {
+ "label": "Stopwatch"
+ },
+ "options__43": {
+ "label": "Truck"
+ },
+ "options__44": {
+ "label": "Washing"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collapsible content"
+ }
+ }
+ }
+}
diff --git a/locales/es.json b/locales/es.json
new file mode 100644
index 0000000..39c3dd6
--- /dev/null
+++ b/locales/es.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Entrar a la tienda usando contraseña:",
+ "login_password_button": "Entrar usando contraseña",
+ "login_form_password_label": "Contraseña",
+ "login_form_password_placeholder": "Tu contraseña",
+ "login_form_error": "Contraseña incorrecta",
+ "login_form_submit": "Ingresar",
+ "admin_link_html": "¿Eres el propietario de la tienda? Inicia sesión aquí ",
+ "powered_by_shopify_html": "Esta tienda contará con tecnología Shopify {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Compartir en Facebook",
+ "share_on_twitter": "Compartir en Twitter",
+ "share_on_pinterest": "Guardar en Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Seguir comprando",
+ "pagination": {
+ "label": "Paginación",
+ "page": "Página {{ number }}",
+ "next": "Página siguiente",
+ "previous": "Pagina anterior"
+ },
+ "search": {
+ "search": "Búsqueda",
+ "reset": "Borrar término de búsqueda"
+ },
+ "cart": {
+ "view": "Ver carrito ({{ count }})",
+ "item_added": "Artículo agregado a tu carrito",
+ "view_empty_cart": "Ver carrito"
+ },
+ "share": {
+ "copy_to_clipboard": "Copiar enlace",
+ "share_url": "Enlace",
+ "success_message": "Enlace copiado al portapapeles",
+ "close": "Cerrar compartición"
+ },
+ "slider": {
+ "of": "de",
+ "next_slide": "Diapositiva a la derecha",
+ "previous_slide": "Diapositiva a la izquierda",
+ "name": "Carrusel"
+ }
+ },
+ "newsletter": {
+ "label": "Correo electrónico",
+ "success": "Gracias por suscribirte",
+ "button_label": "Suscribirse"
+ },
+ "accessibility": {
+ "skip_to_text": "Ir directamente al contenido",
+ "close": "Cerrar",
+ "unit_price_separator": "por",
+ "vendor": "Proveedor:",
+ "error": "Error",
+ "refresh_page": "Al seleccionar una opción, se actualiza toda la página.",
+ "link_messages": {
+ "new_window": "Se abre en una nueva ventana.",
+ "external": "Se abre el sitio web externo."
+ },
+ "loading": "Cargando...",
+ "skip_to_product_info": "Ir directamente a la información del producto",
+ "total_reviews": "reseñas totales",
+ "star_reviews_info": "{{ rating_value }} de {{ rating_max }} estrellas",
+ "collapsible_content_title": "Contenido desplegable",
+ "complementary_products": "Productos complementarios"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Más información: {{ title }}",
+ "comments": {
+ "one": "{{ count }} comentario",
+ "other": "{{ count }} comentarios",
+ "many": "{{ count }} comentarios"
+ },
+ "moderated": "Ten en cuenta que los comentarios deben aprobarse antes de que se publiquen.",
+ "comment_form_title": "Deja un comentario",
+ "name": "Nombre",
+ "email": "Correo electrónico",
+ "message": "Comentario",
+ "post": "Publicar comentario",
+ "back_to_blog": "Regresar al blog",
+ "share": "Compartir este artículo",
+ "success": "Tu comentario se publicó correctamente. ¡Gracias!",
+ "success_moderated": "Tu comentario se publicó correctamente. Lo publicaremos en breve, cuando se modere nuestro blog."
+ }
+ },
+ "onboarding": {
+ "product_title": "Ejemplo de nombre del producto",
+ "collection_title": "Nombre de tu colección"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Agregar al carrito",
+ "description": "Descripción",
+ "on_sale": "Oferta",
+ "quantity": {
+ "label": "Cantidad",
+ "input_label": "Cantidad para {{ product }}",
+ "increase": "Aumentar cantidad para {{ product }}",
+ "decrease": "Reducir cantidad para {{ product }}",
+ "minimum_of": "Mínimo de {{ quantity }}",
+ "maximum_of": "Máximo de {{ quantity }}",
+ "multiples_of": "Incrementos de {{ quantity }}",
+ "in_cart_html": "{{ quantity }} en el carrito",
+ "note": "Ver reglas de cantidad"
+ },
+ "price": {
+ "from_price_html": "A partir de {{ price }}",
+ "regular_price": "Precio habitual",
+ "sale_price": "Precio de oferta",
+ "unit_price": "Precio unitario"
+ },
+ "share": "Compartir este producto",
+ "sold_out": "Agotado",
+ "unavailable": "No disponible",
+ "vendor": "Proveedor",
+ "video_exit_message": "{{ title }} abre el video en pantalla completa en la misma ventana.",
+ "xr_button": "Ver en tu espacio",
+ "xr_button_label": "Ver en tu espacio, carga el artículo en la ventana de realidad aumentada",
+ "pickup_availability": {
+ "view_store_info": "Ver información de la tienda",
+ "check_other_stores": "Verificar disponibilidad en otras tiendas",
+ "pick_up_available": "Retiro disponible",
+ "pick_up_available_at_html": "Retiro disponible en {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Retiro no disponible actualmente en {{ location_name }} ",
+ "unavailable": "No se pudo cargar la disponibilidad de retiro",
+ "refresh": "Actualizar"
+ },
+ "media": {
+ "open_media": "Abrir elemento multimedia {{ index }} en una ventana modal",
+ "play_model": "Reproducir el visor 3D",
+ "play_video": "Reproducir video",
+ "gallery_viewer": "Visor de la galería",
+ "load_image": "Cargar la imagen {{ index }} en la vista de la galería",
+ "load_model": "Cargar el modelo 3D {{ index }} en la vista de la galería",
+ "load_video": "Reproducir el video {{ index }} en la vista de la galería",
+ "image_available": "La imagen {{ index }} ya está disponible en la vista de la galería"
+ },
+ "view_full_details": "Ver todos los detalles",
+ "include_taxes": "Impuesto incluido.",
+ "shipping_policy_html": "Los gastos de envío se calculan en la pantalla de pago.",
+ "choose_options": "Seleccionar opciones",
+ "choose_product_options": "Elegir opciones para {{ product_name }}",
+ "value_unavailable": "{{ option_value }}: no disponible",
+ "variant_sold_out_or_unavailable": "Variante agotada o no disponible",
+ "inventory_in_stock": "En existencias",
+ "inventory_in_stock_show_count": "{{ quantity }} en existencias",
+ "inventory_low_stock": "Bajas existencias",
+ "inventory_low_stock_show_count": "Bajas existencias: quedan {{ quantity }}",
+ "inventory_out_of_stock": "Agotado",
+ "inventory_out_of_stock_continue_selling": "En existencias",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Precios por volumen",
+ "note": "Precio por volumen disponible",
+ "minimum": "Más de {{ quantity }}",
+ "price_at_each": "a {{ price }} por unidad",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "Variantes de producto"
+ },
+ "modal": {
+ "label": "Galería multimedia"
+ },
+ "facets": {
+ "apply": "Aplicar",
+ "clear": "Borrar",
+ "clear_all": "Eliminar todos",
+ "from": "De",
+ "filter_and_sort": "Filtrar y ordenar",
+ "filter_by_label": "Filtrar:",
+ "filter_button": "Filtrar",
+ "filters_selected": {
+ "one": "{{ count }} seleccionado",
+ "other": "{{ count }} seleccionados",
+ "many": "{{ count }} seleccionados"
+ },
+ "max_price": "El precio más alto es {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} producto de un total de {{ count }}",
+ "other": "{{ product_count }} productos de un total de {{ count }}",
+ "many": "{{ product_count }} productos de un total de {{ count }}"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} producto",
+ "other": "{{ count }} productos",
+ "many": "{{ count }} productos"
+ },
+ "reset": "Restablecer",
+ "sort_button": "Ordenar",
+ "sort_by_label": "Ordenar por:",
+ "to": "Para",
+ "clear_filter": "Eliminar filtro",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtros seleccionados)",
+ "show_more": "Mostrar más",
+ "show_less": "Mostrar menos",
+ "filter_and_operator_subtitle": "Seleccionar todos"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "No se encontraron resultados para “{{ terms }}” Revisa la ortografía o usa una palabra o frase diferente.",
+ "results_with_count": {
+ "one": "{{ count }} resultado",
+ "other": "{{ count }} resultados",
+ "many": "{{ count }} resultados"
+ },
+ "title": "Resultados de búsqueda",
+ "page": "Página",
+ "products": "Productos",
+ "search_for": "Buscar “{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "Se ha encontrado {{ count }} resultado para \"{{ terms }}\"",
+ "other": "Se han encontrado {{ count }} resultados para \"{{ terms }}\"",
+ "many": "Se han encontrado {{ count }} resultados para \"{{ terms }}\""
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} página",
+ "other": "{{ count }} páginas",
+ "many": "{{ count }} páginas"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} producto",
+ "other": "{{ count }} productos",
+ "many": "{{ count }} productos"
+ },
+ "suggestions": "Sugerencias",
+ "pages": "Páginas",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} sugerencia",
+ "other": "{{ count }} sugerencias",
+ "many": "{{ count }} sugerencias"
+ }
+ },
+ "cart": {
+ "cart": "Carrito"
+ },
+ "contact": {
+ "form": {
+ "name": "Nombre",
+ "email": "Correo electrónico",
+ "phone": "Número de teléfono",
+ "comment": "Comentario",
+ "send": "Enviar",
+ "post_success": "Gracias por contactarnos. Te responderemos lo antes posible.",
+ "error_heading": "Por favor, ajusta lo siguiente:",
+ "title": "Formulario de contacto"
+ }
+ },
+ "404": {
+ "title": "Página no encontrada",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Anuncio",
+ "menu": "Menú",
+ "cart_count": {
+ "one": "{{ count }} artículo",
+ "other": "{{ count }} artículos",
+ "many": "{{ count }} artículos"
+ }
+ },
+ "cart": {
+ "title": "Tu carrito",
+ "caption": "Artículos en el carrito",
+ "remove_title": "Eliminar {{ title }}",
+ "note": "Instrucciones especiales del pedido",
+ "checkout": "Pagar pedido",
+ "empty": "Tu carrito esta vacío",
+ "cart_error": "Hubo un error al actualizar tu carrito de compra. Inténtalo de nuevo.",
+ "cart_quantity_error_html": "Solo puedes agregar {{ quantity }} de este artículo a tu carrito.",
+ "taxes_and_shipping_policy_at_checkout_html": "Impuestos, descuentos y envío calculados en la pantalla de pago",
+ "taxes_included_but_shipping_at_checkout": "Impuesto incluido, envío y descuentos calculados en la pantalla de pago",
+ "taxes_included_and_shipping_policy_html": "Impuesto incluido. Envío y descuentos calculados en la pantalla de pago.",
+ "taxes_and_shipping_at_checkout": "Impuestos, descuentos y envío calculados en la pantalla de pago",
+ "headings": {
+ "product": "Producto",
+ "price": "Precio",
+ "total": "Total",
+ "quantity": "Cantidad",
+ "image": "Imagen del producto"
+ },
+ "update": "Actualizar",
+ "login": {
+ "title": "¿Tienes una cuenta?",
+ "paragraph_html": "Inicia sesión para finalizar tus compras con mayor rapidez."
+ },
+ "estimated_total": "Total estimado",
+ "new_estimated_total": "Nuevo total estimado"
+ },
+ "footer": {
+ "payment": "Formas de pago"
+ },
+ "featured_blog": {
+ "view_all": "Ver todo",
+ "onboarding_title": "Artículo de blog",
+ "onboarding_content": "Ofrece a tus clientes un resumen de tu artículo de blog"
+ },
+ "featured_collection": {
+ "view_all": "Ver todo",
+ "view_all_label": "Ver todos los productos de la colección {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Ver todo"
+ },
+ "collection_template": {
+ "title": "Colección",
+ "empty": "No se encontró ningún producto",
+ "use_fewer_filters_html": "Usa menos filtros o elimínalos todos "
+ },
+ "video": {
+ "load_video": "Cargar video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Cargar diapositiva",
+ "previous_slideshow": "Diapositiva anterior",
+ "next_slideshow": "Diapositiva siguiente",
+ "pause_slideshow": "Pausar la presentación",
+ "play_slideshow": "Reproducir la presentación",
+ "carousel": "Carrusel",
+ "slide": "Diapositiva"
+ },
+ "page": {
+ "title": "Título de la página"
+ },
+ "announcements": {
+ "previous_announcement": "Anuncio anterior",
+ "next_announcement": "Anuncio siguiente",
+ "carousel": "Carrusel",
+ "announcement": "Anuncio",
+ "announcement_bar": "Barra de anuncios"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotal de productos",
+ "view_cart": "Ver carrito",
+ "each": "{{ money }}/unidad",
+ "product": "Producto",
+ "variant": "Variante",
+ "variant_total": "Total de variantes",
+ "items_added": {
+ "one": "{{ quantity }} artículo agregado",
+ "other": "{{ quantity }} artículos agregados",
+ "many": "{{ quantity }} artículos agregados"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} artículo eliminado",
+ "other": "{{ quantity }} artículos eliminados",
+ "many": "{{ quantity }} artículos eliminados"
+ },
+ "product_variants": "Variantes de producto",
+ "total_items": "Total de artículos",
+ "remove_all_items_confirmation": "¿Eliminar los {{ quantity }} artículos del carrito?",
+ "remove_all": "Eliminar todos",
+ "cancel": "Cancelar"
+ }
+ },
+ "localization": {
+ "country_label": "País/región",
+ "language_label": "Idioma",
+ "update_language": "Actualizar idioma",
+ "update_country": "Actualizar país/región"
+ },
+ "customer": {
+ "account": {
+ "title": "Cuenta",
+ "details": "Detalles de la cuenta",
+ "view_addresses": "Ver direcciones",
+ "return": "Regresar a detalles de la cuenta"
+ },
+ "account_fallback": "Cuenta",
+ "activate_account": {
+ "title": "Activar cuenta",
+ "subtext": "Crea tu contraseña para activar tu cuenta.",
+ "password": "Contraseña",
+ "password_confirm": "Confirmar contraseña",
+ "submit": "Activar cuenta",
+ "cancel": "Rechazar invitación"
+ },
+ "addresses": {
+ "title": "Direcciones",
+ "default": "Predeterminada",
+ "add_new": "Agregar una nueva dirección",
+ "edit_address": "Editar dirección",
+ "first_name": "Nombre",
+ "last_name": "Apellido",
+ "company": "Empresa",
+ "address1": "Dirección 1",
+ "address2": "Dirección 2",
+ "city": "Ciudad",
+ "country": "País/región",
+ "province": "Provincia",
+ "zip": "Código postal",
+ "phone": "Teléfono",
+ "set_default": "Establecer como dirección predeterminada",
+ "add": "Agregar dirección",
+ "update": "Actualizar dirección",
+ "cancel": "Cancelar",
+ "edit": "Editar",
+ "delete": "Eliminar",
+ "delete_confirm": "¿Está seguro/a de que deseas eliminar esta dirección?"
+ },
+ "log_in": "Iniciar sesión",
+ "log_out": "Cerrar sesión",
+ "login_page": {
+ "cancel": "Cancelar",
+ "create_account": "Crear cuenta",
+ "email": "Correo electrónico",
+ "forgot_password": "¿Olvidaste tu contraseña?",
+ "guest_continue": "Continuar",
+ "guest_title": "Continuar como invitado",
+ "password": "Contraseña",
+ "title": "Inicio de sesión",
+ "sign_in": "Iniciar sesión",
+ "submit": "Enviar"
+ },
+ "orders": {
+ "title": "Historial de pedidos",
+ "order_number": "Pedido",
+ "order_number_link": "Número de pedido {{ number }}",
+ "date": "Fecha",
+ "payment_status": "Estado del pago",
+ "fulfillment_status": "Estado de preparación del pedido",
+ "total": "Total",
+ "none": "Aún no has realizado ningún pedido."
+ },
+ "recover_password": {
+ "title": "Restablecer tu contraseña",
+ "subtext": "Te enviaremos un correo electrónico para restablecer tu contraseña",
+ "success": "Te hemos enviado un correo electrónico con un enlace para actualizar tu contraseña."
+ },
+ "register": {
+ "title": "Crear cuenta",
+ "first_name": "Nombre",
+ "last_name": "Apellido",
+ "email": "Correo electrónico",
+ "password": "Contraseña",
+ "submit": "Crear"
+ },
+ "reset_password": {
+ "title": "Restablecer contraseña de cuenta",
+ "subtext": "Introduce una nueva contraseña.",
+ "password": "Contraseña",
+ "password_confirm": "Confirmar contraseña",
+ "submit": "Restablecer contraseña"
+ },
+ "order": {
+ "title": "Pedido {{ name }}",
+ "date_html": "Realizado el {{ date }}",
+ "cancelled_html": "Pedido cancelado el {{ date }}",
+ "cancelled_reason": "Motivo: {{ reason }}",
+ "billing_address": "Dirección de facturación",
+ "payment_status": "Estado del pago",
+ "shipping_address": "Dirección de envío",
+ "fulfillment_status": "Estado de preparación del pedido",
+ "discount": "Descuento",
+ "shipping": "Envío",
+ "tax": "Impuesto",
+ "product": "Producto",
+ "sku": "SKU",
+ "price": "Precio",
+ "quantity": "Cantidad",
+ "total": "Total",
+ "fulfilled_at_html": "Preparado el {{ date }}",
+ "track_shipment": "Hacer seguimiento del envío",
+ "tracking_url": "Enlace de seguimiento",
+ "tracking_company": "Empresa de transporte",
+ "tracking_number": "Número de seguimiento",
+ "subtotal": "Subtotal",
+ "total_duties": "Aranceles",
+ "total_refunded": "Reembolsado"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Este es el saldo de tu tarjeta de regalo de {{ value }} para {{ shop }}.",
+ "subtext": "Tu tarjeta de regalo",
+ "gift_card_code": "Código de tarjeta de regalo",
+ "shop_link": "Visitar la tienda online",
+ "add_to_apple_wallet": "Agregar a Apple Wallet",
+ "qr_image_alt": "Código QR: escanea para canjear la tarjeta de regalo",
+ "copy_code": "Copiar el código de la tarjeta de regalo",
+ "expired": "Vencido",
+ "copy_code_success": "El código se copió correctamente",
+ "how_to_use_gift_card": "Usar el código de la tarjeta de regalo online o el código QR en la tienda",
+ "expiration_date": "Caduca el {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Quiero enviar esto como un regalo.",
+ "email_label": "Correo electrónico de la persona destinataria",
+ "email": "Correo electrónico",
+ "name_label": "Nombre de la persona destinataria (opcional)",
+ "name": "Nombre",
+ "message_label": "Mensaje (opcional)",
+ "message": "Mensaje",
+ "max_characters": "{{ max_chars }} caracteres máx.",
+ "email_label_optional_for_no_js_behavior": "Correo electrónico de la persona destinataria (opcional)",
+ "send_on": "AAAA-MM-DD",
+ "send_on_label": "Enviar el (opcional)",
+ "expanded": "Formulario del destinatario de la tarjeta de regalo expandido",
+ "collapsed": "Formulario del destinatario de tarjeta de regalo contraído"
+ }
+ }
+}
diff --git a/locales/es.schema.json b/locales/es.schema.json
new file mode 100644
index 0000000..be502eb
--- /dev/null
+++ b/locales/es.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Colores",
+ "settings": {
+ "background": {
+ "label": "Fondo"
+ },
+ "background_gradient": {
+ "label": "Degradado de fondo",
+ "info": "El degradado de fondo reemplaza el fondo donde es posible."
+ },
+ "text": {
+ "label": "Texto"
+ },
+ "button_background": {
+ "label": "Fondo de botón sólido"
+ },
+ "button_label": {
+ "label": "Etiqueta de botón sólido"
+ },
+ "secondary_button_label": {
+ "label": "Botón de contorno"
+ },
+ "shadow": {
+ "label": "Sombra"
+ }
+ }
+ },
+ "typography": {
+ "name": "Tipografía",
+ "settings": {
+ "type_header_font": {
+ "label": "Fuente",
+ "info": "Seleccionar una fuente diferente puede afectar la velocidad de tu tienda online. [Más información sobre fuentes de sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Títulos"
+ },
+ "header__2": {
+ "content": "Cuerpo"
+ },
+ "type_body_font": {
+ "label": "Fuente",
+ "info": "Seleccionar una fuente diferente puede afectar la velocidad de tu tienda online. [Más información sobre fuentes de sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Escala de tamaño de fuente"
+ },
+ "body_scale": {
+ "label": "Escala de tamaño de fuente"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Redes sociales",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://www.facebook.com/ShopifyES/"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Cuentas de redes sociales"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Formato de moneda",
+ "settings": {
+ "content": "Códigos de moneda",
+ "currency_code_enabled": {
+ "label": "Mostrar códigos de moneda"
+ },
+ "paragraph": "Los precios en el carrito y la pantalla de pago siempre muestran códigos de moneda. Ejemplo: USD 1,00."
+ }
+ },
+ "layout": {
+ "name": "Diseño",
+ "settings": {
+ "page_width": {
+ "label": "Ancho de página"
+ },
+ "spacing_sections": {
+ "label": "Espacio entre las secciones de la plantilla"
+ },
+ "header__grid": {
+ "content": "Cuadrícula"
+ },
+ "paragraph__grid": {
+ "content": "Afecta a áreas con varias columnas o filas."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Espacio horizontal"
+ },
+ "spacing_grid_vertical": {
+ "label": "Espacio vertical"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Comportamiento de búsqueda",
+ "settings": {
+ "header": {
+ "content": "Sugerencias de búsqueda"
+ },
+ "predictive_search_enabled": {
+ "label": "Activar sugerencias de búsqueda"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Mostrar proveedor del producto",
+ "info": "Visible cuando las sugerencias de búsqueda están activadas."
+ },
+ "predictive_search_show_price": {
+ "label": "Mostrar el precio del producto",
+ "info": "Visible cuando las sugerencias de búsqueda están activadas."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Borde"
+ },
+ "header__shadow": {
+ "content": "Sombra"
+ },
+ "blur": {
+ "label": "Difuminar"
+ },
+ "corner_radius": {
+ "label": "Radio de esquina"
+ },
+ "horizontal_offset": {
+ "label": "Desalineación horizontal"
+ },
+ "vertical_offset": {
+ "label": "Desalineación vertical"
+ },
+ "thickness": {
+ "label": "Grosor"
+ },
+ "opacity": {
+ "label": "Opacidad"
+ },
+ "image_padding": {
+ "label": "Relleno de imagen"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación de texto"
+ }
+ }
+ },
+ "badges": {
+ "name": "Emblemas",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Abajo a la izquierda"
+ },
+ "options__2": {
+ "label": "Abajo a la derecha"
+ },
+ "options__3": {
+ "label": "Arriba a la izquierda"
+ },
+ "options__4": {
+ "label": "Arriba a la derecha"
+ },
+ "label": "Posición de las tarjetas"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Esquema de color de distintivo de oferta"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Esquema de color de emblema de agotado"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botones"
+ },
+ "variant_pills": {
+ "name": "Botones de variantes",
+ "paragraph": "Los botones de variantes son una forma de mostrar las variantes de producto. [Más información](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Entradas"
+ },
+ "content_containers": {
+ "name": "Contenedores de contenido"
+ },
+ "popups": {
+ "name": "Menús desplegables y ventanas emergentes",
+ "paragraph": "Afecta áreas como los menús desplegables de navegación, las ventanas emergentes y los carritos emergentes."
+ },
+ "media": {
+ "name": "Multimedia"
+ },
+ "drawers": {
+ "name": "Cajones"
+ },
+ "cart": {
+ "name": "Carrito",
+ "settings": {
+ "cart_type": {
+ "label": "Tipo de carrito",
+ "drawer": {
+ "label": "Lateral"
+ },
+ "page": {
+ "label": "Página"
+ },
+ "notification": {
+ "label": "Notificación emergente"
+ }
+ },
+ "show_vendor": {
+ "label": "Mostrar proveedor"
+ },
+ "show_cart_note": {
+ "label": "Habilitar nota del carrito"
+ },
+ "cart_drawer": {
+ "header": "Carrito lateral",
+ "collection": {
+ "label": "Colección",
+ "info": "Visible cuando el carrito lateral está vacío."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Tarjetas de producto",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Estándar"
+ },
+ "options__2": {
+ "label": "Tarjeta"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Tarjetas de colección",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Estándar"
+ },
+ "options__2": {
+ "label": "Tarjeta"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Tarjetas de blogs",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Estándar"
+ },
+ "options__2": {
+ "label": "Tarjeta"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Ancho del logo de escritorio",
+ "info": "El ancho del logo se optimiza automáticamente para dispositivos móviles."
+ },
+ "favicon": {
+ "label": "Imagen de favicon",
+ "info": "Se reducirá a 32 × 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Información de marca",
+ "settings": {
+ "brand_headline": {
+ "label": "Titular"
+ },
+ "brand_description": {
+ "label": "Descripción"
+ },
+ "brand_image": {
+ "label": "Imagen"
+ },
+ "brand_image_width": {
+ "label": "Ancho de imagen"
+ },
+ "paragraph": {
+ "content": "Agrega una descripción de marca al pie de página de la tienda."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animaciones",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Revelar secciones al desplazarse"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Ninguna"
+ },
+ "options__2": {
+ "label": "Elevación vertical"
+ },
+ "label": "Efecto hover",
+ "info": "Afecta a tarjetas y botones.",
+ "options__3": {
+ "label": "3D Lift"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Relleno de sección",
+ "padding_top": "Relleno superior",
+ "padding_bottom": "Relleno inferior"
+ },
+ "spacing": "Espaciado",
+ "colors": {
+ "label": "Esquema de colores",
+ "has_cards_info": "Para cambiar el esquema de color de la tarjeta, actualiza la configuración del tema."
+ },
+ "heading_size": {
+ "label": "Tamaño del título",
+ "options__1": {
+ "label": "Pequeño"
+ },
+ "options__2": {
+ "label": "Mediano"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "options__4": {
+ "label": "Extra grande"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Predeterminado"
+ },
+ "options__2": {
+ "label": "Arco"
+ },
+ "options__3": {
+ "label": "Gota"
+ },
+ "options__4": {
+ "label": "Comillas angulares izquierda"
+ },
+ "options__5": {
+ "label": "Comillas angulares derecha"
+ },
+ "options__6": {
+ "label": "Diamante"
+ },
+ "options__7": {
+ "label": "Paralelogramo"
+ },
+ "options__8": {
+ "label": "Redonda"
+ },
+ "label": "Forma de la imagen",
+ "info": "Las tarjetas de estilo estándar no tienen bordes cuando la forma de una imagen está activa."
+ },
+ "animation": {
+ "content": "Animaciones",
+ "image_behavior": {
+ "options__1": {
+ "label": "Ninguna"
+ },
+ "options__2": {
+ "label": "Movimiento de ambiente"
+ },
+ "label": "Comportamiento de la imagen",
+ "options__3": {
+ "label": "Posición del fondo fija"
+ },
+ "options__4": {
+ "label": "Ampliar al desplazarse"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Barra de anuncios",
+ "blocks": {
+ "announcement": {
+ "name": "Anuncio",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_alignment": {
+ "label": "Alineación de texto",
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ }
+ },
+ "link": {
+ "label": "Enlace"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Rotar anuncios automáticamente"
+ },
+ "change_slides_speed": {
+ "label": "Cambiar cada"
+ },
+ "header__1": {
+ "content": "Íconos de redes sociales",
+ "info": "Para mostrar tus cuentas de redes sociales, vincúlalas en la [configuración del tema](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Anuncios"
+ },
+ "show_social": {
+ "label": "Mostrar íconos en el escritorio"
+ },
+ "header__3": {
+ "content": "Selector de país o región",
+ "info": "Para agregar un país o una región, ve a la [configuración del mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Activar selector de país o región"
+ },
+ "header__4": {
+ "content": "Selector de idioma",
+ "info": "Para agregar un idioma, ve a la [configuración de idiomas.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Activar selector de idioma"
+ }
+ },
+ "presets": {
+ "name": "Barra de anuncios"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "desktop_layout": {
+ "label": "Diseño para computadora",
+ "options__1": {
+ "label": "Bloque grande izquierdo"
+ },
+ "options__2": {
+ "label": "Bloque grande derecho"
+ }
+ },
+ "mobile_layout": {
+ "label": "Diseño para móviles",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Columna"
+ }
+ },
+ "card_styles": {
+ "label": "Estilo de tarjeta",
+ "info": "La configuración del tema permite actualizar los estilos de tarjeta de blog, producto y colección.",
+ "options__1": {
+ "label": "Usar estilos de tarjeta individuales"
+ },
+ "options__2": {
+ "label": "Definir todos los estilos como tarjetas de producto"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Imagen",
+ "settings": {
+ "image": {
+ "label": "Imagen"
+ }
+ }
+ },
+ "product": {
+ "name": "Producto",
+ "settings": {
+ "product": {
+ "label": "Producto"
+ },
+ "secondary_background": {
+ "label": "Mostrar fondo secundario"
+ },
+ "second_image": {
+ "label": "Mostrar segunda imagen al pasar el cursor"
+ }
+ }
+ },
+ "collection": {
+ "name": "Colección",
+ "settings": {
+ "collection": {
+ "label": "Colección"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Imagen de portada"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "El video se reproduce en una ventana emergente si la sección contiene otros bloques.",
+ "placeholder": "Utiliza una URL de YouTube o Vimeo"
+ },
+ "description": {
+ "label": "Texto alternativo del video",
+ "info": "Describe el video para los clientes que usan lectores de pantalla. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Lista de colecciones",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Cuadrado"
+ },
+ "info": "Agregar imágenes editando tus colecciones. [Más información](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Activar uso de banda magnética en el móvil"
+ },
+ "show_view_all": {
+ "label": "Habilitar el botón \"Ver todos\" si la lista incluye más colecciones de las que se muestran"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en el escritorio"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "1 columna"
+ },
+ "options__2": {
+ "label": "2 columnas"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Colección",
+ "settings": {
+ "collection": {
+ "label": "Colección"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Lista de colecciones"
+ }
+ },
+ "contact-form": {
+ "name": "Formulario de contacto",
+ "presets": {
+ "name": "Formulario de contacto"
+ }
+ },
+ "custom-liquid": {
+ "name": "Liquid personalizado",
+ "settings": {
+ "custom_liquid": {
+ "label": "Código de Liquid",
+ "info": "Agrega fragmentos de la aplicación u otros códigos para crear personalizaciones avanzadas. [Más información](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Liquid personalizado"
+ }
+ },
+ "featured-blog": {
+ "name": "Artículos de blog",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Número de artículos del blog que mostrar"
+ },
+ "show_view_all": {
+ "label": "Habilitar el botón \"Ver todos\" si el blog tiene más artículos de los que se muestran"
+ },
+ "show_image": {
+ "label": "Mostrar imagen destacada",
+ "info": "Para resultados óptimos, utiliza una imagen con una relación de aspecto 3:2. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Mostrar fecha"
+ },
+ "show_author": {
+ "label": "Mostrar autor"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en el escritorio"
+ }
+ },
+ "presets": {
+ "name": "Artículos de blog"
+ }
+ },
+ "featured-collection": {
+ "name": "Colección destacada",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "collection": {
+ "label": "Colección"
+ },
+ "products_to_show": {
+ "label": "Máximo de productos para mostrar"
+ },
+ "show_view_all": {
+ "label": "Habilitar \"Ver todos\" si la colección tiene más productos de los que se muestran"
+ },
+ "header": {
+ "content": "Tarjeta de producto"
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Cuadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar segunda imagen al pasar el cursor"
+ },
+ "show_vendor": {
+ "label": "Mostrar proveedor"
+ },
+ "show_rating": {
+ "label": "Mostrar calificación de productos",
+ "info": "Para mostrar una calificación, agrega una aplicación de calificación de productos [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en el escritorio"
+ },
+ "description": {
+ "label": "Descripción"
+ },
+ "show_description": {
+ "label": "Mostrar descripción de la colección desde el panel de control"
+ },
+ "description_style": {
+ "label": "Estilo de descripción",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ }
+ },
+ "view_all_style": {
+ "label": "Estilo \"Ver todos\"",
+ "options__1": {
+ "label": "Enlace"
+ },
+ "options__2": {
+ "label": "Botón con contorno"
+ },
+ "options__3": {
+ "label": "Botón sólido"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Activar carrusel en computadora"
+ },
+ "full_width": {
+ "label": "Definir ancho completo de productos"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "1 columna"
+ },
+ "options__2": {
+ "label": "2 columnas"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Activar uso de banda magnética en el móvil"
+ },
+ "enable_quick_buy": {
+ "label": "Activar botón de agregado rápido",
+ "info": "Funciona de manera óptima con ventanas emergentes o carritos laterales."
+ }
+ },
+ "presets": {
+ "name": "Colección destacada"
+ }
+ },
+ "footer": {
+ "name": "Pie de página",
+ "blocks": {
+ "link_list": {
+ "name": "Menú",
+ "settings": {
+ "heading": {
+ "label": "Encabezado"
+ },
+ "menu": {
+ "label": "Menú",
+ "info": "Muestra solo los elementos del menú de nivel superior."
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "heading": {
+ "label": "Encabezado"
+ },
+ "subtext": {
+ "label": "Subtexto"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Información de marca",
+ "settings": {
+ "paragraph": {
+ "content": "Este bloque mostrará la información de tu marca. [Editar información de marca.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Íconos de redes sociales"
+ },
+ "show_social": {
+ "label": "Mostrar íconos de redes sociales",
+ "info": "Para mostrar tus cuentas de redes sociales, vincúlalas en la [configuración de tu tema](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Mostrar suscriptor de correo electrónico"
+ },
+ "newsletter_heading": {
+ "label": "Encabezado"
+ },
+ "header__1": {
+ "content": "Suscriptor de correo electrónico",
+ "info": "Suscriptores agregados automáticamente a tu lista de clientes \"marketing aceptado\". [Más información](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Íconos de redes sociales",
+ "info": "Para mostrar tus cuentas de redes sociales, vincúlalas en la [configuración de tu tema](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Mostrar íconos de redes sociales"
+ },
+ "header__3": {
+ "content": "Selector de país/región"
+ },
+ "header__4": {
+ "info": "Para agregar un país o una región, ve a la [configuración del mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Activar selector de país/región"
+ },
+ "header__5": {
+ "content": "Selector de idioma"
+ },
+ "header__6": {
+ "info": "Para agregar un idioma, ve a tu [configuración de idiomas.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Activar selector de idioma"
+ },
+ "header__7": {
+ "content": "Formas de pago"
+ },
+ "payment_enable": {
+ "label": "Mostrar íconos de pago"
+ },
+ "margin_top": {
+ "label": "Margen superior"
+ },
+ "header__8": {
+ "content": "Enlaces a las políticas",
+ "info": "Para agregar las políticas de la tienda, ve a tu [configuración de políticas](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Mostrar enlaces a las políticas"
+ },
+ "header__9": {
+ "content": "Seguir en Shop",
+ "info": "Para que los clientes puedan seguir tu tienda en la aplicación Shop desde la tienda, Shop Pay debe estar activado. [Más información](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Activar Seguir en Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Encabezado",
+ "settings": {
+ "logo_position": {
+ "label": "Posición de logo en computadora",
+ "options__1": {
+ "label": "Centrado a la izquierda"
+ },
+ "options__2": {
+ "label": "Arriba a la izquierda"
+ },
+ "options__3": {
+ "label": "Superior centrada"
+ },
+ "options__4": {
+ "label": "Centrado en el medio"
+ }
+ },
+ "menu": {
+ "label": "Menú"
+ },
+ "show_line_separator": {
+ "label": "Mostrar línea separadora"
+ },
+ "margin_bottom": {
+ "label": "Margen inferior"
+ },
+ "menu_type_desktop": {
+ "label": "Tipo de menú de escritorio",
+ "info": "El tipo de menú se optimiza automáticamente para celular.",
+ "options__1": {
+ "label": "Desplegable"
+ },
+ "options__2": {
+ "label": "Mega menú"
+ },
+ "options__3": {
+ "label": "Menú lateral"
+ }
+ },
+ "mobile_layout": {
+ "content": "Diseño para dispositivo móvil"
+ },
+ "mobile_logo_position": {
+ "label": "Posición del logo en dispositivo móvil",
+ "options__1": {
+ "label": "Centro"
+ },
+ "options__2": {
+ "label": "Izquierda"
+ }
+ },
+ "logo_help": {
+ "content": "Edita tu logotipo en [configuración del tema](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Encabezado fijo",
+ "options__1": {
+ "label": "Ninguno"
+ },
+ "options__2": {
+ "label": "Al desplazarse hacia arriba"
+ },
+ "options__3": {
+ "label": "Siempre"
+ },
+ "options__4": {
+ "label": "Reducir el tamaño del logo siempre"
+ }
+ },
+ "header__3": {
+ "content": "Selector de país o región"
+ },
+ "header__4": {
+ "info": "Para agregar un país o una región, ve a la [configuración del mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Activar selector de país o región"
+ },
+ "header__5": {
+ "content": "Selector de idioma"
+ },
+ "header__6": {
+ "info": "Para agregar un idioma, ve a tu [configuración de idiomas.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Activar selector de idioma"
+ },
+ "header__1": {
+ "content": "Color"
+ },
+ "menu_color_scheme": {
+ "label": "Esquema de colores del menú"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Banner de imagen",
+ "settings": {
+ "image": {
+ "label": "Primera imagen"
+ },
+ "image_2": {
+ "label": "Segunda imagen"
+ },
+ "stack_images_on_mobile": {
+ "label": "Apilar imágenes en móviles"
+ },
+ "show_text_box": {
+ "label": "Mostrar contenedor en la computadora"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidad de la sobreposición de imagen"
+ },
+ "show_text_below": {
+ "label": "Mostrar contenedor en el móvil"
+ },
+ "image_height": {
+ "label": "Altura del banner",
+ "options__1": {
+ "label": "Adaptar a la primera imagen"
+ },
+ "options__2": {
+ "label": "Pequeño"
+ },
+ "options__3": {
+ "label": "Mediano"
+ },
+ "info": "Para resultados óptimos, utiliza una imagen con una relación de aspecto 3:2. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Arriba a la izquierda"
+ },
+ "options__2": {
+ "label": "Arriba en el centro"
+ },
+ "options__3": {
+ "label": "Arriba a la derecha"
+ },
+ "options__4": {
+ "label": "Centrado a la izquierda"
+ },
+ "options__5": {
+ "label": "Centrado en el medio"
+ },
+ "options__6": {
+ "label": "Centrado a la derecha"
+ },
+ "options__7": {
+ "label": "Abajo a la izquierda"
+ },
+ "options__8": {
+ "label": "Abajo en el centro"
+ },
+ "options__9": {
+ "label": "Abajo a la derecha"
+ },
+ "label": "Posición del contenido en la computadora"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en la computadora"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en el móvil"
+ },
+ "mobile": {
+ "content": "Diseño para móviles"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Descripción"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ },
+ "label": "Estilo de texto"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botones",
+ "settings": {
+ "button_label_1": {
+ "label": "Primera etiqueta de botón",
+ "info": "Deja la etiqueta en blanco para ocultar el botón."
+ },
+ "button_link_1": {
+ "label": "Primer enlace de botón"
+ },
+ "button_style_secondary_1": {
+ "label": "Usar estilo de botón con contorno"
+ },
+ "button_label_2": {
+ "label": "Primera etiqueta de botón",
+ "info": "Deja la etiqueta en blanco para ocultar el botón."
+ },
+ "button_link_2": {
+ "label": "Segundo enlace de botón"
+ },
+ "button_style_secondary_2": {
+ "label": "Usar estilo de botón con contorno"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Banner de imagen"
+ }
+ },
+ "image-with-text": {
+ "name": "Imagen con texto",
+ "settings": {
+ "image": {
+ "label": "Imagen"
+ },
+ "height": {
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Pequeño"
+ },
+ "options__3": {
+ "label": "Mediano"
+ },
+ "label": "Altura de imagen",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Imagen primero"
+ },
+ "options__2": {
+ "label": "Imagen segunda"
+ },
+ "label": "Ubicación de la imagen en computadoras",
+ "info": "La imagen primero es el diseño predeterminado para móviles."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pequeña"
+ },
+ "options__2": {
+ "label": "Mediana"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Ancho de la imagen en computadoras",
+ "info": "La imagen se optimiza automáticamente para dispositivos móviles."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en computadoras"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Arriba"
+ },
+ "options__2": {
+ "label": "Centrada"
+ },
+ "options__3": {
+ "label": "Abajo"
+ },
+ "label": "Posición del contenido en computadoras"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Sin solapamiento"
+ },
+ "options__2": {
+ "label": "Solapamiento"
+ },
+ "label": "Diseño de contenido"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en dispositivos móviles"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Contenido"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Botón",
+ "settings": {
+ "button_label": {
+ "label": "Etiqueta de botón",
+ "info": "Deja la etiqueta en blanco para ocultar el botón."
+ },
+ "button_link": {
+ "label": "Enlace de botón"
+ },
+ "outline_button": {
+ "label": "Usar estilo de botón con contorno"
+ }
+ }
+ },
+ "caption": {
+ "name": "Leyenda",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Subtítulo"
+ },
+ "options__2": {
+ "label": "Mayúscula"
+ }
+ },
+ "caption_size": {
+ "label": "Tamaño del texto",
+ "options__1": {
+ "label": "Pequeño"
+ },
+ "options__2": {
+ "label": "Mediano"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Imagen con texto"
+ }
+ },
+ "main-article": {
+ "name": "Artículo de blog",
+ "blocks": {
+ "featured_image": {
+ "name": "Imagen destacada",
+ "settings": {
+ "image_height": {
+ "label": "Altura de imagen destacada",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Pequeña"
+ },
+ "options__3": {
+ "label": "Mediana"
+ },
+ "info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 16:9. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Título",
+ "settings": {
+ "blog_show_date": {
+ "label": "Mostrar fecha"
+ },
+ "blog_show_author": {
+ "label": "Mostrar autor"
+ }
+ }
+ },
+ "content": {
+ "name": "Contenido"
+ },
+ "share": {
+ "name": "Compartir",
+ "settings": {
+ "featured_image_info": {
+ "content": "Si incluyes un enlace en publicaciones de redes sociales, la imagen destacada de la página se mostrará como la imagen de vista previa. [Más información](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Con la imagen de vista previa se incluye un nombre y descripción de la tienda. [Más información](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "texto"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Artículos de blog",
+ "settings": {
+ "header": {
+ "content": "Tarjeta de artículo de blog"
+ },
+ "show_image": {
+ "label": "Mostrar imagen destacada"
+ },
+ "paragraph": {
+ "content": "Cambiar extractos editando tus artículo del blog. [Más información](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Mostrar fecha"
+ },
+ "show_author": {
+ "label": "Mostrar autor"
+ },
+ "layout": {
+ "label": "Diseño para computadora",
+ "options__1": {
+ "label": "Cuadrícula"
+ },
+ "options__2": {
+ "label": "Collage"
+ },
+ "info": "Las publicaciones se apilaron en el dispositivo móvil."
+ },
+ "image_height": {
+ "label": "Altura de imagen destacada",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Pequeña"
+ },
+ "options__3": {
+ "label": "Mediana"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Para resultados óptimos, utiliza una imagen con una relación de aspecto 3:2. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotal",
+ "blocks": {
+ "subtotal": {
+ "name": "Precio subtotal"
+ },
+ "buttons": {
+ "name": "Botón de pago"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Artículos"
+ },
+ "main-collection-banner": {
+ "name": "Banner de colección",
+ "settings": {
+ "paragraph": {
+ "content": "agregar una descripción o imagen editando tu colección. [Más información](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Mostrar descripción de la colección"
+ },
+ "show_collection_image": {
+ "label": "Mostrar imagen de la colección",
+ "info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 16:9. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Cuadrícula de productos",
+ "settings": {
+ "products_per_page": {
+ "label": "Productos por página"
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Cuadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar segunda imagen al pasar el cursor"
+ },
+ "show_vendor": {
+ "label": "Mostrar proveedor"
+ },
+ "enable_tags": {
+ "label": "Habilitar filtrado",
+ "info": "Personaliza los filtros con la aplicación Search & Discovery. [Más información](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Habilitar filtrado",
+ "info": "Personaliza los filtros con la aplicación Search & Discovery. [Más información](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Habilitar ordenado"
+ },
+ "header__1": {
+ "content": "Filtrado y ordenado"
+ },
+ "header__3": {
+ "content": "Tarjeta de producto"
+ },
+ "show_rating": {
+ "label": "Mostrar calificación de productos",
+ "info": "Para mostrar una calificación, agrega una aplicación de calificación de productos [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en el escritorio"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "1 columna"
+ },
+ "options__2": {
+ "label": "2 columnas"
+ }
+ },
+ "enable_quick_buy": {
+ "label": "Activar botón de agregado rápido",
+ "info": "Funciona de manera óptima con ventanas emergentes o carritos laterales."
+ },
+ "filter_type": {
+ "label": "Filtro de diseño para computadora",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ },
+ "options__3": {
+ "label": "Cajón"
+ },
+ "info": "El cajón es el diseño para móviles predeterminado."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Página de lista de colecciones",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "sort": {
+ "label": "Ordenar colecciones por:",
+ "options__1": {
+ "label": "Alfabéticamente, A-Z"
+ },
+ "options__2": {
+ "label": "Alfabéticamente, Z-A"
+ },
+ "options__3": {
+ "label": "Fecha: reciente a antigua"
+ },
+ "options__4": {
+ "label": "Fecha: antigua a reciente"
+ },
+ "options__5": {
+ "label": "Recuento de productos, de mayor a menor"
+ },
+ "options__6": {
+ "label": "Recuento de productos, de menor a mayor"
+ }
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Cuadrado"
+ },
+ "info": "Agregar imágenes editando tus colecciones. [Más información](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en la versión para computadora"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "1 columna"
+ },
+ "options__2": {
+ "label": "2 columnas"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Página"
+ },
+ "main-password-footer": {
+ "name": "Pie de página de contraseña"
+ },
+ "main-password-header": {
+ "name": "Encabezado de contraseña",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Edita tu logo en la configuración del tema."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Información de producto",
+ "blocks": {
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Título"
+ },
+ "price": {
+ "name": "Precio"
+ },
+ "quantity_selector": {
+ "name": "Selector de cantidad"
+ },
+ "variant_picker": {
+ "name": "Selector de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Desplegable"
+ },
+ "options__2": {
+ "label": "Miniaturas"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Botones de compras",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Mostrar botones de pago dinámico",
+ "info": "Utilizando las formas de pago disponibles en tu tienda, los clientes ven la opción de su preferencia, como PayPal o Apple Pay. [Más información](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Mostrar el formulario de información de la persona destinataria para las tarjetas de regalo",
+ "info": "Permite que los compradores envíen tarjetas de regalo en una fecha programada junto con un mensaje personal. [Más información](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Disponibilidad de retiro"
+ },
+ "description": {
+ "name": "Descripción"
+ },
+ "share": {
+ "name": "Compartir",
+ "settings": {
+ "featured_image_info": {
+ "content": "Si incluyes un enlace en publicaciones de redes sociales, la imagen destacada de la página se mostrará como la imagen de vista previa. [Más información](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Con la imagen de vista previa se incluye un nombre y descripción de la tienda. [Más información](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "texto"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Fila desplegable",
+ "settings": {
+ "heading": {
+ "info": "Incluye un título que explique el contenido.",
+ "label": "Título"
+ },
+ "content": {
+ "label": "Contenido de fila"
+ },
+ "page": {
+ "label": "Contenido de fila de la página"
+ },
+ "icon": {
+ "label": "Ícono",
+ "options__1": {
+ "label": "Ninguno"
+ },
+ "options__2": {
+ "label": "Manzana"
+ },
+ "options__3": {
+ "label": "Plátano"
+ },
+ "options__4": {
+ "label": "Biberón"
+ },
+ "options__5": {
+ "label": "Apartado postal"
+ },
+ "options__6": {
+ "label": "Zanahoria"
+ },
+ "options__7": {
+ "label": "Globo de chat"
+ },
+ "options__8": {
+ "label": "Marca de verificación"
+ },
+ "options__9": {
+ "label": "Portapapeles"
+ },
+ "options__10": {
+ "label": "Lácteos"
+ },
+ "options__11": {
+ "label": "Libre de lácteos"
+ },
+ "options__12": {
+ "label": "Secador"
+ },
+ "options__13": {
+ "label": "Ojo"
+ },
+ "options__14": {
+ "label": "Fuego"
+ },
+ "options__15": {
+ "label": "Libre de gluten"
+ },
+ "options__16": {
+ "label": "Corazón"
+ },
+ "options__17": {
+ "label": "Plancha"
+ },
+ "options__18": {
+ "label": "Hoja"
+ },
+ "options__19": {
+ "label": "Cuero"
+ },
+ "options__20": {
+ "label": "Relámpago"
+ },
+ "options__21": {
+ "label": "Lápiz labial"
+ },
+ "options__22": {
+ "label": "Candado"
+ },
+ "options__23": {
+ "label": "Alfiler en mapa"
+ },
+ "options__24": {
+ "label": "Libre de nueces"
+ },
+ "options__25": {
+ "label": "Pantalones"
+ },
+ "options__26": {
+ "label": "Huella de pata"
+ },
+ "options__27": {
+ "label": "Pimienta"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Avión"
+ },
+ "options__30": {
+ "label": "Planta"
+ },
+ "options__31": {
+ "label": "Etiqueta de precio"
+ },
+ "options__32": {
+ "label": "Signo de interrogación"
+ },
+ "options__33": {
+ "label": "Reciclar"
+ },
+ "options__34": {
+ "label": "Devolución"
+ },
+ "options__35": {
+ "label": "Regla"
+ },
+ "options__36": {
+ "label": "Plato de servir"
+ },
+ "options__37": {
+ "label": "Camisa"
+ },
+ "options__38": {
+ "label": "Zapato"
+ },
+ "options__39": {
+ "label": "Silueta"
+ },
+ "options__40": {
+ "label": "Copo de nieve"
+ },
+ "options__41": {
+ "label": "Estrella"
+ },
+ "options__42": {
+ "label": "Cronómetro"
+ },
+ "options__43": {
+ "label": "Camión"
+ },
+ "options__44": {
+ "label": "Lavado"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Ventana emergente",
+ "settings": {
+ "link_label": {
+ "label": "Vincular etiqueta"
+ },
+ "page": {
+ "label": "Página"
+ }
+ }
+ },
+ "rating": {
+ "name": "Calificación de los productos",
+ "settings": {
+ "paragraph": {
+ "content": "Para mostrar una calificación, agrega una aplicación de calificación de productos [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Productos complementarios",
+ "settings": {
+ "paragraph": {
+ "content": "Para seleccionar productos complementarios, agrega la aplicación Search & Discovery. [Más información](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Encabezado"
+ },
+ "make_collapsible_row": {
+ "label": "Mostrar como una fila plegable"
+ },
+ "icon": {
+ "info": "Visible cuando se muestra la fila plegable."
+ },
+ "product_list_limit": {
+ "label": "Número máximo de productos para mostrar"
+ },
+ "products_per_page": {
+ "label": "Cantidad de productos por página"
+ },
+ "pagination_style": {
+ "label": "Estilo de paginación",
+ "options": {
+ "option_1": "Puntos",
+ "option_2": "Contador",
+ "option_3": "Números"
+ }
+ },
+ "product_card": {
+ "heading": "Tarjeta de producto"
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options": {
+ "option_1": "Retrato",
+ "option_2": "Cuadrado"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Activar botón de agregado rápido"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ícono con texto",
+ "settings": {
+ "layout": {
+ "label": "Diseño",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ }
+ },
+ "content": {
+ "label": "Contenido",
+ "info": "Elige un ícono o agrega una imagen para cada columna o fila."
+ },
+ "heading": {
+ "info": "Deja la etiqueta de encabezado en blanco para ocultar la columna del ícono."
+ },
+ "icon_1": {
+ "label": "Primer ícono"
+ },
+ "image_1": {
+ "label": "Primera imagen"
+ },
+ "heading_1": {
+ "label": "Primer encabezado"
+ },
+ "icon_2": {
+ "label": "Segundo ícono"
+ },
+ "image_2": {
+ "label": "Segunda imagen"
+ },
+ "heading_2": {
+ "label": "Segundo encabezado"
+ },
+ "icon_3": {
+ "label": "Tercer ícono"
+ },
+ "image_3": {
+ "label": "Tercera imagen"
+ },
+ "heading_3": {
+ "label": "Tercer encabezado"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Estado del inventario",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Umbral de inventario bajo",
+ "info": "Elige 0 para que siempre se muestre en existencias si está disponible."
+ },
+ "show_inventory_quantity": {
+ "label": "Mostrar recuento de inventario"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Multimedia",
+ "info": "Obtén más información sobre [tipos de elementos multimedia.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Activar la reproducción de video en bucle"
+ },
+ "enable_sticky_info": {
+ "label": "Activar contenido fijo en computadoras"
+ },
+ "hide_variants": {
+ "label": "Ocultar los elementos multimedia de las demás variantes tras seleccionar una de ellas"
+ },
+ "gallery_layout": {
+ "label": "Diseño para computadora",
+ "options__1": {
+ "label": "Apilado"
+ },
+ "options__2": {
+ "label": "Dos columnas"
+ },
+ "options__3": {
+ "label": "Miniaturas"
+ },
+ "options__4": {
+ "label": "Carrusel de miniaturas"
+ }
+ },
+ "media_size": {
+ "label": "Ancho del elemento multimedia en computadora",
+ "info": "Los elementos multimedia se optimizan automáticamente para dispositivos móviles.",
+ "options__1": {
+ "label": "Pequeño"
+ },
+ "options__2": {
+ "label": "Mediano"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Diseño para móviles",
+ "options__1": {
+ "label": "Dos columnas"
+ },
+ "options__2": {
+ "label": "Mostrar miniaturas"
+ },
+ "options__3": {
+ "label": "Ocultar miniaturas"
+ }
+ },
+ "media_position": {
+ "label": "Posición de contenido multimedia en el escritorio",
+ "info": "La posición se optimiza automáticamente para dispositivos móviles.",
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Derecha"
+ }
+ },
+ "image_zoom": {
+ "label": "Ampliar imagen",
+ "info": "En dispositivos móviles, la opción Hacer clic y pasar sobre el elemento cambia a Abrir Lightbox de forma predeterminada.",
+ "options__1": {
+ "label": "Abrir Lightbox"
+ },
+ "options__2": {
+ "label": "Hacer clic y pasar sobre el elemento"
+ },
+ "options__3": {
+ "label": "Sin zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Ajustar el elemento multimedia a la altura de la pantalla"
+ },
+ "media_fit": {
+ "label": "Ajuste del elemento multimedia",
+ "options__1": {
+ "label": "Original"
+ },
+ "options__2": {
+ "label": "Rellenar"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Resultados de búsqueda",
+ "settings": {
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Cuadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar segunda imagen al pasar el cursor"
+ },
+ "show_vendor": {
+ "label": "Mostrar proveedor"
+ },
+ "header__1": {
+ "content": "Tarjeta de producto"
+ },
+ "header__2": {
+ "content": "Tarjeta de blog",
+ "info": "Los estilos de tarjeta de blog también se aplican a las tarjetas de página en los resultados de búsqueda. Para cambiar los estilos de tarjeta, modifica la configuración del tema."
+ },
+ "article_show_date": {
+ "label": "Mostrar fecha"
+ },
+ "article_show_author": {
+ "label": "Mostrar autor"
+ },
+ "show_rating": {
+ "label": "Mostrar calificación de productos",
+ "info": "Para mostrar una calificación, agrega una aplicación de calificación de productos [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en el escritorio"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "1 columna"
+ },
+ "options__2": {
+ "label": "2 columnas"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Multicolumna",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "image_width": {
+ "label": "Ancho de imagen",
+ "options__1": {
+ "label": "Ancho de un tercio de columna"
+ },
+ "options__2": {
+ "label": "Ancho de mitad de columna"
+ },
+ "options__3": {
+ "label": "Ancho completo de columna"
+ }
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Cuadrado"
+ },
+ "options__4": {
+ "label": "Círculo"
+ }
+ },
+ "column_alignment": {
+ "label": "Alineación de columna",
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ }
+ },
+ "background_style": {
+ "label": "Fondo secundario",
+ "options__1": {
+ "label": "Ninguno"
+ },
+ "options__2": {
+ "label": "Mostrar como fondo de columna"
+ }
+ },
+ "button_label": {
+ "label": "Etiqueta de botón"
+ },
+ "button_link": {
+ "label": "Enlace de botón"
+ },
+ "swipe_on_mobile": {
+ "label": "Activar uso de banda magnética en el móvil"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en el escritorio"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "1 columna"
+ },
+ "options__2": {
+ "label": "2 columnas"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Columna",
+ "settings": {
+ "image": {
+ "label": "Imagen"
+ },
+ "title": {
+ "label": "Título"
+ },
+ "text": {
+ "label": "Descripción"
+ },
+ "link_label": {
+ "label": "Vincular etiqueta"
+ },
+ "link": {
+ "label": "Enlace"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multicolumna"
+ }
+ },
+ "newsletter": {
+ "name": "Suscriptor de correo electrónico",
+ "settings": {
+ "full_width": {
+ "label": "Definir ancho completo en sección"
+ },
+ "paragraph": {
+ "content": "Con cada suscripción a correos electrónicos se crean cuentas de cliente. [Más información](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Subtítulo",
+ "settings": {
+ "paragraph": {
+ "label": "Descripción"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulario de correo electrónico"
+ }
+ },
+ "presets": {
+ "name": "Suscriptor de correo electrónico"
+ }
+ },
+ "page": {
+ "name": "Página",
+ "settings": {
+ "page": {
+ "label": "Página"
+ }
+ },
+ "presets": {
+ "name": "Página"
+ }
+ },
+ "rich-text": {
+ "name": "Texto enriquecido",
+ "settings": {
+ "full_width": {
+ "label": "Definir ancho completo en sección"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Posición del contenido en el escritorio",
+ "info": "La posición se optimizó automáticamente para dispositivos móviles."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación de contenido"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Descripción"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botones",
+ "settings": {
+ "button_label_1": {
+ "label": "Primera etiqueta de botón",
+ "info": "Deja la etiqueta en blanco para ocultar el botón."
+ },
+ "button_link_1": {
+ "label": "Primer enlace de botón"
+ },
+ "button_style_secondary_1": {
+ "label": "Usar estilo de botón con contorno"
+ },
+ "button_label_2": {
+ "label": "Segunda etiqueta de botón",
+ "info": "Deja la etiqueta en blanco para ocultar el botón."
+ },
+ "button_link_2": {
+ "label": "Segundo enlace de botón"
+ },
+ "button_style_secondary_2": {
+ "label": "Usar estilo de botón con contorno"
+ }
+ }
+ },
+ "caption": {
+ "name": "Leyenda",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Subtítulo"
+ },
+ "options__2": {
+ "label": "Mayúscula"
+ }
+ },
+ "caption_size": {
+ "label": "Tamaño del texto",
+ "options__1": {
+ "label": "Pequeño"
+ },
+ "options__2": {
+ "label": "Mediano"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Texto enriquecido"
+ }
+ },
+ "apps": {
+ "name": "Aplicaciones",
+ "settings": {
+ "include_margins": {
+ "label": "Hacer que los márgenes de sección sean iguales al tema"
+ }
+ },
+ "presets": {
+ "name": "Aplicaciones"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Encabezado"
+ },
+ "cover_image": {
+ "label": "Imagen de portada"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Usar URL de YouTube o Vimeo"
+ },
+ "description": {
+ "label": "Texto alternativo del video",
+ "info": "Describe el video para los clientes que usan lectores de pantalla. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Agregar relleno de imagen",
+ "info": "Selecciona relleno de imagen si no deseas que se corte tu imagen de portada."
+ },
+ "full_width": {
+ "label": "Definir ancho completo en sección"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Reproducir video en bucle"
+ },
+ "header__1": {
+ "content": "Video alojado en Shopify"
+ },
+ "header__2": {
+ "content": "O incrustar video a partir de una URL"
+ },
+ "header__3": {
+ "content": "Estilo"
+ },
+ "paragraph": {
+ "content": "Se muestra cuando no se seleccionó ningún video alojado en Shopify."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Producto destacado",
+ "blocks": {
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Título"
+ },
+ "price": {
+ "name": "Precio"
+ },
+ "quantity_selector": {
+ "name": "Selector de cantidad"
+ },
+ "variant_picker": {
+ "name": "Selector de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Desplegable"
+ },
+ "options__2": {
+ "label": "Botones"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Botones de compras",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Mostrar botones de pago dinámico",
+ "info": "Utilizando las formas de pago disponibles en tu tienda, los clientes ven la opción de su preferencia, como PayPal o Apple Pay. [Más información](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Descripción"
+ },
+ "share": {
+ "name": "Compartir",
+ "settings": {
+ "featured_image_info": {
+ "content": "Si incluyes un enlace en publicaciones de redes sociales, la imagen destacada de la página se mostrará como la imagen de vista previa. [Más información](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Con la imagen de vista previa se incluye un nombre y descripción de la tienda. [Más información](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Texto"
+ }
+ }
+ },
+ "rating": {
+ "name": "Calificación de productos",
+ "settings": {
+ "paragraph": {
+ "content": "Agrega una aplicación para mostrar las calificaciones de los productos. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Mayúscula"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Producto"
+ },
+ "secondary_background": {
+ "label": "Mostrar fondo secundario"
+ },
+ "header": {
+ "content": "Multimedia",
+ "info": "Más información sobre [tipos de elementos multimedia](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Activar la reproducción de video en bucle"
+ },
+ "hide_variants": {
+ "label": "Ocultar elementos multimedia de variantes no seleccionadas en el escritorio"
+ },
+ "media_position": {
+ "label": "Posición del contenido multimedia en computadoras de escritorio",
+ "info": "La posición se optimiza automáticamente para dispositivos móviles.",
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Derecha"
+ }
+ }
+ },
+ "presets": {
+ "name": "Producto destacado"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner de suscripción de correo electrónico",
+ "settings": {
+ "paragraph": {
+ "content": "Con cada suscripción a correos electrónicos se crea una cuenta de cliente. [Más información](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Imagen de fondo"
+ },
+ "show_background_image": {
+ "label": "Mostrar imagen de fondo"
+ },
+ "show_text_box": {
+ "label": "Mostrar contenedor en la computadora"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidad de la sobreposición de imagen"
+ },
+ "show_text_below": {
+ "label": "Mostrar el contenido debajo de la imagen en el móvil",
+ "info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 16:9. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Altura del banner",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Pequeña"
+ },
+ "options__3": {
+ "label": "Mediana"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Para mejores resultados, utiliza una imagen con una relación de aspecto 16:9. [Más información](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Arriba a la izquierda"
+ },
+ "options__2": {
+ "label": "Arriba en el centro"
+ },
+ "options__3": {
+ "label": "Arriba a la derecha"
+ },
+ "options__4": {
+ "label": "Centrado a la izquierda"
+ },
+ "options__5": {
+ "label": "Centrado en el medio"
+ },
+ "options__6": {
+ "label": "Centrado a la derecha"
+ },
+ "options__7": {
+ "label": "Abajo a la izquierda"
+ },
+ "options__8": {
+ "label": "Abajo en el centro"
+ },
+ "options__9": {
+ "label": "Abajo a la derecha"
+ },
+ "label": "Posición del contenido en la computadora"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en la computadora"
+ },
+ "header": {
+ "content": "Diseño para móviles"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en el móvil"
+ },
+ "color_scheme": {
+ "info": "Visible cuando se muestre el contenedor."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Párrafo",
+ "settings": {
+ "paragraph": {
+ "label": "Descripción"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "label": "Estilo de texto"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulario de correo electrónico"
+ }
+ },
+ "presets": {
+ "name": "Banner de suscripción de correo electrónico"
+ }
+ },
+ "slideshow": {
+ "name": "Presentación de diapositivas",
+ "settings": {
+ "layout": {
+ "label": "Diseño",
+ "options__1": {
+ "label": "Ancho completo"
+ },
+ "options__2": {
+ "label": "Cuadrícula"
+ }
+ },
+ "slide_height": {
+ "label": "Altura de diapositiva",
+ "options__1": {
+ "label": "Adaptar a la primera imagen"
+ },
+ "options__2": {
+ "label": "Pequeña"
+ },
+ "options__3": {
+ "label": "Mediana"
+ },
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "slider_visual": {
+ "label": "Estilo de paginación",
+ "options__1": {
+ "label": "Contador"
+ },
+ "options__2": {
+ "label": "Puntos"
+ },
+ "options__3": {
+ "label": "Números"
+ }
+ },
+ "auto_rotate": {
+ "label": "Rotar las diapositivas automáticamente"
+ },
+ "change_slides_speed": {
+ "label": "Cambiar diapositivas cada"
+ },
+ "mobile": {
+ "content": "Diseño para móviles"
+ },
+ "show_text_below": {
+ "label": "Mostrar el contenido debajo de las imágenes en el móvil"
+ },
+ "accessibility": {
+ "content": "Accesibilidad",
+ "label": "Descripción de la presentación de diapositivas",
+ "info": "Describe la presentación de diapositivas para los clientes utilizando lectores de pantallas."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Diapositiva",
+ "settings": {
+ "image": {
+ "label": "Imagen"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "subheading": {
+ "label": "Subtítulo"
+ },
+ "button_label": {
+ "label": "Etiqueta de botón",
+ "info": "Deja la etiqueta en blanco para ocultar el botón."
+ },
+ "link": {
+ "label": "Enlace de botón"
+ },
+ "secondary_style": {
+ "label": "Usar estilo de botón con contorno"
+ },
+ "box_align": {
+ "label": "Posición del contenido en computadoras",
+ "options__1": {
+ "label": "Arriba a la izquierda"
+ },
+ "options__2": {
+ "label": "Arriba en el centro"
+ },
+ "options__3": {
+ "label": "Arriba a la derecha"
+ },
+ "options__4": {
+ "label": "Centrado a la izquierda"
+ },
+ "options__5": {
+ "label": "Centrado en el medio"
+ },
+ "options__6": {
+ "label": "Centrado a la derecha"
+ },
+ "options__7": {
+ "label": "Abajo a la izquierda"
+ },
+ "options__8": {
+ "label": "Abajo en el centro"
+ },
+ "options__9": {
+ "label": "Abajo a la derecha"
+ },
+ "info": "La posición se optimizó automáticamente para dispositivos móviles."
+ },
+ "show_text_box": {
+ "label": "Mostrar contenedor en computadoras"
+ },
+ "text_alignment": {
+ "label": "Alineación del contenido en computadoras",
+ "option_1": {
+ "label": "Izquierda"
+ },
+ "option_2": {
+ "label": "Centrado"
+ },
+ "option_3": {
+ "label": "Derecha"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidad de la sobreposición de imagen"
+ },
+ "text_alignment_mobile": {
+ "label": "Alineación del contenido en dispositivos móviles",
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Presentación de diapositivas"
+ }
+ },
+ "collapsible_content": {
+ "name": "Contenido desplegable",
+ "settings": {
+ "caption": {
+ "label": "Leyenda"
+ },
+ "heading": {
+ "label": "Encabezado"
+ },
+ "heading_alignment": {
+ "label": "Alineación del encabezado",
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Derecha"
+ }
+ },
+ "layout": {
+ "label": "Diseño",
+ "options__1": {
+ "label": "Sin contenedor"
+ },
+ "options__2": {
+ "label": "Contenedor de fila"
+ },
+ "options__3": {
+ "label": "Contenedor de sección"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Esquema de color del contenedor",
+ "info": "Visible cuando el diseño está configurado como fila o contenedor de sección."
+ },
+ "open_first_collapsible_row": {
+ "label": "Abrir primera fila desplegable"
+ },
+ "header": {
+ "content": "Diseño de la imagen"
+ },
+ "image": {
+ "label": "Imagen"
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Pequeña"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ },
+ "desktop_layout": {
+ "label": "Diseño para computadora",
+ "options__1": {
+ "label": "Imagen primero"
+ },
+ "options__2": {
+ "label": "Imagen de segundo"
+ },
+ "info": "La imagen siempre primero en dispositivos móviles."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Fila desplegable",
+ "settings": {
+ "heading": {
+ "info": "Incluye un título que explique el contenido.",
+ "label": "Encabezado"
+ },
+ "row_content": {
+ "label": "Contenido de fila"
+ },
+ "page": {
+ "label": "Contenido de fila de la página"
+ },
+ "icon": {
+ "label": "Ícono",
+ "options__1": {
+ "label": "Ninguno"
+ },
+ "options__2": {
+ "label": "Manzana"
+ },
+ "options__3": {
+ "label": "Plátano"
+ },
+ "options__4": {
+ "label": "Biberón"
+ },
+ "options__5": {
+ "label": "Apartado postal"
+ },
+ "options__6": {
+ "label": "Zanahoria"
+ },
+ "options__7": {
+ "label": "Globo de chat"
+ },
+ "options__8": {
+ "label": "Marca de verificación"
+ },
+ "options__9": {
+ "label": "Portapapeles"
+ },
+ "options__10": {
+ "label": "Lácteos"
+ },
+ "options__11": {
+ "label": "Libre de lácteos"
+ },
+ "options__12": {
+ "label": "Secador"
+ },
+ "options__13": {
+ "label": "Ojo"
+ },
+ "options__14": {
+ "label": "Fuego"
+ },
+ "options__15": {
+ "label": "Libre de gluten"
+ },
+ "options__16": {
+ "label": "Corazón"
+ },
+ "options__17": {
+ "label": "Plancha"
+ },
+ "options__18": {
+ "label": "Hoja"
+ },
+ "options__19": {
+ "label": "Cuero"
+ },
+ "options__20": {
+ "label": "Relámpago"
+ },
+ "options__21": {
+ "label": "Lápiz labial"
+ },
+ "options__22": {
+ "label": "Candado"
+ },
+ "options__23": {
+ "label": "Alfiler en mapa"
+ },
+ "options__24": {
+ "label": "Libre de nueces"
+ },
+ "options__25": {
+ "label": "Pantalones"
+ },
+ "options__26": {
+ "label": "Huella de pata"
+ },
+ "options__27": {
+ "label": "Pimienta"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Avión"
+ },
+ "options__30": {
+ "label": "Planta"
+ },
+ "options__31": {
+ "label": "Etiqueta de precio"
+ },
+ "options__32": {
+ "label": "Signo de interrogación"
+ },
+ "options__33": {
+ "label": "Reciclar"
+ },
+ "options__34": {
+ "label": "Devolución"
+ },
+ "options__35": {
+ "label": "Regla"
+ },
+ "options__36": {
+ "label": "Plato de servir"
+ },
+ "options__37": {
+ "label": "Camisa"
+ },
+ "options__38": {
+ "label": "Zapato"
+ },
+ "options__39": {
+ "label": "Silueta"
+ },
+ "options__40": {
+ "label": "Copo de nieve"
+ },
+ "options__41": {
+ "label": "Estrella"
+ },
+ "options__42": {
+ "label": "Cronómetro"
+ },
+ "options__43": {
+ "label": "Camión"
+ },
+ "options__44": {
+ "label": "Lavado"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Contenido desplegable"
+ }
+ },
+ "main-account": {
+ "name": "Cuenta"
+ },
+ "main-activate-account": {
+ "name": "Activación de cuenta"
+ },
+ "main-addresses": {
+ "name": "Direcciones"
+ },
+ "main-login": {
+ "name": "Inicio de sesión"
+ },
+ "main-order": {
+ "name": "Pedido"
+ },
+ "main-register": {
+ "name": "Registro"
+ },
+ "main-reset-password": {
+ "name": "Restablecimiento de contraseña"
+ },
+ "related-products": {
+ "name": "Productos relacionados",
+ "settings": {
+ "heading": {
+ "label": "Encabezado"
+ },
+ "products_to_show": {
+ "label": "Número máximo de productos para mostrar"
+ },
+ "columns_desktop": {
+ "label": "Número de columnas en la versión para computadora"
+ },
+ "paragraph__1": {
+ "content": "Las recomendaciones dinámicas usan la información de pedidos y productos para cambiar y mejorar con el tiempo. [Más información](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Tarjeta de producto"
+ },
+ "image_ratio": {
+ "label": "Relación de aspecto de imagen",
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Vertical"
+ },
+ "options__3": {
+ "label": "Cuadrada"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar segunda imagen al pasar el cursor"
+ },
+ "show_vendor": {
+ "label": "Mostrar proveedor"
+ },
+ "show_rating": {
+ "label": "Mostrar calificación de productos",
+ "info": "Agrega una aplicación para mostrar las calificaciones de los productos. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ },
+ "columns_mobile": {
+ "label": "Número de columnas en la versión para móviles",
+ "options__1": {
+ "label": "Una columna"
+ },
+ "options__2": {
+ "label": "Dos columnas"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Varias filas",
+ "settings": {
+ "image": {
+ "label": "Imagen"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Adaptar a la imagen"
+ },
+ "options__2": {
+ "label": "Pequeña"
+ },
+ "options__3": {
+ "label": "Mediana"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "label": "Altura de imagen"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pequeña"
+ },
+ "options__2": {
+ "label": "Mediana"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Ancho de la imagen en la computadora",
+ "info": "La imagen se optimiza automáticamente para el celular."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Pequeña"
+ },
+ "options__2": {
+ "label": "Mediana"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Tamaño del título"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Cuerpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "label": "Estilo de texto"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Botón sólido"
+ },
+ "options__2": {
+ "label": "Botón con contorno"
+ },
+ "label": "Estilo del botón"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en computadoras"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Arriba"
+ },
+ "options__2": {
+ "label": "Centrado"
+ },
+ "options__3": {
+ "label": "Abajo"
+ },
+ "label": "Posición del contenido en computadoras",
+ "info": "La posición se optimiza automáticamente para dispositivos móviles."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alternar desde la izquierda"
+ },
+ "options__2": {
+ "label": "Alternar desde la derecha"
+ },
+ "options__3": {
+ "label": "Alineada a la izquierda"
+ },
+ "options__4": {
+ "label": "Alineada a la derecha"
+ },
+ "label": "Ubicación de la imagen en computadoras",
+ "info": "La colocación se optimiza automáticamente para dispositivos móviles."
+ },
+ "container_color_scheme": {
+ "label": "Esquema de color del contenedor"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Izquierda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Derecha"
+ },
+ "label": "Alineación del contenido en el celular"
+ },
+ "header_mobile": {
+ "content": "Diseño para móviles"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Fila",
+ "settings": {
+ "image": {
+ "label": "Imagen"
+ },
+ "caption": {
+ "label": "Leyenda"
+ },
+ "heading": {
+ "label": "Encabezado"
+ },
+ "text": {
+ "label": "Texto"
+ },
+ "button_label": {
+ "label": "Etiqueta de botón"
+ },
+ "button_link": {
+ "label": "Enlace de botón"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Varias filas"
+ }
+ },
+ "quick-order-list": {
+ "name": "Lista de pedidos rápidos",
+ "settings": {
+ "show_image": {
+ "label": "Mostrar imágenes"
+ },
+ "show_sku": {
+ "label": "Mostrar SKU"
+ }
+ },
+ "presets": {
+ "name": "Lista de pedidos rápidos"
+ }
+ }
+ }
+}
diff --git a/locales/fi.json b/locales/fi.json
new file mode 100644
index 0000000..70ae6a5
--- /dev/null
+++ b/locales/fi.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Siirry kauppaan käyttämällä salasanaa:",
+ "login_password_button": "Siirry sisään käyttämällä salasanaa",
+ "login_form_password_label": "Salasana",
+ "login_form_password_placeholder": "Salasanasi",
+ "login_form_error": "Väärä salasana!",
+ "login_form_submit": "Lähetä",
+ "admin_link_html": "Oletko kaupan omistaja? Kirjaudu sisään tästä ",
+ "powered_by_shopify_html": "Tämän kaupan alustana on {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Jaa Facebookissa",
+ "share_on_twitter": "Twiittaa Twitterissä",
+ "share_on_pinterest": "Pinnaa Pinterestissä"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Jatka ostoksia",
+ "pagination": {
+ "label": "Sivunumerointi",
+ "page": "Sivu {{ number }}",
+ "next": "Seuraava sivu",
+ "previous": "Edellinen sivu"
+ },
+ "search": {
+ "search": "Hae",
+ "reset": "Tyhjennä hakutermi"
+ },
+ "cart": {
+ "view": "Näytä ostoskori ({{ count }})",
+ "item_added": "Tuote lisätty ostoskoriisi",
+ "view_empty_cart": "Katso ostoskori"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopioi linkki",
+ "share_url": "Linkki",
+ "success_message": "Linkki kopioitu leikepöydälle",
+ "close": "Sulje jako"
+ },
+ "slider": {
+ "of": "/",
+ "next_slide": "Liu'uta oikealle",
+ "previous_slide": "Liu'uta vasemmalle",
+ "name": "Liukusäädin"
+ }
+ },
+ "newsletter": {
+ "label": "Sähköposti",
+ "success": "Kiitos tilauksesta",
+ "button_label": "Tilaa"
+ },
+ "accessibility": {
+ "skip_to_text": "Ohita ja siirry sisältöön",
+ "close": "Sulje",
+ "unit_price_separator": "kohti",
+ "vendor": "Myyjä:",
+ "error": "Virhe",
+ "refresh_page": "Vaihtoehdon valinta päivittää koko sivun.",
+ "link_messages": {
+ "new_window": "Avaa uuden ikkunan.",
+ "external": "Avaa ulkoisen verkkosivuston."
+ },
+ "loading": "Ladataan...",
+ "skip_to_product_info": "Siirry tuotetietoihin",
+ "total_reviews": "arvosteluja yhteensä",
+ "star_reviews_info": "{{ rating_value }}/{{ rating_max }} tähteä",
+ "collapsible_content_title": "Pienenettävä sisältö",
+ "complementary_products": "Täydentävät tuotteet"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blogi",
+ "read_more_title": "Lue lisää: {{ title }}",
+ "comments": {
+ "one": "{{ count }} kommentti",
+ "other": "{{ count }} kommenttia"
+ },
+ "moderated": "Huomaa, että kommenttien täytyy olla hyväksytty ennen niiden julkaisemista.",
+ "comment_form_title": "Kirjoita kommentti",
+ "name": "Nimi",
+ "email": "Sähköposti",
+ "message": "Kommentti",
+ "post": "Julkaise kommentti",
+ "back_to_blog": "Takaisin blogiin",
+ "share": "Jaa tämä artikkeli",
+ "success": "Kommenttisi julkaiseminen onnistui! Kiitos!",
+ "success_moderated": "Kommenttisi julkaiseminen onnistui. Julkaisemme sen jonkin ajan kuluttua, kun blogimme on tarkastettu."
+ }
+ },
+ "onboarding": {
+ "product_title": "Tuotteen esimerkkinimi",
+ "collection_title": "Kokoelmasi nimi"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Lisää ostoskoriin",
+ "description": "Kuvaus",
+ "on_sale": "Alennusmyynti",
+ "quantity": {
+ "label": "Määrä",
+ "input_label": "Tuotteen {{ product }} määrä",
+ "increase": "Lisää tuotteen {{ product }} määrää",
+ "decrease": "Vähennä tuotteen {{ product }} määrää",
+ "minimum_of": "Vähimmäismäärä {{ quantity }}",
+ "maximum_of": "Enimmäismäärä {{ quantity }}",
+ "multiples_of": "Lisäysten koko: {{ quantity }}",
+ "in_cart_html": "{{ quantity }} ostoskorissa",
+ "note": "Katso määräsäännöt"
+ },
+ "price": {
+ "from_price_html": "Alkaen {{ price }}",
+ "regular_price": "Normaalihinta",
+ "sale_price": "Alennushinta",
+ "unit_price": "Yksikköhinta"
+ },
+ "share": "Jaa tämä tuote",
+ "sold_out": "Loppuunmyyty",
+ "unavailable": "Ei käytettävissä",
+ "vendor": "Myyjä",
+ "video_exit_message": "{{ title }} avaa koko näytön videon samassa ikkunassa.",
+ "xr_button": "Näytä omassa tilassasi",
+ "xr_button_label": "Näytä omassa tilassasi, lataa kohteen lisätyn todellisuuden ikkunaan",
+ "pickup_availability": {
+ "view_store_info": "Näytä kaupan tiedot",
+ "check_other_stores": "Tarkista saatavuus muista kaupoista",
+ "pick_up_available": "Nouto saatavilla",
+ "pick_up_available_at_html": "Nouto saatavilla paikassa {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Nouto ei ole tällä hetkellä saatavilla paikassa {{ location_name }} ",
+ "unavailable": "Noudon saatavuutta ei voitu ladata",
+ "refresh": "Päivitä"
+ },
+ "media": {
+ "open_media": "Avaa aineisto {{ index }} modaalisessa ikkunassa",
+ "play_model": "Toista 3D Viewer",
+ "play_video": "Toista video",
+ "gallery_viewer": "Gallerian katseluohjelma",
+ "load_image": "Lataa kuva {{ index }} gallerianäkymään",
+ "load_model": "Lataa 3D-malli {{ index }} gallerianäkymään",
+ "load_video": "Toista video {{ index }} gallerianäkymässä",
+ "image_available": "Kuva {{ index }} on nyt saatavilla gallerianäkymässä"
+ },
+ "view_full_details": "Näytä kaikki tiedot",
+ "include_taxes": "Sisältää veron.",
+ "shipping_policy_html": "Toimituskulut lasketaan kassalla.",
+ "choose_options": "Valitse vaihtoehdot",
+ "choose_product_options": "Valitse vaihtoehtoja tuotteelle {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – Ei ole käytettävissä",
+ "variant_sold_out_or_unavailable": "Versio on loppuunmyyty tai ei saatavilla",
+ "inventory_in_stock": "Varastossa",
+ "inventory_in_stock_show_count": "{{ quantity }} varastossa",
+ "inventory_low_stock": "Varasto vähissä",
+ "inventory_low_stock_show_count": "Varasto vähissä: {{ quantity }} jäljellä",
+ "inventory_out_of_stock": "Loppunut varastosta",
+ "sku": "SKU-koodi",
+ "inventory_out_of_stock_continue_selling": "Varastossa",
+ "volume_pricing": {
+ "title": "Volyymihinnoittelu",
+ "note": "Volyymihinnoittelu saatavilla",
+ "minimum": "Yli {{ quantity }}",
+ "price_at_each": "{{ price }}/kpl",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "Tuoteversiot"
+ },
+ "modal": {
+ "label": "Mediagalleria"
+ },
+ "facets": {
+ "apply": "Käytä",
+ "clear": "Tyhjennä",
+ "clear_all": "Poista kaikki",
+ "from": "Alkaen",
+ "filter_and_sort": "Suodatus ja lajittelu",
+ "filter_by_label": "Suodatin:",
+ "filter_button": "Suodata",
+ "filters_selected": {
+ "one": "{{ count }} valittu",
+ "other": "{{ count }} valittu"
+ },
+ "max_price": "Korkein hinta on {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }}/{{ count }} tuotetta",
+ "other": "{{ product_count }}/{{ count }} tuotetta"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} tuote",
+ "other": "{{ count }} tuotetta"
+ },
+ "reset": "Nollaa",
+ "sort_button": "Lajittele",
+ "sort_by_label": "Lajittelu:",
+ "to": "Asti",
+ "clear_filter": "Poista suodatin",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} suodatinta valittu)",
+ "show_more": "Näytä enemmän",
+ "show_less": "Näytä vähemmän",
+ "filter_and_operator_subtitle": "Sovella kaikkia"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Ei tuloksia haulla \"{{ terms }}\". Tarkista oikeinkirjoitus tai kokeile toista sanaa tai ilmaisua.",
+ "results_with_count": {
+ "one": "{{ count }} tulos",
+ "other": "{{ count }} tulosta"
+ },
+ "title": "Hakutulokset",
+ "page": "Sivu",
+ "products": "Tuotteet",
+ "search_for": "Hae kohdetta \"{{ terms }}\"",
+ "results_with_count_and_term": {
+ "one": "{{ count }} tulos hakuehdolla \"{{ terms }}\"",
+ "other": "{{ count }} tulosta hakuehdolla \"{{ terms }}\""
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} sivu",
+ "other": "{{ count }} sivua"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} tuote",
+ "other": "{{ count }} tuotetta"
+ },
+ "suggestions": "Ehdotukset",
+ "pages": "Sivut",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} ehdotus",
+ "other": "{{ count }} ehdotusta"
+ }
+ },
+ "cart": {
+ "cart": "Ostoskori"
+ },
+ "contact": {
+ "form": {
+ "name": "Nimi",
+ "email": "Sähköposti",
+ "phone": "Puhelinnumero",
+ "comment": "Kommentti",
+ "send": "Lähetä",
+ "post_success": "Kiitos, että otit yhteyttä. Palaamme asiaan mahdollisimman pian.",
+ "error_heading": "Mukauta seuraavat:",
+ "title": "Yhteydenottolomake"
+ }
+ },
+ "404": {
+ "title": "Sivua ei löytynyt",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Ilmoitus",
+ "menu": "Valikko",
+ "cart_count": {
+ "one": "{{ count }} tuote",
+ "other": "{{ count }} tuotetta"
+ }
+ },
+ "cart": {
+ "title": "Ostoskorisi",
+ "caption": "Ostoskorin tuotteet",
+ "remove_title": "Poista {{ title }}",
+ "note": "Tilauksen erityisohjeet",
+ "checkout": "Kassa",
+ "empty": "Ostoskorisi on tyhjä",
+ "cart_error": "Ostoskorisi päivityksessä tapahtui virhe. Yritä uudelleen.",
+ "cart_quantity_error_html": "Voit lisätä ostoskoriisi vain {{ quantity }} kappaletta tätä tuotetta.",
+ "taxes_and_shipping_policy_at_checkout_html": "Verot, alennukset ja toimituskulut lasketaan kassalla",
+ "taxes_included_but_shipping_at_checkout": "Sisältää veron; toimituskulut ja alennukset lasketaan kassalla",
+ "taxes_included_and_shipping_policy_html": "Sisältää veron. Toimituskulut ja alennukset lasketaan kassalla.",
+ "taxes_and_shipping_at_checkout": "Verot, alennukset ja toimituskulut lasketaan kassalla",
+ "headings": {
+ "product": "Tuote",
+ "price": "Hinta",
+ "total": "Yhteensä",
+ "quantity": "Määrä",
+ "image": "Tuotekuva"
+ },
+ "update": "Päivitä",
+ "login": {
+ "title": "Onko sinulla tili?",
+ "paragraph_html": "Kirjaudu sisään , jotta voit maksaa kassalla nopeammin."
+ },
+ "estimated_total": "Arvioitu kokonaishinta",
+ "new_estimated_total": "Uusi arvioitu kokonaishinta"
+ },
+ "footer": {
+ "payment": "Maksutavat"
+ },
+ "featured_blog": {
+ "view_all": "Näytä kaikki",
+ "onboarding_title": "Blogipostaus",
+ "onboarding_content": "Anna asiakkaillesi yhteenveto blogipostauksestasi"
+ },
+ "featured_collection": {
+ "view_all": "Näytä kaikki",
+ "view_all_label": "Näytä kaikki tuotteet kokoelmassa {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Näytä kaikki"
+ },
+ "collection_template": {
+ "title": "Kokoelma",
+ "empty": "Tuotteita ei löytynyt",
+ "use_fewer_filters_html": "Käytä vähemmän suodattimia tai poista kaikki "
+ },
+ "video": {
+ "load_video": "Lataa video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Lataa dia",
+ "previous_slideshow": "Edellinen dia",
+ "next_slideshow": "Seuraava dia",
+ "pause_slideshow": "Keskeytä diaesitys",
+ "play_slideshow": "Toista diaesitys",
+ "carousel": "Karuselli",
+ "slide": "Dia"
+ },
+ "page": {
+ "title": "Sivun otsikko"
+ },
+ "announcements": {
+ "previous_announcement": "Edellinen ilmoitus",
+ "next_announcement": "Ilmoitus",
+ "carousel": "Karuselli",
+ "announcement": "Ilmoitus",
+ "announcement_bar": "Ilmoituspalkki"
+ },
+ "quick_order_list": {
+ "product_total": "Tuotteen välisumma",
+ "view_cart": "Katso ostoskori",
+ "each": "{{ money }}/kpl",
+ "product": "Tuote",
+ "variant": "Versio",
+ "variant_total": "Versioiden summa",
+ "items_added": {
+ "one": "{{ quantity }} tuote lisätty",
+ "other": "{{ quantity }} tuotetta lisätty"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} tuote poistettu",
+ "other": "{{ quantity }} tuotetta poistettu"
+ },
+ "product_variants": "Tuoteversiot",
+ "total_items": "Tuotteita yhteensä",
+ "remove_all_items_confirmation": "Poistetaanko kaikki {{ quantity }} tuotetta ostoskorista?",
+ "remove_all": "Poista kaikki",
+ "cancel": "Peruuta"
+ }
+ },
+ "localization": {
+ "country_label": "Maa/alue",
+ "language_label": "Kieli",
+ "update_language": "Päivitä kieli",
+ "update_country": "Päivitä maa/alue"
+ },
+ "customer": {
+ "account": {
+ "title": "Tili",
+ "details": "Tilin tiedot",
+ "view_addresses": "Näytä osoitteet",
+ "return": "Palaa tilin tietoihin"
+ },
+ "account_fallback": "Tili",
+ "activate_account": {
+ "title": "Aktivoi tili",
+ "subtext": "Aktivoi tili luomalla salasana.",
+ "password": "Salasana",
+ "password_confirm": "Vahvista salasana",
+ "submit": "Aktivoi tili",
+ "cancel": "Hylkää kutsu"
+ },
+ "addresses": {
+ "title": "Osoitteet",
+ "default": "Oletus",
+ "add_new": "Lisää uusi osoite",
+ "edit_address": "Muokkaa osoitetta",
+ "first_name": "Etunimi",
+ "last_name": "Sukunimi",
+ "company": "Yritys",
+ "address1": "Osoite 1",
+ "address2": "Osoite 2",
+ "city": "Paikkakunta",
+ "country": "Maa/alue",
+ "province": "Provinssi",
+ "zip": "Postinumero",
+ "phone": "Puhelin",
+ "set_default": "Aseta oletusosoitteeksi",
+ "add": "Lisää osoite",
+ "update": "Päivitä osoite",
+ "cancel": "Peruuta",
+ "edit": "Muokkaa",
+ "delete": "Poista",
+ "delete_confirm": "Haluatko varmasti poistaa tämän osoitteen?"
+ },
+ "log_in": "Kirjaudu sisään",
+ "log_out": "Kirjaudu ulos",
+ "login_page": {
+ "cancel": "Peruuta",
+ "create_account": "Luo tili",
+ "email": "Sähköposti",
+ "forgot_password": "Unohditko salasanasi?",
+ "guest_continue": "Jatka",
+ "guest_title": "Jatka vieraana",
+ "password": "Salasana",
+ "title": "Kirjautuminen",
+ "sign_in": "Kirjaudu sisään",
+ "submit": "Lähetä"
+ },
+ "orders": {
+ "title": "Tilaushistoria",
+ "order_number": "Tilaus",
+ "order_number_link": "Tilausnumero {{ number }}",
+ "date": "Päivämäärä",
+ "payment_status": "Maksun tila",
+ "fulfillment_status": "Jakelun tila",
+ "total": "Yhteensä",
+ "none": "Et ole vielä tehnyt tilauksia."
+ },
+ "recover_password": {
+ "title": "Nollaa salasanasi",
+ "subtext": "Lähetämme sinulle sähköpostiviestin salasanan nollaamiseksi",
+ "success": "Olemme lähettäneet sinulle sähköpostiviestin, jossa on salasanan päivityslinkki."
+ },
+ "register": {
+ "title": "Luo tili",
+ "first_name": "Etunimi",
+ "last_name": "Sukunimi",
+ "email": "Sähköposti",
+ "password": "Salasana",
+ "submit": "Luo"
+ },
+ "reset_password": {
+ "title": "Nollaa tilin salasana",
+ "subtext": "Syötä uusi salasana",
+ "password": "Salasana",
+ "password_confirm": "Vahvista salasana",
+ "submit": "Nollaa salasana"
+ },
+ "order": {
+ "title": "Tilaus {{ name }}",
+ "date_html": "Tehty {{ date }}",
+ "cancelled_html": "Tilaus peruutettu {{ date }}",
+ "cancelled_reason": "Syy: {{ reason }}",
+ "billing_address": "Laskutusosoite",
+ "payment_status": "Maksun tila",
+ "shipping_address": "Toimitusosoite",
+ "fulfillment_status": "Jakelun tila",
+ "discount": "Alennus",
+ "shipping": "Toimitus",
+ "tax": "Vero",
+ "product": "Tuote",
+ "sku": "SKU-koodi",
+ "price": "Hinta",
+ "quantity": "Määrä",
+ "total": "Yhteensä",
+ "fulfilled_at_html": "Jaeltu {{ date }}",
+ "track_shipment": "Seuraa lähetystä",
+ "tracking_url": "Seurantalinkki",
+ "tracking_company": "Kuljetuspalvelu",
+ "tracking_number": "Seurantanumero",
+ "subtotal": "Välisumma",
+ "total_duties": "Tullit",
+ "total_refunded": "Maksu palautettu"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Tässä on lahjakorttisi saldo ({{ value }}) kauppaan {{ shop }}!",
+ "subtext": "Lahjakorttisi",
+ "gift_card_code": "Lahjakortin koodi",
+ "shop_link": "Vieraile verkkokaupassa",
+ "add_to_apple_wallet": "Lisää Apple Walletiin",
+ "qr_image_alt": "QR-koodi – lunasta lahjakortti skannaamalla",
+ "copy_code": "Kopioi lahjakortin koodi",
+ "expired": "Vanhentunut",
+ "copy_code_success": "Koodin kopioiminen onnistui",
+ "how_to_use_gift_card": "Käytä lahjakortin koodia verkossa tai QR-koodia kaupassa",
+ "expiration_date": "Voimassa {{ expires_on }} asti"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Haluan lähettää tämän lahjaksi",
+ "email_label": "Vastaanottajan sähköpostiosoite",
+ "email": "Sähköposti",
+ "name_label": "Vastaanottajan sähköpostiosoite (valinnainen)",
+ "name": "Nimi",
+ "message_label": "Viesti (valinnainen)",
+ "message": "Viesti",
+ "max_characters": "enintään {{ max_chars }} merkkiä",
+ "email_label_optional_for_no_js_behavior": "Vastaanottajan sähköpostiosoite (valinnainen)",
+ "send_on": "VVVV-KK-PP",
+ "send_on_label": "Lähetä (valinnainen)",
+ "expanded": "Lahjakortin saajalomake laajennettuna",
+ "collapsed": "Lahjakortin saajalomake pienennettynä"
+ }
+ }
+}
diff --git a/locales/fi.schema.json b/locales/fi.schema.json
new file mode 100644
index 0000000..8aa41cb
--- /dev/null
+++ b/locales/fi.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Värit",
+ "settings": {
+ "background": {
+ "label": "Tausta"
+ },
+ "background_gradient": {
+ "label": "Taustan liukuväri",
+ "info": "Taustan liukuväri korvaa taustan silloin kun se on mahdollista."
+ },
+ "text": {
+ "label": "Teksti"
+ },
+ "button_background": {
+ "label": "Peittävän painikkeen tausta"
+ },
+ "button_label": {
+ "label": "Peittävä tekstipainike"
+ },
+ "secondary_button_label": {
+ "label": "Kehyspainike"
+ },
+ "shadow": {
+ "label": "Varjo"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografia",
+ "settings": {
+ "type_header_font": {
+ "label": "Fontti",
+ "info": "Muun fontin valitseminen voi vaikuttaa kauppasi nopeuteen. [Lue lisää järjestelmäfonteista.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Otsikot"
+ },
+ "header__2": {
+ "content": "Leipäteksti"
+ },
+ "type_body_font": {
+ "label": "Fontti",
+ "info": "Muun fontin valitseminen voi vaikuttaa kauppasi nopeuteen. [Lue lisää järjestelmäfonteista.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Fonttikoon skaala"
+ },
+ "body_scale": {
+ "label": "Fonttikoon skaala"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Sosiaalinen media",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "https://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Sosiaalisen median tilit"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Valuutan muoto",
+ "settings": {
+ "content": "Valuuttakoodit",
+ "currency_code_enabled": {
+ "label": "Näytä valuuttakoodit"
+ },
+ "paragraph": "Ostoskorin ja kassan hinnat näyttävät aina valuuttakoodit. Esimerkki: $1.00 USD."
+ }
+ },
+ "layout": {
+ "name": "Asettelu",
+ "settings": {
+ "page_width": {
+ "label": "Sivun leveys"
+ },
+ "spacing_sections": {
+ "label": "Tila malliosioiden välissä"
+ },
+ "header__grid": {
+ "content": "Ruudukko"
+ },
+ "paragraph__grid": {
+ "content": "Vaikuttaa alueisiin, joissa on monta saraketta tai riviä."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Vaakasuuntainen tila"
+ },
+ "spacing_grid_vertical": {
+ "label": "Pystysuuntainen tila"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Hakukäyttäytyminen",
+ "settings": {
+ "header": {
+ "content": "Hakuehdotukset"
+ },
+ "predictive_search_enabled": {
+ "label": "Ota hakuehdotukset käyttöön"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Näytä tuotteen myyjä",
+ "info": "Näkyy, kun hakuehdotukset ovat käytössä."
+ },
+ "predictive_search_show_price": {
+ "label": "Näytä tuotteen nimi",
+ "info": "Näkyy, kun hakuehdotukset ovat käytössä."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Reuna"
+ },
+ "header__shadow": {
+ "content": "Varjo"
+ },
+ "blur": {
+ "label": "Sumeus"
+ },
+ "corner_radius": {
+ "label": "Kulman säde"
+ },
+ "horizontal_offset": {
+ "label": "Vaakasuuntainen siirtymä"
+ },
+ "vertical_offset": {
+ "label": "Pystysuuntainen siirtymä"
+ },
+ "thickness": {
+ "label": "Paksuus"
+ },
+ "opacity": {
+ "label": "Sameus"
+ },
+ "image_padding": {
+ "label": "Kuvan täyttäminen"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ },
+ "label": "Tekstin tasaus"
+ }
+ }
+ },
+ "cards": {
+ "name": "Tuotekortit",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Vakiomuotoinen"
+ },
+ "options__2": {
+ "label": "Kortti"
+ },
+ "label": "Tyyli"
+ }
+ }
+ },
+ "badges": {
+ "name": "Tunnukset",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Alhaalla vasemmalla"
+ },
+ "options__2": {
+ "label": "Alhaalla oikealla"
+ },
+ "options__3": {
+ "label": "Ylhäällä vasemmalla"
+ },
+ "options__4": {
+ "label": "Ylhäällä oikealla"
+ },
+ "label": "Sijainti korteilla"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Alennusmyynti-tunnuksen värimalli"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Loppuunmyyty-tunnuksen värimalli"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Painikkeet"
+ },
+ "variant_pills": {
+ "name": "Versioiden kuvakkeet",
+ "paragraph": "Versiopillerit ovat yksi tapa näyttää tuoteversiosi asiakkaille. [Lisätietoja](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Syötteet"
+ },
+ "content_containers": {
+ "name": "Sisältösäiliöt"
+ },
+ "popups": {
+ "name": "Alasvetovalikot ja ponnahdusikkunat",
+ "paragraph": "Vaikuttaa navigoinnin alasvetovalikoiden, modaalisiin ponnahdusikkunoiden ja ostoskorin kaltaisiin alueisiin."
+ },
+ "media": {
+ "name": "Tietovälineet"
+ },
+ "drawers": {
+ "name": "Vetolaatikot"
+ },
+ "cart": {
+ "name": "Ostoskori",
+ "settings": {
+ "cart_type": {
+ "label": "Ostoskorin tyyppi",
+ "drawer": {
+ "label": "Laatikko"
+ },
+ "page": {
+ "label": "Sivu"
+ },
+ "notification": {
+ "label": "Ponnahdusikkunailmoitukset"
+ }
+ },
+ "show_vendor": {
+ "label": "Näytä myyjä"
+ },
+ "show_cart_note": {
+ "label": "Ota tilauskommentit käyttöön"
+ },
+ "cart_drawer": {
+ "header": "Veto-ostoskori",
+ "collection": {
+ "label": "Kokoelma",
+ "info": "Näkyy, kun veto-ostoskori on tyhjä."
+ }
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Kokoelman kortit",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Vakio"
+ },
+ "options__2": {
+ "label": "Kortti"
+ },
+ "label": "Tyyli"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Blogi-kortit",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Vakio"
+ },
+ "options__2": {
+ "label": "Kortti"
+ },
+ "label": "Tyyli"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Työpöytälogon leveys",
+ "info": "Logon leveys optimoidaan automaattisesti mobiililaitteille."
+ },
+ "favicon": {
+ "label": "Favicon-kuva",
+ "info": "Skaalataan 32 x 32 pikseliin"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Bränditiedot",
+ "settings": {
+ "brand_headline": {
+ "label": "Otsikko"
+ },
+ "brand_description": {
+ "label": "Oikeuksien kuvaus"
+ },
+ "brand_image": {
+ "label": "Kuva"
+ },
+ "brand_image_width": {
+ "label": "Kuvan leveys"
+ },
+ "paragraph": {
+ "content": "Lisää brändin kuvaus kauppasi alatunnisteeseen."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animaatiot",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Näytä osiot vierittämällä"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Ei mitään"
+ },
+ "options__2": {
+ "label": "Pystysuora nosto"
+ },
+ "label": "Osoitusefekti",
+ "info": "Vaikuttaa kortteihin ja painikkeisiin.",
+ "options__3": {
+ "label": "3D-nosto"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Osion täyttö",
+ "padding_top": "Yläosan täyttö",
+ "padding_bottom": "Alaosan täyttö"
+ },
+ "spacing": "Väli",
+ "colors": {
+ "label": "Värimalli",
+ "has_cards_info": "Voit muuttaa kortin väriskeemaa päivittämällä teema-asetuksia."
+ },
+ "heading_size": {
+ "label": "Otsikon koko",
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ },
+ "options__4": {
+ "label": "Erittäin suuri"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Oletus"
+ },
+ "options__2": {
+ "label": "Kaari"
+ },
+ "options__3": {
+ "label": "Möykky"
+ },
+ "options__4": {
+ "label": "V-merkki vasemmalle"
+ },
+ "options__5": {
+ "label": "V-merkki oikealle"
+ },
+ "options__6": {
+ "label": "Timantti"
+ },
+ "options__7": {
+ "label": "Suunnikas"
+ },
+ "options__8": {
+ "label": "Pyörylä"
+ },
+ "label": "Kuvan muoto",
+ "info": "Vakiomallisissa korteissa ei ole reunuksia, kun kuvan muoto on aktiivinen."
+ },
+ "animation": {
+ "content": "Animaatiot",
+ "image_behavior": {
+ "options__1": {
+ "label": "Ei mitään"
+ },
+ "options__2": {
+ "label": "Ympäristön liike"
+ },
+ "label": "Kuvan käyttäytyminen",
+ "options__3": {
+ "label": "Kiinteä taustasijainti"
+ },
+ "options__4": {
+ "label": "Lähennä vierittäessäsi"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Ilmoituspalkki",
+ "blocks": {
+ "announcement": {
+ "name": "Ilmoitus",
+ "settings": {
+ "text": {
+ "label": "Teksti"
+ },
+ "text_alignment": {
+ "label": "Tekstin tasaus",
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ }
+ },
+ "link": {
+ "label": "Linkki"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Kierrä ilmoituksia automaattisesti"
+ },
+ "change_slides_speed": {
+ "label": "Vaihda joka"
+ },
+ "header__1": {
+ "content": "Some-kuvakkeet",
+ "info": "Jos haluat näyttää sosiaalisen median tilisi, linkitä ne [teema-asetuksistasi](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Ilmoitukset"
+ },
+ "show_social": {
+ "label": "Näytä työpöydällä olevat kuvakkeet"
+ },
+ "header__3": {
+ "content": "Maa-/aluevalitsin",
+ "info": "Lisää maa/alue siirtymällä [markkina-asetuksiisi.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Ota käyttöön maa-/aluevalitsin"
+ },
+ "header__4": {
+ "content": "Kielivalitsin",
+ "info": "Lisää kieli siirtymällä [kieliasetuksiisi.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Ota kielivalitsin käyttöön"
+ }
+ },
+ "presets": {
+ "name": "Ilmoituspalkki"
+ }
+ },
+ "collage": {
+ "name": "Kollaasi",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ },
+ "desktop_layout": {
+ "label": "Työpöytäasettelu",
+ "options__1": {
+ "label": "Vasemmanpuoleinen suuri lohko"
+ },
+ "options__2": {
+ "label": "Oikeanpuoleinen suuri lohko"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobiiliasettelu",
+ "options__1": {
+ "label": "Kollaasi"
+ },
+ "options__2": {
+ "label": "Sarake"
+ }
+ },
+ "card_styles": {
+ "label": "Kortin tyyli",
+ "info": "Voit muuttaa tuote‑, kokoelma‑ ja blogikorttien tyylejä teema-asetuksista.",
+ "options__1": {
+ "label": "Käytä yksittäisiä korttityylejä"
+ },
+ "options__2": {
+ "label": "Muuta kaikki tuotekorteiksi"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Kuva",
+ "settings": {
+ "image": {
+ "label": "Kuva"
+ }
+ }
+ },
+ "product": {
+ "name": "Tuote",
+ "settings": {
+ "product": {
+ "label": "Tuote"
+ },
+ "secondary_background": {
+ "label": "Näytä toissijainen tausta"
+ },
+ "second_image": {
+ "label": "Näytä toinen kuva osoittaessa"
+ }
+ }
+ },
+ "collection": {
+ "name": "Kokoelma",
+ "settings": {
+ "collection": {
+ "label": "Kokoelma"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Kansikuva"
+ },
+ "video_url": {
+ "label": "URL-osoite",
+ "info": "Video toistetaan ponnahdusikkunassa, jos osio sisältää muita lohkoja.",
+ "placeholder": "Käytä YouTube- tai Vimeo-linkkiä"
+ },
+ "description": {
+ "label": "Videon vaihtoehtoinen teksti",
+ "info": "Kuvaile videota näytönlukijoita käyttäviä asiakkaita varten. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kollaasi"
+ }
+ },
+ "collection-list": {
+ "name": "Kokoelmaluettelo",
+ "settings": {
+ "title": {
+ "label": "Otsikko"
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ },
+ "info": "Lisää kuvia kokoelmiasi muokkaamalla. [Lisätietoja](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Ota pyyhkäisy käyttöön mobiililaitteessa"
+ },
+ "show_view_all": {
+ "label": "Ota Näytä kaikki ‑painike käyttöön, jos luettelo sisältää useampia kokoelmia kuin mitä on näkyvissä"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiilissa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Kokoelma",
+ "settings": {
+ "collection": {
+ "label": "Kokoelma"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kokoelmaluettelo"
+ }
+ },
+ "contact-form": {
+ "name": "Yhteydenottolomake",
+ "presets": {
+ "name": "Yhteydenottolomake"
+ }
+ },
+ "custom-liquid": {
+ "name": "Mukautettu Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid-koodi",
+ "info": "Luo vaativampia mukautuksia lisäämällä sovelluksen koodinpätkiä tai muita koodeja. [Lisätietoja](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Mukautettu Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blogipostaukset",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ },
+ "blog": {
+ "label": "Blogi"
+ },
+ "post_limit": {
+ "label": "Näytettävien blogipostausten määrä"
+ },
+ "show_view_all": {
+ "label": "Ota Näytä kaikki ‑painike käyttöön, jos blogi sisältää useampia blogipostauksia kuin mitä on näkyvissä"
+ },
+ "show_image": {
+ "label": "Näytä esittelykuva",
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 3:2. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Näytä päivämäärä"
+ },
+ "show_author": {
+ "label": "Näytä tekijä"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ }
+ },
+ "presets": {
+ "name": "Blogipostaukset"
+ }
+ },
+ "featured-collection": {
+ "name": "Esittelykokoelma",
+ "settings": {
+ "title": {
+ "label": "Otsikko"
+ },
+ "collection": {
+ "label": "Kokoelma"
+ },
+ "products_to_show": {
+ "label": "Näytettävien tuotteiden enimmäismäärä"
+ },
+ "show_view_all": {
+ "label": "Ota ”Katso kaikki” käyttöön, jos kokoelma sisältää enemmän kuin näkyvissä olevat tuotteet"
+ },
+ "header": {
+ "content": "Tuotekortti"
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Näytä toinen kuva osoittaessa"
+ },
+ "show_vendor": {
+ "label": "Näytä myyjä"
+ },
+ "show_rating": {
+ "label": "Näytä tuotteen luokitus",
+ "info": "Näytä luokitus lisäämällä tuotearviointisovellus. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "description": {
+ "label": "Kuvaus"
+ },
+ "show_description": {
+ "label": "Näytä kokoelman kuvaus adminissa"
+ },
+ "description_style": {
+ "label": "Kuvauksen tyyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ }
+ },
+ "view_all_style": {
+ "label": "”Katso kaikki” tyylit",
+ "options__1": {
+ "label": "Linkki"
+ },
+ "options__2": {
+ "label": "Kehyspainike"
+ },
+ "options__3": {
+ "label": "Peittävä painike"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Ota karuselli käyttöön työpöydällä"
+ },
+ "full_width": {
+ "label": "Tee tuotteista täysleveitä"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiilissa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Ota pyyhkäisy käyttöön mobiililaitteessa"
+ },
+ "enable_quick_buy": {
+ "label": "Ota pikalisäyspainike käyttöön",
+ "info": "Ihanteellinen ponnahdusikkuna- tai laatikkotyyppisten ostokorien kanssa."
+ }
+ },
+ "presets": {
+ "name": "Esittelykokoelma"
+ }
+ },
+ "footer": {
+ "name": "Alatunniste",
+ "blocks": {
+ "link_list": {
+ "name": "Valikko",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ },
+ "menu": {
+ "label": "Valikko",
+ "info": "Näytetään vain ylimmän tason valikkokohdat."
+ }
+ }
+ },
+ "text": {
+ "name": "Teksti",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ },
+ "subtext": {
+ "label": "Alateksti"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Bränditiedot",
+ "settings": {
+ "paragraph": {
+ "content": "Bränditietosi näkyvät tässä lohkossa. [Muokkaa bränditietoja.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Some-kuvakkeet"
+ },
+ "show_social": {
+ "label": "Näytä some-kuvakkeet",
+ "info": "Jos haluat näyttää sosiaalisen median tilisi, linkitä ne [teema-asetuksistasi](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Näytä sähköpostirekisteröityminen"
+ },
+ "newsletter_heading": {
+ "label": "Otsikko"
+ },
+ "header__1": {
+ "content": "Sähköpostitilaaja",
+ "info": "Tilaajat lisättiin automaattisesti \"markkinoinnin hyväksyneiden\" asiakasluetteloon. [Lisätietoja](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Some-kuvakkeet",
+ "info": "Jos haluat näyttää sosiaalisen median tilisi, linkitä ne [teema-asetuksistasi](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Näytä some-kuvakkeet"
+ },
+ "header__3": {
+ "content": "Maa-/aluevalitsin"
+ },
+ "header__4": {
+ "info": "Lisää maa/alue siirtymällä [markkina-asetuksiisi.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Näytä maa-/aluevalitsin"
+ },
+ "header__5": {
+ "content": "Kielivalitsin"
+ },
+ "header__6": {
+ "info": "Lisää kieli siirtymällä [kieliasetuksiisi.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Ota kielivalitsin käyttöön"
+ },
+ "header__7": {
+ "content": "Maksutavat"
+ },
+ "payment_enable": {
+ "label": "Näytä maksukuvakkeet"
+ },
+ "margin_top": {
+ "label": "Yläreunus"
+ },
+ "header__8": {
+ "content": "Käytäntöjen linkit",
+ "info": "Jos haluat lisätä kaupan käytännöt, siirry [käytäntöjen asetuksiin](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Näytä käytäntöjen linkit"
+ },
+ "header__9": {
+ "content": "Seuraa Shopissa",
+ "info": "Shop Pay on otettava käyttöön, jotta asiakkaat voivat seurata kauppaasi Shop-sovelluksessa myyntipaikkasi kautta. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Ota Seuraa Shopissa käyttöön"
+ }
+ }
+ },
+ "header": {
+ "name": "Ylätunniste",
+ "settings": {
+ "logo_position": {
+ "label": "Logon sijainti tietokoneella",
+ "options__1": {
+ "label": "Keskellä vasemmalla"
+ },
+ "options__2": {
+ "label": "Ylhäällä vasemmalla"
+ },
+ "options__3": {
+ "label": "Keskellä ylhäällä"
+ },
+ "options__4": {
+ "label": "Keskellä"
+ }
+ },
+ "menu": {
+ "label": "Valikko"
+ },
+ "show_line_separator": {
+ "label": "Näytä erotinviiva"
+ },
+ "margin_bottom": {
+ "label": "Alareunus"
+ },
+ "menu_type_desktop": {
+ "label": "Pöytäkoneen valikkotyyppi",
+ "info": "Valikkotyyppi optimoidaan automaattisesti mobiililaitteilla.",
+ "options__1": {
+ "label": "Pudotusvalikko"
+ },
+ "options__2": {
+ "label": "Mega-valikko"
+ },
+ "options__3": {
+ "label": "Laatikko"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobiiliasettelu"
+ },
+ "mobile_logo_position": {
+ "label": "Logon asettelu mobiilissa",
+ "options__1": {
+ "label": "Keskitetty"
+ },
+ "options__2": {
+ "label": "Vasen"
+ }
+ },
+ "logo_help": {
+ "content": "Muokkaa logoa [teeman asetuksissa](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Paikallaan pysyvä ylätunniste",
+ "options__1": {
+ "label": "Ei mitään"
+ },
+ "options__2": {
+ "label": "Ylöspäin vieritettäessä"
+ },
+ "options__3": {
+ "label": "Aina"
+ },
+ "options__4": {
+ "label": "Aina, pienennä logon kokoa"
+ }
+ },
+ "header__3": {
+ "content": "Maa-/aluevalitsin"
+ },
+ "header__4": {
+ "info": "Lisää maa/alue siirtymällä [markkina-asetuksiisi.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Ota käyttöön maa-/aluevalitsin"
+ },
+ "header__5": {
+ "content": "Kielivalitsin"
+ },
+ "header__6": {
+ "info": "Lisää kieli siirtymällä [kieliasetuksiisi.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Ota kielivalitsin käyttöön"
+ },
+ "header__1": {
+ "content": "Väri"
+ },
+ "menu_color_scheme": {
+ "label": "Värimallivalikko"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Kuvabanneri",
+ "settings": {
+ "image": {
+ "label": "Ensimmäinen kuva"
+ },
+ "image_2": {
+ "label": "Toinen kuva"
+ },
+ "stack_images_on_mobile": {
+ "label": "Pinoa kuvat mobiilissa"
+ },
+ "show_text_box": {
+ "label": "Näytä säilö pöytäkoneella"
+ },
+ "image_overlay_opacity": {
+ "label": "Peittokuvan läpikuultavuus"
+ },
+ "show_text_below": {
+ "label": "Näytä säilö mobiililaitteessa"
+ },
+ "image_height": {
+ "label": "Bannerin korkeus",
+ "options__1": {
+ "label": "Mukauta ensimmäisen kuvan mukaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 3:2. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Suuri"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Ylhäällä vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskellä ylhäällä"
+ },
+ "options__3": {
+ "label": "Ylhäällä oikealla"
+ },
+ "options__4": {
+ "label": "Keskellä vasemmalla"
+ },
+ "options__5": {
+ "label": "Keskitetty keskelle"
+ },
+ "options__6": {
+ "label": "Keskellä oikealla"
+ },
+ "options__7": {
+ "label": "Alhaalla vasemmalla"
+ },
+ "options__8": {
+ "label": "Keskellä alhaalla"
+ },
+ "options__9": {
+ "label": "Alhaalla oikealla"
+ },
+ "label": "Työpöytäsisällön sijainti"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ },
+ "label": "Työpöydän sisällön kohdistus"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ },
+ "label": "Mobiilisisällön tasaus"
+ },
+ "mobile": {
+ "content": "Mobiilipohja"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Otsikko",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ }
+ }
+ },
+ "text": {
+ "name": "Teksti",
+ "settings": {
+ "text": {
+ "label": "Kuvaus"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ },
+ "label": "Tekstityyli"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Painikkeet",
+ "settings": {
+ "button_label_1": {
+ "label": "Ensimmäinen tekstipainike",
+ "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi."
+ },
+ "button_link_1": {
+ "label": "Ensimmäinen painikelinkki"
+ },
+ "button_style_secondary_1": {
+ "label": "Käytä ääriviivallista painiketyyliä"
+ },
+ "button_label_2": {
+ "label": "Toinen tekstipainike",
+ "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi."
+ },
+ "button_link_2": {
+ "label": "Toinen painikelinkki"
+ },
+ "button_style_secondary_2": {
+ "label": "Käytä ääriviivallista painiketyyliä"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kuvabanneri"
+ }
+ },
+ "image-with-text": {
+ "name": "Kuva tekstillä",
+ "settings": {
+ "image": {
+ "label": "Kuva"
+ },
+ "height": {
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "label": "Kuvan korkeus",
+ "options__4": {
+ "label": "Suuri"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Kuva ensin"
+ },
+ "options__2": {
+ "label": "Toinen kuva"
+ },
+ "label": "Työpöytäkuvan sijoitus",
+ "info": "Kuva ensin on oletusarvoinen asettelu mobiilissa."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ },
+ "label": "Työpöytäkuvan leveys",
+ "info": "Kuva optimoidaan automaattisesti mobiililaitteille."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ },
+ "label": "Työpöydän sisällön kohdistus"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Ylös"
+ },
+ "options__2": {
+ "label": "Keskelle"
+ },
+ "options__3": {
+ "label": "Alas"
+ },
+ "label": "Työpöytäsisällön sijainti"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Ei päällekkäisyyksiä"
+ },
+ "options__2": {
+ "label": "Päällekkäisyys"
+ },
+ "label": "Sisällön pohja"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ },
+ "label": "Mobiilisisällön tasaus"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Otsikko",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ }
+ }
+ },
+ "text": {
+ "name": "Teksti",
+ "settings": {
+ "text": {
+ "label": "Sisältö"
+ },
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Painike",
+ "settings": {
+ "button_label": {
+ "label": "Tekstipainike",
+ "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi."
+ },
+ "button_link": {
+ "label": "Painikelinkki"
+ },
+ "outline_button": {
+ "label": "Käytä ääriviivallista painiketyyliä"
+ }
+ }
+ },
+ "caption": {
+ "name": "Kuvateksti",
+ "settings": {
+ "text": {
+ "label": "Teksti"
+ },
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Alaotsikko"
+ },
+ "options__2": {
+ "label": "Isot kirjaimet"
+ }
+ },
+ "caption_size": {
+ "label": "Tekstin koko",
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kuva tekstillä"
+ }
+ },
+ "main-article": {
+ "name": "Blogipostaus",
+ "blocks": {
+ "featured_image": {
+ "name": "Esittelykuva",
+ "settings": {
+ "image_height": {
+ "label": "esittelykuvan korkeus",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 16:9. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Suuri"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Otsikko",
+ "settings": {
+ "blog_show_date": {
+ "label": "Näytä päivämäärä"
+ },
+ "blog_show_author": {
+ "label": "Näytä tekijä"
+ }
+ }
+ },
+ "content": {
+ "name": "Sisältö"
+ },
+ "share": {
+ "name": "Jaa",
+ "settings": {
+ "featured_image_info": {
+ "content": "Jos lisäät sosiaalisen median julkaisuihin linkkejä, esikatselukuvana näkyy sivun esittelykuva. [Lisätietoja](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Esikatselukuvassa näkyy kaupan nimi ja kuvaus. [Lisätietoja](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Teksti"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blogipostaukset",
+ "settings": {
+ "header": {
+ "content": "blogipostauskortti"
+ },
+ "show_image": {
+ "label": "Näytä esittelykuva"
+ },
+ "paragraph": {
+ "content": "Muuta otteita blogipostauksiasi muokkaamalla. [Lisätietoja](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Näytä päivämäärä"
+ },
+ "show_author": {
+ "label": "Näytä tekijä"
+ },
+ "layout": {
+ "label": "Työpöytäasettelu",
+ "options__1": {
+ "label": "Ruudukko"
+ },
+ "options__2": {
+ "label": "Kollaasi"
+ },
+ "info": "Julkaisut asetetaan päällekkäin mobiilissa."
+ },
+ "image_height": {
+ "label": "Esittelykuvan korkeus",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "options__4": {
+ "label": "Suuri"
+ },
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 3:2. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Välisumma",
+ "blocks": {
+ "subtotal": {
+ "name": "Välisumma yhteensä"
+ },
+ "buttons": {
+ "name": "Kassapainike"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Tuotteet"
+ },
+ "main-collection-banner": {
+ "name": "Kokoelmabanneri",
+ "settings": {
+ "paragraph": {
+ "content": "Lisää kuvaus tai kuva kokoelmiasi muokkaamalla. [Lisätietoja](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Näytä kokoelman kuvaus"
+ },
+ "show_collection_image": {
+ "label": "Näytä kokoelman kuva",
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 16:9. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Tuoteruudukko",
+ "settings": {
+ "products_per_page": {
+ "label": "Tuotteita sivulla"
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Näytä toinen kuva osoittaessa"
+ },
+ "show_vendor": {
+ "label": "Näytä myyjä"
+ },
+ "enable_tags": {
+ "label": "Ota suodatus käyttöön",
+ "info": "Mukauta suodattimia Search & Discovery -sovelluksen avulla. [Lisätietoja](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Ota suodatus käyttöön",
+ "info": "Mukauta suodattimia Search & Discovery -sovelluksen avulla. [Lisätietoja](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Ota lajittelu käyttöön"
+ },
+ "header__1": {
+ "content": "Suodatus ja lajittelu"
+ },
+ "header__3": {
+ "content": "Tuotekortti"
+ },
+ "show_rating": {
+ "label": "Näytä tuotteen luokitus",
+ "info": "Näytä luokitus lisäämällä tuotearviointisovellus. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiilissa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ },
+ "enable_quick_buy": {
+ "label": "Ota pikalisäyspainike käyttöön",
+ "info": "Ihanteellinen ponnahdusikkuna- tai laatikkotyyppisten ostokorien kanssa."
+ },
+ "filter_type": {
+ "label": "Suodatinasettelu tietokoneella",
+ "options__1": {
+ "label": "Vaaka"
+ },
+ "options__2": {
+ "label": "Pysty"
+ },
+ "options__3": {
+ "label": "Laatikko"
+ },
+ "info": "Laatikko on oletusarvoinen asettelu mobiilissa."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Kokoelmaluettelosivu",
+ "settings": {
+ "title": {
+ "label": "Otsikko"
+ },
+ "sort": {
+ "label": "Lajittele kokoelmat seuraavasti:",
+ "options__1": {
+ "label": "Aakkosjärjestyksessä A–Z"
+ },
+ "options__2": {
+ "label": "Aakkosjärjestyksessä Z–A"
+ },
+ "options__3": {
+ "label": "Päivämäärä uusimmasta vanhimpaan"
+ },
+ "options__4": {
+ "label": "Päivämäärä vanhimmasta uusimpaan"
+ },
+ "options__5": {
+ "label": "Tuotteiden määrä suurimmasta pienimpään"
+ },
+ "options__6": {
+ "label": "Tuotteiden määrä pienimmästä suurimpaan"
+ }
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ },
+ "info": "Lisää kuvia kokoelmiasi muokkaamalla. [Lisätietoja](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiililaitteessa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Sivu"
+ },
+ "main-password-footer": {
+ "name": "Salasana-alatunniste"
+ },
+ "main-password-header": {
+ "name": "Salasanaylätunniste",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Muokkaa logoa teeman asetuksissa."
+ }
+ }
+ },
+ "main-product": {
+ "blocks": {
+ "text": {
+ "name": "Teksti",
+ "settings": {
+ "text": {
+ "label": "Teksti"
+ },
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Otsikko"
+ },
+ "price": {
+ "name": "Hinta"
+ },
+ "quantity_selector": {
+ "name": "Määrän valitsin"
+ },
+ "variant_picker": {
+ "name": "Versionvalitsin",
+ "settings": {
+ "picker_type": {
+ "label": "Tyyppi",
+ "options__1": {
+ "label": "Pudotusvalikko"
+ },
+ "options__2": {
+ "label": "Pillerit"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Osta-painikkeet",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Näytä dynaamiset kassapainikkeet",
+ "info": "Kun käytät kaupallesi saatavilla olevia maksutapoja, asiakkaat näkevät ensisijaisen vaihtoehtonsa, kuten PayPalin tai Apple Payn. [Lisätietoja](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Näytä lomake lahjakorttien vastaanottajien tietoja varten",
+ "info": "Mahdollistaa sen, että ostajat voivat lähettää lahjakortin ja sen mukaan liitettävän henkilökohtaisen viestin suunniteltuna ajankohtana. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Noudon saatavuus"
+ },
+ "description": {
+ "name": "Kuvaus"
+ },
+ "share": {
+ "name": "Jaa",
+ "settings": {
+ "featured_image_info": {
+ "content": "Jos lisäät sosiaalisen median julkaisuihin linkkejä, esikatselukuvana näkyy sivun esittelykuva. [Lisätietoja](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Esikatselukuvassa näkyy kaupan nimi ja kuvaus. [Lisätietoja](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Teksti"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Pienenettävä rivi",
+ "settings": {
+ "heading": {
+ "info": "Lisää sisältöä kuvaava otsikko.",
+ "label": "Otsikko"
+ },
+ "content": {
+ "label": "Rivin sisältö"
+ },
+ "page": {
+ "label": "Rivin sisältö sivulta"
+ },
+ "icon": {
+ "options__1": {
+ "label": "Ei mitään"
+ },
+ "options__2": {
+ "label": "Omena"
+ },
+ "options__3": {
+ "label": "Banaani"
+ },
+ "options__4": {
+ "label": "Pullo"
+ },
+ "options__5": {
+ "label": "Laatikko"
+ },
+ "options__6": {
+ "label": "Porkkana"
+ },
+ "options__7": {
+ "label": "Keskustelukupla"
+ },
+ "options__8": {
+ "label": "Valintamerkki"
+ },
+ "options__9": {
+ "label": "Leikepöytä"
+ },
+ "options__10": {
+ "label": "Maitotuote"
+ },
+ "options__11": {
+ "label": "Maidoton"
+ },
+ "options__12": {
+ "label": "Kuivain"
+ },
+ "options__13": {
+ "label": "Silmä"
+ },
+ "options__14": {
+ "label": "Tuli"
+ },
+ "options__15": {
+ "label": "Gluteeniton"
+ },
+ "options__16": {
+ "label": "Sydän"
+ },
+ "options__17": {
+ "label": "Silitysrauta"
+ },
+ "options__18": {
+ "label": "Lehti"
+ },
+ "options__19": {
+ "label": "Nahka"
+ },
+ "options__20": {
+ "label": "Salama"
+ },
+ "options__21": {
+ "label": "Huulipuna"
+ },
+ "options__22": {
+ "label": "Lukko"
+ },
+ "options__23": {
+ "label": "Karttamerkki"
+ },
+ "options__24": {
+ "label": "Pähkinätön"
+ },
+ "label": "Kuvake",
+ "options__25": {
+ "label": "Housut"
+ },
+ "options__26": {
+ "label": "Tassun jälki"
+ },
+ "options__27": {
+ "label": "Pippuri"
+ },
+ "options__28": {
+ "label": "Tuoksu"
+ },
+ "options__29": {
+ "label": "Lentokone"
+ },
+ "options__30": {
+ "label": "Kasvi"
+ },
+ "options__31": {
+ "label": "Hintalappu"
+ },
+ "options__32": {
+ "label": "Kysymysmerkki"
+ },
+ "options__33": {
+ "label": "Kierrätys"
+ },
+ "options__34": {
+ "label": "Palaa"
+ },
+ "options__35": {
+ "label": "Viivain"
+ },
+ "options__36": {
+ "label": "Tarjoiluastia"
+ },
+ "options__37": {
+ "label": "Paita"
+ },
+ "options__38": {
+ "label": "Kenkä"
+ },
+ "options__39": {
+ "label": "Siluetti"
+ },
+ "options__40": {
+ "label": "Lumihiutale"
+ },
+ "options__41": {
+ "label": "Tähti"
+ },
+ "options__42": {
+ "label": "Sekuntikello"
+ },
+ "options__43": {
+ "label": "Kuljetusajoneuvo"
+ },
+ "options__44": {
+ "label": "Pesu"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Ponnahdusikkuna",
+ "settings": {
+ "link_label": {
+ "label": "Linkin teksti"
+ },
+ "page": {
+ "label": "Sivu"
+ }
+ }
+ },
+ "rating": {
+ "name": "Tuotearvio",
+ "settings": {
+ "paragraph": {
+ "content": "Näytä luokitus lisäämällä tuotearviointisovellus. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Täydentävät tuotteet",
+ "settings": {
+ "paragraph": {
+ "content": "Lisää Search & Discovery -sovellus, jotta voit valita täydentäviä tuotteita. [Lisätietoja](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Otsikko"
+ },
+ "make_collapsible_row": {
+ "label": "Näytä pienennettävänä rivinä"
+ },
+ "icon": {
+ "info": "Näkyvissä, kun pienennettävä rivi on esillä."
+ },
+ "product_list_limit": {
+ "label": "Näytettävien tuotteiden enimmäismäärä"
+ },
+ "products_per_page": {
+ "label": "Tuotteiden määrä sivua kohden"
+ },
+ "pagination_style": {
+ "label": "Sivunumerointityyli",
+ "options": {
+ "option_1": "Pisteet",
+ "option_2": "Laskuri",
+ "option_3": "Numerot"
+ }
+ },
+ "product_card": {
+ "heading": "Tuotekortti"
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options": {
+ "option_1": "Muotokuva",
+ "option_2": "Neliö"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Ota pikalisäyspainike käyttöön"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Kuvake johon liittyy teksti",
+ "settings": {
+ "layout": {
+ "label": "Asettelu",
+ "options__1": {
+ "label": "Vaaka"
+ },
+ "options__2": {
+ "label": "Pysty"
+ }
+ },
+ "content": {
+ "label": "Sisältö",
+ "info": "Valitse kuvake tai lisää kuva jokaiselle sarakkeelle tai riville."
+ },
+ "heading": {
+ "info": "Piilota kuvakkeen sarake jättämällä sarakkeen teksti tyhjäksi."
+ },
+ "icon_1": {
+ "label": "Ensimmäinen kuvake"
+ },
+ "image_1": {
+ "label": "Ensimmäinen kuva"
+ },
+ "heading_1": {
+ "label": "Ensimmäinen otsikko"
+ },
+ "icon_2": {
+ "label": "Toinen kuvake"
+ },
+ "image_2": {
+ "label": "Toinen kuva"
+ },
+ "heading_2": {
+ "label": "Toinen otsikko"
+ },
+ "icon_3": {
+ "label": "Kolmas kuvake"
+ },
+ "image_3": {
+ "label": "Kolmas kuva"
+ },
+ "heading_3": {
+ "label": "Kolmas otsikko"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU-koodi",
+ "settings": {
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Varaston tila",
+ "settings": {
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Vähäisen varaston kynnysarvo",
+ "info": "Valitse 0, jos haluat näyttää aina varastossa, jos saatavilla."
+ },
+ "show_inventory_quantity": {
+ "label": "Näytä varastomäärä"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Media",
+ "info": "Lisätietoja [mediatyypeistä.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Ota videosilmukka käyttöön"
+ },
+ "enable_sticky_info": {
+ "label": "Ota käyttöön kiinnitettävä sisältö tietokoneella"
+ },
+ "hide_variants": {
+ "label": "Piilota muiden versioiden aineisto, kun versio on valittu"
+ },
+ "gallery_layout": {
+ "label": "Työpöytäasettelu",
+ "options__1": {
+ "label": "Päällekkäin"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ },
+ "options__3": {
+ "label": "Pikkukuvat"
+ },
+ "options__4": {
+ "label": "Pikkukuvien karuselli"
+ }
+ },
+ "media_size": {
+ "label": "Median leveys tietokoneella",
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ },
+ "info": "Media optimoidaan automaattisesti mobiililaitteille."
+ },
+ "mobile_thumbnails": {
+ "label": "Mobiiliasettelu",
+ "options__1": {
+ "label": "2 saraketta"
+ },
+ "options__2": {
+ "label": "Näytä pikkukuvat"
+ },
+ "options__3": {
+ "label": "Piilota pikkukuvat"
+ }
+ },
+ "media_position": {
+ "label": "Työpöytämedian sijainti",
+ "info": "Sijainti optimoidaan automaattisesti mobiililaitteille.",
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Oikea"
+ }
+ },
+ "image_zoom": {
+ "label": "Kuvan zoomaus",
+ "info": "Avaa lightbox-ikkuna mobiililaitteessa klikkaamalla oletusarvoja ja viemällä osoitin niiden päälle.",
+ "options__1": {
+ "label": "Avaa lightbox-ikkuna"
+ },
+ "options__2": {
+ "label": "Klikkaa ja vie osoitin päälle"
+ },
+ "options__3": {
+ "label": "Ei zoomausta"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Sovita media näytön korkeuteen"
+ },
+ "media_fit": {
+ "label": "Median sovitus",
+ "options__1": {
+ "label": "Alkuperäinen"
+ },
+ "options__2": {
+ "label": "Täyttö"
+ }
+ }
+ },
+ "name": "Tuotetiedot"
+ },
+ "main-search": {
+ "name": "Hakutulokset",
+ "settings": {
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Näytä toinen kuva osoittaessa"
+ },
+ "show_vendor": {
+ "label": "Näytä myyjä"
+ },
+ "header__1": {
+ "content": "Tuotekortti"
+ },
+ "header__2": {
+ "content": "Blogikortti",
+ "info": "Blogikortin tyylejä sovelletaan myös sivukortteihin hakutuloksissa. Voit muuttaa korttien tyylejä päivittämällä teema-asetuksesi."
+ },
+ "article_show_date": {
+ "label": "Näytä päivämäärä"
+ },
+ "article_show_author": {
+ "label": "Näytä tekijä"
+ },
+ "show_rating": {
+ "label": "Näytä tuotteen luokitus",
+ "info": "Näytä luokitus lisäämällä tuotearviointisovellus. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiilissa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Monisarakkeinen",
+ "settings": {
+ "title": {
+ "label": "Otsikko"
+ },
+ "image_width": {
+ "label": "Kuvan leveys",
+ "options__1": {
+ "label": "Kolmasosa sarakkeen leveydestä"
+ },
+ "options__2": {
+ "label": "Puolet sarakkeen leveydestä"
+ },
+ "options__3": {
+ "label": "Sarakkeen levyinen"
+ }
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ },
+ "options__4": {
+ "label": "Ympyrä"
+ }
+ },
+ "column_alignment": {
+ "label": "Sarakkeen tasaus",
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ }
+ },
+ "background_style": {
+ "label": "Toissijainen tausta",
+ "options__1": {
+ "label": "Ei mitään"
+ },
+ "options__2": {
+ "label": "Näytä sarakkeen taustana"
+ }
+ },
+ "button_label": {
+ "label": "Tekstipainike"
+ },
+ "button_link": {
+ "label": "Painikelinkki"
+ },
+ "swipe_on_mobile": {
+ "label": "Ota pyyhkäisy käyttöön mobiililaitteessa"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiilissa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Sarake",
+ "settings": {
+ "image": {
+ "label": "Kuva"
+ },
+ "title": {
+ "label": "Otsikko"
+ },
+ "text": {
+ "label": "Kuvaus"
+ },
+ "link_label": {
+ "label": "Linkin teksti"
+ },
+ "link": {
+ "label": "Linkki"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Monisarakkeinen"
+ }
+ },
+ "newsletter": {
+ "name": "Sähköpostirekisteröityminen",
+ "settings": {
+ "full_width": {
+ "label": "Tee osiosta täysleveä"
+ },
+ "paragraph": {
+ "content": "Sähköpostitilaus luo asiakastilin. [Lisätietoja](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Otsikko",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Alaotsikko",
+ "settings": {
+ "paragraph": {
+ "label": "Kuvaus"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Sähköpostilomake"
+ }
+ },
+ "presets": {
+ "name": "Sähköpostirekisteröityminen"
+ }
+ },
+ "page": {
+ "name": "Sivu",
+ "settings": {
+ "page": {
+ "label": "Sivu"
+ }
+ },
+ "presets": {
+ "name": "Sivu"
+ }
+ },
+ "rich-text": {
+ "name": "Rich text",
+ "settings": {
+ "full_width": {
+ "label": "Tee osiosta täysleveä"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ },
+ "label": "Työpöytäsisällön sijainti",
+ "info": "Sijainti optimoidaan automaattisesti mobiililaitteille."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ },
+ "label": "Sisällön kohdistus"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Otsikko",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ }
+ }
+ },
+ "text": {
+ "name": "Teksti",
+ "settings": {
+ "text": {
+ "label": "Kuvaus"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Painikkeet",
+ "settings": {
+ "button_label_1": {
+ "label": "Ensimmäinen tekstipainike",
+ "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi."
+ },
+ "button_link_1": {
+ "label": "Ensimmäinen painikelinkki"
+ },
+ "button_style_secondary_1": {
+ "label": "Käytä ääriviivallista painiketyyliä"
+ },
+ "button_label_2": {
+ "label": "Toinen tekstipainike",
+ "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi."
+ },
+ "button_link_2": {
+ "label": "Toinen painikelinkki"
+ },
+ "button_style_secondary_2": {
+ "label": "Käytä ääriviivallista painiketyyliä"
+ }
+ }
+ },
+ "caption": {
+ "name": "Kuvateksti",
+ "settings": {
+ "text": {
+ "label": "Teksti"
+ },
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Alaotsikko"
+ },
+ "options__2": {
+ "label": "Isot kirjaimet"
+ }
+ },
+ "caption_size": {
+ "label": "Tekstin koko",
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich text"
+ }
+ },
+ "apps": {
+ "name": "Sovellukset",
+ "settings": {
+ "include_margins": {
+ "label": "Tee osioiden reunuksista sama kuin teema"
+ }
+ },
+ "presets": {
+ "name": "Sovellukset"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ },
+ "cover_image": {
+ "label": "Kansikuva"
+ },
+ "video_url": {
+ "label": "URL-osoite",
+ "info": "Käytä YouTube- tai Vimeo-linkkiä"
+ },
+ "description": {
+ "label": "Videon vaihtoehtoinen teksti",
+ "info": "Kuvaile videota näytönlukijoita käyttäviä asiakkaita varten. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Lisää kuvan täyttö",
+ "info": "Valitse kuvan täyttäminen, jos et halua, että kansikuvaasi rajataan."
+ },
+ "full_width": {
+ "label": "Tee osiosta täysleveä"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Toista video silmukkatoistona"
+ },
+ "header__1": {
+ "content": "Shopifyn isännöimä video"
+ },
+ "header__2": {
+ "content": "Tai sulauta video URL-osoitteesta"
+ },
+ "header__3": {
+ "content": "Tyyli"
+ },
+ "paragraph": {
+ "content": "Näytetään, kun mitään Shopifyn isännöimää videota ei ole valittu."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Esittelyssä oleva tuote",
+ "blocks": {
+ "text": {
+ "name": "Teksti",
+ "settings": {
+ "text": {
+ "label": "Teksti"
+ },
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Otsikko"
+ },
+ "price": {
+ "name": "Hinta"
+ },
+ "quantity_selector": {
+ "name": "Määrän valitsin"
+ },
+ "variant_picker": {
+ "name": "Versionvalitsin",
+ "settings": {
+ "picker_type": {
+ "label": "Tyyppi",
+ "options__1": {
+ "label": "Pudotusvalikko"
+ },
+ "options__2": {
+ "label": "Kuvakkeet"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Osta-painikkeet",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Näytä dynaamiset kassapainikkeet",
+ "info": "Kun käytät kaupallesi saatavilla olevia maksutapoja, asiakkaat näkevät ensisijaisen vaihtoehtonsa, kuten PayPalin tai Apple Payn. [Lisätietoja](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Kuvaus"
+ },
+ "share": {
+ "name": "Jaa",
+ "settings": {
+ "featured_image_info": {
+ "content": "Jos lisäät sosiaalisen median julkaisuihin linkkejä, esikatselukuvana näkyy sivun esittelykuva. [Lisätietoja](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Esikatselukuvassa näkyy kaupan nimi ja kuvaus. [Lisätietoja](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Teksti"
+ }
+ }
+ },
+ "rating": {
+ "name": "Tuotearvio",
+ "settings": {
+ "paragraph": {
+ "content": "Näytä luokitus lisäämällä tuotearviointisovellus. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU-koodi",
+ "settings": {
+ "text_style": {
+ "label": "Tekstityyli",
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "options__3": {
+ "label": "Isot kirjaimet"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Tuote"
+ },
+ "secondary_background": {
+ "label": "Näytä toissijainen tausta"
+ },
+ "header": {
+ "content": "Media",
+ "info": "Lisätietoja [mediatyypeistä](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Ota videosilmukka käyttöön"
+ },
+ "hide_variants": {
+ "label": "Piilota valitsemattomien versioiden media tietokoneversiossa"
+ },
+ "media_position": {
+ "label": "Työpöytämedian sijainti",
+ "info": "Sijainti optimoidaan automaattisesti mobiililaitteille.",
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Oikea"
+ }
+ }
+ },
+ "presets": {
+ "name": "Esittelyssä oleva tuote"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Sähköpostirekisteröitymisen banneri",
+ "settings": {
+ "paragraph": {
+ "content": "Sähköpostitilaus luo asiakastilin. [Lisätietoja](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Taustakuva"
+ },
+ "show_background_image": {
+ "label": "Näytä taustakuva"
+ },
+ "show_text_box": {
+ "label": "Näytä säilö pöytäkoneella"
+ },
+ "image_overlay_opacity": {
+ "label": "Peittokuvan läpikuultavuus"
+ },
+ "show_text_below": {
+ "label": "Näytä kuvien alla oleva sisältö mobiililaitteessa",
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 16:9. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Bannerin korkeus",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "options__4": {
+ "label": "Suuri"
+ },
+ "info": "Saat parhaat tulokset käyttämällä kuvaa, jonka kuvasuhde on 16:9. [Lisätietoja](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "Keskellä vasemmalla"
+ },
+ "options__5": {
+ "label": "Keskitetty keskelle"
+ },
+ "options__6": {
+ "label": "Keskellä oikealla"
+ },
+ "options__7": {
+ "label": "Alhaalla vasemmalla"
+ },
+ "options__8": {
+ "label": "Keskellä alhaalla"
+ },
+ "options__9": {
+ "label": "Alhaalla oikealla"
+ },
+ "options__1": {
+ "label": "Ylhäällä vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskellä ylhäällä"
+ },
+ "options__3": {
+ "label": "Ylhäällä oikealla"
+ },
+ "label": "Työpöytäsisällön sijainti"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ },
+ "label": "Työpöydän sisällön kohdistus"
+ },
+ "header": {
+ "content": "Mobiiliasettelu"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ },
+ "label": "Mobiilisisällön tasaus"
+ },
+ "color_scheme": {
+ "info": "Näkyvissä, kun säilö on esillä."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Otsikko",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Kohta",
+ "settings": {
+ "paragraph": {
+ "label": "Kuvaus"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "label": "Tekstityyli"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Sähköpostilomake"
+ }
+ },
+ "presets": {
+ "name": "Sähköpostirekisteröitymisen banneri"
+ }
+ },
+ "slideshow": {
+ "name": "Diaesitys",
+ "settings": {
+ "layout": {
+ "label": "Asettelu",
+ "options__1": {
+ "label": "Täysi leveys"
+ },
+ "options__2": {
+ "label": "Ruudukko"
+ }
+ },
+ "slide_height": {
+ "label": "Dian korkeus",
+ "options__1": {
+ "label": "Mukauta ensimmäisen kuvan mukaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "options__4": {
+ "label": "Suuri"
+ }
+ },
+ "slider_visual": {
+ "label": "Sivunumerointityyli",
+ "options__1": {
+ "label": "Laskuri"
+ },
+ "options__2": {
+ "label": "Pisteet"
+ },
+ "options__3": {
+ "label": "Numerot"
+ }
+ },
+ "auto_rotate": {
+ "label": "Käännä diat automaattisesti"
+ },
+ "change_slides_speed": {
+ "label": "Vaihda diat joka"
+ },
+ "show_text_below": {
+ "label": "Näytä kuvan alla oleva sisältö mobiililaitteessa"
+ },
+ "mobile": {
+ "content": "Mobiiliasettelu"
+ },
+ "accessibility": {
+ "content": "Käytettävyys",
+ "label": "Diaesityksen kuvaus",
+ "info": "Kuvaile diaesitystä näytönlukijoita käyttäviä asiakkaita varten."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Dia",
+ "settings": {
+ "image": {
+ "label": "Kuva"
+ },
+ "heading": {
+ "label": "Otsikko"
+ },
+ "subheading": {
+ "label": "Alaotsikko"
+ },
+ "button_label": {
+ "label": "Tekstipainike",
+ "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi."
+ },
+ "link": {
+ "label": "Painikelinkki"
+ },
+ "secondary_style": {
+ "label": "Käytä ääriviivallista painiketyyliä"
+ },
+ "box_align": {
+ "label": "Työpöytäsisällön sijainti",
+ "options__1": {
+ "label": "Ylhäällä vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskellä ylhäällä"
+ },
+ "options__3": {
+ "label": "Ylhäällä oikealla"
+ },
+ "options__4": {
+ "label": "Keskellä vasemmalla"
+ },
+ "options__5": {
+ "label": "Keskellä"
+ },
+ "options__6": {
+ "label": "Keskellä oikealla"
+ },
+ "options__7": {
+ "label": "Alhaalla vasemmalla"
+ },
+ "options__8": {
+ "label": "Keskellä alhaalla"
+ },
+ "options__9": {
+ "label": "Alhaalla oikealla"
+ },
+ "info": "Sijainti optimoidaan automaattisesti mobiililaitteille."
+ },
+ "show_text_box": {
+ "label": "Näytä säilö pöytäkoneella"
+ },
+ "text_alignment": {
+ "label": "Työpöydän sisällön kohdistus",
+ "option_1": {
+ "label": "Vasemmalla"
+ },
+ "option_2": {
+ "label": "Keskitetty"
+ },
+ "option_3": {
+ "label": "Oikealla"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Peittokuvan läpikuultavuus"
+ },
+ "text_alignment_mobile": {
+ "label": "Mobiilisisällön tasaus",
+ "options__1": {
+ "label": "Vasemmalla"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikealla"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Diaesitys"
+ }
+ },
+ "collapsible_content": {
+ "name": "Pienenettävä sisältö",
+ "settings": {
+ "caption": {
+ "label": "Kuvateksti"
+ },
+ "heading": {
+ "label": "Otsikko"
+ },
+ "heading_alignment": {
+ "label": "Otsikon tasaus",
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ }
+ },
+ "layout": {
+ "label": "Asettelu",
+ "options__1": {
+ "label": "Ei säiliötä"
+ },
+ "options__2": {
+ "label": "Rivisäiliö"
+ },
+ "options__3": {
+ "label": "Osiosäiliö"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Avaa ensimmäinen pienenettävä rivi"
+ },
+ "header": {
+ "content": "Kuvan asettelu"
+ },
+ "image": {
+ "label": "Kuva"
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Suuri"
+ }
+ },
+ "desktop_layout": {
+ "label": "Pöytäkoneen asettelu",
+ "options__1": {
+ "label": "Ensimmäinen kuva"
+ },
+ "options__2": {
+ "label": "Toinen kuva"
+ },
+ "info": "Kuva on aina ensisijainen mobiilissa."
+ },
+ "container_color_scheme": {
+ "label": "Säiliön värimalli",
+ "info": "Näkyy, kun asetteluna on rivi- tai osiosäiliö."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Pienenettävä rivi",
+ "settings": {
+ "heading": {
+ "info": "Lisää sisältöä kuvaava otsikko.",
+ "label": "Otsikko"
+ },
+ "row_content": {
+ "label": "Rivin sisältö"
+ },
+ "page": {
+ "label": "Rivin sisältö sivulta"
+ },
+ "icon": {
+ "label": "Kuvake",
+ "options__1": {
+ "label": "Ei yhtään"
+ },
+ "options__2": {
+ "label": "Omena"
+ },
+ "options__3": {
+ "label": "Banaani"
+ },
+ "options__4": {
+ "label": "Pullo"
+ },
+ "options__5": {
+ "label": "Laatikko"
+ },
+ "options__6": {
+ "label": "Porkkana"
+ },
+ "options__7": {
+ "label": "Keskustelukupla"
+ },
+ "options__8": {
+ "label": "Valintamerkki"
+ },
+ "options__9": {
+ "label": "Leikepöytä"
+ },
+ "options__10": {
+ "label": "Maitotuote"
+ },
+ "options__11": {
+ "label": "Maidoton"
+ },
+ "options__12": {
+ "label": "Kuivain"
+ },
+ "options__13": {
+ "label": "Silmä"
+ },
+ "options__14": {
+ "label": "Tuli"
+ },
+ "options__15": {
+ "label": "Gluteeniton"
+ },
+ "options__16": {
+ "label": "Sydän"
+ },
+ "options__17": {
+ "label": "Silitysrauta"
+ },
+ "options__18": {
+ "label": "Lehti"
+ },
+ "options__19": {
+ "label": "Nahka"
+ },
+ "options__20": {
+ "label": "Salama"
+ },
+ "options__21": {
+ "label": "Huulipuna"
+ },
+ "options__22": {
+ "label": "Lukko"
+ },
+ "options__23": {
+ "label": "Karttamerkki"
+ },
+ "options__24": {
+ "label": "Pähkinätön"
+ },
+ "options__25": {
+ "label": "Housut"
+ },
+ "options__26": {
+ "label": "Tassun jälki"
+ },
+ "options__27": {
+ "label": "Pippuri"
+ },
+ "options__28": {
+ "label": "Tuoksu"
+ },
+ "options__29": {
+ "label": "Lentokone"
+ },
+ "options__30": {
+ "label": "Kasvi"
+ },
+ "options__31": {
+ "label": "Hintalappu"
+ },
+ "options__32": {
+ "label": "Kysymysmerkki"
+ },
+ "options__33": {
+ "label": "Kierrätys"
+ },
+ "options__34": {
+ "label": "Palaa"
+ },
+ "options__35": {
+ "label": "Viivain"
+ },
+ "options__36": {
+ "label": "Tarjoiluastia"
+ },
+ "options__37": {
+ "label": "Paita"
+ },
+ "options__38": {
+ "label": "Kenkä"
+ },
+ "options__39": {
+ "label": "Siluetti"
+ },
+ "options__40": {
+ "label": "Lumihiutale"
+ },
+ "options__41": {
+ "label": "Tähti"
+ },
+ "options__42": {
+ "label": "Sekuntikello"
+ },
+ "options__43": {
+ "label": "Kuljetusajoneuvo"
+ },
+ "options__44": {
+ "label": "Pesu"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Pienenettävä sisältö"
+ }
+ },
+ "main-account": {
+ "name": "Tili"
+ },
+ "main-activate-account": {
+ "name": "Tilin aktivointi"
+ },
+ "main-addresses": {
+ "name": "Osoitteet"
+ },
+ "main-login": {
+ "name": "Kirjautuminen"
+ },
+ "main-order": {
+ "name": "Tilaus"
+ },
+ "main-register": {
+ "name": "Rekisteröinti"
+ },
+ "main-reset-password": {
+ "name": "Salasanan nollaus"
+ },
+ "related-products": {
+ "name": "Liittyvät tuotteet",
+ "settings": {
+ "heading": {
+ "label": "Otsikko"
+ },
+ "products_to_show": {
+ "label": "Näytettävien tuotteiden enimmäismäärä"
+ },
+ "columns_desktop": {
+ "label": "Sarakkeiden määrä työpöydällä"
+ },
+ "paragraph__1": {
+ "content": "Dynaamisissa suosituksissa käytetään tilaus- ja tuotetietoja, jotta suositukset muuttuvat ja paranevat ajan myötä. [Lisätietoja](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Tuotekortti"
+ },
+ "image_ratio": {
+ "label": "Kuvasuhde",
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Muotokuva"
+ },
+ "options__3": {
+ "label": "Neliö"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Näytä toinen kuva osoittaessa"
+ },
+ "show_vendor": {
+ "label": "Näytä myyjä"
+ },
+ "show_rating": {
+ "label": "Näytä tuotteen luokitus",
+ "info": "Näytä luokitus lisäämällä tuotearviointisovellus. [Lisätietoja](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ },
+ "columns_mobile": {
+ "label": "Sarakkeiden määrä mobiililaitteessa",
+ "options__1": {
+ "label": "1 sarake"
+ },
+ "options__2": {
+ "label": "2 saraketta"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Monirivinen",
+ "settings": {
+ "image": {
+ "label": "Kuva"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Sovita kuvaan"
+ },
+ "options__2": {
+ "label": "Pieni"
+ },
+ "options__3": {
+ "label": "Keskisuuri"
+ },
+ "options__4": {
+ "label": "Suuri"
+ },
+ "label": "Kuvan korkeus"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ },
+ "label": "Työpöytäkuvan leveys",
+ "info": "Kuva optimoidaan automaattisesti mobiililaitteille."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Pieni"
+ },
+ "options__2": {
+ "label": "Keskisuuri"
+ },
+ "options__3": {
+ "label": "Suuri"
+ },
+ "label": "Otsikon koko"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Leipäteksti"
+ },
+ "options__2": {
+ "label": "Alaotsikko"
+ },
+ "label": "Tekstityyli"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Yhtenäinen painike"
+ },
+ "options__2": {
+ "label": "Kehyspainike"
+ },
+ "label": "Painikkeen tyyli"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ },
+ "label": "Työpöytäsisällön tasaus"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Ylös"
+ },
+ "options__2": {
+ "label": "Keskelle"
+ },
+ "options__3": {
+ "label": "Alas"
+ },
+ "label": "Työpöytäsisällön sijainti",
+ "info": "Sijainti optimoidaan automaattisesti mobiililaitteille."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Vuorottelu vasemmalta"
+ },
+ "options__2": {
+ "label": "Vuorottelu oikealta"
+ },
+ "options__3": {
+ "label": "Tasattu vasemmalle"
+ },
+ "options__4": {
+ "label": "Tasattu oikealle"
+ },
+ "label": "Työpöytäkuvan sijoitus",
+ "info": "Sijoitus optimoidaan automaattisesti mobiililaitteille."
+ },
+ "container_color_scheme": {
+ "label": "Säiliön värimalli"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vasen"
+ },
+ "options__2": {
+ "label": "Keskitetty"
+ },
+ "options__3": {
+ "label": "Oikea"
+ },
+ "label": "Mobiilisisällön tasaus"
+ },
+ "header_mobile": {
+ "content": "Mobiilipohja"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Rivi",
+ "settings": {
+ "image": {
+ "label": "Kuva"
+ },
+ "caption": {
+ "label": "Kuvateksti"
+ },
+ "heading": {
+ "label": "Otsikko"
+ },
+ "text": {
+ "label": "Teksti"
+ },
+ "button_label": {
+ "label": "Tekstipainike"
+ },
+ "button_link": {
+ "label": "Painikelinkki"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Monirivinen"
+ }
+ },
+ "quick-order-list": {
+ "name": "Pikatilausluettelo",
+ "settings": {
+ "show_image": {
+ "label": "Näytä kuvat"
+ },
+ "show_sku": {
+ "label": "Näytä SKU-koodit"
+ }
+ },
+ "presets": {
+ "name": "Pikatilausluettelo"
+ }
+ }
+ }
+}
diff --git a/locales/fr.json b/locales/fr.json
new file mode 100644
index 0000000..c7f6f0b
--- /dev/null
+++ b/locales/fr.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Accéder à la boutique à l'aide d'un mot de passe :",
+ "login_password_button": "Saisir avec un mot de passe",
+ "login_form_password_label": "Mot de passe",
+ "login_form_password_placeholder": "Votre mot de passe",
+ "login_form_error": "Mot de passe incorrect !",
+ "login_form_submit": "Saisir",
+ "admin_link_html": "La boutique vous appartient-elle ? Se connecter ici ",
+ "powered_by_shopify_html": "Cette boutique sera propulsée par {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Partager sur Facebook",
+ "share_on_twitter": "Tweeter sur Twitter",
+ "share_on_pinterest": "Épingler sur Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Continuer les achats",
+ "pagination": {
+ "label": "Pagination",
+ "page": "Page {{ number }}",
+ "next": "Page suivante",
+ "previous": "Page précédente"
+ },
+ "search": {
+ "search": "Recherche",
+ "reset": "Effacer le terme de recherche"
+ },
+ "cart": {
+ "view": "Voir le panier ({{ count }})",
+ "item_added": "Article ajouté au panier",
+ "view_empty_cart": "Voir le panier"
+ },
+ "share": {
+ "copy_to_clipboard": "Copier le lien",
+ "share_url": "Lien",
+ "success_message": "Lien copié dans le presse-papiers",
+ "close": "Fermer le partage"
+ },
+ "slider": {
+ "of": "de",
+ "next_slide": "Faire glisser vers la droite",
+ "previous_slide": "Faire glisser vers la gauche",
+ "name": "Carrousel"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Merci de votre inscription",
+ "button_label": "S'inscrire"
+ },
+ "accessibility": {
+ "skip_to_text": "Ignorer et passer au contenu",
+ "close": "Fermer",
+ "unit_price_separator": "par",
+ "vendor": "Fournisseur :",
+ "error": "Erreur",
+ "refresh_page": "Le choix d'une sélection entraîne l'actualisation de la page entière.",
+ "link_messages": {
+ "new_window": "S'ouvre dans une nouvelle fenêtre.",
+ "external": "Ouvre un site web externe."
+ },
+ "loading": "Chargement en cours...",
+ "skip_to_product_info": "Passer aux informations produits",
+ "total_reviews": "total des critiques",
+ "star_reviews_info": "{{ rating_value }} sur {{ rating_max }} étoiles",
+ "collapsible_content_title": "Contenu réductible",
+ "complementary_products": "Produits complémentaires"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Lire la suite : {{ title }}",
+ "comments": {
+ "one": "{{ count }} commentaire",
+ "other": "{{ count }} commentaires",
+ "many": "{{ count }} commentaires"
+ },
+ "moderated": "Veuillez noter que les commentaires doivent être approuvés avant d'être publiés.",
+ "comment_form_title": "Laisser un commentaire",
+ "name": "Nom",
+ "email": "E-mail",
+ "message": "Commentaire",
+ "post": "Publier le commentaire",
+ "back_to_blog": "Retour au blog",
+ "share": "Partager cet article",
+ "success": "Votre commentaire a bien été publié ! Merci !",
+ "success_moderated": "Votre commentaire a bien été publié. Nous le publierons sous peu, conformément au processus de modération de notre blog."
+ }
+ },
+ "onboarding": {
+ "product_title": "Titre du produit",
+ "collection_title": "Le nom de votre collection"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Ajouter au panier",
+ "description": "Description",
+ "on_sale": "En vente",
+ "product_variants": "Variantes de produits",
+ "quantity": {
+ "label": "Quantité",
+ "input_label": "Quantité pour {{ product }}",
+ "increase": "Augmenter la quantité de {{ product }}",
+ "decrease": "Réduire la quantité de {{ product }}",
+ "minimum_of": "Minimum de {{ quantity }}",
+ "maximum_of": "Maximum de {{ quantity }}",
+ "multiples_of": "Incréments de {{ quantity }}",
+ "in_cart_html": "{{ quantity }} dans le panier",
+ "note": "Voir les règles de quantité"
+ },
+ "price": {
+ "from_price_html": "Du {{ price }}",
+ "regular_price": "Prix habituel",
+ "sale_price": "Prix promotionnel",
+ "unit_price": "Prix unitaire"
+ },
+ "share": "Partager ce produit",
+ "sold_out": "Épuisé",
+ "unavailable": "Non disponible",
+ "vendor": "Fournisseur",
+ "video_exit_message": "{{ title }} ouvre la vidéo en plein écran dans la même fenêtre.",
+ "xr_button": "Afficher dans son espace",
+ "xr_button_label": "Affichage dans votre espace, charge l'article dans une fenêtre de réalité augmentée",
+ "pickup_availability": {
+ "view_store_info": "Afficher les informations de la boutique",
+ "check_other_stores": "Vérifier la disponibilité dans d'autres boutiques",
+ "pick_up_available": "Service de retrait disponible",
+ "pick_up_available_at_html": "Service de retrait disponible à {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Service de retrait non disponible actuellement à {{ location_name }} ",
+ "unavailable": "Impossible de charger la disponibilité du service de retrait",
+ "refresh": "Actualiser"
+ },
+ "media": {
+ "open_media": "Ouvrir le média {{ index }} dans une fenêtre modale",
+ "play_model": "Lire la visionneuse 3D",
+ "play_video": "Lire la vidéo",
+ "gallery_viewer": "Visionneuse de la galerie",
+ "load_image": "Charger l'image {{ index }} dans la galerie",
+ "load_model": "Charger le modèle 3D {{ index }} dans la galerie",
+ "load_video": "Lire la vidéo {{ index }} dans la galerie",
+ "image_available": "L'image {{ index }} est maintenant disponible dans la galerie"
+ },
+ "view_full_details": "Afficher tous les détails",
+ "include_taxes": "Taxes incluses.",
+ "shipping_policy_html": "Frais d'expédition calculés à l'étape de paiement.",
+ "choose_options": "Choisir des options",
+ "choose_product_options": "Choisir des options pour {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – indisponible",
+ "variant_sold_out_or_unavailable": "Variante épuisée ou indisponible",
+ "inventory_in_stock": "En stock",
+ "inventory_in_stock_show_count": "{{ quantity }} en stock",
+ "inventory_low_stock": "Stock bas",
+ "inventory_low_stock_show_count": "Stock bas : {{ quantity }} restant(s)",
+ "sku": "SKU",
+ "inventory_out_of_stock": "En rupture de stock",
+ "inventory_out_of_stock_continue_selling": "En stock",
+ "volume_pricing": {
+ "title": "Tarification basée sur le volume",
+ "note": "La tarification basée sur le volume est disponible",
+ "minimum": "{{ quantity }} ou plus",
+ "price_at_each": "à {{ price }}/pièce",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galerie de supports multimédias"
+ },
+ "facets": {
+ "apply": "Appliquer",
+ "clear": "Effacer",
+ "clear_all": "Tout supprimer",
+ "from": "De",
+ "filter_and_sort": "Filtrer et trier",
+ "filter_by_label": "Filtre :",
+ "filter_button": "Filtrer",
+ "filters_selected": {
+ "one": "{{ count }} sélectionné",
+ "other": "{{ count }} sélectionnés",
+ "many": "{{ count }} sélectionnés"
+ },
+ "max_price": "Le prix le plus élevé est de {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} produit sur {{ count }}",
+ "other": "{{ product_count }} produits sur {{ count }}",
+ "many": "{{ product_count }} produits sur {{ count }}"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produit",
+ "other": "{{ count }} produits",
+ "many": "{{ count }} produits"
+ },
+ "reset": "Réinitialiser",
+ "sort_button": "Trier",
+ "sort_by_label": "Trier par :",
+ "to": "À",
+ "clear_filter": "Supprimer le filtre",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtres sélectionnés)",
+ "show_more": "Afficher plus",
+ "show_less": "Afficher moins",
+ "filter_and_operator_subtitle": "Tout associer"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Aucun résultat trouvé pour « {{ terms }} ». Vérifiez l'orthographe ou utilisez un autre mot ou une autre expression.",
+ "results_with_count": {
+ "one": "{{ count }} résultat",
+ "other": "{{ count }} résultats",
+ "many": "{{ count }} résultats"
+ },
+ "title": "Résultats de la recherche",
+ "page": "Page",
+ "products": "Produits",
+ "search_for": "Rechercher « {{ terms }} »",
+ "results_with_count_and_term": {
+ "one": "{{ count }} résultat trouvé pour « {{ terms }} »",
+ "other": "{{ count }} résultats trouvés pour « {{ terms }} »",
+ "many": "{{ count }} résultats trouvés pour « {{ terms }} »"
+ },
+ "results_pages_with_count": {
+ "one": "Page {{ count }}",
+ "other": "Pages {{ count }}",
+ "many": "Pages {{ count }}"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} suggestion",
+ "other": "{{ count }} suggestions",
+ "many": "{{ count }} suggestions"
+ },
+ "results_products_with_count": {
+ "one": "Produit {{ count }}",
+ "other": "Produits {{ count }}",
+ "many": "Produits {{ count }}"
+ },
+ "suggestions": "Suggestions",
+ "pages": "Pages"
+ },
+ "cart": {
+ "cart": "Panier"
+ },
+ "contact": {
+ "form": {
+ "name": "Nom",
+ "email": "E-mail",
+ "phone": "Numéro de téléphone",
+ "comment": "Commentaire",
+ "send": "Envoyer",
+ "post_success": "Merci de nous avoir contactés. Nous vous répondrons dès que possible.",
+ "error_heading": "Veuillez ajuster les éléments suivants :",
+ "title": "Formulaire de contact"
+ }
+ },
+ "404": {
+ "title": "Page non trouvée",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Annonce",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} article",
+ "other": "{{ count }} articles",
+ "many": "{{ count }} articles"
+ }
+ },
+ "cart": {
+ "title": "Votre panier",
+ "caption": "Articles du panier",
+ "remove_title": "Supprimer {{ title }}",
+ "note": "Instructions spéciales concernant la commande",
+ "checkout": "Procéder au paiement",
+ "empty": "Votre panier est vide",
+ "cart_error": "Une erreur est survenue lors de l’actualisation de votre panier. Veuillez réessayer.",
+ "cart_quantity_error_html": "Vous ne pouvez pas ajouter plus de {{ quantity }} de ce produit à votre panier.",
+ "taxes_and_shipping_policy_at_checkout_html": "Taxes, réductions et frais d’expédition calculés à l’étape du paiement",
+ "taxes_included_but_shipping_at_checkout": "Taxe incluse, frais d’expédition et réductions calculés à l’étape du paiement",
+ "taxes_included_and_shipping_policy_html": "Taxe incluse. Frais d’expédition et réductions calculés à l’étape du paiement.",
+ "taxes_and_shipping_at_checkout": "Taxes, réductions et frais d’expédition calculés à l’étape du paiement",
+ "headings": {
+ "product": "Produit",
+ "price": "Prix",
+ "total": "Total",
+ "quantity": "Quantité",
+ "image": "Image de produit"
+ },
+ "update": "Mettre à jour",
+ "login": {
+ "title": "Vous possédez un compte ?",
+ "paragraph_html": "Connectez-vous pour payer plus vite."
+ },
+ "estimated_total": "Total estimé",
+ "new_estimated_total": "Nouveau total estimé"
+ },
+ "footer": {
+ "payment": "Moyens de paiement"
+ },
+ "featured_blog": {
+ "view_all": "Tout afficher",
+ "onboarding_title": "Article de blog",
+ "onboarding_content": "Donnez à vos clients un résumé de votre article de blog"
+ },
+ "featured_collection": {
+ "view_all": "Tout afficher",
+ "view_all_label": "Afficher tous les produits de la collection {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Tout afficher"
+ },
+ "collection_template": {
+ "title": "Collection",
+ "empty": "Aucun produit trouvé",
+ "use_fewer_filters_html": "Utiliser moins de filtres ou tout supprimer "
+ },
+ "video": {
+ "load_video": "Charger la vidéo : {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Charger la diapositive",
+ "previous_slideshow": "Diapositive précédente",
+ "next_slideshow": "Diapositive suivante",
+ "pause_slideshow": "Interrompre le diaporama",
+ "play_slideshow": "Lire le diaporama",
+ "carousel": "Carrousel",
+ "slide": "Diapositive"
+ },
+ "page": {
+ "title": "Titre de la page"
+ },
+ "announcements": {
+ "previous_announcement": "Annonce précédente",
+ "next_announcement": "Annonce suivante",
+ "carousel": "Carrousel",
+ "announcement": "Annonce",
+ "announcement_bar": "Barre d’annonces"
+ },
+ "quick_order_list": {
+ "product_total": "Sous-total des produits",
+ "view_cart": "Voir le panier",
+ "each": "{{ money }}/pièce",
+ "product": "Produit",
+ "variant": "Variante",
+ "variant_total": "Total des variantes",
+ "items_added": {
+ "one": "{{ quantity }} article ajouté",
+ "other": "{{ quantity }} articles ajoutés",
+ "many": "{{ quantity }} articles ajoutés"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} article retiré",
+ "other": "{{ quantity }} articles retirés",
+ "many": "{{ quantity }} articles retirés"
+ },
+ "product_variants": "Variantes de produits",
+ "total_items": "Total des articles",
+ "remove_all_items_confirmation": "Retirer les {{ quantity }} articles de votre panier ?",
+ "remove_all": "Tout retirer",
+ "cancel": "Annuler"
+ }
+ },
+ "localization": {
+ "country_label": "Pays/région",
+ "language_label": "Langue",
+ "update_language": "Mettre à jour la langue",
+ "update_country": "Mettre à jour le pays/la région"
+ },
+ "customer": {
+ "account": {
+ "title": "Compte",
+ "details": "Détails du compte",
+ "view_addresses": "Voir les adresses",
+ "return": "Retour aux détails du compte"
+ },
+ "account_fallback": "Compte",
+ "activate_account": {
+ "title": "Activer le compte",
+ "subtext": "Créez votre mot de passe pour activer le compte.",
+ "password": "Mot de passe",
+ "password_confirm": "Confirmer le mot de passe",
+ "submit": "Activer le compte",
+ "cancel": "Décliner l'invitation"
+ },
+ "addresses": {
+ "title": "Adresses",
+ "default": "Par défaut",
+ "add_new": "Ajouter une nouvelle adresse",
+ "edit_address": "Modifier l'adresse",
+ "first_name": "Prénom",
+ "last_name": "Nom de famille",
+ "company": "Entreprise",
+ "address1": "Adresse 1",
+ "address2": "Adresse 2",
+ "city": "Ville",
+ "country": "Pays/région",
+ "province": "Province",
+ "zip": "Code postal",
+ "phone": "Téléphone",
+ "set_default": "Définir comme adresse par défaut",
+ "add": "Ajouter l'adresse",
+ "update": "Mettre à jour l'adresse",
+ "cancel": "Annuler",
+ "edit": "Modifier",
+ "delete": "Supprimer",
+ "delete_confirm": "Êtes-vous certain(e) de vouloir supprimer cette adresse ?"
+ },
+ "log_in": "Connexion",
+ "log_out": "Déconnexion",
+ "login_page": {
+ "cancel": "Annuler",
+ "create_account": "Créer un compte",
+ "email": "E-mail",
+ "forgot_password": "Mot de passe oublié ?",
+ "guest_continue": "Continuer",
+ "guest_title": "Continuer en tant qu'invité(e)",
+ "password": "Mot de passe",
+ "title": "Connexion",
+ "sign_in": "Connexion",
+ "submit": "Envoyer"
+ },
+ "orders": {
+ "title": "Historique des commandes",
+ "order_number": "Commande",
+ "order_number_link": "Numéro de commande {{ number }}",
+ "date": "Date",
+ "payment_status": "Statut des paiements",
+ "fulfillment_status": "Statut des commandes",
+ "total": "Total",
+ "none": "Vous n'avez encore passé aucune commande."
+ },
+ "recover_password": {
+ "title": "Réinitialiser son mot de passe",
+ "subtext": "Nous vous ferons parvenir un e-mail pour réinitialiser votre mot de passe",
+ "success": "Nous vous avons envoyé un e-mail contenant un lien pour mettre à jour votre mot de passe."
+ },
+ "register": {
+ "title": "Créer un compte",
+ "first_name": "Prénom",
+ "last_name": "Nom de famille",
+ "email": "E-mail",
+ "password": "Mot de passe",
+ "submit": "Créer"
+ },
+ "reset_password": {
+ "title": "Réinitialiser le mot de passe du compte",
+ "subtext": "Saisissez un nouveau mot de passe",
+ "password": "Mot de passe",
+ "password_confirm": "Confirmer le mot de passe",
+ "submit": "Réinitialiser le mot de passe"
+ },
+ "order": {
+ "title": "Commande {{ name }}",
+ "date_html": "Passée le {{ date }}",
+ "cancelled_html": "Commande annulée le {{ date }}",
+ "cancelled_reason": "Motif : {{ reason }}",
+ "billing_address": "Adresse de facturation",
+ "payment_status": "Statut de paiement",
+ "shipping_address": "Adresse d'expédition",
+ "fulfillment_status": "Statut des commandes",
+ "discount": "Réduction",
+ "shipping": "Expédition",
+ "tax": "Taxes",
+ "product": "Produit",
+ "sku": "SKU",
+ "price": "Prix",
+ "quantity": "Quantité",
+ "total": "Total",
+ "fulfilled_at_html": "Traitée le {{ date }}",
+ "track_shipment": "Suivre l'envoi",
+ "tracking_url": "Lien de suivi",
+ "tracking_company": "Transporteur",
+ "tracking_number": "Numéro de suivi",
+ "subtotal": "Sous-total",
+ "total_duties": "Frais de douane",
+ "total_refunded": "Remboursé"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Voici le solde de votre carte‑cadeau {{ shop }} d'une valeur de {{ value }} !",
+ "subtext": "Votre carte-cadeau",
+ "gift_card_code": "Code de la carte-cadeau",
+ "shop_link": "Visiter la boutique en ligne",
+ "add_to_apple_wallet": "Ajouter à Apple Wallet",
+ "qr_image_alt": "Code QR : scannez-le pour utiliser votre carte-cadeau",
+ "copy_code": "Copier le code de la carte‑cadeau",
+ "expired": "Expiré",
+ "copy_code_success": "Le code a bien été copié",
+ "how_to_use_gift_card": "Utiliser le code de la carte‑cadeau en ligne ou le code QR en boutique",
+ "expiration_date": "Expire le {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Je veux envoyer ce produit comme cadeau",
+ "email_label": "E‑mail du destinataire",
+ "email": "E‑mail",
+ "name_label": "Nom du destinataire (facultatif)",
+ "name": "Nom",
+ "message_label": "Message (facultatif)",
+ "message": "Message",
+ "max_characters": "{{ max_chars }} caractères au maximum",
+ "email_label_optional_for_no_js_behavior": "E‑mail du destinataire (facultatif)",
+ "send_on": "AAAA-MM-JJ",
+ "send_on_label": "Envoyer le (facultatif)",
+ "expanded": "Formulaire de destinataire de carte-cadeau agrandi",
+ "collapsed": "Formulaire de destinataire de carte-cadeau réduit"
+ }
+ }
+}
diff --git a/locales/fr.schema.json b/locales/fr.schema.json
new file mode 100644
index 0000000..7902e9a
--- /dev/null
+++ b/locales/fr.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Couleurs",
+ "settings": {
+ "background": {
+ "label": "Arrière‑plan"
+ },
+ "background_gradient": {
+ "label": "Dégradé de l’arrière-plan",
+ "info": "Le dégradé de l’arrière-plan remplace l’arrière-plan là où c’est possible."
+ },
+ "text": {
+ "label": "Texte"
+ },
+ "button_background": {
+ "label": "Arrière-plan plein du bouton"
+ },
+ "button_label": {
+ "label": "Texte de bouton plein"
+ },
+ "secondary_button_label": {
+ "label": "Bouton en relief"
+ },
+ "shadow": {
+ "label": "Ombre"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typographie",
+ "settings": {
+ "type_header_font": {
+ "label": "Police",
+ "info": "La sélection d'une police différente peut influencer la vitesse de votre boutique. [En savoir plus sur les polices système.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Titres"
+ },
+ "header__2": {
+ "content": "Corps"
+ },
+ "type_body_font": {
+ "label": "Police",
+ "info": "La sélection d'une police différente peut influencer la vitesse de votre boutique. [En savoir plus sur les polices système.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Échelle de taille de police"
+ },
+ "body_scale": {
+ "label": "Échelle de taille de police"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Médias sociaux",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://vimeo.com/shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Comptes sociaux"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Format de devise",
+ "settings": {
+ "content": "Codes de devise",
+ "currency_code_enabled": {
+ "label": "Afficher les codes de devise"
+ },
+ "paragraph": "Le panier et les prix au moment du paiement indiquent toujours les codes de devise. Exemple : 1 EUR."
+ }
+ },
+ "layout": {
+ "name": "Mise en page",
+ "settings": {
+ "page_width": {
+ "label": "Largeur de la page"
+ },
+ "spacing_sections": {
+ "label": "Espace entre les sections du modèle"
+ },
+ "header__grid": {
+ "content": "Grille"
+ },
+ "paragraph__grid": {
+ "content": "Affecte les zones présentant plusieurs colonnes ou lignes."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Espace horizontal"
+ },
+ "spacing_grid_vertical": {
+ "label": "Espace vertical"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Comportement de recherche",
+ "settings": {
+ "header": {
+ "content": "Suggestions de recherche"
+ },
+ "predictive_search_enabled": {
+ "label": "Activer les suggestions de recherche"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Afficher le fournisseur du produit",
+ "info": "Visible lorsque les suggestions de recherche sont activées."
+ },
+ "predictive_search_show_price": {
+ "label": "Afficher le prix du produit",
+ "info": "Visible lorsque les suggestions de recherche sont activées."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Bordure"
+ },
+ "header__shadow": {
+ "content": "Ombre"
+ },
+ "blur": {
+ "label": "Flou"
+ },
+ "corner_radius": {
+ "label": "Rayon de coin"
+ },
+ "horizontal_offset": {
+ "label": "Décalage horizontal"
+ },
+ "vertical_offset": {
+ "label": "Décalage vertical"
+ },
+ "thickness": {
+ "label": "Épaisseur"
+ },
+ "opacity": {
+ "label": "Opacité"
+ },
+ "image_padding": {
+ "label": "Marge intérieure de l'image"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du texte"
+ }
+ }
+ },
+ "badges": {
+ "name": "Badges",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "En bas à gauche"
+ },
+ "options__2": {
+ "label": "En bas à droite"
+ },
+ "options__3": {
+ "label": "En haut à gauche"
+ },
+ "options__4": {
+ "label": "En haut à droite"
+ },
+ "label": "Position sur les cartes"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Nuancier de couleurs du badge de vente"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Nuancier de couleurs du badge de rupture de stock"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Boutons"
+ },
+ "variant_pills": {
+ "name": "Boutons pilule de variante",
+ "paragraph": "Les boutons pilule de variante servent à afficher les variantes de produit. [En savoir plus](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Entrées"
+ },
+ "content_containers": {
+ "name": "Conteneurs de contenu"
+ },
+ "popups": {
+ "name": "Menus déroulants et pop-ups",
+ "paragraph": "Affecte les zones telles que les menus déroulants de navigation, les fenêtres modales pop-up et les fenêtres pop-up de panier."
+ },
+ "media": {
+ "name": "Support multimédia"
+ },
+ "drawers": {
+ "name": "Tiroirs"
+ },
+ "cart": {
+ "name": "Panier",
+ "settings": {
+ "cart_type": {
+ "label": "Type de panier",
+ "drawer": {
+ "label": "Tiroir"
+ },
+ "page": {
+ "label": "Page"
+ },
+ "notification": {
+ "label": "Notification contextuelle"
+ }
+ },
+ "show_vendor": {
+ "label": "Afficher le fournisseur"
+ },
+ "show_cart_note": {
+ "label": "Activer la note de panier"
+ },
+ "cart_drawer": {
+ "header": "Panier coulissant",
+ "collection": {
+ "label": "Collection",
+ "info": "Visible lorsque le panier coulissant est vide."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Cartes de produit",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Carte"
+ },
+ "label": "Style"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Cartes de collection",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Carte"
+ },
+ "label": "Style"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Cartes de blog",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Carte"
+ },
+ "label": "Style"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Largeur du logo sur ordinateur",
+ "info": "La largeur du logo est automatiquement optimisée pour les mobiles."
+ },
+ "favicon": {
+ "label": "Image favicon",
+ "info": "Sera réduite à 32 x 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informations sur la marque",
+ "settings": {
+ "brand_headline": {
+ "label": "Titre"
+ },
+ "brand_description": {
+ "label": "Description"
+ },
+ "brand_image": {
+ "label": "Image"
+ },
+ "brand_image_width": {
+ "label": "Largeur d’image"
+ },
+ "paragraph": {
+ "content": "Ajoutez une description de votre marque au pied de page de votre boutique."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animations",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Afficher les sections lors du défilement"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Aucun"
+ },
+ "options__2": {
+ "label": "Levée verticale"
+ },
+ "label": "Effet de survol",
+ "info": "Concerne les cartes et les boutons.",
+ "options__3": {
+ "label": "3D lift"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Marge de la section",
+ "padding_top": "Marge supérieure",
+ "padding_bottom": "Marge inférieure"
+ },
+ "spacing": "Espacement",
+ "colors": {
+ "label": "Nuancier de couleurs",
+ "has_cards_info": "Pour modifier le nuancier de couleur de la carte, mettez à jour les paramètres de votre thème."
+ },
+ "heading_size": {
+ "label": "Taille du titre",
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ },
+ "options__4": {
+ "label": "Très grand"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Forme par défaut"
+ },
+ "options__2": {
+ "label": "Arche"
+ },
+ "options__3": {
+ "label": "Indistincte"
+ },
+ "options__4": {
+ "label": "Chevron gauche"
+ },
+ "options__5": {
+ "label": "Chevron droite"
+ },
+ "options__6": {
+ "label": "Losange"
+ },
+ "options__7": {
+ "label": "Parallélogramme"
+ },
+ "options__8": {
+ "label": "Cercle"
+ },
+ "label": "Forme d’image",
+ "info": "Les cartes de style standard n’ont pas de bordures lorsqu’une forme d’image est active."
+ },
+ "animation": {
+ "content": "Animations",
+ "image_behavior": {
+ "options__1": {
+ "label": "Aucun"
+ },
+ "options__2": {
+ "label": "Mouvement ambiant"
+ },
+ "label": "Comportement de l’image",
+ "options__3": {
+ "label": "Position de l’arrière-plan fixe"
+ },
+ "options__4": {
+ "label": "Zoom sur le défilement"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Barre d'annonces",
+ "blocks": {
+ "announcement": {
+ "name": "Annonce",
+ "settings": {
+ "text": {
+ "label": "Texte"
+ },
+ "text_alignment": {
+ "label": "Alignement du texte",
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ }
+ },
+ "link": {
+ "label": "Lien"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Rotation automatique des annonces"
+ },
+ "change_slides_speed": {
+ "label": "Changer toutes les"
+ },
+ "header__1": {
+ "content": "Icônes de réseaux sociaux",
+ "info": "Pour afficher vos comptes de réseaux sociaux, ajoutez les liens correspondants dans les [paramètres de votre thème](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Annonces"
+ },
+ "show_social": {
+ "label": "Afficher les icônes sur le bureau"
+ },
+ "header__3": {
+ "content": "Sélecteur de pays/région",
+ "info": "Pour ajouter un pays/une région, accédez à vos [paramètres de marché.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Activer le sélecteur de pays/région"
+ },
+ "header__4": {
+ "content": "Sélecteur de langue",
+ "info": "Pour ajouter une langue, accédez à vos [paramètres de langue.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Activer le sélecteur de langue"
+ }
+ },
+ "presets": {
+ "name": "Barre d’annonces"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Titre"
+ },
+ "desktop_layout": {
+ "label": "Mise en page du bureau",
+ "options__1": {
+ "label": "Grand bloc gauche"
+ },
+ "options__2": {
+ "label": "Grand bloc droite"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mise en page pour téléphone portable",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Colonne"
+ }
+ },
+ "card_styles": {
+ "label": "Style de cartes",
+ "info": "Les styles de cartes produits, de collections et de blogs peuvent être mis à jour dans les paramètres de thème.",
+ "options__1": {
+ "label": "Utiliser des styles de cartes individuels"
+ },
+ "options__2": {
+ "label": "Style pour toutes en tant que cartes de produits"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Image",
+ "settings": {
+ "image": {
+ "label": "Image"
+ }
+ }
+ },
+ "product": {
+ "name": "Produit",
+ "settings": {
+ "product": {
+ "label": "Produit"
+ },
+ "secondary_background": {
+ "label": "Afficher l'arrière-plan secondaire"
+ },
+ "second_image": {
+ "label": "Afficher la deuxième image en survol"
+ }
+ }
+ },
+ "collection": {
+ "name": "Collection",
+ "settings": {
+ "collection": {
+ "label": "Collection"
+ }
+ }
+ },
+ "video": {
+ "name": "Vidéo",
+ "settings": {
+ "cover_image": {
+ "label": "Image de couverture"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Si la section contient d'autres blocs, la vidéo est lue dans une fenêtre pop-up.",
+ "placeholder": "Utiliser une URL YouTube ou Vimeo"
+ },
+ "description": {
+ "label": "Texte alternatif de la vidéo",
+ "info": "Décrivez la vidéo pour les clients utilisant des lecteurs d'écran. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Liste des collections",
+ "settings": {
+ "title": {
+ "label": "Titre"
+ },
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "info": "Pour ajouter des images, modifiez vos collections. [En savoir plus](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Activer le balayage sur mobile"
+ },
+ "show_view_all": {
+ "label": "Activer le bouton « Tout afficher » si la liste comprend plus de collections que celles affichées"
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Collection",
+ "settings": {
+ "collection": {
+ "label": "Collection"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Liste des collections"
+ }
+ },
+ "contact-form": {
+ "name": "Formulaire de contact",
+ "presets": {
+ "name": "Formulaire de contact"
+ }
+ },
+ "custom-liquid": {
+ "name": "Liquid personnalisé",
+ "settings": {
+ "custom_liquid": {
+ "label": "Code Liquid",
+ "info": "Ajoutez des extraits d’application ou autre code pour créer des personnalisations avancées. [En savoir plus](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Liquid personnalisé"
+ }
+ },
+ "featured-blog": {
+ "name": "Articles de blog",
+ "settings": {
+ "heading": {
+ "label": "Titre"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Nombre d'articles de blog à afficher"
+ },
+ "show_view_all": {
+ "label": "Activer le bouton « Tout afficher » si le blog comprend plus d'articles que ceux affichés"
+ },
+ "show_image": {
+ "label": "Afficher les images vedettes",
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 3:2. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Afficher la date"
+ },
+ "show_author": {
+ "label": "Afficher l'auteur"
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ }
+ },
+ "presets": {
+ "name": "Articles de blog"
+ }
+ },
+ "featured-collection": {
+ "name": "Collection en vedette",
+ "settings": {
+ "title": {
+ "label": "Titre"
+ },
+ "collection": {
+ "label": "Collection"
+ },
+ "products_to_show": {
+ "label": "Quantité maximale de produits à afficher"
+ },
+ "show_view_all": {
+ "label": "Activer le style « Tout afficher » si la collection comprend plus de produits que ce qui est affiché"
+ },
+ "header": {
+ "content": "Carte de produit"
+ },
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Afficher la deuxième image en survol"
+ },
+ "show_vendor": {
+ "label": "Afficher le fournisseur"
+ },
+ "show_rating": {
+ "label": "Afficher la note du produit",
+ "info": "Pour afficher une note, ajoutez une application d'évaluation de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Activer le bouton d'ajout rapide",
+ "info": "Optimal avec un type de panier pop-up ou à tiroir."
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "description": {
+ "label": "Description"
+ },
+ "show_description": {
+ "label": "Afficher la description de la collection à partir de l'interface administrateur"
+ },
+ "description_style": {
+ "label": "Style de la description",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous-titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Lien"
+ },
+ "options__2": {
+ "label": "Bouton en relief"
+ },
+ "options__3": {
+ "label": "Bouton plein"
+ },
+ "label": "Style « Tout afficher »"
+ },
+ "enable_desktop_slider": {
+ "label": "Activer le carrousel sur ordinateur"
+ },
+ "full_width": {
+ "label": "Rendre les produits pleine largeur"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Activer le balayage sur mobile"
+ }
+ },
+ "presets": {
+ "name": "Collection en vedette"
+ }
+ },
+ "footer": {
+ "name": "Pied de page",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "En-tête"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Affiche uniquement les éléments de menu de niveau supérieur."
+ }
+ }
+ },
+ "text": {
+ "name": "Texte",
+ "settings": {
+ "heading": {
+ "label": "En-tête"
+ },
+ "subtext": {
+ "label": "Sous-texte"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informations sur la marque",
+ "settings": {
+ "paragraph": {
+ "content": "Ce bloc affichera les informations sur votre marque. [Modifier les informations sur la marque.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Icônes de réseaux sociaux"
+ },
+ "show_social": {
+ "label": "Afficher les icônes des réseaux sociaux",
+ "info": "Pour afficher vos comptes de médias sociaux, ajoutez les liens correspondants dans les [paramètres de votre thème](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Afficher l'inscription à la liste de diffusion"
+ },
+ "newsletter_heading": {
+ "label": "En-tête"
+ },
+ "header__1": {
+ "content": "Inscription à la liste de diffusion",
+ "info": "Abonnés automatiquement ajoutés à votre liste de clients « marketing accepté ». [En savoir plus](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Icônes de médias sociaux",
+ "info": "Pour afficher vos comptes de médias sociaux, ajoutez les liens correspondants dans les [paramètres de votre thème](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Afficher les icônes des médias sociaux"
+ },
+ "header__3": {
+ "content": "Sélecteur de pays/région"
+ },
+ "header__4": {
+ "info": "Pour ajouter un pays/une région, accédez à vos [paramètres de marché.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Activer le sélecteur de pays/région"
+ },
+ "header__5": {
+ "content": "Sélecteur de langue"
+ },
+ "header__6": {
+ "info": "Pour ajouter une langue, allez à vos [paramètres de langue.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Activer le sélecteur de langue"
+ },
+ "header__7": {
+ "content": "Moyens de paiement"
+ },
+ "payment_enable": {
+ "label": "Afficher les icônes de paiement"
+ },
+ "margin_top": {
+ "label": "Marge supérieure"
+ },
+ "header__8": {
+ "content": "Liens des politiques",
+ "info": "Pour ajouter des politiques concernant votre boutique, accédez à vos [paramètres de politique ](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Afficher les liens des politiques"
+ },
+ "header__9": {
+ "content": "Suivre sur Shop",
+ "info": "Pour autoriser les clients à suivre votre boutique sur l’application Shop depuis votre boutique en ligne, Shop Pay doit être activé. [En savoir plus](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Activer Suivre sur Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "En-tête",
+ "settings": {
+ "logo_position": {
+ "label": "Emplacement du logo du bureau",
+ "options__1": {
+ "label": "Centré à gauche"
+ },
+ "options__2": {
+ "label": "En haut à gauche"
+ },
+ "options__3": {
+ "label": "En haut au centre"
+ },
+ "options__4": {
+ "label": "Centré au milieu"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Afficher la ligne de séparation"
+ },
+ "margin_bottom": {
+ "label": "Marge inférieure"
+ },
+ "menu_type_desktop": {
+ "label": "Type de menu sur ordinateur",
+ "info": "Le type de menu est automatiquement optimisé pour les mobiles.",
+ "options__1": {
+ "label": "Menu déroulant"
+ },
+ "options__2": {
+ "label": "Méga menu"
+ },
+ "options__3": {
+ "label": "Tiroir"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mise en page sur mobile"
+ },
+ "mobile_logo_position": {
+ "label": "Position du logo sur mobile",
+ "options__1": {
+ "label": "Centre"
+ },
+ "options__2": {
+ "label": "Gauche"
+ }
+ },
+ "logo_help": {
+ "content": "Modifiez votre logo dans les [paramètres du thème](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "En‑tête fixe",
+ "options__1": {
+ "label": "Aucun"
+ },
+ "options__2": {
+ "label": "Lors du défilement vers le haut"
+ },
+ "options__3": {
+ "label": "Toujours"
+ },
+ "options__4": {
+ "label": "Réduisez toujours la taille du logo"
+ }
+ },
+ "header__3": {
+ "content": "Sélecteur de pays/région"
+ },
+ "header__4": {
+ "info": "Pour ajouter un pays/une région, accédez à [market settings.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Activer le sélecteur de pays/région"
+ },
+ "header__5": {
+ "content": "Sélecteur de langue"
+ },
+ "header__6": {
+ "info": "Pour ajouter une langue, accédez à [language settings.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Activer le sélecteur de langue"
+ },
+ "header__1": {
+ "content": "Couleur"
+ },
+ "menu_color_scheme": {
+ "label": "Nuancier de couleurs de menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Bannière avec image",
+ "settings": {
+ "image": {
+ "label": "Première image"
+ },
+ "image_2": {
+ "label": "Deuxième image"
+ },
+ "stack_images_on_mobile": {
+ "label": "Empiler des images sur un mobile"
+ },
+ "show_text_box": {
+ "label": "Afficher le conteneur sur le bureau"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacité de la superposition d'images"
+ },
+ "show_text_below": {
+ "label": "Afficher le conteneur sur le mobile"
+ },
+ "image_height": {
+ "label": "Hauteur de la bannière",
+ "options__1": {
+ "label": "Adapter à la première image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 3:2. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grand"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "En haut à gauche"
+ },
+ "options__2": {
+ "label": "En haut au centre"
+ },
+ "options__3": {
+ "label": "En haut à droite"
+ },
+ "options__4": {
+ "label": "Au milieu à gauche"
+ },
+ "options__5": {
+ "label": "Centré au milieu"
+ },
+ "options__6": {
+ "label": "Au milieu à droite"
+ },
+ "options__7": {
+ "label": "En bas à gauche"
+ },
+ "options__8": {
+ "label": "En bas au centre"
+ },
+ "options__9": {
+ "label": "En bas à droite"
+ },
+ "label": "Position du contenu sur le bureau"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu du bureau"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu sur mobile"
+ },
+ "mobile": {
+ "content": "Mise en page sur mobile"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titre",
+ "settings": {
+ "heading": {
+ "label": "Titre"
+ }
+ }
+ },
+ "text": {
+ "name": "Texte",
+ "settings": {
+ "text": {
+ "label": "Description"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous-titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ },
+ "label": "Style de texte"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Boutons",
+ "settings": {
+ "button_label_1": {
+ "label": "Texte du premier bouton",
+ "info": "Laisser le texte vide pour masquer le bouton."
+ },
+ "button_link_1": {
+ "label": "Lien du premier bouton"
+ },
+ "button_style_secondary_1": {
+ "label": "Utiliser le style du bouton en relief"
+ },
+ "button_label_2": {
+ "label": "Texte du deuxième bouton",
+ "info": "Laisser le texte vide pour masquer le bouton."
+ },
+ "button_link_2": {
+ "label": "Lien du deuxième bouton"
+ },
+ "button_style_secondary_2": {
+ "label": "Utiliser le style du bouton en relief"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bannière avec image"
+ }
+ },
+ "image-with-text": {
+ "name": "Image avec texte",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "height": {
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "label": "Hauteur de l'image",
+ "options__4": {
+ "label": "Grand"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "L'image en premier"
+ },
+ "options__2": {
+ "label": "Deuxième image"
+ },
+ "label": "Placement de l'image sur ordinateur",
+ "info": "La mise en page par défaut pour les appareils mobiles est « Image en premier »."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ },
+ "label": "Largeur d'image sur ordinateur",
+ "info": "L'image est automatiquement optimisée pour les mobiles."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu sur ordinateur"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Haut"
+ },
+ "options__2": {
+ "label": "Milieu"
+ },
+ "options__3": {
+ "label": "Bas"
+ },
+ "label": "Position du contenu sur ordinateur"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Aucun chevauchement"
+ },
+ "options__2": {
+ "label": "Chevauchement"
+ },
+ "label": "Mise en page du contenu"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu sur mobile"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titre",
+ "settings": {
+ "heading": {
+ "label": "Titre"
+ }
+ }
+ },
+ "text": {
+ "name": "Texte",
+ "settings": {
+ "text": {
+ "label": "Contenu"
+ },
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous-titre"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Bouton",
+ "settings": {
+ "button_label": {
+ "label": "Texte du bouton",
+ "info": "Laisser le texte vide pour masquer le bouton."
+ },
+ "button_link": {
+ "label": "Lien du bouton"
+ },
+ "outline_button": {
+ "label": "Utiliser le style de bouton en relief"
+ }
+ }
+ },
+ "caption": {
+ "name": "Légende",
+ "settings": {
+ "text": {
+ "label": "Texte"
+ },
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Sous-titre"
+ },
+ "options__2": {
+ "label": "Majuscule"
+ }
+ },
+ "caption_size": {
+ "label": "Taille du texte",
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Image avec texte"
+ }
+ },
+ "main-article": {
+ "name": "Article de blog",
+ "blocks": {
+ "featured_image": {
+ "name": "Image vedette",
+ "settings": {
+ "image_height": {
+ "label": "Hauteur de l'image vedette",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 16:9. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grand"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titre",
+ "settings": {
+ "blog_show_date": {
+ "label": "Afficher la date"
+ },
+ "blog_show_author": {
+ "label": "Afficher l'auteur"
+ }
+ }
+ },
+ "content": {
+ "name": "Contenu"
+ },
+ "share": {
+ "name": "Partager",
+ "settings": {
+ "featured_image_info": {
+ "content": "Si vous incluez un lien dans les publications sur les réseaux sociaux, l'image vedette de la page sera affichée comme image d'aperçu. [En savoir plus](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Un titre et une description de la boutique sont inclus avec l'image d'aperçu. [En savoir plus](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Texte"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Articles de blog",
+ "settings": {
+ "header": {
+ "content": "Carte d'article de blog"
+ },
+ "show_image": {
+ "label": "Afficher les images vedettes"
+ },
+ "paragraph": {
+ "content": "Pour changer les extraits, modifiez vos articles de blog. [En savoir plus](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Afficher la date"
+ },
+ "show_author": {
+ "label": "Afficher l'auteur"
+ },
+ "layout": {
+ "label": "Mise en page du bureau",
+ "options__1": {
+ "label": "Grille"
+ },
+ "options__2": {
+ "label": "Collage"
+ },
+ "info": "Les publications sont empilées sur mobile."
+ },
+ "image_height": {
+ "label": "Hauteur de l'image vedette",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "options__4": {
+ "label": "Grand"
+ },
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 3:2. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Sous-total",
+ "blocks": {
+ "subtotal": {
+ "name": "Sous-total du prix"
+ },
+ "buttons": {
+ "name": "Bouton de paiement"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Articles"
+ },
+ "main-collection-banner": {
+ "name": "Bannière de collection",
+ "settings": {
+ "paragraph": {
+ "content": "Pour ajouter une description ou une image, modifiez votre collection. [En savoir plus](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Afficher la description de la collection"
+ },
+ "show_collection_image": {
+ "label": "Afficher l'image de la collection",
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 16:9. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Grille de produit",
+ "settings": {
+ "products_per_page": {
+ "label": "Produits par page"
+ },
+ "enable_filtering": {
+ "label": "Activer le filtrage",
+ "info": "Personnalisez les filtres avec l’application Search & Discovery. [En savoir plus](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Activer le tri"
+ },
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Afficher la deuxième image en survol"
+ },
+ "show_vendor": {
+ "label": "Afficher le fournisseur"
+ },
+ "header__1": {
+ "content": "Filtrage et tri"
+ },
+ "header__3": {
+ "content": "Carte de produit"
+ },
+ "enable_tags": {
+ "label": "Activer le filtrage",
+ "info": "Personnalisez les filtres avec l’application Search & Discovery. [En savoir plus](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "show_rating": {
+ "label": "Afficher la note du produit",
+ "info": "Pour afficher une note, ajoutez une application d'évaluation de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Activer le bouton d'ajout rapide",
+ "info": "Optimal avec un type de panier pop-up ou à tiroir."
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ },
+ "filter_type": {
+ "label": "Mise en page des filtres sur ordinateur",
+ "options__1": {
+ "label": "Horizontale"
+ },
+ "options__2": {
+ "label": "Verticale"
+ },
+ "options__3": {
+ "label": "Tiroir"
+ },
+ "info": "Le tiroir correspond à la mise en page par défaut sur les appareils mobiles."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Page de liste des collections",
+ "settings": {
+ "title": {
+ "label": "Titre"
+ },
+ "sort": {
+ "label": "Trier les collections par :",
+ "options__1": {
+ "label": "Alphabétique, de A à Z"
+ },
+ "options__2": {
+ "label": "Alphabétique, de Z à A"
+ },
+ "options__3": {
+ "label": "Date, de la plus récente à la plus ancienne"
+ },
+ "options__4": {
+ "label": "Date, de la plus ancienne à la plus récente"
+ },
+ "options__5": {
+ "label": "Nombre de produits, par ordre décroissant"
+ },
+ "options__6": {
+ "label": "Nombre de produits, par ordre croissant"
+ }
+ },
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "info": "Pour ajouter des images, modifiez vos collections. [En savoir plus](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Page"
+ },
+ "main-password-footer": {
+ "name": "Pied de page du mot de passe"
+ },
+ "main-password-header": {
+ "name": "En-tête du mot de passe",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Modifiez votre logo dans les paramètres du thème."
+ }
+ }
+ },
+ "main-product": {
+ "blocks": {
+ "text": {
+ "name": "Texte",
+ "settings": {
+ "text": {
+ "label": "Texte"
+ },
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous-titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titre"
+ },
+ "price": {
+ "name": "Prix"
+ },
+ "quantity_selector": {
+ "name": "Sélecteur de quantité"
+ },
+ "variant_picker": {
+ "name": "Sélecteur de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Menu déroulant"
+ },
+ "options__2": {
+ "label": "Comprimés"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Boutons d'achat",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Afficher les boutons de paiement dynamique",
+ "info": "En utilisant les méthodes de paiement disponibles sur votre boutique, les clients voient leur option préférée, comme PayPal ou Apple Pay. [En savoir plus](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Afficher le formulaire d’information sur le destinataire pour les cartes‑cadeaux",
+ "info": "Permet aux acheteurs d’envoyer des cartes-cadeaux à une date prévue ainsi qu’un message personnel. [En savoir plus](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Disponibilité du service de retrait"
+ },
+ "description": {
+ "name": "Description"
+ },
+ "share": {
+ "name": "Partager",
+ "settings": {
+ "featured_image_info": {
+ "content": "Si vous incluez un lien dans les publications sur les réseaux sociaux, l'image vedette de la page sera affichée comme image d'aperçu. [En savoir plus](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Un titre et une description de la boutique sont inclus avec l'image d'aperçu. [En savoir plus](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Texte"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Rangée réductible",
+ "settings": {
+ "heading": {
+ "info": "Incluez un titre qui explique le contenu.",
+ "label": "Titre"
+ },
+ "content": {
+ "label": "Contenu de la rangée"
+ },
+ "page": {
+ "label": "Contenu de la rangée de la page"
+ },
+ "icon": {
+ "options__1": {
+ "label": "Aucune"
+ },
+ "options__2": {
+ "label": "Pomme"
+ },
+ "options__3": {
+ "label": "Banane"
+ },
+ "options__4": {
+ "label": "Bouteille"
+ },
+ "options__5": {
+ "label": "Boîte"
+ },
+ "options__6": {
+ "label": "Carotte"
+ },
+ "options__7": {
+ "label": "Bulle de chat"
+ },
+ "options__8": {
+ "label": "Coche"
+ },
+ "options__9": {
+ "label": "Presse-papiers"
+ },
+ "options__10": {
+ "label": "Produits laitiers"
+ },
+ "options__11": {
+ "label": "Sans produits laitiers"
+ },
+ "options__12": {
+ "label": "Sèche-linge"
+ },
+ "options__13": {
+ "label": "Œil"
+ },
+ "options__14": {
+ "label": "Feu"
+ },
+ "options__15": {
+ "label": "Sans gluten"
+ },
+ "options__16": {
+ "label": "Cœur"
+ },
+ "options__17": {
+ "label": "Fer"
+ },
+ "options__18": {
+ "label": "Feuille"
+ },
+ "options__19": {
+ "label": "Cuir"
+ },
+ "options__20": {
+ "label": "Foudre"
+ },
+ "options__21": {
+ "label": "Rouge à lèvres"
+ },
+ "options__22": {
+ "label": "Cadenas"
+ },
+ "options__23": {
+ "label": "Épingle sur la carte"
+ },
+ "options__24": {
+ "label": "Sans noix"
+ },
+ "label": "Icône",
+ "options__25": {
+ "label": "Pantalons"
+ },
+ "options__26": {
+ "label": "Empreinte"
+ },
+ "options__27": {
+ "label": "Poivre"
+ },
+ "options__28": {
+ "label": "Parfum"
+ },
+ "options__29": {
+ "label": "Avion"
+ },
+ "options__30": {
+ "label": "Plantes"
+ },
+ "options__31": {
+ "label": "Étiquette de prix"
+ },
+ "options__32": {
+ "label": "Point d'interrogation"
+ },
+ "options__33": {
+ "label": "Recyclage"
+ },
+ "options__34": {
+ "label": "Retour"
+ },
+ "options__35": {
+ "label": "Règle"
+ },
+ "options__36": {
+ "label": "Plat de service"
+ },
+ "options__37": {
+ "label": "Chemise"
+ },
+ "options__38": {
+ "label": "Chaussure"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Flocon de neige"
+ },
+ "options__41": {
+ "label": "Étoile"
+ },
+ "options__42": {
+ "label": "Chronomètre"
+ },
+ "options__43": {
+ "label": "Camion"
+ },
+ "options__44": {
+ "label": "Lavage"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-up",
+ "settings": {
+ "link_label": {
+ "label": "Étiquette de lien"
+ },
+ "page": {
+ "label": "Page"
+ }
+ }
+ },
+ "rating": {
+ "name": "Note de produit",
+ "settings": {
+ "paragraph": {
+ "content": "Pour afficher une note, ajoutez une application d'évaluation de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Produits complémentaires",
+ "settings": {
+ "paragraph": {
+ "content": "Pour sélectionner des produits complémentaires, ajoutez l'application Search & Discovery. [En savoir plus](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "En-tête"
+ },
+ "make_collapsible_row": {
+ "label": "Afficher sous forme de ligne réductible"
+ },
+ "icon": {
+ "info": "Visible lorsque la ligne réductible est affichée."
+ },
+ "product_list_limit": {
+ "label": "Quantité maximale de produits à afficher"
+ },
+ "products_per_page": {
+ "label": "Nombre de produits par page"
+ },
+ "pagination_style": {
+ "label": "Style de pagination",
+ "options": {
+ "option_1": "Points",
+ "option_2": "Compteur",
+ "option_3": "Numéros"
+ }
+ },
+ "product_card": {
+ "heading": "Carte de produit"
+ },
+ "image_ratio": {
+ "label": "Rapport d’aspect de l’image",
+ "options": {
+ "option_1": "Portrait",
+ "option_2": "Carrés"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Activer le bouton d'ajout rapide"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Icône avec texte",
+ "settings": {
+ "layout": {
+ "label": "Mise en page",
+ "options__1": {
+ "label": "Horizontale"
+ },
+ "options__2": {
+ "label": "Verticale"
+ }
+ },
+ "content": {
+ "label": "Contenu",
+ "info": "Choisissez une icône ou ajoutez une image pour chaque colonne ou rangée."
+ },
+ "heading": {
+ "info": "Laissez l'intitulé du titre vide pour masquer la colonne de l'icône."
+ },
+ "icon_1": {
+ "label": "Première icône"
+ },
+ "image_1": {
+ "label": "Première image"
+ },
+ "heading_1": {
+ "label": "Premier titre"
+ },
+ "icon_2": {
+ "label": "Deuxième icône"
+ },
+ "image_2": {
+ "label": "Deuxième image"
+ },
+ "heading_2": {
+ "label": "Deuxième titre"
+ },
+ "icon_3": {
+ "label": "Troisième icône"
+ },
+ "image_3": {
+ "label": "Troisième image"
+ },
+ "heading_3": {
+ "label": "Troisième titre"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous‑titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "État des stocks",
+ "settings": {
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous‑titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Seuil de stock faible",
+ "info": "Sélectionnez 0 pour toujours indiquer la quantité en stock, si disponible."
+ },
+ "show_inventory_quantity": {
+ "label": "Afficher l'inventaire"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Support multimédia",
+ "info": "En savoir plus sur les [types de supports multimédia.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Activer le bouclage de la vidéo"
+ },
+ "enable_sticky_info": {
+ "label": "Activez le contenu de la note flottante sur le bureau"
+ },
+ "hide_variants": {
+ "label": "Masquer les supports multimédias des autres variantes après la sélection d'une variante"
+ },
+ "gallery_layout": {
+ "label": "Mise en page du bureau",
+ "options__1": {
+ "label": "Empilé"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ },
+ "options__3": {
+ "label": "Vignettes"
+ },
+ "options__4": {
+ "label": "Carrousel de vignettes"
+ }
+ },
+ "media_size": {
+ "label": "Largeur des supports multimédias sur ordinateur",
+ "info": "Les médias sont automatiquement optimisés pour les mobiles.",
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Mise en page sur mobile",
+ "options__1": {
+ "label": "2 colonnes"
+ },
+ "options__2": {
+ "label": "Afficher les vignettes"
+ },
+ "options__3": {
+ "label": "Masquer les vignettes"
+ }
+ },
+ "media_position": {
+ "label": "Position des supports multimédias sur ordinateur",
+ "info": "La position est automatiquement optimisée pour les mobiles.",
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Droite"
+ }
+ },
+ "image_zoom": {
+ "label": "Le zoom sur image",
+ "info": "Cliquez et passez la souris sur les éléments par défaut pour ouvrir lightbox sur mobile.",
+ "options__1": {
+ "label": "Ouvrir lightbox"
+ },
+ "options__2": {
+ "label": "Cliquer et passer la souris"
+ },
+ "options__3": {
+ "label": "Pas de zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Limiter les supports multimédias à la hauteur de l’écran"
+ },
+ "media_fit": {
+ "label": "Taille des supports multimédias",
+ "options__1": {
+ "label": "Taille d’origine"
+ },
+ "options__2": {
+ "label": "Remplir"
+ }
+ }
+ },
+ "name": "Informations produits"
+ },
+ "main-search": {
+ "name": "Résultats de la recherche",
+ "settings": {
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Afficher la deuxième image en survol"
+ },
+ "show_vendor": {
+ "label": "Afficher le fournisseur"
+ },
+ "header__1": {
+ "content": "Carte de produit"
+ },
+ "header__2": {
+ "content": "Carte de blog",
+ "info": "Les styles de cartes de blog s’appliquent également aux cartes de page dans les résultats de recherche. Pour modifier les styles de cartes, mettez à jour les paramètres de votre thème."
+ },
+ "article_show_date": {
+ "label": "Afficher la date"
+ },
+ "article_show_author": {
+ "label": "Afficher l'auteur"
+ },
+ "show_rating": {
+ "label": "Afficher la note du produit",
+ "info": "Pour afficher une note, ajoutez une application d'évaluation de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Multicolonne",
+ "settings": {
+ "title": {
+ "label": "Titre"
+ },
+ "image_width": {
+ "label": "Largeur d'image",
+ "options__1": {
+ "label": "Un tiers de largeur de la colonne"
+ },
+ "options__2": {
+ "label": "Demi-largeur de colonne"
+ },
+ "options__3": {
+ "label": "Largeur complète de colonne"
+ }
+ },
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "options__4": {
+ "label": "Cercle"
+ }
+ },
+ "column_alignment": {
+ "label": "Alignement de colonne",
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ }
+ },
+ "background_style": {
+ "label": "Arrière-plan secondaire",
+ "options__1": {
+ "label": "Aucune"
+ },
+ "options__2": {
+ "label": "Afficher comme arrière-plan de la colonne"
+ }
+ },
+ "button_label": {
+ "label": "Texte du bouton"
+ },
+ "button_link": {
+ "label": "Lien du bouton"
+ },
+ "swipe_on_mobile": {
+ "label": "Activer le balayage sur mobile"
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Colonne",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "title": {
+ "label": "Titre"
+ },
+ "text": {
+ "label": "Description"
+ },
+ "link_label": {
+ "label": "Étiquette de lien"
+ },
+ "link": {
+ "label": "Lien"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multicolonne"
+ }
+ },
+ "newsletter": {
+ "name": "Inscription à la liste de diffusion",
+ "settings": {
+ "full_width": {
+ "label": "Rendre la section pleine largeur"
+ },
+ "paragraph": {
+ "content": "Chaque abonnement aux e-mails entraîne la création d'un compte client. [En savoir plus](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titre",
+ "settings": {
+ "heading": {
+ "label": "Titre"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Sous-titre",
+ "settings": {
+ "paragraph": {
+ "label": "Description"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulaire électronique"
+ }
+ },
+ "presets": {
+ "name": "Inscription à la liste de diffusion"
+ }
+ },
+ "page": {
+ "name": "Page",
+ "settings": {
+ "page": {
+ "label": "Page"
+ }
+ },
+ "presets": {
+ "name": "Page"
+ }
+ },
+ "rich-text": {
+ "name": "Texte enrichi",
+ "settings": {
+ "full_width": {
+ "label": "Rendre la section pleine largeur"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Position du contenu sur ordinateur",
+ "info": "La position est automatiquement optimisée pour les mobiles."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titre",
+ "settings": {
+ "heading": {
+ "label": "Titre"
+ }
+ }
+ },
+ "text": {
+ "name": "Texte",
+ "settings": {
+ "text": {
+ "label": "Description"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Boutons",
+ "settings": {
+ "button_label_1": {
+ "label": "Texte du premier bouton",
+ "info": "Laissez le texte vide pour masquer le bouton."
+ },
+ "button_link_1": {
+ "label": "Lien du premier bouton"
+ },
+ "button_style_secondary_1": {
+ "label": "Utiliser le style de bouton en relief"
+ },
+ "button_label_2": {
+ "label": "Texte du deuxième bouton",
+ "info": "Laissez le texte vide pour masquer le bouton."
+ },
+ "button_link_2": {
+ "label": "Lien du deuxième bouton"
+ },
+ "button_style_secondary_2": {
+ "label": "Utiliser le style de bouton en relief"
+ }
+ }
+ },
+ "caption": {
+ "name": "Légende",
+ "settings": {
+ "text": {
+ "label": "Texte"
+ },
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Sous‑titre"
+ },
+ "options__2": {
+ "label": "Majuscule"
+ }
+ },
+ "caption_size": {
+ "label": "Taille du texte",
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Texte enrichi"
+ }
+ },
+ "apps": {
+ "name": "Applications",
+ "settings": {
+ "include_margins": {
+ "label": "Rendre les marges des sections identiques à celles du thème"
+ }
+ },
+ "presets": {
+ "name": "Applications"
+ }
+ },
+ "video": {
+ "name": "Vidéo",
+ "settings": {
+ "heading": {
+ "label": "En-tête"
+ },
+ "cover_image": {
+ "label": "Image de couverture"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Utilisez une URL YouTube ou Vimeo"
+ },
+ "description": {
+ "label": "Texte alternatif de la vidéo",
+ "info": "Décrivez la vidéo pour les clients utilisant des lecteurs d'écran. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Ajouter une marge intérieure à l'image",
+ "info": "Sélectionnez une marge intérieure pour éviter que votre image de couverture soit rognée."
+ },
+ "full_width": {
+ "label": "Rendre la section pleine largeur"
+ },
+ "video": {
+ "label": "Vidéo"
+ },
+ "enable_video_looping": {
+ "label": "Lire la vidéo en boucle"
+ },
+ "header__1": {
+ "content": "Vidéo hébergée par Shopify"
+ },
+ "header__2": {
+ "content": "Ou vidéo intégrée à partir d’une URL"
+ },
+ "header__3": {
+ "content": "Style"
+ },
+ "paragraph": {
+ "content": "Montre quand aucune vidéo hébergée par Shopify n’est sélectionnée."
+ }
+ },
+ "presets": {
+ "name": "Vidéo"
+ }
+ },
+ "featured-product": {
+ "name": "Produit en vedette",
+ "blocks": {
+ "text": {
+ "name": "Texte",
+ "settings": {
+ "text": {
+ "label": "Texte"
+ },
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous-titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titre"
+ },
+ "price": {
+ "name": "Prix"
+ },
+ "quantity_selector": {
+ "name": "Sélecteur de quantité"
+ },
+ "variant_picker": {
+ "name": "Sélecteur de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Menu déroulant"
+ },
+ "options__2": {
+ "label": "Pilules"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Boutons d'achat",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Afficher les boutons de paiement dynamique",
+ "info": "En utilisant les moyens de paiement disponibles sur votre boutique, les clients voient leur option préférée, comme PayPal ou Apple Pay. [En savoir plus](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Description"
+ },
+ "share": {
+ "name": "Partager",
+ "settings": {
+ "featured_image_info": {
+ "content": "Si vous incluez un lien dans des publications sur les médias sociaux, l'image vedette de la page sera affichée comme image d'aperçu. [En savoir plus](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Un titre et une description de la boutique sont inclus avec l'image d'aperçu. [En savoir plus](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Texte"
+ }
+ }
+ },
+ "rating": {
+ "name": "Évaluation de produit",
+ "settings": {
+ "paragraph": {
+ "content": "Pour afficher une évaluation, ajoutez une application d'évaluation de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Style de texte",
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous‑titre"
+ },
+ "options__3": {
+ "label": "Majuscule"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produit"
+ },
+ "secondary_background": {
+ "label": "Afficher l'arrière-plan secondaire"
+ },
+ "header": {
+ "content": "Support multimédia",
+ "info": "En savoir plus sur les [types de supports multimédias](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Activer la vidéo en boucle"
+ },
+ "hide_variants": {
+ "label": "Masquer les médias des variantes non sélectionnées sur le bureau"
+ },
+ "media_position": {
+ "label": "Position des supports multimédias sur ordinateur",
+ "info": "La position est automatiquement optimisée pour les mobiles.",
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Droite"
+ }
+ }
+ },
+ "presets": {
+ "name": "Produit en vedette"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Bannière d'inscription à la liste de diffusion",
+ "settings": {
+ "paragraph": {
+ "content": "Chaque abonnement par e-mail entraîne la création d'un compte client. [En savoir plus](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Image de fond"
+ },
+ "show_background_image": {
+ "label": "Afficher l'image de fond"
+ },
+ "show_text_box": {
+ "label": "Afficher le conteneur sur le bureau"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacité de la superposition d'images"
+ },
+ "show_text_below": {
+ "label": "Afficher le contenu sous l'image sur le mobile",
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 16:9. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Hauteur de la bannière",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "options__4": {
+ "label": "Grand"
+ },
+ "info": "Pour optimiser vos résultats, utilisez une image ayant un rapport d'aspect de 16:9. [En savoir plus](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "Au milieu à gauche"
+ },
+ "options__5": {
+ "label": "Centré au milieu"
+ },
+ "options__6": {
+ "label": "Au milieu à droite"
+ },
+ "options__7": {
+ "label": "En bas à gauche"
+ },
+ "options__8": {
+ "label": "En bas au centre"
+ },
+ "options__9": {
+ "label": "En bas à droite"
+ },
+ "options__1": {
+ "label": "En haut à gauche"
+ },
+ "options__2": {
+ "label": "En haut au centre"
+ },
+ "options__3": {
+ "label": "En haut à droite"
+ },
+ "label": "Position du contenu sur le bureau"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu du bureau"
+ },
+ "header": {
+ "content": "Mise en page mobile"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu sur mobile"
+ },
+ "color_scheme": {
+ "info": "Visible lorsque le conteneur est affiché."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "En-tête",
+ "settings": {
+ "heading": {
+ "label": "En-tête"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Paragraphe",
+ "settings": {
+ "paragraph": {
+ "label": "Description"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous-titre"
+ },
+ "label": "Style de texte"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulaire par e-mail"
+ }
+ },
+ "presets": {
+ "name": "Bannière d'inscription à la liste de diffusion"
+ }
+ },
+ "slideshow": {
+ "name": "Diaporama",
+ "settings": {
+ "layout": {
+ "label": "Mise en page",
+ "options__1": {
+ "label": "Pleine largeur"
+ },
+ "options__2": {
+ "label": "Grille"
+ }
+ },
+ "slide_height": {
+ "label": "Hauteur de diapositive",
+ "options__1": {
+ "label": "Adapter à la première image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "options__4": {
+ "label": "Grand"
+ }
+ },
+ "slider_visual": {
+ "label": "Style de pagination",
+ "options__1": {
+ "label": "Compteur"
+ },
+ "options__2": {
+ "label": "Points"
+ },
+ "options__3": {
+ "label": "Numéros"
+ }
+ },
+ "auto_rotate": {
+ "label": "Rotation automatique des diapositives"
+ },
+ "change_slides_speed": {
+ "label": "Changer de diapositive toutes les"
+ },
+ "show_text_below": {
+ "label": "Afficher le contenu sous les images sur le mobile"
+ },
+ "mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "accessibility": {
+ "content": "Accessibilité",
+ "label": "Description du diaporama",
+ "info": "Décrivez le diaporama pour les clients utilisant des lecteurs d'écran."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Diapositive",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "heading": {
+ "label": "En-tête"
+ },
+ "subheading": {
+ "label": "Sous-titre"
+ },
+ "button_label": {
+ "label": "Texte du bouton",
+ "info": "Laissez le texte vide pour masquer le bouton."
+ },
+ "link": {
+ "label": "Lien du bouton"
+ },
+ "secondary_style": {
+ "label": "Utiliser le style de bouton en relief"
+ },
+ "box_align": {
+ "label": "Position du contenu sur ordinateur",
+ "options__1": {
+ "label": "En haut à gauche"
+ },
+ "options__2": {
+ "label": "En haut au centre"
+ },
+ "options__3": {
+ "label": "En haut à droite"
+ },
+ "options__4": {
+ "label": "Centré à gauche"
+ },
+ "options__5": {
+ "label": "Centré au milieu"
+ },
+ "options__6": {
+ "label": "Au milieu à droite"
+ },
+ "options__7": {
+ "label": "En bas à gauche"
+ },
+ "options__8": {
+ "label": "En bas au centre"
+ },
+ "options__9": {
+ "label": "En bas à droite"
+ },
+ "info": "L'emplacement est optimisé pour le mobile automatiquement."
+ },
+ "show_text_box": {
+ "label": "Afficher le conteneur sur ordinateur"
+ },
+ "text_alignment": {
+ "label": "Alignement du contenu sur ordinateur",
+ "option_1": {
+ "label": "Gauche"
+ },
+ "option_2": {
+ "label": "Centre"
+ },
+ "option_3": {
+ "label": "Droite"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Opacité de la superposition d'images"
+ },
+ "text_alignment_mobile": {
+ "label": "Alignement du contenu sur mobile",
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Diaporama"
+ }
+ },
+ "collapsible_content": {
+ "name": "Contenu réductible",
+ "settings": {
+ "caption": {
+ "label": "Légende"
+ },
+ "heading": {
+ "label": "Titre"
+ },
+ "heading_alignment": {
+ "label": "Alignement des titres",
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ }
+ },
+ "layout": {
+ "label": "Mise en page",
+ "options__1": {
+ "label": "Aucun contenant"
+ },
+ "options__2": {
+ "label": "Conteneur de rangée"
+ },
+ "options__3": {
+ "label": "Conteneur de section"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Nuancier de couleurs du conteneur",
+ "info": "Visible lorsque la Mise en page est définie comme conteneur de Ligne ou de Section."
+ },
+ "open_first_collapsible_row": {
+ "label": "Ouvrir d'abord la rangée réductible"
+ },
+ "header": {
+ "content": "Mise en page des images"
+ },
+ "image": {
+ "label": "Image"
+ },
+ "image_ratio": {
+ "label": "Rapport d'image",
+ "options__1": {
+ "label": "Adapter à l'image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Grand"
+ }
+ },
+ "desktop_layout": {
+ "label": "Mise en page du bureau",
+ "options__1": {
+ "label": "L'image en premier"
+ },
+ "options__2": {
+ "label": "L'image en deuxième"
+ },
+ "info": "L'image apparaît toujours en premier sur un appareil mobile."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Rangée réductible",
+ "settings": {
+ "heading": {
+ "info": "Incluez un titre qui explique le contenu.",
+ "label": "Titre"
+ },
+ "row_content": {
+ "label": "Contenu de la rangée"
+ },
+ "page": {
+ "label": "Contenu de la rangée de la page"
+ },
+ "icon": {
+ "label": "Icône",
+ "options__1": {
+ "label": "Aucun"
+ },
+ "options__2": {
+ "label": "Pomme"
+ },
+ "options__3": {
+ "label": "Banane"
+ },
+ "options__4": {
+ "label": "Bouteille"
+ },
+ "options__5": {
+ "label": "Boîte"
+ },
+ "options__6": {
+ "label": "Carotte"
+ },
+ "options__7": {
+ "label": "Bulle de chat"
+ },
+ "options__8": {
+ "label": "Coche"
+ },
+ "options__9": {
+ "label": "Presse-papiers"
+ },
+ "options__10": {
+ "label": "Produits laitiers"
+ },
+ "options__11": {
+ "label": "Sans produits laitiers"
+ },
+ "options__12": {
+ "label": "Sèche-linge"
+ },
+ "options__13": {
+ "label": "Œil"
+ },
+ "options__14": {
+ "label": "Feu"
+ },
+ "options__15": {
+ "label": "Sans gluten"
+ },
+ "options__16": {
+ "label": "Cœur"
+ },
+ "options__17": {
+ "label": "Fer"
+ },
+ "options__18": {
+ "label": "Feuille"
+ },
+ "options__19": {
+ "label": "Cuir"
+ },
+ "options__20": {
+ "label": "Foudre"
+ },
+ "options__21": {
+ "label": "Rouge à lèvres"
+ },
+ "options__22": {
+ "label": "Cadenas"
+ },
+ "options__23": {
+ "label": "Épingle sur la carte"
+ },
+ "options__24": {
+ "label": "Sans noix"
+ },
+ "options__25": {
+ "label": "Pantalons"
+ },
+ "options__26": {
+ "label": "Empreinte"
+ },
+ "options__27": {
+ "label": "Poivre"
+ },
+ "options__28": {
+ "label": "Parfum"
+ },
+ "options__29": {
+ "label": "Avion"
+ },
+ "options__30": {
+ "label": "Plantes"
+ },
+ "options__31": {
+ "label": "Étiquette de prix"
+ },
+ "options__32": {
+ "label": "Point d'interrogation"
+ },
+ "options__33": {
+ "label": "Recyclage"
+ },
+ "options__34": {
+ "label": "Retour"
+ },
+ "options__35": {
+ "label": "Règle"
+ },
+ "options__36": {
+ "label": "Plat de service"
+ },
+ "options__37": {
+ "label": "Chemise"
+ },
+ "options__38": {
+ "label": "Chaussure"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Flocon de neige"
+ },
+ "options__41": {
+ "label": "Étoile"
+ },
+ "options__42": {
+ "label": "Chronomètre"
+ },
+ "options__43": {
+ "label": "Camion"
+ },
+ "options__44": {
+ "label": "Lavage"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Contenu réductible"
+ }
+ },
+ "main-account": {
+ "name": "Compte"
+ },
+ "main-activate-account": {
+ "name": "Activation du compte"
+ },
+ "main-addresses": {
+ "name": "Adresses"
+ },
+ "main-login": {
+ "name": "Se connecter"
+ },
+ "main-order": {
+ "name": "Commande"
+ },
+ "main-register": {
+ "name": "Inscription"
+ },
+ "main-reset-password": {
+ "name": "Réinitialisation du mot de passe"
+ },
+ "related-products": {
+ "name": "Produits associés",
+ "settings": {
+ "heading": {
+ "label": "En-tête"
+ },
+ "products_to_show": {
+ "label": "Quantité maximale de produits à afficher"
+ },
+ "columns_desktop": {
+ "label": "Nombre de colonnes sur ordinateur"
+ },
+ "paragraph__1": {
+ "content": "Les recommandations dynamiques utilisent les informations relatives aux commandes et aux produits pour changer et s’améliorer au fil du temps. [En savoir plus](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Carte de produit"
+ },
+ "image_ratio": {
+ "label": "Rapport d’aspect de l’image",
+ "options__1": {
+ "label": "Adapter à l’image"
+ },
+ "options__2": {
+ "label": "Portrait"
+ },
+ "options__3": {
+ "label": "Carré"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Afficher la deuxième image en survol"
+ },
+ "show_vendor": {
+ "label": "Afficher le fournisseur"
+ },
+ "show_rating": {
+ "label": "Afficher la note du produit",
+ "info": "Pour afficher une note, ajoutez une application d’évaluation des produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ },
+ "columns_mobile": {
+ "label": "Nombre de colonnes sur mobile",
+ "options__1": {
+ "label": "1 colonne"
+ },
+ "options__2": {
+ "label": "2 colonnes"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Multiligne",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Adapter à l’image"
+ },
+ "options__2": {
+ "label": "Petit"
+ },
+ "options__3": {
+ "label": "Moyen"
+ },
+ "options__4": {
+ "label": "Grand"
+ },
+ "label": "Hauteur de l’image"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ },
+ "label": "Largeur de l’image sur ordinateur",
+ "info": "L’image est automatiquement optimisée pour les mobiles."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Petit"
+ },
+ "options__2": {
+ "label": "Moyen"
+ },
+ "options__3": {
+ "label": "Grand"
+ },
+ "label": "Taille du titre"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corps"
+ },
+ "options__2": {
+ "label": "Sous‑titre"
+ },
+ "label": "Style de texte"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Bouton plein"
+ },
+ "options__2": {
+ "label": "Bouton en relief"
+ },
+ "label": "Style de bouton"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu sur ordinateur"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "En haut"
+ },
+ "options__2": {
+ "label": "Au milieu"
+ },
+ "options__3": {
+ "label": "En bas"
+ },
+ "label": "Position du contenu sur ordinateur",
+ "info": "La position est automatiquement optimisée pour les mobiles."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alterner depuis la gauche"
+ },
+ "options__2": {
+ "label": "Alterner depuis la droite"
+ },
+ "options__3": {
+ "label": "Aligner à gauche"
+ },
+ "options__4": {
+ "label": "Aligner à droite"
+ },
+ "label": "Placement de l’image sur ordinateur",
+ "info": "Le placement est automatiquement optimisé pour les mobiles."
+ },
+ "container_color_scheme": {
+ "label": "Nuancier de couleurs du conteneur"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Gauche"
+ },
+ "options__2": {
+ "label": "Centre"
+ },
+ "options__3": {
+ "label": "Droite"
+ },
+ "label": "Alignement du contenu sur mobile"
+ },
+ "header_mobile": {
+ "content": "Mise en page sur mobile"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Rangé",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "caption": {
+ "label": "Légende"
+ },
+ "heading": {
+ "label": "En-tête"
+ },
+ "text": {
+ "label": "Texte"
+ },
+ "button_label": {
+ "label": "Texte du bouton"
+ },
+ "button_link": {
+ "label": "Lien du bouton"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multiligne"
+ }
+ },
+ "quick-order-list": {
+ "name": "Liste rapide des commandes",
+ "settings": {
+ "show_image": {
+ "label": "Afficher les images"
+ },
+ "show_sku": {
+ "label": "Afficher les SKU"
+ }
+ },
+ "presets": {
+ "name": "Liste rapide des commandes"
+ }
+ }
+ }
+}
diff --git a/locales/hr-HR.json b/locales/hr-HR.json
new file mode 100644
index 0000000..848d266
--- /dev/null
+++ b/locales/hr-HR.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Uđite u trgovinu pomoću lozinke:",
+ "login_password_button": "Uđite pomoću lozinke",
+ "login_form_password_label": "Lozinka",
+ "login_form_password_placeholder": "Vaša lozinka",
+ "login_form_error": "Pogrešna lozinka!",
+ "login_form_submit": "Unesi",
+ "admin_link_html": "Jeste li vlasnik/vlasnica trgovine? Prijavite se ovdje ",
+ "powered_by_shopify_html": "Ovu trgovinu pokreće {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Podijeli na Facebooku",
+ "share_on_twitter": "Tweetaj na Twitteru",
+ "share_on_pinterest": "Prikvači na Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Nastavite s kupovinom",
+ "pagination": {
+ "label": "Numeriranje stranica",
+ "page": "Stranica {{ number }}",
+ "next": "Sljedeća stranica",
+ "previous": "Prethodna stranica"
+ },
+ "search": {
+ "search": "Traži",
+ "reset": "Izbriši pojam za pretraživanje"
+ },
+ "cart": {
+ "view": "Prikaži košaricu ({{ count }})",
+ "item_added": "Artikl je dodan u vašu košaricu",
+ "view_empty_cart": "Prikaži košaricu"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopiraj poveznicu",
+ "share_url": "Poveznica",
+ "success_message": "Poveznica je kopirana u međuspremnik",
+ "close": "Zatvori dijeljenje"
+ },
+ "slider": {
+ "of": "od",
+ "next_slide": "Klizno pomakni udesno",
+ "previous_slide": "Klizno pomakni ulijevo",
+ "name": "Kliznik"
+ }
+ },
+ "newsletter": {
+ "label": "Adresa e-pošte",
+ "success": "Hvala što ste se pretplatili",
+ "button_label": "Pretplatite se"
+ },
+ "accessibility": {
+ "skip_to_text": "Preskoči na sadržaj",
+ "close": "Zatvori",
+ "unit_price_separator": "po",
+ "vendor": "Prodavač:",
+ "error": "Pogreška",
+ "refresh_page": "Odabirom rezultata osvježava se cijela stranica.",
+ "loading": "Učitavanje...",
+ "link_messages": {
+ "new_window": "Otvara se u novom prozoru.",
+ "external": "Otvara vanjsko web-mjesto."
+ },
+ "skip_to_product_info": "Preskoči do informacija o proizvodu",
+ "total_reviews": "ukupan broj pregleda",
+ "star_reviews_info": "{{ rating_value }} od sljedećeg broja zvjezdica: {{ rating_max }}",
+ "collapsible_content_title": "Sadržaj koji se može sažeti",
+ "complementary_products": "Komplementarni proizvodi"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Pročitajte više: {{ title }}",
+ "moderated": "Napominjemo da komentari moraju biti odobreni prije objave.",
+ "comment_form_title": "Ostavite komentar",
+ "name": "Ime",
+ "email": "Adresa e-pošte",
+ "message": "Komentar",
+ "post": "Objavi komentar",
+ "back_to_blog": "Natrag na blog",
+ "share": "Podijeli ovaj članak",
+ "success": "Vaš je komentar uspješno objavljen! Hvala!",
+ "success_moderated": "Vaš je komentar uspješno objavljen. Uskoro ćemo ga objaviti jer se naš blog moderira.",
+ "comments": {
+ "one": "{{ count }} komentar",
+ "other": "{{ count }} komentara",
+ "few": "{{ count }} komentara"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Primjer naziva proizvoda",
+ "collection_title": "Naziv vaše kolekcije"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Dodaj u košaricu",
+ "description": "Opis",
+ "on_sale": "Rasprodaja",
+ "product_variants": "Varijante proizvoda",
+ "share": "Podijelite ovaj proizvod",
+ "sold_out": "Rasprodano",
+ "unavailable": "Nedostupno",
+ "vendor": "Prodavač",
+ "video_exit_message": "Za {{ title }} otvara se videozapis preko čitavog zaslona u istom prozoru.",
+ "xr_button": "Pogledajte u svojem prostoru",
+ "xr_button_label": "Značajka Pogledajte u svojem prostoru učitava artikl u prozor proširene stvarnosti",
+ "quantity": {
+ "label": "Količina",
+ "input_label": "Količina proizvoda {{ product }}",
+ "increase": "Povećaj količinu proizvoda {{ product }}",
+ "decrease": "Smanji količinu proizvoda {{ product }}",
+ "minimum_of": "Minimalno {{ quantity }}",
+ "maximum_of": "Maksimalno {{ quantity }}",
+ "multiples_of": "Povećanje od {{ quantity }}",
+ "in_cart_html": "{{ quantity }} u košarici",
+ "note": "Prikaži pravila o količini"
+ },
+ "price": {
+ "from_price_html": "Od {{ price }}",
+ "regular_price": "Redovna cijena",
+ "sale_price": "Prodajna cijena",
+ "unit_price": "Jedinična cijena"
+ },
+ "pickup_availability": {
+ "view_store_info": "Prikaži informacije o trgovini",
+ "check_other_stores": "Provjeri dostupnost u drugim trgovinama",
+ "pick_up_available": "Dostupno je preuzimanje",
+ "pick_up_available_at_html": "Preuzimanje je dostupno na lokaciji {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Preuzimanje trenutačno nije dostupno na lokaciji {{ location_name }} ",
+ "unavailable": "Učitavanje dostupnosti preuzimanje nije moguće",
+ "refresh": "Osvježi"
+ },
+ "media": {
+ "open_media": "Otvori medij {{ index }} u dijaloškom okviru",
+ "play_model": "Pokreni 3D preglednik",
+ "play_video": "Reproduciraj videozapis",
+ "gallery_viewer": "Preglednik galerije",
+ "load_image": "Učitaj sliku {{ index }} za prikaz u galeriji",
+ "load_model": "Učitaj 3D model {{ index }} za prikaz u galeriji",
+ "load_video": "Reproduciraj videozapis {{ index }} u galerijskom prikazu",
+ "image_available": "Slika {{ index }} sada je dostupna za prikaz u galeriji"
+ },
+ "view_full_details": "Prikaži sve pojedinosti",
+ "include_taxes": "Porez je uključen.",
+ "shipping_policy_html": "Poštarina se obračunava prilikom završetka kupnje.",
+ "choose_options": "Odaberite opcije",
+ "choose_product_options": "Odaberite željene opcije za {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – nedostupno",
+ "variant_sold_out_or_unavailable": "Model je prodan ili nedostupan",
+ "inventory_in_stock": "Dostupno",
+ "inventory_in_stock_show_count": "Br. dostupnih komada: {{ quantity }}",
+ "inventory_low_stock": "Preostalo malo komada",
+ "inventory_low_stock_show_count": "Preostalo malo komada: samo {{ quantity }}",
+ "inventory_out_of_stock": "Nema na zalihama",
+ "inventory_out_of_stock_continue_selling": "Dostupno",
+ "sku": "Inventarna šifra proizvoda (SKU)",
+ "volume_pricing": {
+ "title": "Popust na količinu",
+ "note": "Dostupan je popust na količinu",
+ "minimum": "Više od {{ quantity }}",
+ "price_at_each": "po cijeni od {{ price }}/ea",
+ "price_range": "{{ minimum }} – {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galerija medijskih zapisa"
+ },
+ "facets": {
+ "apply": "Primijeni",
+ "clear": "Očisti",
+ "clear_all": "Ukloni sve",
+ "from": "Od",
+ "filter_and_sort": "Filtriraj i razvrstaj",
+ "filter_by_label": "Filtriraj:",
+ "filter_button": "Filtriraj",
+ "max_price": "Najveća cijena iznosi {{ price }}",
+ "reset": "Resetiraj",
+ "sort_button": "Razvrstaj",
+ "sort_by_label": "Razvrstaj prema:",
+ "to": "Do",
+ "filters_selected": {
+ "one": "Odabrano ih je ovoliko: {{ count }}",
+ "other": "Odabrano ih je ovoliko: {{ count }}",
+ "few": "Odabrano ih je ovoliko: {{ count }}"
+ },
+ "product_count": {
+ "one": "{{ product_count }} od {{ count }} proizvoda",
+ "other": "{{ product_count }} od {{ count }} proizvoda",
+ "few": "{{ product_count }} od {{ count }} proizvoda"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} proizvod",
+ "other": "Broj proizvoda: {{ count }}",
+ "few": "Broj proizvoda: {{ count }}"
+ },
+ "clear_filter": "Ukloni filtar",
+ "filter_selected_accessibility": "{{ type }} (broj odabranih filtra: {{ count }})",
+ "show_more": "Prikaži više",
+ "show_less": "Prikaži manje",
+ "filter_and_operator_subtitle": "Uskladi sve"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nije pronađen nijedan rezultat za „{{ terms }}”. Provjerite pravopis ili upotrijebite drugu riječ ili izraz.",
+ "title": "Rezultati pretraživanja",
+ "results_with_count": {
+ "one": "{{ count }} rezultat",
+ "other": "Broj rezultata: {{ count }}",
+ "few": "Broj rezultata: {{ count }}"
+ },
+ "page": "Stranica",
+ "products": "Proizvodi",
+ "search_for": "Tražite „{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "Pronađen je {{ count }} rezultat za „{{ terms }}”",
+ "other": "Pronađeno je ovoliko rezultata: {{ count }} za „{{ terms }}”",
+ "few": "Pronađeno je ovoliko rezultata: {{ count }} za „{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} stranica",
+ "other": "Broj stranica: {{ count }}",
+ "few": "Broj stranica: {{ count }}"
+ },
+ "results_suggestions_with_count": {
+ "one": "Broj prijedloga: {{ count }}",
+ "other": "Broj prijedloga: {{ count }}",
+ "few": "Broj prijedloga: {{ count }}"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} proizvod",
+ "other": "Broj proizvoda: {{ count }}",
+ "few": "Broj proizvoda: {{ count }}"
+ },
+ "suggestions": "Prijedlozi",
+ "pages": "Stranice"
+ },
+ "cart": {
+ "cart": "Košarica"
+ },
+ "contact": {
+ "form": {
+ "name": "Ime",
+ "email": "Adresa e-pošte",
+ "phone": "Broj telefona",
+ "comment": "Komentar",
+ "send": "Pošalji",
+ "post_success": "Hvala vam na javljanju. Odgovorit ćemo vam u najkraćem mogućem roku.",
+ "error_heading": "Prilagodite sljedeće:",
+ "title": "Obrazac za kontakt"
+ }
+ },
+ "404": {
+ "title": "Stranica nije pronađena",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Objava",
+ "menu": "Izbornik",
+ "cart_count": {
+ "one": "{{ count }} artikl",
+ "other": "Broj artikala: {{ count }}",
+ "few": "Broj artikala: {{ count }}"
+ }
+ },
+ "cart": {
+ "title": "Vaša košarica",
+ "caption": "Artikli u kokšarici",
+ "remove_title": "Ukloni {{ title }}",
+ "note": "Ostale posebne upute",
+ "checkout": "Završi kupnju",
+ "empty": "Vaša je košarica prazna",
+ "cart_error": "Došlo je do pogreške prilikom ažuriranja košarice. Pokušajte ponovno.",
+ "cart_quantity_error_html": "U svoju košaricu možete dodati {{ quantity }} kom ovog artikla.",
+ "taxes_and_shipping_policy_at_checkout_html": "Porezi, popusti i poštarina obračunavaju se prilikom plaćanja",
+ "taxes_included_but_shipping_at_checkout": "Porez je uključen u cijenu, a poštarina i popusti obračunavaju se prilikom plaćanja",
+ "taxes_included_and_shipping_policy_html": "Porez je uključen. Poštarina i popusti obračunavaju se prilikom plaćanja.",
+ "taxes_and_shipping_at_checkout": "Porezi, popusti i poštarina obračunavaju se prilikom plaćanja",
+ "update": "Ažuriraj",
+ "headings": {
+ "product": "Proizvod",
+ "price": "Cijena",
+ "total": "Ukupno",
+ "quantity": "Količina",
+ "image": "Slika proizvoda"
+ },
+ "login": {
+ "title": "Imate li račun?",
+ "paragraph_html": "Prijavite se za bržu provjeru."
+ },
+ "estimated_total": "Procijenjen ukupni iznos",
+ "new_estimated_total": "Novi procijenjeni ukupni iznos"
+ },
+ "footer": {
+ "payment": "Načini plaćanja"
+ },
+ "featured_blog": {
+ "view_all": "Prikaži sve",
+ "onboarding_title": "Objava na blogu",
+ "onboarding_content": "Omogućite kupcima sažeti prikaz vaše objave na blogu"
+ },
+ "featured_collection": {
+ "view_all": "Prikaži sve",
+ "view_all_label": "Prikaži sve proizvode iz kolekcije {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Prikaži sve"
+ },
+ "collection_template": {
+ "title": "Kolekcija",
+ "empty": "Nije pronađen nijedan proizvod",
+ "use_fewer_filters_html": "Upotrijebi manje filtara ili ukloni sve "
+ },
+ "video": {
+ "load_video": "Učitaj videozapis: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Učitaj slajd",
+ "previous_slideshow": "Prethodni slajd",
+ "next_slideshow": "Sljedeći slajd",
+ "pause_slideshow": "Pauziraj prezentaciju",
+ "play_slideshow": "Reproduciraj prezentaciju",
+ "carousel": "Vrtuljak",
+ "slide": "Slajd"
+ },
+ "page": {
+ "title": "Naslov stranice"
+ },
+ "announcements": {
+ "previous_announcement": "Prethodna objava",
+ "next_announcement": "Sljedeća objava",
+ "carousel": "Vrtuljak",
+ "announcement": "Objava",
+ "announcement_bar": "Traka za objave"
+ },
+ "quick_order_list": {
+ "product_total": "Podzbroj proizvoda",
+ "view_cart": "Prikaži košaricu",
+ "each": "Jedinična cijena: {{ money }}",
+ "product": "Proizvod",
+ "variant": "Varijanta",
+ "variant_total": "Ukupno za varijantu",
+ "items_added": {
+ "one": "Broj dodanih artikala: {{ quantity }}",
+ "other": "Broj dodanih artikala: {{ quantity }}",
+ "few": "Broj dodanih artikala: {{ quantity }}"
+ },
+ "items_removed": {
+ "one": "Broj uklonjenih artikala: {{ quantity }}",
+ "other": "Broj uklonjenih artikala: {{ quantity }}",
+ "few": "Broj uklonjenih artikala: {{ quantity }}"
+ },
+ "product_variants": "Varijante proizvoda",
+ "total_items": "Ukupni broj artikala",
+ "remove_all_items_confirmation": "Želite li ukloniti sve artikle ({{ quantity }}) iz svoje košarice?",
+ "remove_all": "Ukloni sve",
+ "cancel": "Odustani"
+ }
+ },
+ "localization": {
+ "country_label": "Država/regija",
+ "language_label": "Jezik",
+ "update_language": "Ažuriraj jezik",
+ "update_country": "Ažuriraj državu/regiju"
+ },
+ "customer": {
+ "account": {
+ "title": "Račun",
+ "details": "Pojedinosti računa",
+ "view_addresses": "Prikaži adrese",
+ "return": "Povratak na pojedinosti o računu"
+ },
+ "account_fallback": "Račun",
+ "log_in": "Prijava",
+ "log_out": "Odjava",
+ "activate_account": {
+ "title": "Aktiviraj račun",
+ "subtext": "Stvorite svoju lozinku kako biste aktivirali račun.",
+ "password": "Lozinka",
+ "password_confirm": "Potvrdi lozinku",
+ "submit": "Aktiviraj račun",
+ "cancel": "Odbij pozivnicu"
+ },
+ "addresses": {
+ "title": "Adrese",
+ "default": "Zadano",
+ "add_new": "Dodaj novu adresu",
+ "edit_address": "Uredi adresu",
+ "first_name": "Ime",
+ "last_name": "Prezime",
+ "company": "Tvrtka",
+ "address1": "Adresa 1",
+ "address2": "Adresa 2",
+ "city": "Grad",
+ "country": "Država/regija",
+ "province": "Pokrajina",
+ "zip": "Poštanski broj",
+ "phone": "Telefon",
+ "set_default": "Postavi kao zadanu adresu",
+ "add": "Dodaj adresu",
+ "update": "Ažuriraj adresu",
+ "cancel": "Odustani",
+ "edit": "Uredi",
+ "delete": "Izbriši",
+ "delete_confirm": "Jeste li sigurni da želite izbrisati ovu adresu?"
+ },
+ "login_page": {
+ "cancel": "Odustani",
+ "create_account": "Izradi račun",
+ "email": "Adresa e-pošte",
+ "forgot_password": "Zaboravili ste lozinku?",
+ "guest_continue": "Nastavi",
+ "guest_title": "Nastavi kao gost",
+ "password": "Lozinka",
+ "title": "Prijava",
+ "sign_in": "Registracija",
+ "submit": "Pošalji"
+ },
+ "orders": {
+ "title": "Povijest narudžbe",
+ "order_number": "Narudžba",
+ "order_number_link": "Broj narudžbe {{ number }}",
+ "date": "Datum",
+ "payment_status": "Status plaćanja",
+ "fulfillment_status": "Status izvršenja",
+ "total": "Ukupno",
+ "none": "Još niste ništa naručili."
+ },
+ "recover_password": {
+ "title": "Ponovno postavljanje lozinke",
+ "subtext": "Poslat ćemo vam poruku e-pošte za ponovno postavljanje lozinke",
+ "success": "Poslali smo vam poruku e-pošte s poveznicom za ažuriranje lozinke."
+ },
+ "register": {
+ "title": "Izradi račun",
+ "first_name": "Ime",
+ "last_name": "Prezime",
+ "email": "Adresa e-pošte",
+ "password": "Lozinka",
+ "submit": "Stvori"
+ },
+ "reset_password": {
+ "title": "Ponovno postavljanje lozinke računa",
+ "subtext": "Unesite novu lozinku",
+ "password": "Lozinka",
+ "password_confirm": "Potvrdi lozinku",
+ "submit": "Ponovno postavi lozinku"
+ },
+ "order": {
+ "title": "Narudžba {{ name }}",
+ "date_html": "Naručeno {{ date }}",
+ "cancelled_html": "Narudžba otkazana {{ date }}",
+ "cancelled_reason": "Razlog: {{ reason }}",
+ "billing_address": "Adresa za naplatu",
+ "payment_status": "Status plaćanja",
+ "shipping_address": "Adresa za dostavu",
+ "fulfillment_status": "Status izvršenja",
+ "discount": "Popust",
+ "shipping": "Dostava",
+ "tax": "Porez",
+ "product": "Proizvod",
+ "sku": "Inventarna šifra proizvoda (SKU)",
+ "price": "Cijena",
+ "quantity": "Količina",
+ "total": "Ukupno",
+ "fulfilled_at_html": "Izvršeno {{ date }}",
+ "track_shipment": "Praćenje pošiljke",
+ "tracking_url": "Poveznica za praćenje",
+ "tracking_company": "Dostavna služba",
+ "tracking_number": "Broj za praćenje",
+ "subtotal": "Podzbroj",
+ "total_duties": "Carina",
+ "total_refunded": "Povrat je izvršen"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Poklanjamo vam darovnu karticu u vrijednosti od {{ value }} za trgovinu {{ shop }}!",
+ "subtext": "Vaša poklon-kartica",
+ "gift_card_code": "Kod poklon-kartice",
+ "shop_link": "Posjeti internetsku trgovinu",
+ "add_to_apple_wallet": "Dodaj u Apple Wallet",
+ "qr_image_alt": "QR kod – skenirajte ga kako biste iskoristili poklon-karticu",
+ "copy_code": "Kopiraj kod poklon-kartice",
+ "expired": "Isteklo",
+ "copy_code_success": "Kod je uspješno kopiran",
+ "how_to_use_gift_card": "Upotrijebite kod poklon-kartice na internetu ili QR kod u trgovini",
+ "expiration_date": "Istječe {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Želim ovo poslati kao poklon",
+ "email_label": "Adresa e-pošte primatelja",
+ "email": "Adresa e-pošte",
+ "name_label": "Ime primatelja (nije obavezno)",
+ "name": "Ime",
+ "message_label": "Poruka (nije obavezno)",
+ "message": "Poruka",
+ "max_characters": "Najveći dopušteni broj znakova: {{ max_chars }}",
+ "email_label_optional_for_no_js_behavior": "Adresa e-pošte primatelja (nije obavezno)",
+ "send_on": "YYYY-MM-DD",
+ "send_on_label": "Datum slanja (neobavezno)",
+ "expanded": "Obrazac primatelja poklon-kartice je povećan",
+ "collapsed": "Obrazac primatelja poklon-kartice je smanjen"
+ }
+ }
+}
diff --git a/locales/hu.json b/locales/hu.json
new file mode 100644
index 0000000..11998f2
--- /dev/null
+++ b/locales/hu.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Belépés a webáruházba jelszóval:",
+ "login_password_button": "Belépés jelszóval",
+ "login_form_password_label": "Jelszó",
+ "login_form_password_placeholder": "Saját jelszó",
+ "login_form_error": "Téves jelszót írtál be.",
+ "login_form_submit": "Belépés",
+ "admin_link_html": "Te vagy a webáruház tulajdonosa? Itt tudsz bejelentkezni ",
+ "powered_by_shopify_html": "A bolt szolgáltatója a {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Megosztás a Facebookon",
+ "share_on_twitter": "Közzététel a Twitteren",
+ "share_on_pinterest": "Közzététel a Pinteresten"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Vásárlás folytatása",
+ "pagination": {
+ "label": "Tördelés",
+ "page": "{{ number }}. oldal",
+ "next": "Következő oldal",
+ "previous": "Előző oldal"
+ },
+ "search": {
+ "search": "Keresés",
+ "reset": "Keresőszó törlése"
+ },
+ "cart": {
+ "view": "Kosár megtekintése ({{ count }})",
+ "item_added": "Betettük a terméket a kosárba",
+ "view_empty_cart": "Kosár megtekintése"
+ },
+ "share": {
+ "copy_to_clipboard": "Hivatkozás másolása",
+ "share_url": "Hivatkozás",
+ "success_message": "A vágólapra másoltuk a hivatkozást.",
+ "close": "Megosztás befejezése"
+ },
+ "slider": {
+ "of": "/",
+ "next_slide": "Következő dia",
+ "previous_slide": "Előző dia",
+ "name": "Csúszka"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail-cím",
+ "success": "Köszönjük a feliratkozást",
+ "button_label": "Feliratkozás"
+ },
+ "accessibility": {
+ "skip_to_text": "Ugrás a tartalomhoz",
+ "close": "Bezárás",
+ "unit_price_separator": "/",
+ "vendor": "Forgalmazó:",
+ "error": "Hiba",
+ "refresh_page": "Ha kiválasztasz egy lehetőséget, a teljes oldal frissül.",
+ "link_messages": {
+ "new_window": "Tartalom megnyitása új ablakban.",
+ "external": "Külső webhelyet nyit meg."
+ },
+ "loading": "Betöltés folyamatban…",
+ "skip_to_product_info": "Kihagyás, és ugrás a termékadatokra",
+ "total_reviews": "összes értékelés",
+ "star_reviews_info": "{{ rating_max }}/{{ rating_value }} csillag",
+ "collapsible_content_title": "Összecsukható tartalom",
+ "complementary_products": "Kiegészítő termékek"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Továbbiak: {{ title }}",
+ "comments": {
+ "one": "{{ count }} hozzászólás",
+ "other": "{{ count }} hozzászólás"
+ },
+ "moderated": "Felhívjuk a figyelmedet, hogy a hozzászólásokat jóvá kell hagyni a közzétételük előtt.",
+ "comment_form_title": "Hozzászólás írása",
+ "name": "Név",
+ "email": "E-mail-cím",
+ "message": "Hozzászólás",
+ "post": "Hozzászólás elküldése",
+ "back_to_blog": "Vissza a blogba",
+ "share": "Cikk megosztása",
+ "success": "Elküldtük a hozzászólásodat. Köszönjük!",
+ "success_moderated": "Elküldtük a hozzászólásodat. Blogunkat moderáljuk, ezért egy kis idő múlva tesszük csak közzé a hozzászólást."
+ }
+ },
+ "onboarding": {
+ "product_title": "Példa terméknévre",
+ "collection_title": "Kollekció neve"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Hozzáadás a kosárhoz",
+ "description": "Leírás",
+ "on_sale": "Akciós",
+ "product_variants": "Termékváltozatok",
+ "quantity": {
+ "label": "Mennyiség",
+ "input_label": "{{ product }} mennyisége",
+ "increase": "{{ product }} mennyiségének növelése",
+ "decrease": "{{ product }} mennyiségének csökkentése",
+ "minimum_of": "Minimum: {{ quantity }}",
+ "maximum_of": "Maximum: {{ quantity }}",
+ "multiples_of": "Növekvés: {{ quantity }}",
+ "in_cart_html": "Kosárban lévő mennyiség: {{ quantity }} ",
+ "note": "Mennyiségi szabályok megtekintése"
+ },
+ "price": {
+ "from_price_html": "Legalacsonyabb ár: {{ price }}",
+ "regular_price": "Normál ár",
+ "sale_price": "Akciós ár",
+ "unit_price": "Egységár"
+ },
+ "share": "A termék megosztása",
+ "sold_out": "Elfogyott",
+ "unavailable": "Nincs készleten",
+ "vendor": "Forgalmazó",
+ "video_exit_message": "{{ title }}: a teljes képernyős videó ugyanabban az ablakban nyílik meg.",
+ "xr_button": "Megtekintés a saját környezetben",
+ "xr_button_label": "Megtekintés a saját környezetben: kiterjesztettvalóság-alapú ablakban töltődik be az elem",
+ "pickup_availability": {
+ "view_store_info": "Webáruház adatai",
+ "check_other_stores": "Kapható más webáruházakban?",
+ "pick_up_available": "Személyesen átvehető",
+ "pick_up_available_at_html": "Személyesen átvehető itt: {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Személyesen egyelőre nem vehető át itt: {{ location_name }} ",
+ "unavailable": "Nem sikerült betölteni az átvehetőségi adatokat",
+ "refresh": "Frissítés"
+ },
+ "media": {
+ "open_media": "{{ index }}. médiafájl megnyitása a modális párbeszédpanelen",
+ "play_model": "Lejátszás a 3D-megjelenítőben",
+ "play_video": "Videó lejátszása",
+ "gallery_viewer": "Galériamegjelenítő",
+ "load_image": "{{ index }}. kép betöltése galérianézetben",
+ "load_model": "{{ index }}. térhatású modell betöltése galérianézetben",
+ "load_video": "{{ index }}. videó lejátszása galérianézetben",
+ "image_available": "{{ index }}. kép betöltve galérianézetben"
+ },
+ "view_full_details": "Minden részlet megtekintése",
+ "include_taxes": "Tartalmazza az adót.",
+ "shipping_policy_html": "A szállítási költséget a megrendeléskor számítjuk ki.",
+ "choose_options": "Válassz a lehetőségek közül",
+ "choose_product_options": "Termékváltozatok – {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – Nincs készleten",
+ "variant_sold_out_or_unavailable": "A változat elfogyott vagy nincs készleten",
+ "inventory_in_stock": "Raktáron",
+ "inventory_in_stock_show_count": "{{ quantity }} raktáron",
+ "inventory_low_stock": "Alacsony készlet",
+ "inventory_low_stock_show_count": "Alacsony készlet: csak {{ quantity }} van raktáron",
+ "inventory_out_of_stock": "Nincs készleten",
+ "inventory_out_of_stock_continue_selling": "Raktáron",
+ "sku": "Termékváltozat",
+ "volume_pricing": {
+ "title": "Mennyiségi árszabás",
+ "note": "Mennyiségi árszabás rendelkezésre áll",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/db",
+ "price_range": "{{ minimum }} – {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Médiatár"
+ },
+ "facets": {
+ "apply": "Alkalmaz",
+ "clear": "Törlés",
+ "clear_all": "Az összes eltávolítása",
+ "from": "Ettől:",
+ "filter_and_sort": "Szűrés és rendezés",
+ "filter_by_label": "Szűrés:",
+ "filter_button": "Szűrés",
+ "filters_selected": {
+ "one": "{{ count }} elem kijelölve",
+ "other": "{{ count }} elem kijelölve"
+ },
+ "max_price": "A legmagasabb ár {{ price }}",
+ "product_count": {
+ "one": "{{ count }}/{{ product_count }} termék",
+ "other": "{{ count }}/{{ product_count }} termék"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} termék",
+ "other": "{{ count }} termék"
+ },
+ "reset": "Alaphelyzet",
+ "sort_button": "Rendezés",
+ "sort_by_label": "Rendezési szempont:",
+ "to": "Eddig:",
+ "clear_filter": "Szűrő eltávolítása",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} szűrő kiválasztva)",
+ "show_more": "Több részlet",
+ "show_less": "Kevesebb részlet",
+ "filter_and_operator_subtitle": "Az összesnek megfelelő"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nincs találat erre: {{ terms }}. Ellenőrizd a helyesírást, vagy írj be egy másik szót vagy kifejezést.",
+ "results_with_count": {
+ "one": "{{ count }} találat",
+ "other": "{{ count }} találat"
+ },
+ "title": "Találatok",
+ "page": "Oldal",
+ "products": "Termékek",
+ "search_for": "Keresés erre: {{ terms }}",
+ "results_with_count_and_term": {
+ "one": "{{ count }} találat erre: {{ terms }}",
+ "other": "{{ count }} találat erre: {{ terms }}"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} oldal",
+ "other": "{{ count }} oldal"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} javaslat",
+ "other": "{{ count }} javaslat"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} termék",
+ "other": "{{ count }} termék"
+ },
+ "suggestions": "Javaslatok",
+ "pages": "Oldal"
+ },
+ "cart": {
+ "cart": "Kosár"
+ },
+ "contact": {
+ "form": {
+ "name": "Név",
+ "email": "E-mail-cím",
+ "phone": "Telefonszám",
+ "comment": "Hozzászólás",
+ "send": "Küldés",
+ "post_success": "Köszönjük, hogy írtál nekünk. A lehető legrövidebb időn belül válaszolni fogunk.",
+ "error_heading": "Kérjük, helyesbítsd a következőket:",
+ "title": "Kapcsolattartói űrlap"
+ }
+ },
+ "404": {
+ "title": "Nem találjuk az oldalt",
+ "subtext": "404-es hiba történt."
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Közlemény",
+ "menu": "Menü",
+ "cart_count": {
+ "one": "{{ count }} elem",
+ "other": "{{ count }} elem"
+ }
+ },
+ "cart": {
+ "title": "Kosár",
+ "caption": "Kosárban lévő termékek",
+ "remove_title": "{{ title }} eltávolítása",
+ "note": "Megjegyzések a rendeléssel kapcsolatban",
+ "checkout": "Megrendelés",
+ "empty": "A kosarad üres",
+ "cart_error": "Hiba történt a kosár frissítése közben. Próbálkozz újra.",
+ "cart_quantity_error_html": "Ebből a termékből legfeljebb {{ quantity }} darabot rakhatsz a kosárba.",
+ "taxes_and_shipping_policy_at_checkout_html": "Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki",
+ "taxes_included_but_shipping_at_checkout": "Tartalmazza az adót. A szállítási költséget és a kedvezményeket a megrendeléskor számítjuk ki",
+ "taxes_included_and_shipping_policy_html": "Tartalmazza az adót. A szállítási költséget és a kedvezményeket a megrendeléskor számítjuk ki.",
+ "taxes_and_shipping_at_checkout": "Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki",
+ "headings": {
+ "product": "Termék",
+ "price": "Ár",
+ "total": "Végösszeg",
+ "quantity": "Mennyiség",
+ "image": "Termék képe"
+ },
+ "update": "Frissítés",
+ "login": {
+ "title": "Már van fiókod?",
+ "paragraph_html": "Jelentkezz be a gyorsabb fizetéshez."
+ },
+ "estimated_total": "Becsült végösszeg",
+ "new_estimated_total": "Új becsült végösszeg"
+ },
+ "footer": {
+ "payment": "Fizetési módok"
+ },
+ "featured_blog": {
+ "view_all": "Az összes megtekintése",
+ "onboarding_title": "Blogbejegyzés",
+ "onboarding_content": "Itt foglalhatod össze a vásárlóidnak, miről szól a blogbejegyzésed"
+ },
+ "featured_collection": {
+ "view_all": "Az összes megtekintése",
+ "view_all_label": "Az ebben a kollekcióban szereplő összes termék megtekintése: {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Az összes megtekintése"
+ },
+ "collection_template": {
+ "title": "Kollekció",
+ "empty": "Nincs találat",
+ "use_fewer_filters_html": "Használj kevesebb szűrőt, vagy távolítsd el az összeset ."
+ },
+ "video": {
+ "load_video": "Videó betöltése: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Dia betöltése",
+ "previous_slideshow": "Előző dia",
+ "next_slideshow": "Következő dia",
+ "pause_slideshow": "Diavetítés megállítása",
+ "play_slideshow": "Diavetítés indítása",
+ "carousel": "Forgótár",
+ "slide": "Dia"
+ },
+ "page": {
+ "title": "Oldal címe"
+ },
+ "announcements": {
+ "previous_announcement": "Előző közlemény",
+ "next_announcement": "Következő közlemény",
+ "carousel": "Forgótár",
+ "announcement": "Közlemény",
+ "announcement_bar": "Közleménysáv"
+ },
+ "quick_order_list": {
+ "product_total": "Termék részösszege",
+ "view_cart": "Kosár megtekintése",
+ "each": "{{ money }}/db",
+ "product": "Termék",
+ "variant": "Változat",
+ "variant_total": "Változat összesen",
+ "items_added": {
+ "one": "{{ quantity }} termék hozzáadva",
+ "other": "{{ quantity }} termék hozzáadva"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} termék eltávolítva",
+ "other": "{{ quantity }} termék eltávolítva"
+ },
+ "product_variants": "Termékváltozatok",
+ "total_items": "Összes termék",
+ "remove_all_items_confirmation": "Eltávolítod mind a(z) {{ quantity }} terméket a kosárból?",
+ "remove_all": "Az összes eltávolítása",
+ "cancel": "Mégse"
+ }
+ },
+ "localization": {
+ "country_label": "Ország/régió",
+ "language_label": "Nyelv",
+ "update_language": "Nyelv módosítása",
+ "update_country": "Ország/régió frissítése"
+ },
+ "customer": {
+ "account": {
+ "title": "Fiók",
+ "details": "Fiókadatok",
+ "view_addresses": "Címek megtekintése",
+ "return": "Vissza a fiókadatokhoz"
+ },
+ "account_fallback": "Fiók",
+ "activate_account": {
+ "title": "Fiók aktiválása",
+ "subtext": "A fiók aktiválásához hozz létre egy jelszót.",
+ "password": "Jelszó",
+ "password_confirm": "Jelszó megerősítése",
+ "submit": "Fiók aktiválása",
+ "cancel": "Meghívás elutasítása"
+ },
+ "addresses": {
+ "title": "Címek",
+ "default": "Alapértelmezett",
+ "add_new": "Új cím hozzáadása",
+ "edit_address": "Cím szerkesztése",
+ "first_name": "Utónév",
+ "last_name": "Vezetéknév",
+ "company": "Cégnév",
+ "address1": "1. cím",
+ "address2": "2. cím",
+ "city": "Település",
+ "country": "Ország/régió",
+ "province": "Megye",
+ "zip": "Irányítószám",
+ "phone": "Telefonszám",
+ "set_default": "Beállítás alapértelmezett címként",
+ "add": "Cím hozzáadása",
+ "update": "Cím frissítése",
+ "cancel": "Mégse",
+ "edit": "Szerkesztés",
+ "delete": "Törlés",
+ "delete_confirm": "Biztos, hogy törlöd a címet?"
+ },
+ "log_in": "Bejelentkezés",
+ "log_out": "Kijelentkezés",
+ "login_page": {
+ "cancel": "Mégse",
+ "create_account": "Fiók létrehozása",
+ "email": "E-mail-cím",
+ "forgot_password": "Elfelejtetted a jelszavadat?",
+ "guest_continue": "Tovább",
+ "guest_title": "Folytatás vendégként",
+ "password": "Jelszó",
+ "title": "Felhasználónév",
+ "sign_in": "Bejelentkezés",
+ "submit": "Küldés"
+ },
+ "orders": {
+ "title": "Korábbi rendelések",
+ "order_number": "Megrendelés",
+ "order_number_link": "Rendelés száma: {{ number }}",
+ "date": "Dátum",
+ "payment_status": "Fizetési állapot",
+ "fulfillment_status": "Teljesítési állapot",
+ "total": "Végösszeg",
+ "none": "Még nem rendeltél semmit."
+ },
+ "recover_password": {
+ "title": "Új jelszó létrehozása",
+ "subtext": "Küldünk egy e-mailt, amellyel új jelszót készíthetsz magadnak.",
+ "success": "E-mailben elküldtük a jelszó módosításához szükséges hivatkozást."
+ },
+ "register": {
+ "title": "Fiók létrehozása",
+ "first_name": "Utónév",
+ "last_name": "Vezetéknév",
+ "email": "E-mail-cím",
+ "password": "Jelszó",
+ "submit": "Létrehozás"
+ },
+ "reset_password": {
+ "title": "Új fiókjelszó létrehozása",
+ "subtext": "Írd be az új jelszót",
+ "password": "Jelszó",
+ "password_confirm": "Jelszó megerősítése",
+ "submit": "Új jelszó készítése"
+ },
+ "order": {
+ "title": "Megrendelés: {{ name }}",
+ "date_html": "Megrendelés dátuma: {{ date }}",
+ "cancelled_html": "Megrendelés lemondva: {{ date }}",
+ "cancelled_reason": "Ok: {{ reason }}",
+ "billing_address": "Számlázási cím",
+ "payment_status": "Fizetési állapot",
+ "shipping_address": "Szállítási cím",
+ "fulfillment_status": "Teljesítési állapot",
+ "discount": "Kedvezmény",
+ "shipping": "Szállítás",
+ "tax": "Adó",
+ "product": "Termék",
+ "sku": "Termékváltozat",
+ "price": "Ár",
+ "quantity": "Mennyiség",
+ "total": "Végösszeg",
+ "fulfilled_at_html": "Teljesítés dátuma: {{ date }}",
+ "track_shipment": "Csomagkövetés",
+ "tracking_url": "Hivatkozás a csomagkövetéshez",
+ "tracking_company": "Futárszolgálat",
+ "tracking_number": "Fuvarlevélszám",
+ "subtotal": "Részösszeg",
+ "total_duties": "Vámok",
+ "total_refunded": "Visszatérítve"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Íme a(z) {{ shop }} üzletben levásárolható, {{ value }} értékű ajándékkártyád!",
+ "subtext": "Ajándékkártya",
+ "gift_card_code": "Ajándékkártya kódja",
+ "shop_link": "Webáruház megnyitása",
+ "add_to_apple_wallet": "Hozzáadás az Apple Wallethoz",
+ "qr_image_alt": "Ezt a QR-kódot beszkennelve beválthatod az ajándékkártyát.",
+ "copy_code": "Ajándékkártya kódjának másolása",
+ "expired": "Lejárt",
+ "copy_code_success": "Sikeres volt a kód másolása",
+ "how_to_use_gift_card": "Az ajándékkártya kódja online, a QR-kód pedig az üzletben használható fel",
+ "expiration_date": "Lejárat dátuma: {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Ajándékba szeretném küldeni",
+ "email_label": "Címzett e-mail-címe",
+ "email": "E-mail-cím",
+ "name_label": "Címzett neve (nem kötelező)",
+ "name": "Név",
+ "message_label": "Üzenet (nem kötelező)",
+ "message": "Üzenet",
+ "max_characters": "Maximum {{ max_chars }} karakter",
+ "email_label_optional_for_no_js_behavior": "Címzett e-mail-címe (nem kötelező)",
+ "send_on": "ÉÉÉÉ-HH-NN",
+ "send_on_label": "Küldés dátuma (nem kötelező)",
+ "expanded": "Ajándékkártya címzettjének űrlapja kibontva",
+ "collapsed": "Ajándékkártya címzettjének űrlapja összecsukva"
+ }
+ }
+}
diff --git a/locales/id.json b/locales/id.json
new file mode 100644
index 0000000..ffa0503
--- /dev/null
+++ b/locales/id.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Masuki toko dengan sandi:",
+ "login_password_button": "Masuk dengan sandi",
+ "login_form_password_label": "Sandi",
+ "login_form_password_placeholder": "Sandi Anda",
+ "login_form_error": "Sandi salah!",
+ "login_form_submit": "Masuk",
+ "admin_link_html": "Anda pemilik toko? Login di sini ",
+ "powered_by_shopify_html": "Toko ini didukung oleh {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Bagikan di Facebook",
+ "share_on_twitter": "Tweet di Twitter",
+ "share_on_pinterest": "Pin di Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Lanjutkan belanja",
+ "pagination": {
+ "label": "Pembagian Halaman",
+ "page": "Halaman {{ number }}",
+ "next": "Halaman berikutnya",
+ "previous": "Halaman sebelumnya"
+ },
+ "search": {
+ "search": "Cari",
+ "reset": "Hapus kata kunci pencarian"
+ },
+ "cart": {
+ "view": "Lihat keranjang ({{ count }})",
+ "item_added": "Item ditambahkan ke keranjang Anda",
+ "view_empty_cart": "Lihat keranjang"
+ },
+ "share": {
+ "copy_to_clipboard": "Salin tautan",
+ "share_url": "Tautan",
+ "success_message": "Tautan disalin ke clipboard",
+ "close": "Tutup bagikan"
+ },
+ "slider": {
+ "of": "dari",
+ "next_slide": "Geser kanan",
+ "previous_slide": "Geser kiri",
+ "name": "Slider"
+ }
+ },
+ "newsletter": {
+ "label": "Email",
+ "success": "Terima kasih sudah berlangganan",
+ "button_label": "Berlangganan"
+ },
+ "accessibility": {
+ "skip_to_text": "Langsung ke konten",
+ "close": "Tutup",
+ "unit_price_separator": "per",
+ "vendor": "Vendor:",
+ "error": "Kesalahan",
+ "refresh_page": "Jika memilih salah satu, seluruh halaman akan dimuat ulang.",
+ "link_messages": {
+ "new_window": "Membuka di jendela baru.",
+ "external": "Membuka situs web eksternal."
+ },
+ "loading": "Memuat...",
+ "skip_to_product_info": "Langsung ke informasi produk",
+ "total_reviews": "ulasan keseluruhan",
+ "star_reviews_info": "{{ rating_value }} dari {{ rating_max }} bintang",
+ "collapsible_content_title": "Konten yang dapat ditutup",
+ "complementary_products": "Produk pelengkap"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Baca selengkapnya: {{ title }}",
+ "comments": {
+ "one": "{{ count }} komentar",
+ "other": "{{ count }} komentar"
+ },
+ "moderated": "Ingat, komentar perlu disetujui sebelum dipublikasikan.",
+ "comment_form_title": "Tulis komentar",
+ "name": "Nama",
+ "email": "Email",
+ "message": "Komentar",
+ "post": "Posting komentar",
+ "back_to_blog": "Kembali ke blog",
+ "share": "Bagikan artikel ini",
+ "success": "Komentar Anda berhasil diposting! Terima kasih!",
+ "success_moderated": "Komentar Anda berhasil diposting. Kami akan memublikasikannya sebentar lagi, blog kami sedang dimoderasi."
+ }
+ },
+ "onboarding": {
+ "product_title": "Contoh judul produk",
+ "collection_title": "Nama koleksi"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Tambahkan ke keranjang",
+ "description": "Deskripsi",
+ "on_sale": "Obral",
+ "product_variants": "Varian produk",
+ "quantity": {
+ "label": "Jumlah",
+ "input_label": "Jumlah untuk {{ product }}",
+ "increase": "Tambah jumlah untuk {{ product }}",
+ "decrease": "Kurangi jumlah untuk {{ product }}",
+ "minimum_of": "Minimum {{ quantity }}",
+ "maximum_of": "Maksimum {{ quantity }}",
+ "multiples_of": "Nilai peningkatan {{ quantity }}",
+ "in_cart_html": "{{ quantity }} di keranjang",
+ "note": "Lihat aturan kuantitas"
+ },
+ "price": {
+ "from_price_html": "Dari {{ price }}",
+ "regular_price": "Harga reguler",
+ "sale_price": "Harga obral",
+ "unit_price": "Harga satuan"
+ },
+ "share": "Bagikan produk ini",
+ "sold_out": "Habis",
+ "unavailable": "Tidak Tersedia",
+ "vendor": "Vendor",
+ "video_exit_message": "{{ title }} membuka video layar penuh di jendela yang sama.",
+ "xr_button": "Lihat di lokasi Anda",
+ "xr_button_label": "Lihat di lokasi Anda, muat item di jendela realitas tertambah",
+ "pickup_availability": {
+ "view_store_info": "Lihat informasi toko",
+ "check_other_stores": "Periksa ketersediaan di toko lainnya",
+ "pick_up_available": "Pengambilan tersedia",
+ "pick_up_available_at_html": "Pengambilan dapat dilakukan di {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Saat ini, pengambilan tidak dapat dilakukan di {{ location_name }} ",
+ "unavailable": "Tidak dapat memuat ketersediaan pengambilan",
+ "refresh": "Muat ulang"
+ },
+ "media": {
+ "open_media": "Buka media {{ index }} di modal",
+ "play_model": "Putar Penampil 3D",
+ "play_video": "Putar video",
+ "gallery_viewer": "Penampil Galeri",
+ "load_image": "Muat gambar {{ index }} di tampilan galeri",
+ "load_model": "Muat Model 3D {{ index }} di tampilan galeri",
+ "load_video": "Putar video {{ index }} di tampilan galeri",
+ "image_available": "Gambar {{ index }} kini tersedia di tampilan galeri"
+ },
+ "view_full_details": "Lihat detail lengkap",
+ "include_taxes": "Termasuk pajak.",
+ "shipping_policy_html": "Biaya pengiriman dihitung saat checkout.",
+ "choose_options": "Pilih opsi",
+ "choose_product_options": "Pilih opsi untuk {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Tidak tersedia",
+ "variant_sold_out_or_unavailable": "Varian terjual habis atau tidak tersedia",
+ "inventory_in_stock": "Tersedia",
+ "inventory_in_stock_show_count": "{{ quantity }} tersedia",
+ "inventory_low_stock": "Stok sedikit",
+ "inventory_low_stock_show_count": "Stok sedikit: {{ quantity }} tersisa",
+ "inventory_out_of_stock": "Habis",
+ "inventory_out_of_stock_continue_selling": "Tersedia",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Harga Volume",
+ "note": "Harga volume tersedia",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "harga {{ price }}/satuan",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galeri media"
+ },
+ "facets": {
+ "apply": "Pakai",
+ "clear": "Hapus",
+ "clear_all": "Hapus semua",
+ "from": "Dari",
+ "filter_and_sort": "Filter dan urutkan",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filter",
+ "filters_selected": {
+ "one": "{{ count }} dipilih",
+ "other": "{{ count }} dipilih"
+ },
+ "max_price": "Harga tertinggi adalah {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} dari {{ count }} produk",
+ "other": "{{ product_count }} dari {{ count }} produk"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produk",
+ "other": "{{ count }} produk"
+ },
+ "reset": "Reset",
+ "sort_button": "Urutkan",
+ "sort_by_label": "Urutkan berdasarkan:",
+ "to": "Sampai",
+ "clear_filter": "Hapus filter",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filter dipilih)",
+ "show_more": "Selengkapnya",
+ "show_less": "Sembunyikan lainnya",
+ "filter_and_operator_subtitle": "Cocokkan semua"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Tidak ada hasil ditemukan untuk “{{ terms }}”. Periksa ejaan atau gunakan kata atau frasa yang berbeda.",
+ "results_with_count": {
+ "one": "{{ count }} hasil",
+ "other": "{{ count }} hasil"
+ },
+ "title": "Hasil pencarian",
+ "page": "Halaman",
+ "products": "Produk",
+ "search_for": "Cari “{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "{{ count }} hasil ditemukan untuk “{{ terms }}”",
+ "other": "{{ count }} hasil ditemukan untuk “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} halaman",
+ "other": "{{ count }} halaman"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produk",
+ "other": "{{ count }} produk"
+ },
+ "suggestions": "Saran",
+ "pages": "Halaman",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} saran",
+ "other": "{{ count }} saran"
+ }
+ },
+ "cart": {
+ "cart": "Keranjang"
+ },
+ "contact": {
+ "form": {
+ "name": "Nama",
+ "email": "Email",
+ "phone": "Nomor telepon",
+ "comment": "Komentar",
+ "send": "Kirim",
+ "post_success": "Terima kasih sudah menghubungi kami. Kami akan segera menghubungi Anda.",
+ "error_heading": "Mohon sesuaikan:",
+ "title": "Formulir kontak"
+ }
+ },
+ "404": {
+ "title": "Halaman tidak ditemukan",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Pengumuman",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} item",
+ "other": "{{ count }} item"
+ }
+ },
+ "cart": {
+ "title": "Keranjang Anda",
+ "caption": "Item di keranjang",
+ "remove_title": "Hapus {{ title }}",
+ "note": "Instruksi khusus pesanan",
+ "checkout": "Check out",
+ "empty": "Keranjang Anda kosong",
+ "cart_error": "Terjadi kesalahan saat memperbarui keranjang. Silakan coba lagi.",
+ "cart_quantity_error_html": "Hanya dapat menambahkan {{ quantity }} item ini ke keranjang Anda.",
+ "taxes_and_shipping_policy_at_checkout_html": "Pajak, Diskon dan biaya pengiriman dihitung saat checkout",
+ "taxes_included_but_shipping_at_checkout": "Pajak yang berlaku dan biaya pengiriman serta diskon dihitung saat checkout",
+ "taxes_included_and_shipping_policy_html": "Termasuk pajak. Biaya pengiriman dan diskon dihitung saat checkout.",
+ "taxes_and_shipping_at_checkout": "Pajak, diskon dan biaya pengiriman dihitung saat checkout",
+ "headings": {
+ "product": "Produk",
+ "price": "Harga",
+ "total": "Total",
+ "quantity": "Jumlah",
+ "image": "Gambar produk"
+ },
+ "update": "Perbarui",
+ "login": {
+ "title": "Sudah punya akun?",
+ "paragraph_html": "Login untuk checkout lebih cepat."
+ },
+ "estimated_total": "Estimasi total",
+ "new_estimated_total": "Estimasi total baru"
+ },
+ "footer": {
+ "payment": "Metode pembayaran"
+ },
+ "featured_blog": {
+ "view_all": "Lihat semua",
+ "onboarding_title": "Postingan blog",
+ "onboarding_content": "Berikan pelanggan ringkasan postingan blog Anda"
+ },
+ "featured_collection": {
+ "view_all": "Lihat semua",
+ "view_all_label": "Lihat semua produk dalam koleksi {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Lihat semua"
+ },
+ "collection_template": {
+ "title": "Koleksi",
+ "empty": "Tidak ada produk yang ditemukan",
+ "use_fewer_filters_html": "Gunakan lebih sedikit filter atau hapus semua "
+ },
+ "video": {
+ "load_video": "Muat video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Muat slide",
+ "previous_slideshow": "Slide sebelumnya",
+ "next_slideshow": "Slide berikutnya",
+ "pause_slideshow": "Jeda slideshow",
+ "play_slideshow": "Putar slideshow",
+ "carousel": "Carousel",
+ "slide": "Geser"
+ },
+ "page": {
+ "title": "Judul halaman"
+ },
+ "announcements": {
+ "previous_announcement": "Pengumuman sebelumnya",
+ "next_announcement": "Pengumuman selanjutnya",
+ "carousel": "Carousel",
+ "announcement": "Pengumuman",
+ "announcement_bar": "Bilah pengumuman"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotal produk",
+ "view_cart": "Lihat keranjang",
+ "each": "{{ money }}/satuan",
+ "product": "Produk",
+ "variant": "Varian",
+ "variant_total": "Total varian",
+ "items_added": {
+ "one": "{{ quantity }} item ditambahkan",
+ "other": "{{ quantity }} item ditambahkan"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} item dihapus",
+ "other": "{{ quantity }} item dihapus"
+ },
+ "product_variants": "Varian produk",
+ "total_items": "Total item",
+ "remove_all_items_confirmation": "Hapus semua item yang berjumlah {{ quantity }} dari keranjang Anda?",
+ "remove_all": "Hapus semuanya",
+ "cancel": "Batalkan"
+ }
+ },
+ "localization": {
+ "country_label": "Negara/Wilayah",
+ "language_label": "Bahasa",
+ "update_language": "Perbarui bahasa",
+ "update_country": "Perbarui negara/wilayah"
+ },
+ "customer": {
+ "account": {
+ "title": "Akun",
+ "details": "Detail akun",
+ "view_addresses": "Lihat alamat",
+ "return": "Kembali ke detail Akun"
+ },
+ "account_fallback": "Akun",
+ "activate_account": {
+ "title": "Aktifkan akun",
+ "subtext": "Buat sandi untuk mengaktifkan akunmu.",
+ "password": "Sandi",
+ "password_confirm": "Konfirmasi sandi",
+ "submit": "Aktifkan akun",
+ "cancel": "Tolak undangan"
+ },
+ "addresses": {
+ "title": "Alamat",
+ "default": "Default",
+ "add_new": "Tambahkan alamat baru",
+ "edit_address": "Edit alamat",
+ "first_name": "Nama depan",
+ "last_name": "Nama belakang",
+ "company": "Perusahaan",
+ "address1": "Alamat 1",
+ "address2": "Alamat 2",
+ "city": "Kota",
+ "country": "Negara/Wilayah",
+ "province": "Provinsi",
+ "zip": "Kode pos",
+ "phone": "Telepon",
+ "set_default": "Atur sebagai alamat default",
+ "add": "Tambahkan alamat",
+ "update": "Perbarui alamat",
+ "cancel": "Batal",
+ "edit": "Edit",
+ "delete": "Hapus",
+ "delete_confirm": "Yakin ingin menghapus alamat ini?"
+ },
+ "log_in": "Login",
+ "log_out": "Logout",
+ "login_page": {
+ "cancel": "Batal",
+ "create_account": "Buat Akun",
+ "email": "Email",
+ "forgot_password": "Lupa sandi?",
+ "guest_continue": "Lanjutkan",
+ "guest_title": "Lanjutkan sebagai tamu",
+ "password": "Sandi",
+ "title": "Login",
+ "sign_in": "Masuk",
+ "submit": "Kirim"
+ },
+ "orders": {
+ "title": "Riwayat pesanan",
+ "order_number": "Pesanan",
+ "order_number_link": "Nomor pesanan {{ number }}",
+ "date": "Tanggal",
+ "payment_status": "Status pembayaran",
+ "fulfillment_status": "Status pesanan",
+ "total": "Total",
+ "none": "Kamu belum membuat pesanan."
+ },
+ "recover_password": {
+ "title": "Reset sandi",
+ "subtext": "Kami akan mengirimi Anda email untuk mereset sandi",
+ "success": "Kami telah mengirimi Anda email berisi tautan untuk memperbarui sandi."
+ },
+ "register": {
+ "title": "Buat Akun",
+ "first_name": "Nama depan",
+ "last_name": "Nama belakang",
+ "email": "Email",
+ "password": "Sandi",
+ "submit": "Buat"
+ },
+ "reset_password": {
+ "title": "Reset sandi akun",
+ "subtext": "Masukkan sandi baru",
+ "password": "Sandi",
+ "password_confirm": "Konfirmasi sandi",
+ "submit": "Reset sandi"
+ },
+ "order": {
+ "title": "Pesanan {{ name }}",
+ "date_html": "Dibuat pada {{ date }}",
+ "cancelled_html": "Pesanan Dibatalkan pada {{ date }}",
+ "cancelled_reason": "Alasan: {{ reason }}",
+ "billing_address": "Alamat Penagihan",
+ "payment_status": "Status Pembayaran",
+ "shipping_address": "Alamat Pengiriman",
+ "fulfillment_status": "Status Pesanan",
+ "discount": "Diskon",
+ "shipping": "Pengiriman",
+ "tax": "Pajak",
+ "product": "Produk",
+ "sku": "SKU",
+ "price": "Harga",
+ "quantity": "Jumlah",
+ "total": "Total",
+ "fulfilled_at_html": "Selesai pada {{ date }}",
+ "track_shipment": "Lacak pengiriman",
+ "tracking_url": "Tautan pelacakan",
+ "tracking_company": "Kurir",
+ "tracking_number": "Nomor pelacakan",
+ "subtotal": "Subtotal",
+ "total_duties": "Bea cukai",
+ "total_refunded": "Dana dikembalikan"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Ini dia voucher senilai {{ value }} Anda untuk {{ shop }}!",
+ "subtext": "Voucher Anda",
+ "gift_card_code": "Kode voucher",
+ "shop_link": "Kunjungi toko online",
+ "add_to_apple_wallet": "Tambahkan ke Apple Wallet",
+ "qr_image_alt": "Kode QR — pindai untuk menukarkan voucher",
+ "copy_code": "Salin kode voucher",
+ "expired": "Kedaluwarsa",
+ "copy_code_success": "Kode berhasil disalin",
+ "how_to_use_gift_card": "Gunakan kode voucher secara online atau kode QR di toko",
+ "expiration_date": "Kedaluwarsa pada {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Saya ingin mengirim ini sebagai hadiah",
+ "email_label": "Email penerima",
+ "email": "Email",
+ "name_label": "Nama penerima (opsional)",
+ "name": "Nama",
+ "message_label": "Pesan (opsional)",
+ "message": "Pesan",
+ "max_characters": "Maksimum {{ max_chars }} karakter",
+ "email_label_optional_for_no_js_behavior": "Email penerima (opsional)",
+ "send_on": "TTTT-BB-HH",
+ "send_on_label": "Kirim pada (opsional)",
+ "expanded": "Formulir penerima voucher dibuka",
+ "collapsed": "Formulir penerima voucher ditutup"
+ }
+ }
+}
diff --git a/locales/it.json b/locales/it.json
new file mode 100644
index 0000000..cbc6581
--- /dev/null
+++ b/locales/it.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Accedi al negozio utilizzando la password:",
+ "login_password_button": "Accedi utilizzando la password",
+ "login_form_password_label": "Password",
+ "login_form_password_placeholder": "La tua password",
+ "login_form_error": "Password errata!",
+ "login_form_submit": "Accedi",
+ "admin_link_html": "Sei il proprietario del negozio? Accedi qui ",
+ "powered_by_shopify_html": "Questo negozio sarà ospitato su {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Condividi su Facebook",
+ "share_on_twitter": "Twitta su Twitter",
+ "share_on_pinterest": "Aggiungi un pin su Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Continua lo shopping",
+ "pagination": {
+ "label": "Impaginazione",
+ "page": "Pagina {{ number }}",
+ "next": "Pagina successiva",
+ "previous": "Pagina precedente"
+ },
+ "search": {
+ "search": "Cerca",
+ "reset": "Cancella termine ricerca"
+ },
+ "cart": {
+ "view": "Visualizza carrello ({{ count }})",
+ "item_added": "Articolo aggiunto al carrello",
+ "view_empty_cart": "Visualizza carrello"
+ },
+ "share": {
+ "copy_to_clipboard": "Copia link",
+ "share_url": "Link",
+ "success_message": "Link copiato negli appunti",
+ "close": "Chiudi condivisione"
+ },
+ "slider": {
+ "of": "su",
+ "next_slide": "Scorri verso destra",
+ "previous_slide": "Scorri verso sinistra",
+ "name": "Cursore"
+ }
+ },
+ "newsletter": {
+ "label": "Indirizzo email",
+ "success": "Grazie per l'iscrizione",
+ "button_label": "Iscriviti"
+ },
+ "accessibility": {
+ "skip_to_text": "Vai direttamente ai contenuti",
+ "close": "Chiudi",
+ "unit_price_separator": "per",
+ "vendor": "Produttore:",
+ "error": "Errore",
+ "refresh_page": "Scegliendo una selezione si ottiene un aggiornamento completo della pagina.",
+ "link_messages": {
+ "new_window": "Si apre in una nuova finestra.",
+ "external": "Apre un sito web esterno."
+ },
+ "loading": "Caricamento in corso...",
+ "skip_to_product_info": "Passa alle informazioni sul prodotto",
+ "total_reviews": "recensioni totali",
+ "star_reviews_info": "{{ rating_value }} stelle su {{ rating_max }}",
+ "collapsible_content_title": "Contenuto comprimibile",
+ "complementary_products": "Prodotti complementari"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Leggi di più: {{ title }}",
+ "comments": {
+ "one": "{{ count }} commento",
+ "other": "{{ count }} commenti",
+ "many": "{{ count }} commenti"
+ },
+ "moderated": "Si prega di notare che, prima di essere pubblicati, i commenti devono essere approvati.",
+ "comment_form_title": "Lascia un commento",
+ "name": "Nome",
+ "email": "Indirizzo email",
+ "message": "Commenta",
+ "post": "Pubblica commento",
+ "back_to_blog": "Torna al blog",
+ "share": "Condividi questo articolo",
+ "success": "Il tuo commento è stato pubblicato! Grazie!",
+ "success_moderated": "Il tuo commento è stato pubblicato. Lo pubblicheremo fra poco, il nostro blog è soggetto a moderazione."
+ }
+ },
+ "onboarding": {
+ "product_title": "Esempio di titolo del prodotto",
+ "collection_title": "Nome della collezione"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Aggiungi al carrello",
+ "description": "Descrizione",
+ "on_sale": "In offerta",
+ "quantity": {
+ "label": "Quantità",
+ "input_label": "Quantità per {{ product }}",
+ "increase": "Aumenta quantità per {{ product }}",
+ "decrease": "Diminuisci quantità per {{ product }}",
+ "minimum_of": "Minimo di {{ quantity }}",
+ "maximum_of": "Massimo di {{ quantity }}",
+ "multiples_of": "Incrementi di {{ quantity }}",
+ "in_cart_html": "{{ quantity }} nel carrello",
+ "note": "Visualizza regole sulla quantità"
+ },
+ "price": {
+ "from_price_html": "Da {{ price }}",
+ "regular_price": "Prezzo di listino",
+ "sale_price": "Prezzo scontato",
+ "unit_price": "Prezzo unitario"
+ },
+ "share": "Condividi questo prodotto",
+ "sold_out": "Esaurito",
+ "unavailable": "Non disponibile",
+ "vendor": "Fornitore",
+ "video_exit_message": "{{ title }} apre un video a schermo intero nella stessa finestra.",
+ "xr_button": "Visualizza nel tuo spazio",
+ "xr_button_label": "Visualizza nel tuo spazio, carica l'articolo nella finestra della realtà aumentata",
+ "pickup_availability": {
+ "view_store_info": "Visualizza i dettagli del negozio",
+ "check_other_stores": "Verifica la disponibilità in altri negozi",
+ "pick_up_available": "Ritiro disponibile",
+ "pick_up_available_at_html": "Ritiro disponibile presso la sede {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Ritiro attualmente non disponibile presso la sede {{ location_name }} ",
+ "unavailable": "Impossibile caricare la disponibilità di ritiro",
+ "refresh": "Aggiorna"
+ },
+ "media": {
+ "open_media": "Apri contenuti multimediali {{ index }} in finestra modale",
+ "play_model": "Riproduci visualizzatore 3D",
+ "play_video": "Riproduci video",
+ "gallery_viewer": "Visualizzatore di galleria",
+ "load_image": "Carica immagine {{ index }} in visualizzazione galleria",
+ "load_model": "Carica modello 3D {{ index }} in visualizzazione galleria",
+ "load_video": "Riproduci video {{ index }} in visualizzazione galleria",
+ "image_available": "L'immagine {{ index }} è ora disponibile in visualizzazione galleria"
+ },
+ "view_full_details": "Visualizza dettagli completi",
+ "include_taxes": "Imposte incluse.",
+ "shipping_policy_html": "Spese di spedizione calcolate al check-out.",
+ "choose_options": "Scegli opzioni",
+ "choose_product_options": "Scegli opzioni per {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Non disponibile",
+ "variant_sold_out_or_unavailable": "Variante esaurita o non disponibile",
+ "inventory_in_stock": "Disponibile",
+ "inventory_in_stock_show_count": "{{ quantity }} disponibile/i",
+ "inventory_low_stock": "Scorte ridotte",
+ "inventory_low_stock_show_count": "Scorte ridotte: ne restano {{ quantity }}",
+ "inventory_out_of_stock": "Esaurito",
+ "inventory_out_of_stock_continue_selling": "Disponibile",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Prezzi basati sui volumi",
+ "note": "Prezzi basati sui volumi disponibili",
+ "minimum": "Più di {{ quantity }}",
+ "price_at_each": "a {{ price }}/ciascuno",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "Varianti di prodotto"
+ },
+ "modal": {
+ "label": "Galleria contenuti multimediali"
+ },
+ "facets": {
+ "apply": "Applica",
+ "clear": "Cancella",
+ "clear_all": "Rimuovi tutto",
+ "from": "Da",
+ "filter_and_sort": "Filtra e ordina",
+ "filter_by_label": "Filtra:",
+ "filter_button": "Filtra",
+ "filters_selected": {
+ "one": "{{ count }} selezionata",
+ "other": "{{ count }} selezionate",
+ "many": "{{ count }} selezionate"
+ },
+ "max_price": "Il prezzo più alto è {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} su {{ count }} prodotto",
+ "other": "{{ product_count }} su {{ count }} prodotti",
+ "many": "{{ product_count }} su {{ count }} prodotti"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} prodotto",
+ "other": "{{ count }} prodotti",
+ "many": "{{ count }} prodotti"
+ },
+ "reset": "Ripristina",
+ "sort_button": "Ordina",
+ "sort_by_label": "Ordina per:",
+ "to": "A",
+ "clear_filter": "Rimuovi filtri",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtri selezionati)",
+ "show_more": "Mostra di più",
+ "show_less": "Mostra di meno",
+ "filter_and_operator_subtitle": "Seleziona tutte"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nessun risultato per \"{{ terms }}\". Controlla l'ortografia o usa una parola o una frase diversa.",
+ "page": "Pagina",
+ "results_with_count": {
+ "one": "{{ count }} risultato",
+ "other": "{{ count }} risultati",
+ "many": "{{ count }} risultati"
+ },
+ "title": "Risultati della ricerca",
+ "products": "Prodotti",
+ "search_for": "Cerca \"{{ terms }}\"",
+ "results_with_count_and_term": {
+ "one": "{{ count }} risultato trovato per \"{{ terms }}\"",
+ "other": "{{ count }} risultati trovati per \"{{ terms }}\"",
+ "many": "{{ count }} risultati trovati per \"{{ terms }}\""
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} pagina",
+ "other": "{{ count }} pagine",
+ "many": "{{ count }} pagine"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} prodotto",
+ "other": "{{ count }} prodotti",
+ "many": "{{ count }} prodotti"
+ },
+ "suggestions": "Suggerimenti",
+ "pages": "Pagine",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} suggerimento",
+ "other": "{{ count }} suggerimenti",
+ "many": "{{ count }} suggerimenti"
+ }
+ },
+ "cart": {
+ "cart": "Carrello"
+ },
+ "contact": {
+ "form": {
+ "name": "Nome",
+ "email": "Indirizzo email",
+ "phone": "Numero di telefono",
+ "comment": "Commenta",
+ "send": "Invia",
+ "post_success": "Grazie per averci contattato. Risponderemo il prima possibile.",
+ "error_heading": "Correggi gli errori seguenti:",
+ "title": "Modulo di contatto"
+ }
+ },
+ "404": {
+ "title": "Pagina non trovata",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Annuncio",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} articolo",
+ "other": "{{ count }} articoli",
+ "many": "{{ count }} articoli"
+ }
+ },
+ "cart": {
+ "title": "Il tuo carrello",
+ "caption": "Articoli nel carrello",
+ "remove_title": "Rimuovi {{ title }}",
+ "note": "Istruzioni speciali per l'ordine",
+ "checkout": "Check-out",
+ "empty": "Il tuo carrello è vuoto",
+ "cart_error": "Si è verificato un errore durante l'aggiornamento del carrello. Riprova più tardi.",
+ "cart_quantity_error_html": "Puoi aggiungere soltanto {{ quantity }} di questo articolo al tuo carrello.",
+ "taxes_and_shipping_policy_at_checkout_html": "Imposte, sconti e spedizione calcolati al check-out",
+ "taxes_included_but_shipping_at_checkout": "Imposte incluse e spedizione e sconti calcolati al check-out",
+ "taxes_included_and_shipping_policy_html": "Imposte incluse. Spedizione e sconti calcolati al check-out.",
+ "taxes_and_shipping_at_checkout": "Imposte, sconti e spedizione calcolati al check-out",
+ "headings": {
+ "product": "Prodotto",
+ "price": "Prezzo",
+ "total": "Totale",
+ "quantity": "Quantità",
+ "image": "Immagine del prodotto"
+ },
+ "update": "Aggiorna",
+ "login": {
+ "title": "Hai un account?",
+ "paragraph_html": "Accedi per un check-out più veloce."
+ },
+ "estimated_total": "Totale stimato",
+ "new_estimated_total": "Nuovo totale stimato"
+ },
+ "footer": {
+ "payment": "Metodi di pagamento"
+ },
+ "featured_blog": {
+ "view_all": "Visualizza tutto",
+ "onboarding_title": "Articolo del blog",
+ "onboarding_content": "Offri ai clienti un riepilogo dell'articolo del blog"
+ },
+ "featured_collection": {
+ "view_all": "Visualizza tutto",
+ "view_all_label": "Visualizza tutti i prodotti della collezione {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Visualizza tutto"
+ },
+ "collection_template": {
+ "title": "Collezione",
+ "empty": "Nessun prodotto trovato",
+ "use_fewer_filters_html": "Utilizza meno filtri o rimuovi tutto "
+ },
+ "video": {
+ "load_video": "Carica il video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Carica slide",
+ "previous_slideshow": "Slide precedente",
+ "next_slideshow": "Slide successiva",
+ "pause_slideshow": "Metti in pausa presentazione",
+ "play_slideshow": "Avvia presentazione",
+ "carousel": "Carousel",
+ "slide": "Scorrimento"
+ },
+ "page": {
+ "title": "Titolo pagina"
+ },
+ "announcements": {
+ "previous_announcement": "Annuncio precedente",
+ "next_announcement": "Annuncio successivo",
+ "carousel": "Carousel",
+ "announcement": "Annuncio",
+ "announcement_bar": "Barra degli annunci"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotale prodotto",
+ "view_cart": "Visualizza carrello",
+ "each": "{{ money }}/ciascuno",
+ "product": "Prodotto",
+ "variant": "Variante",
+ "variant_total": "Totale varianti",
+ "items_added": {
+ "one": "{{ quantity }} articolo aggiunto",
+ "other": "{{ quantity }} articoli aggiunti",
+ "many": "{{ quantity }} articoli aggiunti"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} articolo rimosso",
+ "other": "{{ quantity }} articoli rimossi",
+ "many": "{{ quantity }} articoli rimossi"
+ },
+ "product_variants": "Varianti di prodotto",
+ "total_items": "Articoli totali",
+ "remove_all_items_confirmation": "Rimuovere tutti i {{ quantity }} articoli dal tuo carrello?",
+ "remove_all": "Rimuovi tutto",
+ "cancel": "Annulla"
+ }
+ },
+ "localization": {
+ "country_label": "Paese/Area geografica",
+ "language_label": "Lingua",
+ "update_language": "Aggiorna lingua",
+ "update_country": "Aggiorna paese/area geografica"
+ },
+ "customer": {
+ "account": {
+ "title": "Account",
+ "details": "Dettagli account",
+ "view_addresses": "Visualizza indirizzi",
+ "return": "Ritorna ai dettagli dell'account"
+ },
+ "account_fallback": "Account",
+ "activate_account": {
+ "title": "Attiva l'account",
+ "subtext": "Crea una password per attivare il tuo account.",
+ "password": "Password",
+ "password_confirm": "Conferma password",
+ "submit": "Attiva l'account",
+ "cancel": "Rifiuta invito"
+ },
+ "addresses": {
+ "title": "Indirizzi",
+ "default": "Predefinito",
+ "add_new": "Aggiungi un nuovo indirizzo",
+ "edit_address": "Modifica indirizzo",
+ "first_name": "Nome",
+ "last_name": "Cognome",
+ "company": "Azienda",
+ "address1": "Indirizzo - campo 1",
+ "address2": "Indirizzo - campo 2",
+ "city": "Città",
+ "country": "Paese/Area geografica",
+ "province": "Provincia",
+ "zip": "CAP",
+ "phone": "Numero di telefono",
+ "set_default": "Imposta come indirizzo predefinito",
+ "add": "Aggiungi indirizzo",
+ "update": "Aggiorna indirizzo",
+ "cancel": "Annulla",
+ "edit": "Modifica",
+ "delete": "Elimina",
+ "delete_confirm": "Desideri davvero eliminare questo indirizzo?"
+ },
+ "log_in": "Accedi",
+ "log_out": "Esci",
+ "login_page": {
+ "cancel": "Annulla",
+ "create_account": "Crea account",
+ "email": "Indirizzo email",
+ "forgot_password": "Hai dimenticato la password?",
+ "guest_continue": "Continua",
+ "guest_title": "Continua senza registrarti",
+ "password": "Password",
+ "title": "Accedi",
+ "sign_in": "Accedi",
+ "submit": "Invia"
+ },
+ "order": {
+ "title": "Ordine {{ name }}",
+ "date_html": "Effettuato il {{ date }}",
+ "cancelled_html": "Ordine annullato il giorno {{ date }}",
+ "cancelled_reason": "Motivo: {{ reason }}",
+ "billing_address": "Indirizzo di fatturazione",
+ "payment_status": "Stato del pagamento",
+ "shipping_address": "Indirizzo di spedizione",
+ "fulfillment_status": "Stato di evasione",
+ "discount": "Sconto",
+ "shipping": "Spedizione",
+ "tax": "Imposta",
+ "product": "Prodotto",
+ "sku": "SKU",
+ "price": "Prezzo",
+ "quantity": "Quantità",
+ "total": "Totale",
+ "fulfilled_at_html": "Evaso il {{ date }}",
+ "track_shipment": "Monitora la spedizione",
+ "tracking_url": "Link di monitoraggio",
+ "tracking_company": "Corriere",
+ "tracking_number": "Numero di tracking",
+ "subtotal": "Subtotale",
+ "total_duties": "Dazi",
+ "total_refunded": "Rimborsato"
+ },
+ "orders": {
+ "title": "Cronologia ordini",
+ "order_number": "Ordine",
+ "order_number_link": "Ordine numero {{ number }}",
+ "date": "Data",
+ "payment_status": "Stato del pagamento",
+ "fulfillment_status": "Stato di evasione",
+ "total": "Totale",
+ "none": "Non hai ancora effettuato ordini."
+ },
+ "recover_password": {
+ "title": "Reimposta la password",
+ "subtext": "Riceverai un'email per reimpostare la tua password",
+ "success": "Ti abbiamo inviato un'email con un link per aggiornare la password."
+ },
+ "register": {
+ "title": "Crea account",
+ "first_name": "Nome",
+ "last_name": "Cognome",
+ "email": "Indirizzo email",
+ "password": "Password",
+ "submit": "Crea"
+ },
+ "reset_password": {
+ "title": "Reimposta la password dell'account",
+ "subtext": "Inserisci una nuova password",
+ "password": "Password",
+ "password_confirm": "Conferma password",
+ "submit": "Reimposta password"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Ecco il saldo del tuo buono regalo dal valore di {{ value }} per {{ shop }}!",
+ "subtext": "Il tuo buono regalo",
+ "gift_card_code": "Codice del buono regalo",
+ "shop_link": "Visita il negozio online",
+ "add_to_apple_wallet": "Aggiungi a Apple Wallet",
+ "qr_image_alt": "Codice QR — scansiona per riscattare il buono regalo",
+ "copy_code": "Copia codice del buono regalo",
+ "expired": "Scaduto",
+ "copy_code_success": "Codice copiato correttamente",
+ "how_to_use_gift_card": "Utilizza il codice del buono regalo online o il codice QR in negozio",
+ "expiration_date": "Scade il giorno {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Voglio inviarlo come regalo",
+ "email_label": "Email destinatario",
+ "email": "email",
+ "name_label": "Nome destinatario (facoltativo)",
+ "name": "Nome",
+ "message_label": "Messaggio (facoltativo)",
+ "message": "Messaggio",
+ "max_characters": "Massimo {{ max_chars }} caratteri",
+ "email_label_optional_for_no_js_behavior": "Email destinatario (facoltativa)",
+ "send_on": "AAAA-MM-GG",
+ "send_on_label": "Spedisci il giorno (opzionale)",
+ "expanded": "Modulo destinatario del buono regalo espanso",
+ "collapsed": "Modulo destinatario del buono regalo compresso"
+ }
+ }
+}
diff --git a/locales/it.schema.json b/locales/it.schema.json
new file mode 100644
index 0000000..f61499c
--- /dev/null
+++ b/locales/it.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Colori",
+ "settings": {
+ "background": {
+ "label": "Sfondo"
+ },
+ "background_gradient": {
+ "label": "Gradiente sfondo",
+ "info": "Il gradiente sfondo sostituisce lo sfondo ove possibile."
+ },
+ "text": {
+ "label": "Testo"
+ },
+ "button_background": {
+ "label": "Sfondo pulsante in tinta unita"
+ },
+ "button_label": {
+ "label": "Etichetta pulsante in tinta unita"
+ },
+ "secondary_button_label": {
+ "label": "Contorno pulsante"
+ },
+ "shadow": {
+ "label": "Ombra"
+ }
+ }
+ },
+ "typography": {
+ "name": "Caratteri tipografici",
+ "settings": {
+ "type_header_font": {
+ "label": "Font",
+ "info": "La selezione di un font diverso può influenzare la velocità del tuo negozio. [Maggiori informazioni sui font di sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Titoli"
+ },
+ "header__2": {
+ "content": "Testo"
+ },
+ "type_body_font": {
+ "label": "Font",
+ "info": "La selezione di un font diverso può influenzare la velocità del tuo negozio. [Maggiori informazioni sui font di sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Scalabilità dimensione font"
+ },
+ "body_scale": {
+ "label": "Scalabilità dimensione font"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Social media",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Account social"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Formato valuta",
+ "settings": {
+ "content": "Codici valuta",
+ "currency_code_enabled": {
+ "label": "Mostra i codici valuta"
+ },
+ "paragraph": "I prezzi del carrello e del check-out mostrano sempre i codici valuta. Esempio: 1,00 EUR."
+ }
+ },
+ "layout": {
+ "name": "Layout",
+ "settings": {
+ "page_width": {
+ "label": "Larghezza pagina"
+ },
+ "spacing_sections": {
+ "label": "Spazio tra le sezioni del modello"
+ },
+ "header__grid": {
+ "content": "Griglia"
+ },
+ "paragraph__grid": {
+ "content": "Incide sulle aree con colonne o righe multiple."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Spazio orizzontale"
+ },
+ "spacing_grid_vertical": {
+ "label": "Spazio verticale"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Comportamento di ricerca",
+ "settings": {
+ "header": {
+ "content": "Suggerimenti di ricerca"
+ },
+ "predictive_search_enabled": {
+ "label": "Abilita suggerimenti di ricerca"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Mostra fornitore prodotto",
+ "info": "Visibile quando i suggerimenti di ricerca sono abilitati."
+ },
+ "predictive_search_show_price": {
+ "label": "Mostra prezzo prodotto",
+ "info": "Visibile quando i suggerimenti di ricerca sono abilitati."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Bordo"
+ },
+ "header__shadow": {
+ "content": "Ombra"
+ },
+ "blur": {
+ "label": "Sfocatura"
+ },
+ "corner_radius": {
+ "label": "Raggio angolo"
+ },
+ "horizontal_offset": {
+ "label": "Scostamento orizzontale"
+ },
+ "vertical_offset": {
+ "label": "Scostamento verticale"
+ },
+ "thickness": {
+ "label": "Spessore"
+ },
+ "opacity": {
+ "label": "Opacità"
+ },
+ "image_padding": {
+ "label": "Spaziatura immagine"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento testo"
+ }
+ }
+ },
+ "badges": {
+ "name": "Badge",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "In basso a sinistra"
+ },
+ "options__2": {
+ "label": "In basso a destra"
+ },
+ "options__3": {
+ "label": "In alto a sinistra"
+ },
+ "options__4": {
+ "label": "In alto a destra"
+ },
+ "label": "Posizione sulle schede"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Schema colori per badge vendita"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Schema colori per badge esaurito"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Pulsanti"
+ },
+ "variant_pills": {
+ "name": "Pulsanti di selezione variante",
+ "paragraph": "I pulsanti di selezione variante costituiscono uno dei modi in cui puoi visualizzare le varianti di prodotto. [Maggiori informazioni](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Input"
+ },
+ "content_containers": {
+ "name": "Contenitori contenuto"
+ },
+ "popups": {
+ "name": "Menu a discesa e pop up",
+ "paragraph": "Incide su aree come menu di navigazione a discesa, modali pop up e pop up di carrello."
+ },
+ "media": {
+ "name": "Contenuti multimediali"
+ },
+ "drawers": {
+ "name": "Finestre"
+ },
+ "cart": {
+ "name": "Carrello",
+ "settings": {
+ "cart_type": {
+ "label": "Tipo di carrello",
+ "drawer": {
+ "label": "Finestra"
+ },
+ "page": {
+ "label": "Pagina"
+ },
+ "notification": {
+ "label": "Notifica pop up"
+ }
+ },
+ "show_vendor": {
+ "label": "Mostra fornitore"
+ },
+ "show_cart_note": {
+ "label": "Abilita nota carrello"
+ },
+ "cart_drawer": {
+ "header": "Finestra del carrello",
+ "collection": {
+ "label": "Collezione",
+ "info": "Visibile quando la finestra del carrello è vuota."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Schede prodotto",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Scheda"
+ },
+ "label": "Stile"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Schede collezioni",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Scheda"
+ },
+ "label": "Stile"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Schede del blog",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Scheda"
+ },
+ "label": "Stile"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Larghezza logo su desktop",
+ "info": "Larghezza del logo automaticamente ottimizzata per i dispositivi mobili."
+ },
+ "favicon": {
+ "label": "Immagine favicon",
+ "info": "Verrà ridimensionata a 32 x 32 pixel"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informazioni sul brand",
+ "settings": {
+ "brand_headline": {
+ "label": "Titolo"
+ },
+ "brand_description": {
+ "label": "Descrizione"
+ },
+ "brand_image": {
+ "label": "Immagine"
+ },
+ "brand_image_width": {
+ "label": "Larghezza immagine"
+ },
+ "paragraph": {
+ "content": "Aggiungi una descrizione del tuo brand al footer del negozio."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animazioni",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Mostra sezioni durante lo scorrimento"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Nessuno"
+ },
+ "options__2": {
+ "label": "Vertical lift"
+ },
+ "label": "Effetto hover",
+ "info": "Riguarda schede e pulsanti.",
+ "options__3": {
+ "label": "3D lift"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Spaziatura sezione",
+ "padding_top": "Spaziatura superiore",
+ "padding_bottom": "Spaziatura inferiore"
+ },
+ "spacing": "Spaziatura",
+ "colors": {
+ "label": "Schema colori",
+ "has_cards_info": "Per modificare lo schema dei colori delle schede, aggiorna le impostazioni del tema."
+ },
+ "heading_size": {
+ "label": "Dimensione titolo",
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "options__4": {
+ "label": "Extra large"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Predefinito"
+ },
+ "options__2": {
+ "label": "Arco"
+ },
+ "options__3": {
+ "label": "Goccia"
+ },
+ "options__4": {
+ "label": "Parentesi ad angolo a sinistra"
+ },
+ "options__5": {
+ "label": "Parentesi ad angolo a destra"
+ },
+ "options__6": {
+ "label": "Diamante"
+ },
+ "options__7": {
+ "label": "Parallelogramma"
+ },
+ "options__8": {
+ "label": "Cerchio"
+ },
+ "label": "Forma immagine",
+ "info": "Le schede con stile Standard e una Forma immagine selezionata non hanno bordi."
+ },
+ "animation": {
+ "content": "Animazioni",
+ "image_behavior": {
+ "options__1": {
+ "label": "Nessuno"
+ },
+ "options__2": {
+ "label": "Scorrimento lento"
+ },
+ "label": "Comportamento delle immagini",
+ "options__3": {
+ "label": "Posizione dello sfondo fissa"
+ },
+ "options__4": {
+ "label": "Zoom avanti durante lo scorrimento"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Barra degli annunci",
+ "blocks": {
+ "announcement": {
+ "name": "Annuncio",
+ "settings": {
+ "text": {
+ "label": "Testo"
+ },
+ "text_alignment": {
+ "label": "Allineamento testo",
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ }
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Ruota annunci automaticamente"
+ },
+ "change_slides_speed": {
+ "label": "Cambio"
+ },
+ "header__1": {
+ "content": "Icone dei social media",
+ "info": "Per mostrare i tuoi account sui social media, inseriscine i link nelle [impostazioni tema](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Annunci"
+ },
+ "show_social": {
+ "label": "Mostra icone sul desktop"
+ },
+ "header__3": {
+ "content": "Selettore paese/area geografica",
+ "info": "Per aggiungere un paese/un'area geografica, vai alle [impostazioni di mercato.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Abilita selettore paese/area geografica"
+ },
+ "header__4": {
+ "content": "Selettore lingua",
+ "info": "Per aggiungere una lingua, vai alle [impostazioni lingua.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Abilita selettore lingua"
+ }
+ },
+ "presets": {
+ "name": "Barra degli annunci"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ },
+ "desktop_layout": {
+ "label": "Layout desktop",
+ "options__1": {
+ "label": "Blocco grande sinistro"
+ },
+ "options__2": {
+ "label": "Blocco grande destro"
+ }
+ },
+ "mobile_layout": {
+ "label": "Layout dispositivo mobile",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Colonna"
+ }
+ },
+ "card_styles": {
+ "label": "Stile scheda",
+ "info": "È possibile aggiornare gli stili delle schede dei blog, delle collezioni e dei prodotti.",
+ "options__1": {
+ "label": "Utilizza stili delle schede personali"
+ },
+ "options__2": {
+ "label": "Assimila tutti gli stili a quelli delle schede di prodotto"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Immagine",
+ "settings": {
+ "image": {
+ "label": "Immagine"
+ }
+ }
+ },
+ "product": {
+ "name": "Prodotto",
+ "settings": {
+ "product": {
+ "label": "Prodotto"
+ },
+ "secondary_background": {
+ "label": "Mostra sfondo secondario"
+ },
+ "second_image": {
+ "label": "Mostra la seconda immagine al passaggio del mouse"
+ }
+ }
+ },
+ "collection": {
+ "name": "Collezione",
+ "settings": {
+ "collection": {
+ "label": "Collezione"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Immagine di copertina"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Se la sezione contiene altri blocchi, il video viene riprodotto in un pop-up.",
+ "placeholder": "Utilizza un URL YouTube o Vimeo"
+ },
+ "description": {
+ "label": "Testo alternativo del video",
+ "info": "Descrivi il video per i clienti che utilizzano i lettori di schermo. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Elenco delle collezioni",
+ "settings": {
+ "title": {
+ "label": "Titolo"
+ },
+ "image_ratio": {
+ "label": "Proporzioni delle immagini",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Ritratto"
+ },
+ "options__3": {
+ "label": "Quadrate"
+ },
+ "info": "Aggiungi immagini modificando le collezioni. [Maggiori informazioni](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Abilita scorrimento su dispositivo mobile"
+ },
+ "show_view_all": {
+ "label": "Abilita il pulsante \"Visualizza tutto\" se l'elenco include più collezioni di quelle mostrate"
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Collezione",
+ "settings": {
+ "collection": {
+ "label": "Collezione"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Elenco delle collezioni"
+ }
+ },
+ "contact-form": {
+ "name": "Modulo di contatto",
+ "presets": {
+ "name": "Modulo di contatto"
+ }
+ },
+ "custom-liquid": {
+ "name": "Liquid personalizzato",
+ "settings": {
+ "custom_liquid": {
+ "label": "Codice Liquid",
+ "info": "Aggiungi snippet di app o altro codice Liquid per creare personalizzazioni avanzate. [Maggiori informazioni](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Liquid personalizzato"
+ }
+ },
+ "featured-blog": {
+ "name": "Articoli del blog",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Numero di articoli del blog da mostrare"
+ },
+ "show_view_all": {
+ "label": "Abilita il pulsante \"Visualizza tutto\" se il blog include più articoli di quelli mostrati"
+ },
+ "show_image": {
+ "label": "Mostra immagine in evidenza",
+ "info": "Per un risultato ottimale, utilizza un'immagine con proporzioni 3:2. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Mostra data"
+ },
+ "show_author": {
+ "label": "Mostra autore"
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ }
+ },
+ "presets": {
+ "name": "Articoli del blog"
+ }
+ },
+ "featured-collection": {
+ "name": "Collezione in evidenza",
+ "settings": {
+ "title": {
+ "label": "Titolo"
+ },
+ "collection": {
+ "label": "Collezione"
+ },
+ "products_to_show": {
+ "label": "Massimo di prodotti da mostrare"
+ },
+ "show_view_all": {
+ "label": "Abilita \"Visualizza tutto\" se la collezione include più prodotti di quelli mostrati"
+ },
+ "header": {
+ "content": "Scheda prodotto"
+ },
+ "image_ratio": {
+ "label": "Proporzioni delle immagini",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Ritratto"
+ },
+ "options__3": {
+ "label": "Quadrate"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostra la seconda immagine al passaggio del mouse"
+ },
+ "show_vendor": {
+ "label": "Mostra fornitore"
+ },
+ "show_rating": {
+ "label": "Mostra valutazione del prodotto",
+ "info": "Per mostrare una valutazione, aggiungi un'app di valutazione del prodotto. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Abilita il pulsante di aggiunta rapida",
+ "info": "L'ideale in caso di pop up o di tipo di carrello a finestra."
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "description": {
+ "label": "Descrizione"
+ },
+ "show_description": {
+ "label": "Mostra descrizione collezione dal pannello di controllo Shopify"
+ },
+ "description_style": {
+ "label": "Stile descrizione",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Contorno pulsante"
+ },
+ "options__3": {
+ "label": "Pulsante in tinta unita"
+ },
+ "label": "Stile \"Visualizza tutto\""
+ },
+ "enable_desktop_slider": {
+ "label": "Consenti carosello su desktop"
+ },
+ "full_width": {
+ "label": "Rendi prodotti a larghezza intera"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Abilita scorrimento su dispositivo mobile"
+ }
+ },
+ "presets": {
+ "name": "Collezione in evidenza"
+ }
+ },
+ "footer": {
+ "name": "Footer",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Mostra solo le voci di menu di livello superiore."
+ }
+ }
+ },
+ "text": {
+ "name": "Testo",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ },
+ "subtext": {
+ "label": "Sottotesto"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informazioni sul brand",
+ "settings": {
+ "paragraph": {
+ "content": "Questo blocco mostrerà le informazioni sul tuo brand. [Modifica le informazioni sul brand.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Icone dei social media"
+ },
+ "show_social": {
+ "label": "Mostra icone dei social media",
+ "info": "Per mostrare i tuoi account sui social media, inseriscine i link nelle [impostazioni tema](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Mostra iscrizione alla newsletter"
+ },
+ "newsletter_heading": {
+ "label": "Titolo"
+ },
+ "header__1": {
+ "content": "Iscrizione alla newsletter",
+ "info": "Iscritti aggiunti automaticamente all'elenco dei clienti che \"hanno accettato le comunicazioni di marketing\". [Maggiori informazioni](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Icone dei social media",
+ "info": "Per mostrare i tuoi account sui social media, inseriscine i link nelle [impostazioni tema](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Mostra icone dei social media"
+ },
+ "header__3": {
+ "content": "Selettore paese/area geografica"
+ },
+ "header__4": {
+ "info": "Per aggiungere un paese/un'area geografica, vai alle [impostazioni di mercato.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Abilita selettore paese/area geografica"
+ },
+ "header__5": {
+ "content": "Selettore lingua"
+ },
+ "header__6": {
+ "info": "Per aggiungere una lingua, vai alle [impostazioni lingua.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Abilita selettore lingua"
+ },
+ "header__7": {
+ "content": "Metodi di pagamento"
+ },
+ "payment_enable": {
+ "label": "Mostra le icone di pagamento"
+ },
+ "margin_top": {
+ "label": "Margine superiore"
+ },
+ "header__8": {
+ "content": "Link alle informative",
+ "info": "Per aggiungere le informative del negozio, vai alle [impostazioni delle informative](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Mostra link alle informative"
+ },
+ "header__9": {
+ "content": "Segui su Shop",
+ "info": "Shop Pay deve essere abilitato per consentire ai clienti di seguire il tuo negozio sull'app Shop dalla tua vetrina virtuale. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Abilita Segui su Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Header",
+ "settings": {
+ "logo_position": {
+ "label": "Posizione logo su desktop",
+ "options__1": {
+ "label": "In mezzo a sinistra"
+ },
+ "options__2": {
+ "label": "In alto a sinistra"
+ },
+ "options__3": {
+ "label": "In alto al centro"
+ },
+ "options__4": {
+ "label": "In mezzo al centro"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Mostra linea di separazione"
+ },
+ "margin_bottom": {
+ "label": "Margine inferiore"
+ },
+ "menu_type_desktop": {
+ "label": "Tipo menu desktop",
+ "info": "Tipo menu automaticamente ottimizzato per dispositivi mobili.",
+ "options__1": {
+ "label": "Menu a discesa"
+ },
+ "options__2": {
+ "label": "Mega menu"
+ },
+ "options__3": {
+ "label": "Finestra"
+ }
+ },
+ "mobile_layout": {
+ "content": "Layout dispositivo mobile"
+ },
+ "mobile_logo_position": {
+ "label": "Posizione del logo mobile",
+ "options__1": {
+ "label": "Al centro"
+ },
+ "options__2": {
+ "label": "A sinistra"
+ }
+ },
+ "logo_help": {
+ "content": "Modifica il tuo logo nelle [impostazioni tema](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Header fisso",
+ "options__1": {
+ "label": "Nessuno"
+ },
+ "options__2": {
+ "label": "Durante lo scorrimento verso l'alto"
+ },
+ "options__3": {
+ "label": "Sempre"
+ },
+ "options__4": {
+ "label": "Sempre, riduci dimensione logo"
+ }
+ },
+ "header__3": {
+ "content": "Selettore paese/area geografica"
+ },
+ "header__4": {
+ "info": "Per aggiungere un paese/un'area geografica, vai alle [impostazioni di mercato.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Abilita selettore paese/area geografica"
+ },
+ "header__5": {
+ "content": "Selettore lingua"
+ },
+ "header__6": {
+ "info": "Per aggiungere una lingua, vai alle [impostazioni lingua.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Abilita selettore lingua"
+ },
+ "header__1": {
+ "content": "Colore"
+ },
+ "menu_color_scheme": {
+ "label": "Schema di colori del menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Immagine banner",
+ "settings": {
+ "image": {
+ "label": "Prima immagine"
+ },
+ "image_2": {
+ "label": "Seconda immagine"
+ },
+ "stack_images_on_mobile": {
+ "label": "Elenca immagini su dispositivo mobile"
+ },
+ "show_text_box": {
+ "label": "Mostra contenitore sul desktop"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacità della sovrapposizione immagine"
+ },
+ "show_text_below": {
+ "label": "Mostra contenitore su dispositivo mobile"
+ },
+ "image_height": {
+ "label": "Altezza banner",
+ "options__1": {
+ "label": "Adatta alla prima immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Media"
+ },
+ "info": "Per un risultato ottimale, utilizza un'immagine con proporzioni 3:2. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "In alto a sinistra"
+ },
+ "options__2": {
+ "label": "In alto al centro"
+ },
+ "options__3": {
+ "label": "In alto a destra"
+ },
+ "options__4": {
+ "label": "In mezzo a sinistra"
+ },
+ "options__5": {
+ "label": "In mezzo al centro"
+ },
+ "options__6": {
+ "label": "In mezzo a destra"
+ },
+ "options__7": {
+ "label": "In basso a sinistra"
+ },
+ "options__8": {
+ "label": "In basso al centro"
+ },
+ "options__9": {
+ "label": "In basso a destra"
+ },
+ "label": "Posizione contenuto su desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su desktop"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su dispositivi mobili"
+ },
+ "mobile": {
+ "content": "Layout dispositivo mobile"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titolo",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ }
+ }
+ },
+ "text": {
+ "name": "Testo",
+ "settings": {
+ "text": {
+ "label": "Descrizione"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Testo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ },
+ "label": "Stile del testo"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Pulsanti",
+ "settings": {
+ "button_label_1": {
+ "label": "Prima etichetta pulsante",
+ "info": "Lascia vuota l'etichetta per nascondere il pulsante."
+ },
+ "button_link_1": {
+ "label": "Primo link pulsante"
+ },
+ "button_style_secondary_1": {
+ "label": "Utilizza stile contorno pulsante"
+ },
+ "button_label_2": {
+ "label": "Seconda etichetta pulsante",
+ "info": "Lascia vuota l'etichetta per nascondere il pulsante."
+ },
+ "button_link_2": {
+ "label": "Secondo link pulsante"
+ },
+ "button_style_secondary_2": {
+ "label": "Utilizza stile contorno pulsante"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Immagine banner"
+ }
+ },
+ "image-with-text": {
+ "name": "Immagine con testo",
+ "settings": {
+ "image": {
+ "label": "Immagine"
+ },
+ "height": {
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Media"
+ },
+ "label": "Altezza immagine",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Prima l'immagine"
+ },
+ "options__2": {
+ "label": "Seconda immagine"
+ },
+ "label": "Posizionamento immagine su desktop",
+ "info": "Il layout predefinito per dispositivi mobili prevede prima l'immagine."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Larghezza immagine su desktop",
+ "info": "L'immagine viene automaticamente ottimizzata per il mobile."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su desktop",
+ "options__2": {
+ "label": "Al centro"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "In alto"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "In basso"
+ },
+ "label": "Posizione contenuto su desktop"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Non sovrapporre"
+ },
+ "options__2": {
+ "label": "Sovrapponi"
+ },
+ "label": "Layout del contenuto"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su dispositivi mobili",
+ "options__2": {
+ "label": "Al centro"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titolo",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ }
+ }
+ },
+ "text": {
+ "name": "Testo",
+ "settings": {
+ "text": {
+ "label": "Contenuto"
+ },
+ "text_style": {
+ "label": "Stile del testo",
+ "options__1": {
+ "label": "Testo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Pulsante",
+ "settings": {
+ "button_label": {
+ "label": "Etichetta pulsante",
+ "info": "Lascia vuota l'etichetta per nascondere il pulsante."
+ },
+ "button_link": {
+ "label": "Link pulsante"
+ },
+ "outline_button": {
+ "label": "Utilizza stile contorno pulsante"
+ }
+ }
+ },
+ "caption": {
+ "name": "Didascalia",
+ "settings": {
+ "text": {
+ "label": "Testo"
+ },
+ "text_style": {
+ "label": "Stile testo",
+ "options__1": {
+ "label": "Sottotitolo"
+ },
+ "options__2": {
+ "label": "Maiuscolo"
+ }
+ },
+ "caption_size": {
+ "label": "Dimensione del testo",
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Immagine con testo"
+ }
+ },
+ "main-article": {
+ "name": "Articolo del blog",
+ "blocks": {
+ "featured_image": {
+ "name": "Immagine in evidenza",
+ "settings": {
+ "image_height": {
+ "label": "Altezza immagine in evidenza",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Media"
+ },
+ "info": "Per un risultato ottimale utilizza un'immagine con proporzioni 16:9. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titolo",
+ "settings": {
+ "blog_show_date": {
+ "label": "Mostra data"
+ },
+ "blog_show_author": {
+ "label": "Mostra autore"
+ }
+ }
+ },
+ "content": {
+ "name": "Contenuto"
+ },
+ "share": {
+ "name": "Condividi",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se includi un link in post sui social media, l'immagine in evidenza della pagina verrà mostrata come immagine di anteprima. [Maggiori informazioni](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Insieme all'immagine di anteprima sono inclusi un titolo e una descrizione del negozio. [Maggiori informazioni](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Testo"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Articoli del blog",
+ "settings": {
+ "header": {
+ "content": "Scheda articoli del blog"
+ },
+ "show_image": {
+ "label": "Mostra immagine in evidenza"
+ },
+ "paragraph": {
+ "content": "Modifica i riassunti modificando gli articoli del blog. [Maggiori informazioni](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Mostra data"
+ },
+ "show_author": {
+ "label": "Mostra autore"
+ },
+ "layout": {
+ "label": "Layout desktop",
+ "options__1": {
+ "label": "Griglia"
+ },
+ "options__2": {
+ "label": "Collage"
+ },
+ "info": "I post sono visualizzati in elenco sui dispositivi mobili."
+ },
+ "image_height": {
+ "label": "Altezza immagine in evidenza",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Media"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Per un risultato ottimale, utilizza un'immagine con proporzioni 3:2. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotale",
+ "blocks": {
+ "subtotal": {
+ "name": "Prezzo subtotale"
+ },
+ "buttons": {
+ "name": "Pulsante check-out"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Articoli"
+ },
+ "main-collection-banner": {
+ "name": "Banner collezione",
+ "settings": {
+ "paragraph": {
+ "content": "Aggiungi una descrizione o un'immagine modificando la collezione. [Maggiori informazioni](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Mostra descrizione collezione"
+ },
+ "show_collection_image": {
+ "label": "Mostra immagine collezione",
+ "info": "Per un risultato ottimale utilizza un'immagine con proporzioni 16:9. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Griglia prodotti",
+ "settings": {
+ "products_per_page": {
+ "label": "Prodotti per pagina"
+ },
+ "image_ratio": {
+ "label": "Proporzioni delle immagini",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Ritratto"
+ },
+ "options__3": {
+ "label": "Quadrate"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostra la seconda immagine al passaggio del mouse"
+ },
+ "show_vendor": {
+ "label": "Mostra fornitore"
+ },
+ "enable_tags": {
+ "label": "Abilita i filtri",
+ "info": "Personalizza i filtri con l'app Search & Discovery. [Maggiori informazioni](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Abilita i filtri",
+ "info": "Personalizza i filtri con l'app Search & Discovery. [Maggiori informazioni](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Abilita ordinamento"
+ },
+ "header__1": {
+ "content": "Filtri e ordinamento"
+ },
+ "header__3": {
+ "content": "Scheda prodotto"
+ },
+ "show_rating": {
+ "label": "Mostra valutazione del prodotto",
+ "info": "Per mostrare una valutazione, aggiungi un'app di valutazione del prodotto. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Abilita il pulsante di aggiunta rapida",
+ "info": "L'ideale in caso di pop up o di tipo di carrello a finestra."
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ },
+ "filter_type": {
+ "label": "Layout dei filtri desktop",
+ "options__1": {
+ "label": "Orizzontale"
+ },
+ "options__2": {
+ "label": "Verticale"
+ },
+ "options__3": {
+ "label": "Finestra"
+ },
+ "info": "Il layout predefinito per dispositivi mobili prevede la finestra."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Pagina con l'elenco delle collezioni",
+ "settings": {
+ "title": {
+ "label": "Titolo"
+ },
+ "sort": {
+ "label": "Ordina le collezioni per:",
+ "options__1": {
+ "label": "In ordine alfabetico, A-Z"
+ },
+ "options__2": {
+ "label": "In ordine alfabetico, Z-A"
+ },
+ "options__3": {
+ "label": "Data, da più a meno recente"
+ },
+ "options__4": {
+ "label": "Data, da meno a più recente"
+ },
+ "options__5": {
+ "label": "Conteggio prodotti decrescente"
+ },
+ "options__6": {
+ "label": "Conteggio prodotti crescente"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporzioni delle immagini",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Ritratto"
+ },
+ "options__3": {
+ "label": "Quadrate"
+ },
+ "info": "Aggiungi immagini modificando le collezioni. [Maggiori informazioni](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su dispositivo mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Pagina"
+ },
+ "main-password-footer": {
+ "name": "Footer della password"
+ },
+ "main-password-header": {
+ "name": "Header della password",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Modifica il tuo logo nelle impostazioni tema."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Informazioni di prodotto",
+ "blocks": {
+ "text": {
+ "name": "Testo",
+ "settings": {
+ "text": {
+ "label": "Testo"
+ },
+ "text_style": {
+ "label": "Stile del testo",
+ "options__1": {
+ "label": "Testo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titolo"
+ },
+ "price": {
+ "name": "Prezzo"
+ },
+ "quantity_selector": {
+ "name": "Selettore di quantità"
+ },
+ "variant_picker": {
+ "name": "Selettore di variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Menu a discesa"
+ },
+ "options__2": {
+ "label": "\"A pillole\""
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy button",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Mostra pulsanti di check-out dinamico",
+ "info": "Utilizzando i metodi di pagamento disponibili sul tuo negozio, i clienti vedranno la propria opzione preferita, ad esempio PayPal o Apple Pay. [Maggiori informazioni](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Mostra il modulo informazioni del destinatario per i buoni regalo",
+ "info": "Consente agli acquirenti di inviare i buoni regalo in una data programmata insieme a un messaggio personale. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Disponibilità di ritiro"
+ },
+ "description": {
+ "name": "Descrizione"
+ },
+ "share": {
+ "name": "Condividi",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se includi un link in post sui social media, l'immagine in evidenza della pagina verrà mostrata come immagine di anteprima. [Maggiori informazioni](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Insieme all'immagine di anteprima sono inclusi un titolo e una descrizione del negozio. [Maggiori informazioni](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Testo"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Riga comprimibile",
+ "settings": {
+ "heading": {
+ "info": "Includi un titolo che spieghi il contenuto.",
+ "label": "Titolo"
+ },
+ "content": {
+ "label": "Contenuto riga"
+ },
+ "page": {
+ "label": "Contenuto riga dalla pagina"
+ },
+ "icon": {
+ "label": "Icona",
+ "options__1": {
+ "label": "Nessuna"
+ },
+ "options__2": {
+ "label": "Mela"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Bottiglia"
+ },
+ "options__5": {
+ "label": "Casella"
+ },
+ "options__6": {
+ "label": "Carota"
+ },
+ "options__7": {
+ "label": "Fumetto chat"
+ },
+ "options__8": {
+ "label": "Segno di spunta"
+ },
+ "options__9": {
+ "label": "Blocco appunti"
+ },
+ "options__10": {
+ "label": "Latticini"
+ },
+ "options__11": {
+ "label": "Senza latticini"
+ },
+ "options__12": {
+ "label": "Asciugatrice"
+ },
+ "options__13": {
+ "label": "Occhio"
+ },
+ "options__14": {
+ "label": "Fuoco"
+ },
+ "options__15": {
+ "label": "Senza glutine"
+ },
+ "options__16": {
+ "label": "Cuore"
+ },
+ "options__17": {
+ "label": "Ferro"
+ },
+ "options__18": {
+ "label": "Foglia"
+ },
+ "options__19": {
+ "label": "Pelle"
+ },
+ "options__20": {
+ "label": "Fulmine"
+ },
+ "options__21": {
+ "label": "Rossetto"
+ },
+ "options__22": {
+ "label": "Lucchetto"
+ },
+ "options__23": {
+ "label": "Pin mappa"
+ },
+ "options__24": {
+ "label": "Senza frutta a guscio"
+ },
+ "options__25": {
+ "label": "Pantaloni"
+ },
+ "options__26": {
+ "label": "Impronta di zampa"
+ },
+ "options__27": {
+ "label": "Pepe"
+ },
+ "options__28": {
+ "label": "Profumi"
+ },
+ "options__29": {
+ "label": "Aereo"
+ },
+ "options__30": {
+ "label": "Piante"
+ },
+ "options__31": {
+ "label": "Cartellino prezzo"
+ },
+ "options__32": {
+ "label": "Punto interrogativo"
+ },
+ "options__33": {
+ "label": "Riciclo"
+ },
+ "options__34": {
+ "label": "Reso"
+ },
+ "options__35": {
+ "label": "Righello"
+ },
+ "options__36": {
+ "label": "Piatto da portata"
+ },
+ "options__37": {
+ "label": "Maglietta"
+ },
+ "options__38": {
+ "label": "Scarpa"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Fiocco di neve"
+ },
+ "options__41": {
+ "label": "Stella"
+ },
+ "options__42": {
+ "label": "Cronometro"
+ },
+ "options__43": {
+ "label": "Camion"
+ },
+ "options__44": {
+ "label": "Lavaggio"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop up",
+ "settings": {
+ "link_label": {
+ "label": "Etichetta link"
+ },
+ "page": {
+ "label": "Pagina"
+ }
+ }
+ },
+ "rating": {
+ "name": "Valutazione del prodotto",
+ "settings": {
+ "paragraph": {
+ "content": "Per mostrare una valutazione, aggiungi un'app di valutazione del prodotto. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Prodotti complementari",
+ "settings": {
+ "paragraph": {
+ "content": "Aggiungi l'app Search & Discovery per selezionare i prodotti complementari. [Maggiori informazioni](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Titolo"
+ },
+ "make_collapsible_row": {
+ "label": "Mostra come riga comprimibile"
+ },
+ "icon": {
+ "info": "Visibile quando è visualizzata la riga comprimibile."
+ },
+ "product_list_limit": {
+ "label": "Massimo di prodotti da mostrare"
+ },
+ "products_per_page": {
+ "label": "Numero di prodotti per pagina"
+ },
+ "pagination_style": {
+ "label": "Stile impaginazione",
+ "options": {
+ "option_1": "Punti",
+ "option_2": "Contatore",
+ "option_3": "Numeri"
+ }
+ },
+ "product_card": {
+ "heading": "Scheda prodotto"
+ },
+ "image_ratio": {
+ "label": "Proporzioni immagine",
+ "options": {
+ "option_1": "Verticale",
+ "option_2": "Square"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Abilita il pulsante di aggiunta rapida"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Icona con testo",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Orizzontale"
+ },
+ "options__2": {
+ "label": "Verticale"
+ }
+ },
+ "content": {
+ "label": "Contenuto",
+ "info": "Scegli un'icona o aggiungi un'immagine per ogni colonna o riga."
+ },
+ "heading": {
+ "info": "Lascia vuota l'etichetta del titolo per nascondere la colonna delle icone."
+ },
+ "icon_1": {
+ "label": "Prima icona"
+ },
+ "image_1": {
+ "label": "Prima immagine"
+ },
+ "heading_1": {
+ "label": "Primo titolo"
+ },
+ "icon_2": {
+ "label": "Seconda icona"
+ },
+ "image_2": {
+ "label": "Seconda immagine"
+ },
+ "heading_2": {
+ "label": "Secondo titolo"
+ },
+ "icon_3": {
+ "label": "Terza icona"
+ },
+ "image_3": {
+ "label": "Terza immagine"
+ },
+ "heading_3": {
+ "label": "Terzo titolo"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Stile testo",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Stato delle scorte",
+ "settings": {
+ "text_style": {
+ "label": "Stile testo",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Soglia per le scorte scarse",
+ "info": "Scegli 0 per mostrare sempre disponibili, se stoccati."
+ },
+ "show_inventory_quantity": {
+ "label": "Mostra conteggio delle scorte"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Contenuti multimediali",
+ "info": "Maggiori informazioni sui [tipi di contenuti multimediali](https://help.shopify.com/manual/products/product-media)."
+ },
+ "enable_video_looping": {
+ "label": "Abilita la riproduzione in loop dei video"
+ },
+ "enable_sticky_info": {
+ "label": "Abilita contenuto fisso su desktop"
+ },
+ "hide_variants": {
+ "label": "Nascondi i contenuti multimediali delle altre varianti dopo averne selezionata una"
+ },
+ "gallery_layout": {
+ "label": "Layout desktop",
+ "options__1": {
+ "label": "Elencato"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ },
+ "options__3": {
+ "label": "Miniature"
+ },
+ "options__4": {
+ "label": "Carosello miniature"
+ }
+ },
+ "media_size": {
+ "label": "Larghezza dei contenuti multimediali su desktop",
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "info": "Contenuti multimediali automaticamente ottimizzati per dispositivi mobili."
+ },
+ "mobile_thumbnails": {
+ "label": "Layout dispositivo mobile",
+ "options__1": {
+ "label": "2 colonne"
+ },
+ "options__2": {
+ "label": "Mostra miniature"
+ },
+ "options__3": {
+ "label": "Nascondi miniature"
+ }
+ },
+ "media_position": {
+ "label": "Posizione contenuti multimediali su desktop",
+ "info": "Posizione automaticamente ottimizzata per dispositivi mobili.",
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "A destra"
+ }
+ },
+ "image_zoom": {
+ "label": "Zoom immagine",
+ "info": "Clicca e fai scorrere il mouse sopra le impostazioni predefinite per aprire una lightbox sul dispositivo mobile.",
+ "options__1": {
+ "label": "Apri la lightbox"
+ },
+ "options__2": {
+ "label": "Clicca e fai scorrere il mouse"
+ },
+ "options__3": {
+ "label": "Nessuno zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Adatta i contenuti multimediali all'altezza dello schermo"
+ },
+ "media_fit": {
+ "label": "Adattamento dei contenuti multimediali",
+ "options__1": {
+ "label": "Originale"
+ },
+ "options__2": {
+ "label": "Riempi"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Risultati della ricerca",
+ "settings": {
+ "image_ratio": {
+ "label": "Proporzioni delle immagini",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Ritratto"
+ },
+ "options__3": {
+ "label": "Quadrate"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostra la seconda immagine al passaggio del mouse"
+ },
+ "show_vendor": {
+ "label": "Mostra fornitore"
+ },
+ "header__1": {
+ "content": "Scheda prodotto"
+ },
+ "header__2": {
+ "content": "Scheda del blog",
+ "info": "Lo stile della scheda del blog si applica anche alle schede della pagina nei risultati di ricerca. Per modificare lo stile delle schede, aggiorna le impostazioni del tema."
+ },
+ "article_show_date": {
+ "label": "Mostra data"
+ },
+ "article_show_author": {
+ "label": "Mostra autore"
+ },
+ "show_rating": {
+ "label": "Mostra valutazione del prodotto",
+ "info": "Per mostrare una valutazione, aggiungi un'app di valutazione del prodotto. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Multicolonna",
+ "settings": {
+ "title": {
+ "label": "Titolo"
+ },
+ "image_width": {
+ "label": "Larghezza immagine",
+ "options__1": {
+ "label": "Un terzo della larghezza della colonna"
+ },
+ "options__2": {
+ "label": "Metà della larghezza della colonna"
+ },
+ "options__3": {
+ "label": "Intera larghezza della colonna"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporzioni delle immagini",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Ritratto"
+ },
+ "options__3": {
+ "label": "Quadrate"
+ },
+ "options__4": {
+ "label": "Tonde"
+ }
+ },
+ "column_alignment": {
+ "label": "Allineamento colonna",
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ }
+ },
+ "background_style": {
+ "label": "Sfondo secondario",
+ "options__1": {
+ "label": "Nessuno"
+ },
+ "options__2": {
+ "label": "Mostra come sfondo colonna"
+ }
+ },
+ "button_label": {
+ "label": "Etichetta pulsante"
+ },
+ "button_link": {
+ "label": "Link pulsante"
+ },
+ "swipe_on_mobile": {
+ "label": "Abilita scorrimento su dispositivo mobile"
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Colonna",
+ "settings": {
+ "image": {
+ "label": "Immagine"
+ },
+ "title": {
+ "label": "Titolo"
+ },
+ "text": {
+ "label": "Descrizione"
+ },
+ "link_label": {
+ "label": "Etichetta link"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multicolonna"
+ }
+ },
+ "newsletter": {
+ "name": "Iscrizione alla newsletter",
+ "settings": {
+ "full_width": {
+ "label": "Crea sezione a larghezza intera"
+ },
+ "paragraph": {
+ "content": "Ogni abbonamento email crea un account cliente. [Maggiori informazioni](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titolo",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Sottotitolo",
+ "settings": {
+ "paragraph": {
+ "label": "Descrizione"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Modulo email"
+ }
+ },
+ "presets": {
+ "name": "Iscrizione alla newsletter"
+ }
+ },
+ "page": {
+ "name": "Pagina",
+ "settings": {
+ "page": {
+ "label": "Pagina"
+ }
+ },
+ "presets": {
+ "name": "Pagina"
+ }
+ },
+ "rich-text": {
+ "name": "Rich text",
+ "settings": {
+ "full_width": {
+ "label": "Crea sezione a larghezza intera"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Posizione contenuto su desktop",
+ "info": "Posizione automaticamente ottimizzata per dispositivi mobili."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titolo",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ }
+ }
+ },
+ "text": {
+ "name": "Testo",
+ "settings": {
+ "text": {
+ "label": "Descrizione"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Pulsanti",
+ "settings": {
+ "button_label_1": {
+ "label": "Prima etichetta pulsante",
+ "info": "Lascia vuota l'etichetta per nascondere il pulsante."
+ },
+ "button_link_1": {
+ "label": "Primo link pulsante"
+ },
+ "button_style_secondary_1": {
+ "label": "Utilizza stile contorno pulsante"
+ },
+ "button_label_2": {
+ "label": "Seconda etichetta pulsante",
+ "info": "Lascia vuota l'etichetta per nascondere il pulsante."
+ },
+ "button_link_2": {
+ "label": "Secondo link pulsante"
+ },
+ "button_style_secondary_2": {
+ "label": "Utilizza stile contorno pulsante"
+ }
+ }
+ },
+ "caption": {
+ "name": "Didascalia",
+ "settings": {
+ "text": {
+ "label": "Testo"
+ },
+ "text_style": {
+ "label": "Stile testo",
+ "options__1": {
+ "label": "Sottotitolo"
+ },
+ "options__2": {
+ "label": "Maiuscolo"
+ }
+ },
+ "caption_size": {
+ "label": "Dimensione del testo",
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich text"
+ }
+ },
+ "apps": {
+ "name": "App",
+ "settings": {
+ "include_margins": {
+ "label": "Rendi i margini della sezione uguali al tema"
+ }
+ },
+ "presets": {
+ "name": "App"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ },
+ "cover_image": {
+ "label": "Immagine di copertina"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Utilizza un URL YouTube o Vimeo"
+ },
+ "description": {
+ "label": "Testo alternativo del video",
+ "info": "Descrivi il video per i clienti che utilizzano i lettori di schermo. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Aggiungi spaziatura immagine",
+ "info": "Se non desideri che l'immagine di copertina venga ritagliata, seleziona una spaziatura per l'immagine."
+ },
+ "full_width": {
+ "label": "Rendi sezione a larghezza intera"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Riproduci il video in loop"
+ },
+ "header__1": {
+ "content": "Video ospitato da Shopify"
+ },
+ "header__2": {
+ "content": "Oppure incorpora il video da URL"
+ },
+ "header__3": {
+ "content": "Stile"
+ },
+ "paragraph": {
+ "content": "Viene mostrato quando non viene selezionato nessun video ospitato da Shopify."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Sezione \"prodotto in primo piano\"",
+ "blocks": {
+ "text": {
+ "name": "Testo",
+ "settings": {
+ "text": {
+ "label": "Testo"
+ },
+ "text_style": {
+ "label": "Stile del testo",
+ "options__1": {
+ "label": "Testo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titolo"
+ },
+ "price": {
+ "name": "Prezzo"
+ },
+ "quantity_selector": {
+ "name": "Selettore quantità"
+ },
+ "variant_picker": {
+ "name": "Selettore di variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Menu a discesa"
+ },
+ "options__2": {
+ "label": "\"A pillole\""
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy button",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Mostra pulsanti di check-out dinamico",
+ "info": "Utilizzando i metodi di pagamento disponibili sul tuo negozio, i clienti vedranno la propria opzione preferita, ad esempio PayPal o Apple Pay. [Maggiori informazioni](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Descrizione"
+ },
+ "share": {
+ "name": "Condividi",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se includi un link nei post sui social media, l'immagine in evidenza della pagina verrà mostrata come immagine di anteprima. [Maggiori informazioni](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Insieme all'immagine di anteprima sono inclusi un titolo e una descrizione del negozio. [Maggiori informazioni](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Testo"
+ }
+ }
+ },
+ "rating": {
+ "name": "Valutazione del prodotto",
+ "settings": {
+ "paragraph": {
+ "content": "Per mostrare una valutazione, aggiungi un'app di valutazione del prodotto. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Stile testo",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "options__3": {
+ "label": "Maiuscolo"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Prodotto"
+ },
+ "secondary_background": {
+ "label": "Mostra sfondo secondario"
+ },
+ "header": {
+ "content": "Contenuti multimediali",
+ "info": "Maggiori informazioni sui [tipi di media](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Abilita la riproduzione in loop dei video"
+ },
+ "hide_variants": {
+ "label": "Nascondi contenuti multimediali delle varianti non selezionate sul desktop"
+ },
+ "media_position": {
+ "label": "Posizione contenuti multimediali su desktop",
+ "info": "Posizione automaticamente ottimizzata per i dispositivi mobili.",
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "A destra"
+ }
+ }
+ },
+ "presets": {
+ "name": "Sezione \"prodotto in primo piano\""
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner di iscrizione alla newsletter",
+ "settings": {
+ "paragraph": {
+ "content": "Ogni abbonamento email crea un account cliente. [Maggiori informazioni](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Immagine di sfondo"
+ },
+ "show_background_image": {
+ "label": "Mostra immagine di sfondo"
+ },
+ "show_text_box": {
+ "label": "Mostra contenitore sul desktop"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacità della sovrapposizione immagine"
+ },
+ "show_text_below": {
+ "label": "Mostra contenuto sotto le immagini sui dispositivi mobili",
+ "info": "Per un risultato ottimale utilizza un'immagine con proporzioni 16:9. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Altezza banner",
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Media"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Per un risultato ottimale utilizza un'immagine con proporzioni 16:9. [Maggiori informazioni](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "In mezzo a sinistra"
+ },
+ "options__5": {
+ "label": "In mezzo al centro"
+ },
+ "options__6": {
+ "label": "In mezzo a destra"
+ },
+ "options__7": {
+ "label": "In basso a sinistra"
+ },
+ "options__8": {
+ "label": "In basso al centro"
+ },
+ "options__9": {
+ "label": "In basso a destra"
+ },
+ "options__1": {
+ "label": "In alto a sinistra"
+ },
+ "options__2": {
+ "label": "In alto al centro"
+ },
+ "options__3": {
+ "label": "In alto a destra"
+ },
+ "label": "Posizione contenuto su desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su desktop"
+ },
+ "header": {
+ "content": "Layout dispositivo mobile"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su dispositivi mobili"
+ },
+ "color_scheme": {
+ "info": "Visibile quando è visualizzato il contenitore."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Titolo",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Paragrafo",
+ "settings": {
+ "paragraph": {
+ "label": "Descrizione"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Testo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "label": "Stile del testo"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Modulo email"
+ }
+ },
+ "presets": {
+ "name": "Banner di iscrizione alla newsletter"
+ }
+ },
+ "slideshow": {
+ "name": "Presentazione",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Larghezza intera"
+ },
+ "options__2": {
+ "label": "Griglia"
+ }
+ },
+ "slide_height": {
+ "label": "Altezza slide",
+ "options__1": {
+ "label": "Adatta alla prima immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Media"
+ },
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "slider_visual": {
+ "label": "Stile impaginazione",
+ "options__1": {
+ "label": "Contatore"
+ },
+ "options__2": {
+ "label": "Punti"
+ },
+ "options__3": {
+ "label": "Numeri"
+ }
+ },
+ "auto_rotate": {
+ "label": "Ruota slide automaticamente"
+ },
+ "change_slides_speed": {
+ "label": "Cambia slide ogni"
+ },
+ "mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "show_text_below": {
+ "label": "Mostra contenuto sotto le immagini sui dispositivi mobili"
+ },
+ "accessibility": {
+ "content": "Accessibilità",
+ "label": "Descrizione presentazione",
+ "info": "Descrivi la presentazione per i clienti che utilizzano i lettori di schermo."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Scorrimento",
+ "settings": {
+ "image": {
+ "label": "Image"
+ },
+ "heading": {
+ "label": "Titolo"
+ },
+ "subheading": {
+ "label": "Sottotitolo"
+ },
+ "button_label": {
+ "label": "Etichetta pulsante",
+ "info": "Lascia vuota l'etichetta per nascondere il pulsante."
+ },
+ "link": {
+ "label": "Link pulsante"
+ },
+ "secondary_style": {
+ "label": "Utilizza stile contorno pulsante"
+ },
+ "box_align": {
+ "label": "Posizione contenuto su desktop",
+ "options__1": {
+ "label": "In alto a sinistra"
+ },
+ "options__2": {
+ "label": "In alto al centro"
+ },
+ "options__3": {
+ "label": "In alto a destra"
+ },
+ "options__4": {
+ "label": "In mezzo a sinistra"
+ },
+ "options__5": {
+ "label": "In mezzo al centro"
+ },
+ "options__6": {
+ "label": "In mezzo a destra"
+ },
+ "options__7": {
+ "label": "In basso a sinistra"
+ },
+ "options__8": {
+ "label": "In basso al centro"
+ },
+ "options__9": {
+ "label": "In basso a destra"
+ },
+ "info": "Posizione automaticamente ottimizzata per dispositivi mobili."
+ },
+ "show_text_box": {
+ "label": "Mostra contenitore sul desktop"
+ },
+ "text_alignment": {
+ "label": "Allineamento contenuto su desktop",
+ "option_1": {
+ "label": "A sinistra"
+ },
+ "option_2": {
+ "label": "Al centro"
+ },
+ "option_3": {
+ "label": "A destra"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Opacità della sovrapposizione immagine"
+ },
+ "text_alignment_mobile": {
+ "label": "Allineamento contenuto su dispositivi mobili",
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Presentazione"
+ }
+ },
+ "collapsible_content": {
+ "name": "Contenuto comprimibile",
+ "settings": {
+ "caption": {
+ "label": "Didascalia"
+ },
+ "heading": {
+ "label": "Titolo"
+ },
+ "heading_alignment": {
+ "label": "Allineamento titolo",
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ }
+ },
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Nessun contenitore"
+ },
+ "options__2": {
+ "label": "Contenitore riga"
+ },
+ "options__3": {
+ "label": "Contenitore sezione"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Schema di colori dei contenitori",
+ "info": "Visibile quando il Layout viene impostato a contenitore Riga o Sezione."
+ },
+ "open_first_collapsible_row": {
+ "label": "Apri prima riga comprimibile"
+ },
+ "header": {
+ "content": "Layout immagine"
+ },
+ "image": {
+ "label": "Immagine"
+ },
+ "image_ratio": {
+ "label": "Proporzioni immagine",
+ "options__1": {
+ "label": "Adatta a immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ },
+ "desktop_layout": {
+ "label": "Layout desktop",
+ "options__1": {
+ "label": "Prima l'immagine"
+ },
+ "options__2": {
+ "label": "L'immagine dopo"
+ },
+ "info": "Sempre prima l'immagine su dispositivo mobile."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Riga comprimibile",
+ "settings": {
+ "heading": {
+ "info": "Includi un titolo che spieghi il contenuto.",
+ "label": "Titolo"
+ },
+ "row_content": {
+ "label": "Contenuto riga"
+ },
+ "page": {
+ "label": "Contenuto riga dalla pagina"
+ },
+ "icon": {
+ "label": "Icona",
+ "options__1": {
+ "label": "Nessuna"
+ },
+ "options__2": {
+ "label": "Mela"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Bottiglia"
+ },
+ "options__5": {
+ "label": "Casella"
+ },
+ "options__6": {
+ "label": "Carota"
+ },
+ "options__7": {
+ "label": "Fumetto chat"
+ },
+ "options__8": {
+ "label": "Segno di spunta"
+ },
+ "options__9": {
+ "label": "Blocco appunti"
+ },
+ "options__10": {
+ "label": "Latticini"
+ },
+ "options__11": {
+ "label": "Senza latticini"
+ },
+ "options__12": {
+ "label": "Asciugatrice"
+ },
+ "options__13": {
+ "label": "Occhio"
+ },
+ "options__14": {
+ "label": "Fuoco"
+ },
+ "options__15": {
+ "label": "Senza glutine"
+ },
+ "options__16": {
+ "label": "Cuore"
+ },
+ "options__17": {
+ "label": "Ferro"
+ },
+ "options__18": {
+ "label": "Foglia"
+ },
+ "options__19": {
+ "label": "Pelle"
+ },
+ "options__20": {
+ "label": "Fulmine"
+ },
+ "options__21": {
+ "label": "Rossetto"
+ },
+ "options__22": {
+ "label": "Lucchetto"
+ },
+ "options__23": {
+ "label": "Pin mappa"
+ },
+ "options__24": {
+ "label": "Senza frutta a guscio"
+ },
+ "options__25": {
+ "label": "Pantaloni"
+ },
+ "options__26": {
+ "label": "Impronta di zampa"
+ },
+ "options__27": {
+ "label": "Pepe"
+ },
+ "options__28": {
+ "label": "Profumi"
+ },
+ "options__29": {
+ "label": "Aereo"
+ },
+ "options__30": {
+ "label": "Piante"
+ },
+ "options__31": {
+ "label": "Cartellino prezzo"
+ },
+ "options__32": {
+ "label": "Punto interrogativo"
+ },
+ "options__33": {
+ "label": "Riciclo"
+ },
+ "options__34": {
+ "label": "Reso"
+ },
+ "options__35": {
+ "label": "Righello"
+ },
+ "options__36": {
+ "label": "Piatto da portata"
+ },
+ "options__37": {
+ "label": "Maglietta"
+ },
+ "options__38": {
+ "label": "Scarpa"
+ },
+ "options__39": {
+ "label": "Silhouette"
+ },
+ "options__40": {
+ "label": "Fiocco di neve"
+ },
+ "options__41": {
+ "label": "Stella"
+ },
+ "options__42": {
+ "label": "Cronometro"
+ },
+ "options__43": {
+ "label": "Camion"
+ },
+ "options__44": {
+ "label": "Lavaggio"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Contenuto comprimibile"
+ }
+ },
+ "main-account": {
+ "name": "Account"
+ },
+ "main-activate-account": {
+ "name": "Attivazione account"
+ },
+ "main-addresses": {
+ "name": "Indirizzi"
+ },
+ "main-login": {
+ "name": "Accedi"
+ },
+ "main-order": {
+ "name": "Ordine"
+ },
+ "main-register": {
+ "name": "Registrazione"
+ },
+ "main-reset-password": {
+ "name": "Reimpostazione della password"
+ },
+ "related-products": {
+ "name": "Prodotti simili",
+ "settings": {
+ "heading": {
+ "label": "Titolo"
+ },
+ "products_to_show": {
+ "label": "Massimo di prodotti da mostrare"
+ },
+ "columns_desktop": {
+ "label": "Numero di colonne su desktop"
+ },
+ "paragraph__1": {
+ "content": "Le raccomandazioni dinamiche utilizzano i dati di ordini e prodotti per cambiare e migliorare nel tempo. [Maggiori informazioni](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Scheda prodotto"
+ },
+ "image_ratio": {
+ "label": "Proporzioni immagine",
+ "options__1": {
+ "label": "Adatta a immagine"
+ },
+ "options__2": {
+ "label": "Verticale"
+ },
+ "options__3": {
+ "label": "Quadrata"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostra la seconda immagine al passaggio del mouse"
+ },
+ "show_vendor": {
+ "label": "Mostra fornitore"
+ },
+ "show_rating": {
+ "label": "Mostra valutazione del prodotto",
+ "info": "Per mostrare una valutazione, aggiungi un'app di valutazione del prodotto. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ },
+ "columns_mobile": {
+ "label": "Numero di colonne su dispositivo mobile",
+ "options__1": {
+ "label": "1 colonna"
+ },
+ "options__2": {
+ "label": "2 colonne"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Riga multipla",
+ "settings": {
+ "image": {
+ "label": "Immagine"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Adatta all'immagine"
+ },
+ "options__2": {
+ "label": "Piccola"
+ },
+ "options__3": {
+ "label": "Medio"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "label": "Altezza immagine"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Larghezza immagine su desktop",
+ "info": "L'immagine viene automaticamente ottimizzata per il mobile."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Piccola"
+ },
+ "options__2": {
+ "label": "Media"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Dimensione titolo"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Sottotitolo"
+ },
+ "label": "Stile del testo"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Pulsante in tinta unita"
+ },
+ "options__2": {
+ "label": "Contorno pulsante"
+ },
+ "label": "Stile pulsante"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su desktop"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "In alto"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "In basso"
+ },
+ "label": "Posizione contenuto su desktop",
+ "info": "Posizione automaticamente ottimizzata per i dispositivi mobili."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alterna da sinistra"
+ },
+ "options__2": {
+ "label": "Alterna da destra"
+ },
+ "options__3": {
+ "label": "Allineata a sinistra"
+ },
+ "options__4": {
+ "label": "Allineata a destra"
+ },
+ "label": "Posizionamento immagine su desktop",
+ "info": "Il posizionamento viene automaticamente ottimizzato per i dispositivi mobili."
+ },
+ "container_color_scheme": {
+ "label": "Schema di colori dei contenitori"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "A sinistra"
+ },
+ "options__2": {
+ "label": "Al centro"
+ },
+ "options__3": {
+ "label": "A destra"
+ },
+ "label": "Allineamento contenuto su dispositivi mobili"
+ },
+ "header_mobile": {
+ "content": "Layout dispositivo mobile"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Riga",
+ "settings": {
+ "image": {
+ "label": "Immagine"
+ },
+ "caption": {
+ "label": "Didascalia"
+ },
+ "heading": {
+ "label": "Titolo"
+ },
+ "text": {
+ "label": "Testo"
+ },
+ "button_label": {
+ "label": "Etichetta pulsante"
+ },
+ "button_link": {
+ "label": "Link pulsante"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Riga multipla"
+ }
+ },
+ "quick-order-list": {
+ "name": "Elenco ordini rapido",
+ "settings": {
+ "show_image": {
+ "label": "Mostra immagini"
+ },
+ "show_sku": {
+ "label": "Mostra SKU"
+ }
+ },
+ "presets": {
+ "name": "Elenco ordini rapido"
+ }
+ }
+ }
+}
diff --git a/locales/ja.json b/locales/ja.json
new file mode 100644
index 0000000..4b0eb79
--- /dev/null
+++ b/locales/ja.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "パスワードを入力してストアにアクセスする。",
+ "login_password_button": "パスワードを入力してアクセスする",
+ "login_form_password_label": "パスワード",
+ "login_form_password_placeholder": "あなたのパスワード",
+ "login_form_error": "パスワードが正しくありません。",
+ "login_form_submit": "ストアに入る",
+ "admin_link_html": "あなたはストアオーナーですか?こちらからログインする ",
+ "powered_by_shopify_html": "このショップでは{{ shopify }}を使用する予定です"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Facebookでシェアする",
+ "share_on_twitter": "Twitterにツイートする",
+ "share_on_pinterest": "Pinterestでピンする"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "買い物を続ける",
+ "pagination": {
+ "label": "ページネーション",
+ "page": "{{ number }}ページ",
+ "next": "次のページ",
+ "previous": "前のページ"
+ },
+ "search": {
+ "search": "検索",
+ "reset": "検索ワードをクリアする"
+ },
+ "cart": {
+ "view": "カートを見る ({{ count }})",
+ "item_added": "カートにアイテムが追加されました",
+ "view_empty_cart": "カートを見る"
+ },
+ "share": {
+ "copy_to_clipboard": "リンクをコピー",
+ "share_url": "リンク",
+ "success_message": "リンクがクリップボードにコピーされました",
+ "close": "共有を閉じる"
+ },
+ "slider": {
+ "of": "の",
+ "next_slide": "右にスライド",
+ "previous_slide": "左にスライド",
+ "name": "スライダー"
+ }
+ },
+ "newsletter": {
+ "label": "メール",
+ "success": "ご登録ありがとうございます",
+ "button_label": "登録"
+ },
+ "accessibility": {
+ "skip_to_text": "コンテンツに進む",
+ "close": "閉じる",
+ "unit_price_separator": "あたり",
+ "vendor": "販売元:",
+ "error": "エラー",
+ "refresh_page": "選択結果を選ぶと、ページが全面的に更新されます。",
+ "link_messages": {
+ "new_window": "新しいウィンドウで開きます。",
+ "external": "外部のウェブサイトを開きます。"
+ },
+ "loading": "読み込み中…",
+ "skip_to_product_info": "商品情報にスキップ",
+ "total_reviews": "レビュー数の合計",
+ "star_reviews_info": "{{ rating_max }}つ星中{{ rating_value }}つ",
+ "collapsible_content_title": "折りたたみ可能なコンテンツ",
+ "complementary_products": "付属商品"
+ },
+ "blogs": {
+ "article": {
+ "blog": "ブログ",
+ "read_more_title": "続きを読む: {{ title }}",
+ "comments": {
+ "one": "{{ count }}件のコメント",
+ "other": "{{ count }}件のコメント"
+ },
+ "moderated": "コメントは公開前に承認される必要があることにご注意ください。",
+ "comment_form_title": "コメントを残す",
+ "name": "名前",
+ "email": "メール",
+ "message": "コメント",
+ "post": "コメントを投稿する",
+ "back_to_blog": "ブログに戻る",
+ "share": "この記事を共有する",
+ "success": "コメントが投稿されました。ありがとうございます。",
+ "success_moderated": "コメントが投稿されました。ブログが管理されているため、しばらくしてから公開されます。"
+ }
+ },
+ "onboarding": {
+ "product_title": "商品名の例",
+ "collection_title": "コレクションの名前"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "カートに追加する",
+ "description": "商品説明",
+ "on_sale": "セール",
+ "product_variants": "商品バリエーション",
+ "quantity": {
+ "label": "数量",
+ "input_label": "{{ product }}の数量",
+ "increase": "{{ product }}の数量を増やす",
+ "decrease": "{{ product }}の数量を減らす",
+ "minimum_of": "最小{{ quantity }}",
+ "maximum_of": "最大{{ quantity }}",
+ "multiples_of": "{{ quantity }}の増分",
+ "in_cart_html": "カートに{{ quantity }} ",
+ "note": "数量ルールを見る"
+ },
+ "price": {
+ "from_price_html": "{{ price }}から",
+ "regular_price": "通常価格",
+ "sale_price": "セール価格",
+ "unit_price": "単価"
+ },
+ "share": "この商品を共有する",
+ "sold_out": "売り切れ",
+ "unavailable": "利用できません",
+ "vendor": "販売元",
+ "video_exit_message": "{{ title }}は同じウィンドウの全画面表示ビデオで開きます。",
+ "xr_button": "スペースに表示する",
+ "xr_button_label": "スペースに表示し、拡張現実ウィンドウにアイテムを読み込む",
+ "pickup_availability": {
+ "view_store_info": "ストア情報を表示する",
+ "check_other_stores": "別のストアでの出品状況を確認する",
+ "pick_up_available": "受取が可能です",
+ "pick_up_available_at_html": "{{ location_name }} での受取が可能です。",
+ "pick_up_unavailable_at_html": "{{ location_name }} での受取は現在できません。",
+ "unavailable": "受取状況を読み込めませんでした",
+ "refresh": "更新"
+ },
+ "media": {
+ "open_media": "モーダルでメディア ({{ index }}) を開く",
+ "play_model": "3Dビューアーの再生",
+ "play_video": "ビデオを再生",
+ "gallery_viewer": "ギャラリービュー",
+ "load_image": "ギャラリービューに画像 ({{ index }}) を読み込む",
+ "load_model": "ギャラリービューに3次元モデル ({{ index }}) を読み込む",
+ "load_video": "ギャラリービューでビデオ ({{ index }}) を再生する",
+ "image_available": "ギャラリービューで画像 ({{ index }}) が利用できるようになりました"
+ },
+ "view_full_details": "詳細を表示する",
+ "include_taxes": "税込",
+ "shipping_policy_html": "配送料 はチェックアウト時に計算されます。",
+ "choose_options": "オプションを選択",
+ "choose_product_options": "{{ product_name }}のオプションを選択する",
+ "value_unavailable": "{{ option_value }}は利用できません",
+ "variant_sold_out_or_unavailable": "バリエーションは売り切れているか販売できません",
+ "inventory_in_stock": "在庫あり",
+ "inventory_in_stock_show_count": "{{ quantity }}個の在庫",
+ "inventory_low_stock": "低在庫",
+ "inventory_low_stock_show_count": "低在庫:残り{{ quantity }}個",
+ "inventory_out_of_stock": "在庫切れ",
+ "inventory_out_of_stock_continue_selling": "在庫あり",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "量による価格",
+ "note": "量による価格が利用可能",
+ "minimum": "{{ quantity }}個以上",
+ "price_at_each": "{{ price }}/ユニットで",
+ "price_range": "{{ minimum }}~{{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "メディアギャラリー"
+ },
+ "facets": {
+ "apply": "適用",
+ "clear": "クリア",
+ "clear_all": "すべてを削除する",
+ "from": "から",
+ "filter_and_sort": "絞り込みと並び替え",
+ "filter_by_label": "絞り込み:",
+ "filter_button": "絞り込む",
+ "filters_selected": {
+ "one": "{{ count }}個が選択されました",
+ "other": "{{ count }}個が選択されました"
+ },
+ "max_price": "最高価格は{{ price }}です",
+ "product_count": {
+ "one": "{{ count }}個の商品の{{ product_count }}",
+ "other": "{{ count }}個の商品の{{ product_count }}"
+ },
+ "product_count_simple": {
+ "one": "{{ count }}個の商品",
+ "other": "{{ count }}個の商品"
+ },
+ "reset": "リセット",
+ "sort_button": "並び替え",
+ "sort_by_label": "並び替え: ",
+ "to": "まで",
+ "clear_filter": "絞り込みを削除する",
+ "filter_selected_accessibility": "{{ type }} ({{ count }}件のフィルターを選択済み)",
+ "show_more": "さらに表示する",
+ "show_less": "表示を減らす",
+ "filter_and_operator_subtitle": "すべて一致"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "「{{ terms }}」に一致する結果は見つかりませんでした。スペルを確認するか、別の単語やフレーズを使用してください。",
+ "results_with_count": {
+ "one": "{{ count }}件の結果",
+ "other": "{{ count }}件の結果"
+ },
+ "title": "検索結果",
+ "page": "ページ",
+ "products": "商品管理",
+ "search_for": "「{{ terms }}」を検索",
+ "results_with_count_and_term": {
+ "one": "「{{ terms }}」の検索結果{{ count }}件",
+ "other": "「{{ terms }}」の検索結果{{ count }}件"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }}ページ",
+ "other": "{{ count }}ページ"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }}件の候補",
+ "other": "{{ count }}件の候補"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }}個の商品",
+ "other": "{{ count }}個の商品"
+ },
+ "suggestions": "候補",
+ "pages": "ページ"
+ },
+ "cart": {
+ "cart": "カート"
+ },
+ "contact": {
+ "form": {
+ "name": "名前",
+ "email": "メール",
+ "phone": "電話番号",
+ "comment": "コメント",
+ "send": "送信する",
+ "post_success": "お問い合わせいただきありがとうございます。早急に返信いたします。",
+ "error_heading": "以下を確認してください。",
+ "title": "お問い合わせフォーム"
+ }
+ },
+ "404": {
+ "title": "ページが見つかりません",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "告知",
+ "menu": "メニュー",
+ "cart_count": {
+ "one": "{{ count }}個のアイテム",
+ "other": "{{ count }}個のアイテム"
+ }
+ },
+ "cart": {
+ "title": "あなたのカート",
+ "caption": "カートアイテム",
+ "remove_title": "{{ title }}を削除する",
+ "note": "注文に関する特別な指示・備考",
+ "checkout": "ご購入手続きへ",
+ "empty": "カートは空です",
+ "cart_error": "カートをアップデートするときにエラーが発生しました。もう一度お試しください。",
+ "cart_quantity_error_html": "このアイテムは{{ quantity }}個しかカートに追加することができません。",
+ "taxes_and_shipping_policy_at_checkout_html": "税、ディスカウント、および配送料 はチエックアウト時に計算されます",
+ "taxes_included_but_shipping_at_checkout": "税込みで、配送料とディスカウントはチェックアアウト時に計算されます",
+ "taxes_included_and_shipping_policy_html": "税込。配送料 とディスカウントはチエックアウト時に計算されます",
+ "taxes_and_shipping_at_checkout": "税、ディスカウント、および配送料はチエックアウト時に計算されます",
+ "headings": {
+ "product": "商品",
+ "price": "価格",
+ "total": "合計",
+ "quantity": "数量",
+ "image": "商品画像"
+ },
+ "update": "アップデート",
+ "login": {
+ "title": "アカウントをお持ちですか?",
+ "paragraph_html": "ログイン することで、チェックアウトがスピーディーに行えます。"
+ },
+ "estimated_total": "見積もり合計",
+ "new_estimated_total": "新たな推定総額"
+ },
+ "footer": {
+ "payment": "決済方法"
+ },
+ "featured_blog": {
+ "view_all": "すべてを表示する",
+ "onboarding_title": "ブログ記事",
+ "onboarding_content": "お客様にブログ記事のサマリーを提供する"
+ },
+ "featured_collection": {
+ "view_all": "すべてを表示する",
+ "view_all_label": "{{ collection_name }}コレクションの商品をすべて表示する"
+ },
+ "collection_list": {
+ "view_all": "すべてを表示する"
+ },
+ "collection_template": {
+ "title": "コレクション",
+ "empty": "商品が見つかりません",
+ "use_fewer_filters_html": "絞り込みの数を減らす、またはすべて削除する "
+ },
+ "video": {
+ "load_video": "動画を読み込む: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "スライドを読み込む",
+ "previous_slideshow": "前のスライド",
+ "next_slideshow": "次のスライド",
+ "pause_slideshow": "スライドショーを一時停止する",
+ "play_slideshow": "スライドショーを再生する",
+ "carousel": "カルーセル",
+ "slide": "スライド"
+ },
+ "page": {
+ "title": "ページタイトル"
+ },
+ "announcements": {
+ "previous_announcement": "前回のお知らせ",
+ "next_announcement": "次回のお知らせ",
+ "carousel": "カルーセル",
+ "announcement": "お知らせ",
+ "announcement_bar": "お知らせバー"
+ },
+ "quick_order_list": {
+ "product_total": "商品の小計",
+ "view_cart": "カートを見る",
+ "each": "{{ money }}/ユニット",
+ "product": "商品",
+ "variant": "バリエーション",
+ "variant_total": "バリエーションの合計額",
+ "items_added": {
+ "one": "{{ quantity }}個のアイテムが追加されました",
+ "other": "{{ quantity }}個のアイテムが追加されました"
+ },
+ "items_removed": {
+ "one": "{{ quantity }}個のアイテムが削除されました",
+ "other": "{{ quantity }}個のアイテムが削除されました"
+ },
+ "product_variants": "商品バリエーション",
+ "total_items": "アイテムの総数",
+ "remove_all_items_confirmation": "カートから{{ quantity }}個のアイテムすべてを削除しますか?",
+ "remove_all": "すべてを削除",
+ "cancel": "キャンセル"
+ }
+ },
+ "localization": {
+ "country_label": "国/地域",
+ "language_label": "言語",
+ "update_language": "言語を更新する",
+ "update_country": "国/地域を更新する"
+ },
+ "customer": {
+ "account": {
+ "title": "アカウント",
+ "details": "アカウントの詳細",
+ "view_addresses": "住所を確認",
+ "return": "アカウントの詳細に戻る"
+ },
+ "account_fallback": "アカウント",
+ "activate_account": {
+ "title": "アカウントを有効にする",
+ "subtext": "パスワードを作成してアカウントを有効にしてください。",
+ "password": "パスワード",
+ "password_confirm": "パスワードを確認",
+ "submit": "アカウントを有効にする",
+ "cancel": "招待を辞退する"
+ },
+ "addresses": {
+ "title": "住所",
+ "default": "デフォルト",
+ "add_new": "新しい住所を追加",
+ "edit_address": "住所を編集する",
+ "first_name": "名",
+ "last_name": "姓",
+ "company": "会社",
+ "address1": "住所1",
+ "address2": "建物名、部屋番号など",
+ "city": "市",
+ "country": "国/地域",
+ "province": "都道府県",
+ "zip": "郵便番号",
+ "phone": "電話番号",
+ "set_default": "デフォルトの住所として設定する",
+ "add": "住所を追加する",
+ "update": "住所を更新する",
+ "cancel": "キャンセルする",
+ "edit": "編集",
+ "delete": "削除",
+ "delete_confirm": "この住所を削除してもよろしいですか?"
+ },
+ "log_in": "ログイン",
+ "log_out": "ログアウト",
+ "login_page": {
+ "cancel": "キャンセル",
+ "create_account": "アカウントを作成する",
+ "email": "メール",
+ "forgot_password": "パスワードをお忘れですか?",
+ "guest_continue": "続行",
+ "guest_title": "ゲストとして続行する",
+ "password": "パスワード",
+ "title": "ログイン",
+ "sign_in": "ログイン",
+ "submit": "送信"
+ },
+ "orders": {
+ "title": "注文履歴",
+ "order_number": "注文",
+ "order_number_link": "注文番号{{ number }}",
+ "date": "日付",
+ "payment_status": "支払い状況",
+ "fulfillment_status": "発送状況",
+ "total": "合計",
+ "none": "注文はまだありません。"
+ },
+ "recover_password": {
+ "title": "パスワードをリセットする",
+ "subtext": "パスワードをリセットするためのメールを送信します",
+ "success": "パスワードを更新するためのリンクが記載されたメールを送信しました。"
+ },
+ "register": {
+ "title": "アカウントを作成する",
+ "first_name": "名",
+ "last_name": "姓",
+ "email": "メール",
+ "password": "パスワード",
+ "submit": "作成する"
+ },
+ "reset_password": {
+ "title": "アカウントのパスワードをリセットする",
+ "subtext": "新しいパスワードを入力してください",
+ "password": "パスワード",
+ "password_confirm": "パスワードを確認する",
+ "submit": "パスワードをリセットする"
+ },
+ "order": {
+ "title": "注文 ({{ name }})",
+ "date_html": "注文日: {{ date }}",
+ "cancelled_html": "注文キャンセル日: {{ date }}",
+ "cancelled_reason": "キャンセルの理由: {{ reason }}",
+ "billing_address": "請求先住所",
+ "payment_status": "決済状況",
+ "shipping_address": "配送先住所",
+ "fulfillment_status": "発送状況",
+ "discount": "ディスカウント",
+ "shipping": "配送",
+ "tax": "税",
+ "product": "商品",
+ "sku": "SKU",
+ "price": "商品価格",
+ "quantity": "数量",
+ "total": "合計",
+ "fulfilled_at_html": "発送日: {{ date }}",
+ "track_shipment": "荷物を追跡する",
+ "tracking_url": "追跡リンク",
+ "tracking_company": "配送業者",
+ "tracking_number": "追跡番号",
+ "subtotal": "小計",
+ "total_duties": "関税",
+ "total_refunded": "返金済"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "{{ shop }}で利用可能な{{ value }}のギフトカードの残高です。",
+ "subtext": "あなたのギフトカード",
+ "gift_card_code": "ギフトカードコード",
+ "shop_link": "オンラインストアにアクセスする",
+ "add_to_apple_wallet": "Apple Walletに追加する",
+ "qr_image_alt": "QRコード: スキャンしてギフトカードにクーポンを使う",
+ "copy_code": "ギフトカードコードをコピーする",
+ "expired": "期限切れ",
+ "copy_code_success": "コードは正常にコピーされました",
+ "how_to_use_gift_card": "オンラインではギフトカードコード、実店舗ではQRコードを使用する",
+ "expiration_date": "{{ expires_on }}に期限が切れます"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "ギフトとしてこれを送る",
+ "email_label": "受信者のメール",
+ "email": "メール",
+ "name_label": "受信者の名前 (任意)",
+ "name": "名前",
+ "message_label": "メッセージ (任意)",
+ "message": "メッセージ",
+ "max_characters": "最大{{ max_chars }}文字",
+ "email_label_optional_for_no_js_behavior": "受信者のメール (任意)",
+ "send_on": "YYYY-MM-DD",
+ "send_on_label": "送信日 (任意)",
+ "expanded": "ギフトカードカードの受取人フォームを展開しました",
+ "collapsed": "ギフトカードカードの受取人フォームを折りたたみました"
+ }
+ }
+}
diff --git a/locales/ja.schema.json b/locales/ja.schema.json
new file mode 100644
index 0000000..8feb1e1
--- /dev/null
+++ b/locales/ja.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "色",
+ "settings": {
+ "background": {
+ "label": "背景"
+ },
+ "background_gradient": {
+ "label": "背景のグラデーション",
+ "info": "背景のグラデーションは、可能な場合は背景を置き換えます。"
+ },
+ "text": {
+ "label": "テキスト"
+ },
+ "button_background": {
+ "label": "ソリッドカラーのボタンの背景"
+ },
+ "button_label": {
+ "label": "ソリッドカラーのボタンのラベル"
+ },
+ "secondary_button_label": {
+ "label": "アウトラインボタン"
+ },
+ "shadow": {
+ "label": "影"
+ }
+ }
+ },
+ "typography": {
+ "name": "タイポグラフィー",
+ "settings": {
+ "type_header_font": {
+ "label": "フォント",
+ "info": "異なるフォントを選択すると、ストアの速度に影響を与える可能性があります。[システムフォントについて詳しく知る。](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "見出し"
+ },
+ "header__2": {
+ "content": "本文"
+ },
+ "type_body_font": {
+ "label": "フォント",
+ "info": "異なるフォントを選択すると、ストアの速度に影響を与える可能性があります。[システムフォントについて詳しく知る。](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "フォント・サイズ・スケール"
+ },
+ "body_scale": {
+ "label": "フォント・サイズ・スケール"
+ }
+ }
+ },
+ "social-media": {
+ "name": "SNS",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "ソーシャルアカウント"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "通貨形式",
+ "settings": {
+ "content": "通貨コード",
+ "paragraph": "カート価格とチェックアウト価格には常に通貨コードが表示されます。例: $1.00 USD。",
+ "currency_code_enabled": {
+ "label": "通貨コードを表示する"
+ }
+ }
+ },
+ "layout": {
+ "name": "レイアウト",
+ "settings": {
+ "page_width": {
+ "label": "ページの幅"
+ },
+ "spacing_sections": {
+ "label": "セクション間のスペース"
+ },
+ "header__grid": {
+ "content": "グリッド"
+ },
+ "paragraph__grid": {
+ "content": "複数の列または行のある部分に影響します。"
+ },
+ "spacing_grid_horizontal": {
+ "label": "水平スペース"
+ },
+ "spacing_grid_vertical": {
+ "label": "垂直スペース"
+ }
+ }
+ },
+ "search_input": {
+ "name": "検索行動",
+ "settings": {
+ "header": {
+ "content": "検索候補"
+ },
+ "predictive_search_enabled": {
+ "label": "検索候補を有効にする"
+ },
+ "predictive_search_show_vendor": {
+ "label": "商品の販売元を表示する",
+ "info": "検索候補が有効な場合に表示されます。"
+ },
+ "predictive_search_show_price": {
+ "label": "商品価格を表示する",
+ "info": "検索候補が有効な場合に表示されます。"
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "罫線"
+ },
+ "header__shadow": {
+ "content": "影"
+ },
+ "blur": {
+ "label": "ぼかし"
+ },
+ "corner_radius": {
+ "label": "角の半径"
+ },
+ "horizontal_offset": {
+ "label": "水平オフセット"
+ },
+ "vertical_offset": {
+ "label": "垂直オフセット"
+ },
+ "thickness": {
+ "label": "太さ"
+ },
+ "opacity": {
+ "label": "不透過率"
+ },
+ "image_padding": {
+ "label": "画像の余白"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "テキストアラインメント"
+ }
+ }
+ },
+ "cards": {
+ "name": "商品カード",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "スタンダード"
+ },
+ "options__2": {
+ "label": "カード"
+ },
+ "label": "スタイル"
+ }
+ }
+ },
+ "badges": {
+ "name": "バッジ",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "左下"
+ },
+ "options__2": {
+ "label": "右下"
+ },
+ "options__3": {
+ "label": "左上"
+ },
+ "options__4": {
+ "label": "右上"
+ },
+ "label": "カードでの位置"
+ },
+ "sale_badge_color_scheme": {
+ "label": "販売バッジの配色"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "完売バッジの配色"
+ }
+ }
+ },
+ "buttons": {
+ "name": "ボタン"
+ },
+ "variant_pills": {
+ "name": "バリエーションのピル型ボタン",
+ "paragraph": "バリエーションのピル型ボタンは、商品バリエーションを表示する1つの方法です。[詳しくはこちら](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "入力"
+ },
+ "content_containers": {
+ "name": "コンテンツコンテナー"
+ },
+ "popups": {
+ "name": "ドロップダウンとポップアップ",
+ "paragraph": "メニューのドロップダウン、ポップアップモーダル、カートのポップアップなどのエリアに影響します。"
+ },
+ "media": {
+ "name": "メディア"
+ },
+ "drawers": {
+ "name": "ドロワー"
+ },
+ "cart": {
+ "name": "カート",
+ "settings": {
+ "cart_type": {
+ "label": "カートタイプ",
+ "drawer": {
+ "label": "ドロワー"
+ },
+ "page": {
+ "label": "ページ"
+ },
+ "notification": {
+ "label": "ポップアップ通知"
+ }
+ },
+ "show_vendor": {
+ "label": "販売元を表示"
+ },
+ "show_cart_note": {
+ "label": "カートメモを有効にする"
+ },
+ "cart_drawer": {
+ "header": "カートドロワー",
+ "collection": {
+ "label": "コレクション",
+ "info": "カートドロワーが空の場合に表示されます。"
+ }
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "コレクションカード",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "標準"
+ },
+ "options__2": {
+ "label": "カード"
+ },
+ "label": "スタイル"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "ブログカード",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "標準"
+ },
+ "options__2": {
+ "label": "カード"
+ },
+ "label": "スタイル"
+ }
+ }
+ },
+ "logo": {
+ "name": "ロゴ",
+ "settings": {
+ "logo_image": {
+ "label": "ロゴ"
+ },
+ "logo_width": {
+ "label": "デスクトップ用ロゴの幅",
+ "info": "ロゴの幅はモバイル用に自動で最適化されます。"
+ },
+ "favicon": {
+ "label": "ファビコン画像",
+ "info": "32 × 32ピクセルに縮小されます。"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "ブランド情報",
+ "settings": {
+ "brand_headline": {
+ "label": "ヘッドライン"
+ },
+ "brand_description": {
+ "label": "説明"
+ },
+ "brand_image": {
+ "label": "画像"
+ },
+ "brand_image_width": {
+ "label": "画像の幅"
+ },
+ "paragraph": {
+ "content": "ブランドの説明をストアのフッターに追加します。"
+ }
+ }
+ },
+ "animations": {
+ "name": "アニメーション",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "スクロールでセクションを表示する"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "なし"
+ },
+ "options__2": {
+ "label": "垂直リフト"
+ },
+ "label": "ホバー効果",
+ "info": "カードとボタンに影響を与えます。",
+ "options__3": {
+ "label": "3Dリフト"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "セクションの余白",
+ "padding_top": "上部の余白",
+ "padding_bottom": "下部の余白"
+ },
+ "spacing": "間隔",
+ "colors": {
+ "label": "配色",
+ "has_cards_info": "カードの配色を変更するには、テーマ設定を更新してください。"
+ },
+ "heading_size": {
+ "label": "見出しのサイズ",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "options__4": {
+ "label": "特大"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "デフォルト"
+ },
+ "options__2": {
+ "label": "アーチ"
+ },
+ "options__3": {
+ "label": "塊"
+ },
+ "options__4": {
+ "label": "左向き山形印"
+ },
+ "options__5": {
+ "label": "右向き山形印"
+ },
+ "options__6": {
+ "label": "ダイヤモンド"
+ },
+ "options__7": {
+ "label": "平行四辺形"
+ },
+ "options__8": {
+ "label": "丸"
+ },
+ "label": "画像の形状",
+ "info": "標準スタイルのカードには、画像の形状が有効な場合、ボーダーがありません。"
+ },
+ "animation": {
+ "content": "アニメーション",
+ "image_behavior": {
+ "options__1": {
+ "label": "なし"
+ },
+ "options__2": {
+ "label": "周囲の挙動"
+ },
+ "label": "画像の挙動",
+ "options__3": {
+ "label": "背景位置の固定"
+ },
+ "options__4": {
+ "label": "スクロールで拡大する"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "告知バー",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "テキスト"
+ },
+ "text_alignment": {
+ "label": "テキストアラインメント",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ }
+ },
+ "link": {
+ "label": "リンク"
+ }
+ },
+ "name": "告知"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "自動切り替えのお知らせ"
+ },
+ "change_slides_speed": {
+ "label": "変更する間隔"
+ },
+ "header__1": {
+ "content": "SNSのアイコン",
+ "info": "SNSのアカウントを表示するには、[テーマ設定](/editor?context=theme&category=social%20media) でリンクさせてください。"
+ },
+ "header__2": {
+ "content": "お知らせ"
+ },
+ "show_social": {
+ "label": "デスクトップのアイコンを表示する"
+ },
+ "header__3": {
+ "content": "国/地域セレクター",
+ "info": "国/地域を追加するには、[マーケット設定](/admin/settings/markets) に移動します"
+ },
+ "enable_country_selector": {
+ "label": "国/地域セレクターを有効にする"
+ },
+ "header__4": {
+ "content": "言語セレクター",
+ "info": "言語を追加するには、[言語設定](/admin/settings/languages) に移動します"
+ },
+ "enable_language_selector": {
+ "label": "言語セレクターを有効にする"
+ }
+ },
+ "presets": {
+ "name": "告知バー"
+ }
+ },
+ "collage": {
+ "name": "コラージュ",
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ },
+ "desktop_layout": {
+ "label": "デスクトップのレイアウト",
+ "options__1": {
+ "label": "左側の大きなブロック"
+ },
+ "options__2": {
+ "label": "右側の大きなブロック"
+ }
+ },
+ "mobile_layout": {
+ "label": "モバイルのレイアウト",
+ "options__1": {
+ "label": "コラージュ"
+ },
+ "options__2": {
+ "label": "列"
+ }
+ },
+ "card_styles": {
+ "label": "カードスタイル",
+ "info": "商品、コレクション、およびブログカードのスタイルは、テーマ設定で更新できます。",
+ "options__1": {
+ "label": "個別のカードスタイルを使用する"
+ },
+ "options__2": {
+ "label": "すべてを商品カードとする"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "画像"
+ }
+ },
+ "name": "画像"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "商品"
+ },
+ "secondary_background": {
+ "label": "サブ背景を表示する"
+ },
+ "second_image": {
+ "label": "マウスオーバー時に2番目の画像を表示する"
+ }
+ },
+ "name": "商品"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "コレクション"
+ }
+ },
+ "name": "コレクション"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "カバー画像"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "セクションに他のブロックが含まれている場合、動画はポップアップで再生されます。",
+ "placeholder": "YouTubeやVimeoのURLを使う"
+ },
+ "description": {
+ "label": "動画の代替テキスト",
+ "info": "スクリーンリーダーを使用しているお客様向けにビデオの説明を記入してください。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "ビデオ"
+ }
+ },
+ "presets": {
+ "name": "コラージュ"
+ }
+ },
+ "collection-list": {
+ "name": "コレクションリスト",
+ "settings": {
+ "title": {
+ "label": "見出し"
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "ポートレート"
+ },
+ "options__3": {
+ "label": "正方形"
+ },
+ "info": "コレクションを編集して画像を追加します。[詳しくはこちら](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "モバイルでスワイプを有効にする"
+ },
+ "show_view_all": {
+ "label": "リストに表示されているよりも多くのコレクションが含まれている場合、「すべてを表示」ボタンを有効にします"
+ },
+ "columns_desktop": {
+ "label": "デスクトップの列数"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "コレクション"
+ }
+ },
+ "name": "コレクション"
+ }
+ },
+ "presets": {
+ "name": "コレクションリスト"
+ }
+ },
+ "contact-form": {
+ "name": "お問い合わせフォーム",
+ "presets": {
+ "name": "お問い合わせフォーム"
+ }
+ },
+ "custom-liquid": {
+ "name": "カスタマイズされたLiquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquidコード",
+ "info": "アプリのスニペットやその他のコードを追加して、高度なカスタマイズを作成します。[詳しくはこちら](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "カスタムLiquid"
+ }
+ },
+ "featured-blog": {
+ "name": "ブログ記事",
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ },
+ "blog": {
+ "label": "ブログ"
+ },
+ "post_limit": {
+ "label": "表示するブログ記事数"
+ },
+ "show_view_all": {
+ "label": "ブログに表示されているよりも多くのブログ記事が含まれている場合、「すべてを表示」ボタンを有効にします"
+ },
+ "show_image": {
+ "label": "記事のサムネイルを表示する",
+ "info": "画像のアスペクト比が3:2のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "日付を表示する"
+ },
+ "show_author": {
+ "label": "執筆者を表示する"
+ },
+ "columns_desktop": {
+ "label": "デスクトップの列数"
+ }
+ },
+ "presets": {
+ "name": "ブログ記事"
+ }
+ },
+ "featured-collection": {
+ "name": "特集コレクション",
+ "settings": {
+ "title": {
+ "label": "見出し"
+ },
+ "collection": {
+ "label": "コレクション"
+ },
+ "products_to_show": {
+ "label": "表示する最大の商品"
+ },
+ "show_view_all": {
+ "label": "コレクションに表示されているよりも多くの商品がある場合、「すべてを表示」を有効にします"
+ },
+ "header": {
+ "content": "商品カード"
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "ポートレート"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "マウスオーバー時に2番目の画像を表示する"
+ },
+ "show_vendor": {
+ "label": "販売元を表示する"
+ },
+ "show_rating": {
+ "label": "商品の評価を表示",
+ "info": "評価を表示するには、商品評価アプリを追加します。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "「クイック追加」ボタンを有効にする",
+ "info": "ポップアップやドロワーカートのタイプに最適です。"
+ },
+ "columns_desktop": {
+ "label": "デスクトップの列数"
+ },
+ "description": {
+ "label": "説明"
+ },
+ "show_description": {
+ "label": "管理画面からコレクションの説明を表示する"
+ },
+ "description_style": {
+ "label": "説明のスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "サブタイトル"
+ },
+ "options__3": {
+ "label": "大文字"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "リンク"
+ },
+ "options__2": {
+ "label": "アウトラインボタン"
+ },
+ "options__3": {
+ "label": "ソリッドカラーのボタン"
+ },
+ "label": "「すべてを表示」のスタイル"
+ },
+ "enable_desktop_slider": {
+ "label": "デスクトップでカルーセルを有効にする"
+ },
+ "full_width": {
+ "label": "商品を全幅にする"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "モバイルでスワイプを有効にする"
+ }
+ },
+ "presets": {
+ "name": "特集コレクション"
+ }
+ },
+ "footer": {
+ "name": "フッター",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ },
+ "menu": {
+ "label": "メニュー",
+ "info": "トップレベルのメニュー項目のみを表示します。"
+ }
+ },
+ "name": "メニュー"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ },
+ "subtext": {
+ "label": "サブテキスト"
+ }
+ },
+ "name": "テキスト"
+ },
+ "brand_information": {
+ "name": "ブランド情報",
+ "settings": {
+ "paragraph": {
+ "content": "このブロックにはブランド情報が表示されます。[ブランド情報を編集します。](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "SNSのアイコン"
+ },
+ "show_social": {
+ "label": "SNSのアイコンを表示する",
+ "info": "SNSのアカウントを表示するには、[テーマ設定](/editor?context=theme&category=social%20media) で連携させます。"
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "メール登録を表示する"
+ },
+ "newsletter_heading": {
+ "label": "見出し"
+ },
+ "header__1": {
+ "info": "「マーケティングを受け入れる」のお客様リストに自動的に追加された購読者。[詳しくはこちら](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "メール登録"
+ },
+ "header__2": {
+ "content": "SNSのアイコン",
+ "info": "SNSのアカウントを表示するには、[テーマ設定](/editor?context=theme&category=social%20media) で連携させます。"
+ },
+ "show_social": {
+ "label": "SNSのアイコンを表示する"
+ },
+ "header__3": {
+ "content": "国/地域セレクター"
+ },
+ "header__4": {
+ "info": "国/地域を追加するには、[マーケット設定](/admin/settings/markets)に移動します"
+ },
+ "enable_country_selector": {
+ "label": "国/地域セレクターを有効にする"
+ },
+ "header__5": {
+ "content": "言語セレクター"
+ },
+ "header__6": {
+ "info": "言語を追加するには、[言語設定](/admin/settings/languages) に移動します"
+ },
+ "enable_language_selector": {
+ "label": "言語セレクターを有効にする"
+ },
+ "header__7": {
+ "content": "決済方法"
+ },
+ "payment_enable": {
+ "label": "決済アイコンを表示する"
+ },
+ "margin_top": {
+ "label": "上マージン"
+ },
+ "header__8": {
+ "content": "ポリシーリンク",
+ "info": "ストアポリシーを追加するには、[ポリシー設定](/admin/settings/legal) を表示してください。"
+ },
+ "show_policy": {
+ "label": "ポリシーリンクを表示"
+ },
+ "header__9": {
+ "content": "Shopでフォロー",
+ "info": "お客様がストアフロントからShopアプリでストアをフォローできるようにするには、Shop Payを有効にする必要があります。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Shopでフォローを有効にする"
+ }
+ }
+ },
+ "header": {
+ "name": "ヘッダー",
+ "settings": {
+ "logo_position": {
+ "label": "デスクトップのロゴ位置",
+ "options__1": {
+ "label": "中央部左側"
+ },
+ "options__2": {
+ "label": "左上"
+ },
+ "options__3": {
+ "label": "上部中央"
+ },
+ "options__4": {
+ "label": "中央"
+ }
+ },
+ "menu": {
+ "label": "メニュー"
+ },
+ "show_line_separator": {
+ "label": "区切り線を表示する"
+ },
+ "margin_bottom": {
+ "label": "下マージン"
+ },
+ "menu_type_desktop": {
+ "label": "デスクトップのメニュータイプ",
+ "info": "メニュータイプはモバイル用に自動で最適化されます。",
+ "options__1": {
+ "label": "ドロップダウン"
+ },
+ "options__2": {
+ "label": "メガメニュー"
+ },
+ "options__3": {
+ "label": "ドロワー"
+ }
+ },
+ "mobile_layout": {
+ "content": "モバイルのレイアウト"
+ },
+ "mobile_logo_position": {
+ "label": "モバイルのロゴの位",
+ "options__1": {
+ "label": "中央"
+ },
+ "options__2": {
+ "label": "左"
+ }
+ },
+ "logo_help": {
+ "content": "[テーマ設定]](/editor?context=theme&category=logo) でロゴを編集する"
+ },
+ "sticky_header_type": {
+ "label": "常時表示のヘッダー",
+ "options__1": {
+ "label": "なし"
+ },
+ "options__2": {
+ "label": "スクロールアップ時"
+ },
+ "options__3": {
+ "label": "常時"
+ },
+ "options__4": {
+ "label": "常にロゴのサイズを小さくする"
+ }
+ },
+ "header__3": {
+ "content": "国/地域セレクター"
+ },
+ "header__4": {
+ "info": "国/地域を追加するには、[マーケット設定](/admin/settings/markets) に移動します"
+ },
+ "enable_country_selector": {
+ "label": "国/地域セレクターを有効にする"
+ },
+ "header__5": {
+ "content": "言語セレクター"
+ },
+ "header__6": {
+ "info": "言語を追加するには、[言語設定](/admin/settings/languages) に移動します"
+ },
+ "enable_language_selector": {
+ "label": "言語セレクターを有効にする"
+ },
+ "header__1": {
+ "content": "色"
+ },
+ "menu_color_scheme": {
+ "label": "メニューの配色"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "画像バナー",
+ "settings": {
+ "image": {
+ "label": "最初の画像"
+ },
+ "image_2": {
+ "label": "2番目の画像"
+ },
+ "stack_images_on_mobile": {
+ "label": "モバイルで画像を重ねる"
+ },
+ "show_text_box": {
+ "label": "デスクトップ上にコンテナを表示"
+ },
+ "image_overlay_opacity": {
+ "label": "画像のオーバーレイ不透明率"
+ },
+ "show_text_below": {
+ "label": "モバイル上にコンテナを表示"
+ },
+ "image_height": {
+ "label": "バナーの高さ",
+ "options__1": {
+ "label": "最初の画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "info": "画像のアスペクト比が3:2のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "左上"
+ },
+ "options__2": {
+ "label": "中央上"
+ },
+ "options__3": {
+ "label": "右上"
+ },
+ "options__4": {
+ "label": "左中央"
+ },
+ "options__5": {
+ "label": "中央"
+ },
+ "options__6": {
+ "label": "右中央"
+ },
+ "options__7": {
+ "label": "左下"
+ },
+ "options__8": {
+ "label": "中央下"
+ },
+ "options__9": {
+ "label": "右下"
+ },
+ "label": "デスクトップのコンテンツ位置"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "デスクトップのコンテンツアラインメント"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "モバイルのコンテンツアライメント"
+ },
+ "mobile": {
+ "content": "モバイルのレイアウト"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ }
+ },
+ "name": "見出し"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "説明"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "字幕"
+ },
+ "options__3": {
+ "label": "大文字"
+ },
+ "label": "テキストスタイル"
+ }
+ },
+ "name": "テキスト"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "最初のボタンのラベル",
+ "info": "ボタンを非表示にするには、ラベルを空白にします。"
+ },
+ "button_link_1": {
+ "label": "最初のボタンのリンク"
+ },
+ "button_style_secondary_1": {
+ "label": "アウトラインボタンのスタイルを使用する"
+ },
+ "button_label_2": {
+ "label": "2番目のボタンのラベル",
+ "info": "ボタンを非表示にするには、ラベルを空白にします。"
+ },
+ "button_link_2": {
+ "label": "2番目のボタンのリンク"
+ },
+ "button_style_secondary_2": {
+ "label": "アウトラインボタンのスタイルを使用する"
+ }
+ },
+ "name": "ボタン"
+ }
+ },
+ "presets": {
+ "name": "画像バナー"
+ }
+ },
+ "image-with-text": {
+ "name": "テキスト付き画像",
+ "settings": {
+ "image": {
+ "label": "画像"
+ },
+ "height": {
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "label": "画像の高さ",
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "右"
+ },
+ "options__2": {
+ "label": "左"
+ },
+ "label": "デスクトップ画像の配置",
+ "info": "最初の画像は、デフォルトのモバイルレイアウトです。"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "デスクトップ画像の幅",
+ "info": "画像はモバイル用に自動で最適化されます。"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "デスクトップのコンテンツアラインメント",
+ "options__2": {
+ "label": "中央"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "上"
+ },
+ "options__2": {
+ "label": "中位"
+ },
+ "options__3": {
+ "label": "下"
+ },
+ "label": "デスクトップのコンテンツ位置"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "オーバーラップなし"
+ },
+ "options__2": {
+ "label": "オーバーラップ"
+ },
+ "label": "コンテンツのレイアウト"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "モバイルのコンテンツアライメント",
+ "options__2": {
+ "label": "中央"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ }
+ },
+ "name": "見出し"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "コンテンツ"
+ },
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "字幕"
+ }
+ }
+ },
+ "name": "テキスト"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "ボタンのラベル",
+ "info": "ボタンを非表示にするには、ラベルを空白にします。"
+ },
+ "button_link": {
+ "label": "ボタンのリンク"
+ },
+ "outline_button": {
+ "label": "アウトラインボタンのスタイルを使用する"
+ }
+ },
+ "name": "ボタン"
+ },
+ "caption": {
+ "name": "キャプション",
+ "settings": {
+ "text": {
+ "label": "テキスト"
+ },
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "サブタイトル"
+ },
+ "options__2": {
+ "label": "大文字"
+ }
+ },
+ "caption_size": {
+ "label": "テキストサイズ",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "テキスト付き画像"
+ }
+ },
+ "main-article": {
+ "name": "ブログ記事",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "記事のサムネイルの高さ",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "info": "画像のアスペクト比が16:9のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "大"
+ }
+ }
+ },
+ "name": "記事のサムネイル"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "日付を表示する"
+ },
+ "blog_show_author": {
+ "label": "執筆者を表示する"
+ }
+ },
+ "name": "タイトル"
+ },
+ "content": {
+ "name": "コンテンツ"
+ },
+ "share": {
+ "name": "共有",
+ "settings": {
+ "featured_image_info": {
+ "content": "SNSの投稿にリンクを含めると、そのページの記事のサムネイルがプレビュー画像として表示されます。[詳しくはこちら](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)。"
+ },
+ "title_info": {
+ "content": "プレビュー画像には、ストアタイトルと説明文が表示されます。[詳しくはこちら](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。"
+ },
+ "text": {
+ "label": "テキスト"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "ブログ記事",
+ "settings": {
+ "header": {
+ "content": "ブログ記事のカード"
+ },
+ "show_image": {
+ "label": "記事のサムネイルを表示する"
+ },
+ "paragraph": {
+ "content": "ブロブ記事を編集して抜粋を変更します。[詳しくはこちら](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "日付を表示する"
+ },
+ "show_author": {
+ "label": "執筆者を表示する"
+ },
+ "layout": {
+ "label": "デスクトップのレイアウト",
+ "options__1": {
+ "label": "グリッド"
+ },
+ "options__2": {
+ "label": "コラージュ"
+ },
+ "info": "モバイルでは投稿が重複してしまいます。"
+ },
+ "image_height": {
+ "label": "記事のサムネイルの高さ",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "info": "画像のアスペクト比が3:2のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "小計",
+ "blocks": {
+ "subtotal": {
+ "name": "小計金額"
+ },
+ "buttons": {
+ "name": "チェックアウトボタン"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "アイテム"
+ },
+ "main-collection-banner": {
+ "name": "コレクションバナー",
+ "settings": {
+ "paragraph": {
+ "content": "コレクションを編集して説明文や画像を追加します。[詳しくはこちら](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "コレクションの説明を表示する"
+ },
+ "show_collection_image": {
+ "label": "コレクションの画像を表示する",
+ "info": "画像のアスペクト比が16:9のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "商品グリッド",
+ "settings": {
+ "products_per_page": {
+ "label": "ページあたりの商品数"
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "ポートレート"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "マウスオーバー時に2番目の画像を表示する"
+ },
+ "show_vendor": {
+ "label": "販売元を表示する"
+ },
+ "header__1": {
+ "content": "絞り込みと並び替え"
+ },
+ "enable_tags": {
+ "label": "絞り込みを有効にする",
+ "info": "Search & Discoveryアプリを使用すると、絞り込みをカスタマイズできます。[詳しくはこちら](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "絞り込みを有効にする",
+ "info": "Search & Discoveryアプリを使用すると、絞り込みをカスタマイズできます。[詳しくはこちら](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "並べ替えを有効にする"
+ },
+ "header__3": {
+ "content": "商品カード"
+ },
+ "show_rating": {
+ "label": "商品の評価を表示",
+ "info": "評価を表示するには、商品評価アプリを追加します。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "「クイック追加」ボタンを有効にする",
+ "info": "ポップアップやドロワーカートのタイプに最適です。"
+ },
+ "columns_desktop": {
+ "label": "デスクトップの列数"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ },
+ "filter_type": {
+ "label": "デスクトップの絞り込みレイアウト",
+ "options__1": {
+ "label": "水平"
+ },
+ "options__2": {
+ "label": "垂直"
+ },
+ "options__3": {
+ "label": "ドロワー"
+ },
+ "info": "ドロワーはデフォルトのモバイルレイアウトです。"
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "コレクションリストのページ",
+ "settings": {
+ "title": {
+ "label": "見出し"
+ },
+ "sort": {
+ "label": "コレクションの並べ替え方法:",
+ "options__1": {
+ "label": "アルファベット順、A~Z"
+ },
+ "options__2": {
+ "label": "アルファベット順、Z~A"
+ },
+ "options__3": {
+ "label": "日付、新しい順"
+ },
+ "options__4": {
+ "label": "日付、古い順"
+ },
+ "options__5": {
+ "label": "商品数、多い順"
+ },
+ "options__6": {
+ "label": "商品数、少ない順"
+ }
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "ポートレート"
+ },
+ "options__3": {
+ "label": "正方形"
+ },
+ "info": "コレクションを編集して画像を追加します。[詳しくはこちら](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "デスクトップでの列数"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "ページ"
+ },
+ "main-password-footer": {
+ "name": "パスワードフッター"
+ },
+ "main-password-header": {
+ "name": "パスワードヘッダー",
+ "settings": {
+ "logo_header": {
+ "content": "ロゴ"
+ },
+ "logo_help": {
+ "content": "[テーマ設定] でロゴを編集します。"
+ }
+ }
+ },
+ "main-product": {
+ "name": "商品情報",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "テキスト"
+ },
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "字幕"
+ },
+ "options__3": {
+ "label": "大文字"
+ }
+ }
+ },
+ "name": "テキスト"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "タイプ",
+ "options__1": {
+ "label": "ドロップダウン"
+ },
+ "options__2": {
+ "label": "ピル型ボタン"
+ }
+ }
+ },
+ "name": "バリエーションピッカー"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "動的チェックアウトボタンを表示する",
+ "info": "ストアで利用可能な決済方法を使用すると、お客様にはPayPalやApple Payなど、希望のオプションが表示されます。[もっと詳しく](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "ギフトカードの受取人情報フォームを表示する",
+ "info": "購入者は、個人的なメッセージとともに、設定した日時にギフトカードを送信できます。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "購入ボタン"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "SNSの投稿にリンクを含めると、そのページの記事のサムネイルがプレビュー画像として表示されます。[詳しくはこちら](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)。"
+ },
+ "title_info": {
+ "content": "プレビュー画像には、ストアタイトルと説明文が表示されます。[詳しくはこちら](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。"
+ },
+ "text": {
+ "label": "テキスト"
+ }
+ },
+ "name": "共有"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "コンテンツを説明する見出しを含めます。",
+ "label": "見出し"
+ },
+ "content": {
+ "label": "行のコンテンツ"
+ },
+ "page": {
+ "label": "ページからの行のコンテンツ"
+ },
+ "icon": {
+ "label": "アイコン",
+ "options__1": {
+ "label": "なし"
+ },
+ "options__2": {
+ "label": "リンゴ"
+ },
+ "options__3": {
+ "label": "バナナ"
+ },
+ "options__4": {
+ "label": "ボトル"
+ },
+ "options__5": {
+ "label": "ボックス"
+ },
+ "options__6": {
+ "label": "ニンジン"
+ },
+ "options__7": {
+ "label": "チャットバブル"
+ },
+ "options__8": {
+ "label": "チェックマーク"
+ },
+ "options__9": {
+ "label": "クリップボード"
+ },
+ "options__10": {
+ "label": "乳製品"
+ },
+ "options__11": {
+ "label": "乳製品不使用"
+ },
+ "options__12": {
+ "label": "ドライヤー"
+ },
+ "options__13": {
+ "label": "目"
+ },
+ "options__14": {
+ "label": "ファイヤー"
+ },
+ "options__15": {
+ "label": "グルテン不使用"
+ },
+ "options__16": {
+ "label": "ハート"
+ },
+ "options__17": {
+ "label": "アイロン"
+ },
+ "options__18": {
+ "label": "葉"
+ },
+ "options__19": {
+ "label": "革製品"
+ },
+ "options__20": {
+ "label": "稲妻"
+ },
+ "options__21": {
+ "label": "リップスティック"
+ },
+ "options__22": {
+ "label": "ロック"
+ },
+ "options__23": {
+ "label": "マップピン"
+ },
+ "options__24": {
+ "label": "ナッツ類不使用"
+ },
+ "options__25": {
+ "label": "パンツ"
+ },
+ "options__26": {
+ "label": "肉球プリント"
+ },
+ "options__27": {
+ "label": "こしょう"
+ },
+ "options__28": {
+ "label": "香水"
+ },
+ "options__29": {
+ "label": "飛行機"
+ },
+ "options__30": {
+ "label": "植物"
+ },
+ "options__31": {
+ "label": "値札"
+ },
+ "options__32": {
+ "label": "疑問符"
+ },
+ "options__33": {
+ "label": "リサイクル"
+ },
+ "options__34": {
+ "label": "戻る"
+ },
+ "options__35": {
+ "label": "定規"
+ },
+ "options__36": {
+ "label": "取り皿"
+ },
+ "options__37": {
+ "label": "シャツ"
+ },
+ "options__38": {
+ "label": "靴"
+ },
+ "options__39": {
+ "label": "シルエット"
+ },
+ "options__40": {
+ "label": "雪片"
+ },
+ "options__41": {
+ "label": "星"
+ },
+ "options__42": {
+ "label": "ストップウォッチ"
+ },
+ "options__43": {
+ "label": "トラック"
+ },
+ "options__44": {
+ "label": "洗濯"
+ }
+ }
+ },
+ "name": "折りたたみ可能な行"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "リンクラベル"
+ },
+ "page": {
+ "label": "ページ"
+ }
+ },
+ "name": "ポップアップ"
+ },
+ "title": {
+ "name": "タイトル"
+ },
+ "price": {
+ "name": "商品価格"
+ },
+ "quantity_selector": {
+ "name": "数量セレクター"
+ },
+ "pickup_availability": {
+ "name": "選択可能な商品受け取り場所"
+ },
+ "description": {
+ "name": "商品説明"
+ },
+ "rating": {
+ "name": "商品評価",
+ "settings": {
+ "paragraph": {
+ "content": "評価を表示するには、商品評価アプリを追加します。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "付属商品",
+ "settings": {
+ "paragraph": {
+ "content": "補完する商品を選択するには、Search & Discoveryアプリを追加してください。[詳しくはこちら](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "見出し"
+ },
+ "make_collapsible_row": {
+ "label": "折りたたみ可能な行として表示する"
+ },
+ "icon": {
+ "info": "折りたたみ可能な行を表示しているときに表示されます。"
+ },
+ "product_list_limit": {
+ "label": "表示する商品の最大数"
+ },
+ "products_per_page": {
+ "label": "1ページあたりの商品数"
+ },
+ "pagination_style": {
+ "label": "ページネーションのスタイル",
+ "options": {
+ "option_1": "ドット",
+ "option_2": "カウンター",
+ "option_3": "数字"
+ }
+ },
+ "product_card": {
+ "heading": "商品カード"
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options": {
+ "option_1": "縦長",
+ "option_2": "正方形"
+ }
+ },
+ "enable_quick_add": {
+ "label": "「クイック追加」ボタンを有効にする"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "テキスト付きアイコン",
+ "settings": {
+ "layout": {
+ "label": "レイアウト",
+ "options__1": {
+ "label": "水平"
+ },
+ "options__2": {
+ "label": "垂直"
+ }
+ },
+ "content": {
+ "label": "コンテンツ",
+ "info": "アイコンを選択するか、列または行ごとに画像を追加します。"
+ },
+ "heading": {
+ "info": "アイコンの列を非表示にするには、見出しラベルを空白にします。"
+ },
+ "icon_1": {
+ "label": "最初のアイコン"
+ },
+ "image_1": {
+ "label": "最初の画像"
+ },
+ "heading_1": {
+ "label": "最初の見出し"
+ },
+ "icon_2": {
+ "label": "2番目のアイコン"
+ },
+ "image_2": {
+ "label": "2番目の画像"
+ },
+ "heading_2": {
+ "label": "2番目の見出し"
+ },
+ "icon_3": {
+ "label": "3番目のアイコン"
+ },
+ "image_3": {
+ "label": "3番目の画像"
+ },
+ "heading_3": {
+ "label": "3番目の見出し"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "サブタイトル"
+ },
+ "options__3": {
+ "label": "大文字"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "在庫ステータス",
+ "settings": {
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "サブタイトル"
+ },
+ "options__3": {
+ "label": "大文字"
+ }
+ },
+ "inventory_threshold": {
+ "label": "低在庫基準値",
+ "info": "0を選択すると、在庫がある場合は常に表示されます。"
+ },
+ "show_inventory_quantity": {
+ "label": "在庫数を表示"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "メディア",
+ "info": "[メディアタイプ](https://help.shopify.com/manual/products/product-media) について詳しくはこちら。"
+ },
+ "enable_video_looping": {
+ "label": "ビデオループを有効にする"
+ },
+ "enable_sticky_info": {
+ "label": "デスクトップ上のコンテンツ固定表示を有効にする"
+ },
+ "hide_variants": {
+ "label": "バリエーションを選択した後、他のバリエーションのメディアを非表示にする"
+ },
+ "gallery_layout": {
+ "label": "デスクトップのレイアウト",
+ "options__1": {
+ "label": "スタックされました"
+ },
+ "options__2": {
+ "label": "2列"
+ },
+ "options__3": {
+ "label": "サムネイル"
+ },
+ "options__4": {
+ "label": "サムネイルカルーセル"
+ }
+ },
+ "media_size": {
+ "label": "デスクトップメディアの幅",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "info": "メディアはモバイル用に自動で最適化されます。"
+ },
+ "mobile_thumbnails": {
+ "label": "モバイルのレイアウト",
+ "options__1": {
+ "label": "2列"
+ },
+ "options__2": {
+ "label": "サムネイルを表示する"
+ },
+ "options__3": {
+ "label": "サムネイルを非表示にする"
+ }
+ },
+ "media_position": {
+ "label": "デスクトップのメディア位置",
+ "info": "位置はモバイル用に自動で最適化されます。",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "右"
+ }
+ },
+ "image_zoom": {
+ "label": "画像ズーム",
+ "info": "デフォルト設定では、クリックしてカーソルを合わせると、モバイルのLightboxが開きます。",
+ "options__1": {
+ "label": "Lightboxを開く"
+ },
+ "options__2": {
+ "label": "クリックしてカーソルを合わせる"
+ },
+ "options__3": {
+ "label": "ズームなし"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "メディアを画面の高さに制限する"
+ },
+ "media_fit": {
+ "label": "適合したメディア",
+ "options__1": {
+ "label": "オリジナル"
+ },
+ "options__2": {
+ "label": "塗りつぶし"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "検索結果",
+ "settings": {
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "ポートレート"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "マウスオーバー時に2番目の画像を表示する"
+ },
+ "show_vendor": {
+ "label": "販売元を表示する"
+ },
+ "header__1": {
+ "content": "商品カード"
+ },
+ "header__2": {
+ "content": "ブログカード",
+ "info": "ブログカードのスタイルは、検索結果のページカードにも適用されます。カードスタイルを変更するには、テーマ設定を更新してください。"
+ },
+ "article_show_date": {
+ "label": "日付を表示する"
+ },
+ "article_show_author": {
+ "label": "執筆者を表示する"
+ },
+ "show_rating": {
+ "label": "商品の評価を表示",
+ "info": "評価を表示するには、商品評価アプリを追加します。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "デスクトップの列数"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "マルチカラム",
+ "settings": {
+ "title": {
+ "label": "見出し"
+ },
+ "image_width": {
+ "label": "画像の幅",
+ "options__1": {
+ "label": "列の幅の1/3"
+ },
+ "options__2": {
+ "label": "列の半分の幅"
+ },
+ "options__3": {
+ "label": "列の全幅"
+ }
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "ポートレート"
+ },
+ "options__3": {
+ "label": "正方形"
+ },
+ "options__4": {
+ "label": "円形"
+ }
+ },
+ "column_alignment": {
+ "label": "列の配置",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ }
+ },
+ "background_style": {
+ "label": "サブ背景",
+ "options__1": {
+ "label": "なし"
+ },
+ "options__2": {
+ "label": "列の背景を表示する"
+ }
+ },
+ "button_label": {
+ "label": "ボタンのラベル"
+ },
+ "button_link": {
+ "label": "ボタンのリンク"
+ },
+ "swipe_on_mobile": {
+ "label": "モバイルでスワイプを有効にする"
+ },
+ "columns_desktop": {
+ "label": "デスクトップの列数"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "画像"
+ },
+ "title": {
+ "label": "見出し"
+ },
+ "text": {
+ "label": "説明"
+ },
+ "link_label": {
+ "label": "リンクラベル"
+ },
+ "link": {
+ "label": "リンク"
+ }
+ },
+ "name": "列"
+ }
+ },
+ "presets": {
+ "name": "マルチカラム"
+ }
+ },
+ "newsletter": {
+ "name": "メール登録",
+ "settings": {
+ "full_width": {
+ "label": "セクションを全幅にする"
+ },
+ "paragraph": {
+ "content": "メールサブスクリプションごとに、お客様アカウントが作成されます。[詳しくはこちら](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ }
+ },
+ "name": "見出し"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "説明"
+ }
+ },
+ "name": "小見出し"
+ },
+ "email_form": {
+ "name": "メールフォーム"
+ }
+ },
+ "presets": {
+ "name": "メール登録"
+ }
+ },
+ "page": {
+ "name": "ページ",
+ "settings": {
+ "page": {
+ "label": "ページ"
+ }
+ },
+ "presets": {
+ "name": "ページ"
+ }
+ },
+ "rich-text": {
+ "name": "リッチテキスト",
+ "settings": {
+ "full_width": {
+ "label": "セクションを全幅にする"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "デスクトップのコンテンツ位置",
+ "info": "位置はモバイル用に自動で最適化されます。"
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "コンテンツアラインメント"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ }
+ },
+ "name": "見出し"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "説明"
+ }
+ },
+ "name": "テキスト"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "最初のボタンのラベル",
+ "info": "ボタンを非表示にするには、ラベルを空白にします。"
+ },
+ "button_link_1": {
+ "label": "最初のボタンのリンク"
+ },
+ "button_style_secondary_1": {
+ "label": "アウトラインボタンのスタイルを使用する"
+ },
+ "button_label_2": {
+ "label": "2番目のボタンのラベル",
+ "info": "ボタンを非表示にするには、ラベルを空白にします。"
+ },
+ "button_link_2": {
+ "label": "2番目のボタンのリンク"
+ },
+ "button_style_secondary_2": {
+ "label": "アウトラインボタンのスタイルを使用する"
+ }
+ },
+ "name": "ボタン"
+ },
+ "caption": {
+ "name": "キャプション",
+ "settings": {
+ "text": {
+ "label": "テキスト"
+ },
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "サブタイトル"
+ },
+ "options__2": {
+ "label": "大文字"
+ }
+ },
+ "caption_size": {
+ "label": "テキストサイズ",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "リッチテキスト"
+ }
+ },
+ "apps": {
+ "name": "アプリ",
+ "settings": {
+ "include_margins": {
+ "label": "セクションの余白をテーマと同じにする"
+ }
+ },
+ "presets": {
+ "name": "アプリ"
+ }
+ },
+ "video": {
+ "name": "動画",
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ },
+ "cover_image": {
+ "label": "カバー画像"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "YouTubeやVimeoのURLを使う"
+ },
+ "description": {
+ "label": "動画の代替テキスト",
+ "info": "スクリーンリーダーを使用しているお客様向けにビデオの説明を記入してください。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "画像の余白を追加する",
+ "info": "カバー画像をトリミングしたくない場合は、画像の余白を選択します。"
+ },
+ "full_width": {
+ "label": "セクションを全幅にする"
+ },
+ "video": {
+ "label": "ビデオ"
+ },
+ "enable_video_looping": {
+ "label": "ビデオをループ再生する"
+ },
+ "header__1": {
+ "content": "Shopifyがホストするビデオ"
+ },
+ "header__2": {
+ "content": "または、URLからビデオを埋め込む"
+ },
+ "header__3": {
+ "content": "スタイル"
+ },
+ "paragraph": {
+ "content": "Shopifyがホストするビデオが選択されていない場合に表示されます。"
+ }
+ },
+ "presets": {
+ "name": "動画"
+ }
+ },
+ "featured-product": {
+ "name": "特集商品",
+ "blocks": {
+ "text": {
+ "name": "テキスト",
+ "settings": {
+ "text": {
+ "label": "テキスト"
+ },
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "字幕"
+ },
+ "options__3": {
+ "label": "大文字"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "タイトル"
+ },
+ "price": {
+ "name": "価格"
+ },
+ "quantity_selector": {
+ "name": "数量セレクター"
+ },
+ "variant_picker": {
+ "name": "バリエーションピッカー",
+ "settings": {
+ "picker_type": {
+ "label": "タイプ",
+ "options__1": {
+ "label": "ドロップダウン"
+ },
+ "options__2": {
+ "label": "ピル型ボタン"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "購入ボタン",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "動的チェックアウトボタンを表示",
+ "info": "ストアで利用可能な決済方法を使用すると、お客様にはPayPalやApple Payなど、希望のオプションが表示されます。[詳しくはこちら](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "説明文"
+ },
+ "share": {
+ "name": "共有",
+ "settings": {
+ "featured_image_info": {
+ "content": "SNSの投稿にリンクを含めると、そのページの記事のサムネイルがプレビュー画像として表示されます。[詳しくはこちら](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "プレビュー画像には、ストアタイトルと説明文が表示されます。[詳しくはこちら](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "テキスト"
+ }
+ }
+ },
+ "rating": {
+ "name": "商品評価",
+ "settings": {
+ "paragraph": {
+ "content": "評価を表示するには、商品評価アプリを追加します。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "テキストスタイル",
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "サブタイトル"
+ },
+ "options__3": {
+ "label": "大文字"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "商品"
+ },
+ "secondary_background": {
+ "label": "サブ背景を表示する"
+ },
+ "header": {
+ "content": "メディア",
+ "info": "[メディアタイプ](https://help.shopify.com/manual/products/product-media) について詳しくはこちら"
+ },
+ "enable_video_looping": {
+ "label": "ビデオループを有効にする"
+ },
+ "hide_variants": {
+ "label": "デスクトップで選択されていないバリエーションのメディアを非表示にする"
+ },
+ "media_position": {
+ "label": "デスクトップのメディア位置",
+ "info": "位置はモバイル用に自動で最適化されます。",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "右"
+ }
+ }
+ },
+ "presets": {
+ "name": "特集商品"
+ }
+ },
+ "email-signup-banner": {
+ "name": "メール登録者バナー",
+ "settings": {
+ "paragraph": {
+ "content": "メールサブスクリプションごとに、お客様アカウントが作成されます。[詳しくはこちら](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "背景画像"
+ },
+ "show_background_image": {
+ "label": "背景画像を表示"
+ },
+ "show_text_box": {
+ "label": "デスクトップ上にコンテナを表示"
+ },
+ "image_overlay_opacity": {
+ "label": "画像のオーバーレイ不透明率"
+ },
+ "show_text_below": {
+ "label": "モバイルで画像の下にコンテンツを表示",
+ "info": "画像のアスペクト比が16:9のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "バナーの高さ",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "info": "画像のアスペクト比が16:9のものを使用すると最適です。[詳しくはこちら](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "左上"
+ },
+ "options__2": {
+ "label": "中央上"
+ },
+ "options__3": {
+ "label": "右上"
+ },
+ "options__4": {
+ "label": "左中央"
+ },
+ "options__5": {
+ "label": "中央"
+ },
+ "options__6": {
+ "label": "右中央"
+ },
+ "options__7": {
+ "label": "左下"
+ },
+ "options__8": {
+ "label": "中央下"
+ },
+ "options__9": {
+ "label": "右下"
+ },
+ "label": "デスクトップのコンテンツ位置"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "デスクトップのコンテンツアラインメント"
+ },
+ "header": {
+ "content": "モバイルのレイアウト"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "モバイルのコンテンツアライメント"
+ },
+ "color_scheme": {
+ "info": "コンテナが表示されたタイミングで表示されます。"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "見出し",
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "段落",
+ "settings": {
+ "paragraph": {
+ "label": "説明"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "字幕"
+ },
+ "label": "テキストスタイル"
+ }
+ }
+ },
+ "email_form": {
+ "name": "メールフォーム"
+ }
+ },
+ "presets": {
+ "name": "メール登録者バナー"
+ }
+ },
+ "slideshow": {
+ "name": "スライドショー",
+ "settings": {
+ "layout": {
+ "label": "レイアウト",
+ "options__1": {
+ "label": "全幅"
+ },
+ "options__2": {
+ "label": "グリッド"
+ }
+ },
+ "slide_height": {
+ "label": "スライドの高さ",
+ "options__1": {
+ "label": "最初の画像に対応"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "slider_visual": {
+ "label": "ページネーションのスタイル",
+ "options__1": {
+ "label": "カウンター"
+ },
+ "options__2": {
+ "label": "ドット"
+ },
+ "options__3": {
+ "label": "数字"
+ }
+ },
+ "auto_rotate": {
+ "label": "スライドの自動切り替え"
+ },
+ "change_slides_speed": {
+ "label": "スライドを変更する間隔"
+ },
+ "mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "show_text_below": {
+ "label": "モバイルで画像の下にコンテンツを表示する"
+ },
+ "accessibility": {
+ "content": "アクセシビリティ",
+ "label": "スライドショーの説明",
+ "info": "スクリーンリーダーを使用しているお客様向けにスライドショーの説明を記入してください。"
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "スライド",
+ "settings": {
+ "image": {
+ "label": "画像"
+ },
+ "heading": {
+ "label": "見出し"
+ },
+ "subheading": {
+ "label": "小見出し"
+ },
+ "button_label": {
+ "label": "ボタンのラベル",
+ "info": "ボタンを非表示にするには、ラベルを空白にします。"
+ },
+ "link": {
+ "label": "ボタンのリンク"
+ },
+ "secondary_style": {
+ "label": "アウトラインボタンのスタイルを使用する"
+ },
+ "box_align": {
+ "label": "デスクトップのコンテンツ位置",
+ "options__1": {
+ "label": "左上"
+ },
+ "options__2": {
+ "label": "上部中央"
+ },
+ "options__3": {
+ "label": "右上"
+ },
+ "options__4": {
+ "label": "中央部左側"
+ },
+ "options__5": {
+ "label": "中央"
+ },
+ "options__6": {
+ "label": "中央部右側"
+ },
+ "options__7": {
+ "label": "左下"
+ },
+ "options__8": {
+ "label": "下部中央"
+ },
+ "options__9": {
+ "label": "右下"
+ },
+ "info": "位置はモバイル用に自動で最適化されます。"
+ },
+ "show_text_box": {
+ "label": "デスクトップ上にコンテナを表示"
+ },
+ "text_alignment": {
+ "label": "デスクトップのコンテンツ配置",
+ "option_1": {
+ "label": "左"
+ },
+ "option_2": {
+ "label": "中央"
+ },
+ "option_3": {
+ "label": "右"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "画像のオーバーレイ不透明率"
+ },
+ "text_alignment_mobile": {
+ "label": "モバイルのコンテンツ配置",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "スライドショー"
+ }
+ },
+ "collapsible_content": {
+ "name": "折りたたみ可能なコンテンツ",
+ "settings": {
+ "caption": {
+ "label": "キャプション"
+ },
+ "heading": {
+ "label": "見出し"
+ },
+ "heading_alignment": {
+ "label": "見出しの配置",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ }
+ },
+ "layout": {
+ "label": "レイアウト",
+ "options__1": {
+ "label": "コンテナー"
+ },
+ "options__2": {
+ "label": "行のコンテナー"
+ },
+ "options__3": {
+ "label": "セクションのコンテナー"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "最初の折りたたみ可能な行を開く"
+ },
+ "header": {
+ "content": "画像のレイアウト"
+ },
+ "image": {
+ "label": "画像"
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ },
+ "desktop_layout": {
+ "label": "デスクトップのレイアウト",
+ "options__1": {
+ "label": "画像1"
+ },
+ "options__2": {
+ "label": "画像2"
+ },
+ "info": "モバイル上で画像はいつも最初に表示されます。"
+ },
+ "container_color_scheme": {
+ "label": "コンテナの配色",
+ "info": "レイアウトが行またはセクションのコンテナーに設定されている場合に表示されます。"
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "折りたたみ可能な行",
+ "settings": {
+ "heading": {
+ "info": "コンテンツを説明する見出しを含めます。",
+ "label": "見出し"
+ },
+ "row_content": {
+ "label": "行のコンテンツ"
+ },
+ "page": {
+ "label": "ページからの行のコンテンツ"
+ },
+ "icon": {
+ "label": "アイコン",
+ "options__1": {
+ "label": "なし"
+ },
+ "options__2": {
+ "label": "リンゴ"
+ },
+ "options__3": {
+ "label": "バナナ"
+ },
+ "options__4": {
+ "label": "ボトル"
+ },
+ "options__5": {
+ "label": "ボックス"
+ },
+ "options__6": {
+ "label": "ニンジン"
+ },
+ "options__7": {
+ "label": "チャットバブル"
+ },
+ "options__8": {
+ "label": "チェックマーク"
+ },
+ "options__9": {
+ "label": "クリップボード"
+ },
+ "options__10": {
+ "label": "乳製品"
+ },
+ "options__11": {
+ "label": "乳製品不使用"
+ },
+ "options__12": {
+ "label": "ドライヤー"
+ },
+ "options__13": {
+ "label": "目"
+ },
+ "options__14": {
+ "label": "ファイヤー"
+ },
+ "options__15": {
+ "label": "グルテン不使用"
+ },
+ "options__16": {
+ "label": "ハート"
+ },
+ "options__17": {
+ "label": "アイロン"
+ },
+ "options__18": {
+ "label": "葉"
+ },
+ "options__19": {
+ "label": "革製品"
+ },
+ "options__20": {
+ "label": "稲妻"
+ },
+ "options__21": {
+ "label": "リップスティック"
+ },
+ "options__22": {
+ "label": "ロック"
+ },
+ "options__23": {
+ "label": "マップピン"
+ },
+ "options__24": {
+ "label": "ナッツ類不使用"
+ },
+ "options__25": {
+ "label": "パンツ"
+ },
+ "options__26": {
+ "label": "肉球プリント"
+ },
+ "options__27": {
+ "label": "こしょう"
+ },
+ "options__28": {
+ "label": "香水"
+ },
+ "options__29": {
+ "label": "飛行機"
+ },
+ "options__30": {
+ "label": "植物"
+ },
+ "options__31": {
+ "label": "値札"
+ },
+ "options__32": {
+ "label": "疑問符"
+ },
+ "options__33": {
+ "label": "リサイクル"
+ },
+ "options__34": {
+ "label": "戻る"
+ },
+ "options__35": {
+ "label": "定規"
+ },
+ "options__36": {
+ "label": "取り皿"
+ },
+ "options__37": {
+ "label": "シャツ"
+ },
+ "options__38": {
+ "label": "靴"
+ },
+ "options__39": {
+ "label": "シルエット"
+ },
+ "options__40": {
+ "label": "雪片"
+ },
+ "options__41": {
+ "label": "星"
+ },
+ "options__42": {
+ "label": "ストップウォッチ"
+ },
+ "options__43": {
+ "label": "トラック"
+ },
+ "options__44": {
+ "label": "洗濯"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "折りたたみ可能なコンテンツ"
+ }
+ },
+ "main-account": {
+ "name": "アカウント"
+ },
+ "main-activate-account": {
+ "name": "アカウントの有効化"
+ },
+ "main-addresses": {
+ "name": "アドレス"
+ },
+ "main-login": {
+ "name": "ログイン"
+ },
+ "main-order": {
+ "name": "注文"
+ },
+ "main-register": {
+ "name": "登録"
+ },
+ "main-reset-password": {
+ "name": "パスワードのリセット"
+ },
+ "related-products": {
+ "name": "関連商品",
+ "settings": {
+ "heading": {
+ "label": "見出し"
+ },
+ "products_to_show": {
+ "label": "表示する商品の最大数"
+ },
+ "columns_desktop": {
+ "label": "デスクトップでの列数"
+ },
+ "paragraph__1": {
+ "content": "動的レコメンデーションでは、注文や商品の情報を利用して、時間の経過とともに変化し改善していきます。[詳しくはこちら](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "商品カード"
+ },
+ "image_ratio": {
+ "label": "画像比",
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "縦長"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "マウスオーバー時に2番目の画像を表示する"
+ },
+ "show_vendor": {
+ "label": "販売元を表示"
+ },
+ "show_rating": {
+ "label": "商品の評価を表示",
+ "info": "評価を表示するには、商品評価アプリを追加します。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ },
+ "columns_mobile": {
+ "label": "モバイルでの列数",
+ "options__1": {
+ "label": "1列"
+ },
+ "options__2": {
+ "label": "2列"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "複数列",
+ "settings": {
+ "image": {
+ "label": "画像"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "画像に合わせる"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "label": "画像の高さ"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "デスクトップ画像の幅",
+ "info": "画像はモバイル用に自動で最適化されます。"
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "見出しのサイズ"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "本文"
+ },
+ "options__2": {
+ "label": "サブタイトル"
+ },
+ "label": "テキストスタイル"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "ソリッドカラーのボタン"
+ },
+ "options__2": {
+ "label": "アウトラインボタン"
+ },
+ "label": "ボタンのスタイル"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "デスクトップのコンテンツ配置"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "上"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "下"
+ },
+ "label": "デスクトップのコンテンツ位置",
+ "info": "位置はモバイル用に自動で最適化されます。"
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "左から交互に"
+ },
+ "options__2": {
+ "label": "右から交互に"
+ },
+ "options__3": {
+ "label": "左寄せ"
+ },
+ "options__4": {
+ "label": "右寄せ"
+ },
+ "label": "デスクトップ画像の配置",
+ "info": "配置はモバイル用に自動で最適化されます。"
+ },
+ "container_color_scheme": {
+ "label": "コンテナの配色"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "中央"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "モバイルのコンテンツ配置"
+ },
+ "header_mobile": {
+ "content": "モバイルのレイアウト"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "行",
+ "settings": {
+ "image": {
+ "label": "画像"
+ },
+ "caption": {
+ "label": "キャプション"
+ },
+ "heading": {
+ "label": "見出し"
+ },
+ "text": {
+ "label": "テキスト"
+ },
+ "button_label": {
+ "label": "ボタンのラベル"
+ },
+ "button_link": {
+ "label": "ボタンのリンク"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "複数列"
+ }
+ },
+ "quick-order-list": {
+ "name": "迅速な注文リスト",
+ "settings": {
+ "show_image": {
+ "label": "画像を表示"
+ },
+ "show_sku": {
+ "label": "SKUを表示"
+ }
+ },
+ "presets": {
+ "name": "迅速な注文リスト"
+ }
+ }
+ }
+}
diff --git a/locales/ko.json b/locales/ko.json
new file mode 100644
index 0000000..3ebce3b
--- /dev/null
+++ b/locales/ko.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "비밀번호를 사용하여 스토어 입장:",
+ "login_password_button": "비밀번호를 사용하여 입장하십시오.",
+ "login_form_password_label": "비밀번호",
+ "login_form_password_placeholder": "귀하의 비밀번호",
+ "login_form_error": "잘못된 비밀번호입니다!",
+ "login_form_submit": "입력",
+ "admin_link_html": "스토어 소유자입니까? 여기에서 로그인 ",
+ "powered_by_shopify_html": "이 상점은 {{ shopify }}에서 제공합니다."
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Facebook에서 공유",
+ "share_on_twitter": "Twitter에서 트윗 작성",
+ "share_on_pinterest": "Pinterest에 고정하기"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "쇼핑 계속하기",
+ "pagination": {
+ "label": "페이지 매김",
+ "page": "{{ number }}페이지",
+ "next": "다음 페이지",
+ "previous": "이전 페이지"
+ },
+ "search": {
+ "search": "검색",
+ "reset": "검색어 지우기"
+ },
+ "cart": {
+ "view": "카트 보기({{ count }})",
+ "item_added": "카트에 추가된 품목",
+ "view_empty_cart": "카트 보기"
+ },
+ "share": {
+ "copy_to_clipboard": "링크 복사",
+ "share_url": "링크",
+ "success_message": "링크가 클립보드에 복사됨",
+ "close": "공유 닫기"
+ },
+ "slider": {
+ "of": "의",
+ "next_slide": "오른쪽으로 슬라이드",
+ "previous_slide": "왼쪽으로 슬라이드",
+ "name": "슬라이더"
+ }
+ },
+ "newsletter": {
+ "label": "이메일",
+ "success": "가입해주셔서 감사합니다.",
+ "button_label": "가입하기"
+ },
+ "accessibility": {
+ "skip_to_text": "콘텐츠로 건너뛰기",
+ "close": "닫기",
+ "unit_price_separator": "단위",
+ "vendor": "공급업체:",
+ "error": "오류",
+ "refresh_page": "선택을 누르면 전체 페이지가 새로 고쳐집니다.",
+ "link_messages": {
+ "new_window": "새 창에서 열립니다.",
+ "external": "외부 웹사이트를 엽니다."
+ },
+ "loading": "로드하는 중...",
+ "skip_to_product_info": "제품 정보로 건너뛰기",
+ "total_reviews": "총 리뷰",
+ "star_reviews_info": "별점: {{ rating_value }}/{{ rating_max }}",
+ "collapsible_content_title": "축소 가능한 콘텐츠",
+ "complementary_products": "보완 제품"
+ },
+ "blogs": {
+ "article": {
+ "blog": "블로그",
+ "read_more_title": "자세히 읽기 : {{ title }}",
+ "comments": {
+ "one": "댓글 {{ count }}개",
+ "other": "댓글 {{ count }}개"
+ },
+ "moderated": "댓글 게시 전에는 반드시 승인이 필요합니다.",
+ "comment_form_title": "댓글 남기기",
+ "name": "이름",
+ "email": "이메일",
+ "message": "댓글",
+ "post": "댓글 달기",
+ "back_to_blog": "블로그로 돌아가기",
+ "share": "이 문서 공유하기",
+ "success": "댓글이 성공적으로 게시되었습니다. 감사합니다!",
+ "success_moderated": "댓글이 성공적으로 게시되었습니다. 블로그를 조정 중이므로 잠시 후에 게시됩니다."
+ }
+ },
+ "onboarding": {
+ "product_title": "제품명 예",
+ "collection_title": "컬렉션 이름"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "카트에 추가",
+ "description": "설명",
+ "on_sale": "할인",
+ "product_variants": "제품 이형 상품",
+ "quantity": {
+ "label": "수량",
+ "input_label": "{{ product }} 수량",
+ "increase": "{{ product }} 수량 늘림",
+ "decrease": "{{ product }} 수량 줄임",
+ "minimum_of": "최소 {{ quantity }}개",
+ "maximum_of": "최대 {{ quantity }}개",
+ "multiples_of": "{{ quantity }}개씩 증가",
+ "in_cart_html": "카트 내 {{ quantity }} 개",
+ "note": "수량 규칙 보기"
+ },
+ "price": {
+ "from_price_html": "{{ price }}에서",
+ "regular_price": "정가",
+ "sale_price": "할인가",
+ "unit_price": "단가"
+ },
+ "share": "이 제품 공유",
+ "sold_out": "품절",
+ "unavailable": "사용할 수 없음",
+ "vendor": "공급업체",
+ "video_exit_message": "{{ title }}이(가) 동일한 창에서 전체 화면으로 열립니다.",
+ "xr_button": "사용자 공간에서 보기",
+ "xr_button_label": "사용자 공간에서 보기, 증강 현실 창에서 품목 로드",
+ "pickup_availability": {
+ "view_store_info": "스토어 정보 보기",
+ "check_other_stores": "다른 스토어의 사용 가능 여부 확인",
+ "pick_up_available": "픽업 사용 가능",
+ "pick_up_available_at_html": "{{ location_name }} 에서 픽업 사용 가능",
+ "pick_up_unavailable_at_html": "{{ location_name }} 에서 현재 픽업 사용 불가",
+ "unavailable": "픽업 사용 가능 여부를 로드할 수 없습니다.",
+ "refresh": "새로 고침"
+ },
+ "media": {
+ "open_media": "모달에서 미디어 {{ index }} 열기",
+ "play_model": "3D 뷰어 재생",
+ "play_video": "동영상 재생",
+ "gallery_viewer": "갤러리 뷰어",
+ "load_image": "갤러리 뷰에서 이미지 {{ index }} 로드",
+ "load_model": "갤러리 뷰에서 3D 모델 {{ index }} 로드",
+ "load_video": "갤러리 뷰에서 동영상 {{ index }} 재생",
+ "image_available": "이제 갤러리 뷰에서 이미지 {{ index }} 사용 가능"
+ },
+ "view_full_details": "전체 세부 정보 보기",
+ "include_taxes": "세금이 포함됩니다.",
+ "shipping_policy_html": "배송료 는 결제 시 계산됩니다.",
+ "choose_options": "옵션 선택하기",
+ "choose_product_options": "{{ product_name }}의 옵션 선택",
+ "value_unavailable": "{{ option_value }} - 사용할 수 없음",
+ "variant_sold_out_or_unavailable": "품절이거나 구매할 수 없는 이형 상품",
+ "inventory_in_stock": "재고 있음",
+ "inventory_in_stock_show_count": "재고 {{ quantity }}개",
+ "inventory_low_stock": "재고 부족",
+ "inventory_low_stock_show_count": "재고 부족: {{ quantity }}개 남음",
+ "inventory_out_of_stock": "품절",
+ "inventory_out_of_stock_continue_selling": "재고 있음",
+ "sku": "SKU(재고 관리 코드)",
+ "volume_pricing": {
+ "title": "수량별 가격 책정",
+ "note": "수량별 가격 책정 사용 가능",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "개당 {{ price }}",
+ "price_range": "{{ minimum }} ~ {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "미디어 갤러리"
+ },
+ "facets": {
+ "apply": "적용",
+ "clear": "지우기",
+ "clear_all": "모두 제거",
+ "from": "최저가",
+ "filter_and_sort": "필터 및 정렬",
+ "filter_by_label": "필터:",
+ "filter_button": "필터",
+ "filters_selected": {
+ "one": "{{ count }}개 선택됨",
+ "other": "{{ count }}개 선택됨"
+ },
+ "max_price": "최고가는 {{ price }}입니다.",
+ "product_count": {
+ "one": "{{ product_count }}/{{ count }}개 제품",
+ "other": "{{ product_count }}/{{ count }}개 제품"
+ },
+ "product_count_simple": {
+ "one": "{{ count }}개 제품",
+ "other": "{{ count }}개 제품"
+ },
+ "reset": "재설정",
+ "sort_button": "정렬",
+ "sort_by_label": "정렬 기준:",
+ "to": "최고가",
+ "clear_filter": "필터 제거",
+ "filter_selected_accessibility": "{{ type }}({{ count }}개 필터 선택됨)",
+ "show_more": "자세히 표시",
+ "show_less": "간단히 표시",
+ "filter_and_operator_subtitle": "모두 일치"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "\"{{ terms }}\"에 대한 검색 결과가 없습니다. 철자를 확인하거나 다른 단어/문구를 사용해 보십시오.",
+ "results_with_count": {
+ "one": "{{ count }}개 결과",
+ "other": "{{ count }}개 결과"
+ },
+ "title": "검색 결과",
+ "page": "페이지",
+ "products": "제품",
+ "search_for": "\"{{ terms }}\" 검색",
+ "results_with_count_and_term": {
+ "one": "\"{{ terms }}\"의 검색 결과 {{ count }}건",
+ "other": "\"{{ terms }}\"의 검색 결과 {{ count }}건"
+ },
+ "results_pages_with_count": {
+ "one": "페이지 {{ count }}개",
+ "other": "페이지 {{ count }}개"
+ },
+ "results_suggestions_with_count": {
+ "one": "제안 사항 {{ count }}개",
+ "other": "제안 사항 {{ count }}개"
+ },
+ "results_products_with_count": {
+ "one": "제품 {{ count }}개",
+ "other": "제품 {{ count }}개"
+ },
+ "suggestions": "제안 사항",
+ "pages": "페이지"
+ },
+ "cart": {
+ "cart": "카트"
+ },
+ "contact": {
+ "form": {
+ "name": "이름",
+ "email": "이메일",
+ "phone": "전화 번호",
+ "comment": "댓글",
+ "send": "보내기",
+ "post_success": "문의해 주셔서 감사드립니다. 최대한 빨리 답변드리겠습니다.",
+ "error_heading": "다음을 조정하십시오.",
+ "title": "연락처 양식"
+ }
+ },
+ "404": {
+ "title": "페이지를 찾을 수 없음",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "공지",
+ "menu": "메뉴",
+ "cart_count": {
+ "one": "{{ count }}개 품목",
+ "other": "{{ count }}개 품목"
+ }
+ },
+ "cart": {
+ "title": "카트",
+ "caption": "카트 품목",
+ "remove_title": "{{ title }} 제거",
+ "note": "주문 특별 지침",
+ "checkout": "결제",
+ "empty": "카트가 비어 있습니다",
+ "cart_error": "카트를 업데이트하는 중 오류가 발생했습니다. 다시 시도하십시오.",
+ "cart_quantity_error_html": "카트에는 이 품목을 {{ quantity }}개만 추가할 수 있습니다.",
+ "taxes_and_shipping_policy_at_checkout_html": "결제 시 세금, 할인 및 배송료 계산됨",
+ "taxes_included_but_shipping_at_checkout": "세금 포함 및 결제 시 배송료 계산됨",
+ "taxes_included_and_shipping_policy_html": "세금이 포함된 가격입니다. 배송료 및 할인은 결제 시 계산됩니다.",
+ "taxes_and_shipping_at_checkout": "결제 시 세금, 할인 및 배송료 계산됨",
+ "headings": {
+ "product": "제품",
+ "price": "가격",
+ "total": "총계",
+ "quantity": "수량",
+ "image": "제품 이미지"
+ },
+ "update": "업데이트",
+ "login": {
+ "title": "계정이 있습니까?",
+ "paragraph_html": "더 빠르게 결제하려면 로그인 하십시오."
+ },
+ "estimated_total": "예상 총액",
+ "new_estimated_total": "새로운 예상 총액"
+ },
+ "footer": {
+ "payment": "결제 방법"
+ },
+ "featured_blog": {
+ "view_all": "모두 보기",
+ "onboarding_title": "블로그 게시물",
+ "onboarding_content": "고객에게 블로그 게시물의 요약 제공"
+ },
+ "featured_collection": {
+ "view_all": "모두 보기",
+ "view_all_label": "{{ collection_name }} 컬렉션의 모든 제품 보기"
+ },
+ "collection_list": {
+ "view_all": "모두 보기"
+ },
+ "collection_template": {
+ "title": "컬렉션",
+ "empty": "제품을 찾을 수 없음",
+ "use_fewer_filters_html": "더 적은 수의 필터를 사용하거나 모두 제거하기 "
+ },
+ "video": {
+ "load_video": "동영상 로드: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "슬라이드 로드",
+ "previous_slideshow": "이전 슬라이드",
+ "next_slideshow": "다음 슬라이드",
+ "pause_slideshow": "슬라이드 쇼 멈춤",
+ "play_slideshow": "슬라이드 쇼 재생",
+ "carousel": "캐러셀",
+ "slide": "슬라이드"
+ },
+ "page": {
+ "title": "페이지 제목"
+ },
+ "announcements": {
+ "previous_announcement": "이전 공지",
+ "next_announcement": "다음 공지",
+ "carousel": "캐러셀",
+ "announcement": "공지",
+ "announcement_bar": "공지 표시줄"
+ },
+ "quick_order_list": {
+ "product_total": "제품 소계",
+ "view_cart": "카트 보기",
+ "each": "개당 {{ money }}",
+ "product": "제품",
+ "variant": "이형 상품",
+ "variant_total": "이형 상품 합계",
+ "items_added": {
+ "one": "{{ quantity }}개 품목 추가됨",
+ "other": "{{ quantity }}개 품목 추가됨"
+ },
+ "items_removed": {
+ "one": "{{ quantity }}개 품목 제거됨",
+ "other": "{{ quantity }}개 품목 제거됨"
+ },
+ "product_variants": "제품 이형",
+ "total_items": "총 품목 수",
+ "remove_all_items_confirmation": "카트에서 {{ quantity }}개 품목을 모두 제거하시겠습니까?",
+ "remove_all": "모두 제거",
+ "cancel": "취소"
+ }
+ },
+ "localization": {
+ "country_label": "국가/지역",
+ "language_label": "언어",
+ "update_language": "언어 업데이트",
+ "update_country": "국가/지역 업데이트"
+ },
+ "customer": {
+ "account": {
+ "title": "계정",
+ "details": "계정 세부 정보",
+ "view_addresses": "주소 보기",
+ "return": "계정 세부 정보로 돌아가기"
+ },
+ "account_fallback": "계정",
+ "activate_account": {
+ "title": "계정 활성화",
+ "subtext": "계정을 활성화하려면 비밀번호를 생성하십시오.",
+ "password": "비밀번호",
+ "password_confirm": "비밀번호 확인",
+ "submit": "계정 활성화",
+ "cancel": "초대 거절"
+ },
+ "addresses": {
+ "title": "주소",
+ "default": "기본값",
+ "add_new": "새 주소 추가",
+ "edit_address": "주소 편집",
+ "first_name": "이름",
+ "last_name": "성",
+ "company": "회사",
+ "address1": "주소 1",
+ "address2": "주소 2",
+ "city": "구/군/시",
+ "country": "국가/지역",
+ "province": "시/도",
+ "zip": "우편 번호",
+ "phone": "전화",
+ "set_default": "기본 주소로 설정",
+ "add": "주소 추가",
+ "update": "주소 업데이트",
+ "cancel": "취소",
+ "edit": "수정",
+ "delete": "삭제",
+ "delete_confirm": "이 주소를 삭제하시겠습니까?"
+ },
+ "log_in": "로그인",
+ "log_out": "로그아웃",
+ "login_page": {
+ "cancel": "취소",
+ "create_account": "계정 생성",
+ "email": "이메일",
+ "forgot_password": "비밀번호를 잊으셨나요?",
+ "guest_continue": "계속",
+ "guest_title": "게스트로 계속하기",
+ "password": "비밀번호",
+ "title": "로그인",
+ "sign_in": "로그인",
+ "submit": "제출"
+ },
+ "orders": {
+ "title": "주문 기록",
+ "order_number": "주문",
+ "order_number_link": "주문 번호: {{ number }}",
+ "date": "날짜",
+ "payment_status": "결제 상태",
+ "fulfillment_status": "주문 처리 상태",
+ "total": "총계",
+ "none": "아직 주문이 없습니다."
+ },
+ "recover_password": {
+ "title": "비밀번호 재설정",
+ "subtext": "비밀번호 재설정을 위해 이메일을 보내드리겠습니다.",
+ "success": "비밀번호를 업데이트할 링크가 포함된 이메일을 보내드렸습니다."
+ },
+ "register": {
+ "title": "계정 생성",
+ "first_name": "이름",
+ "last_name": "성",
+ "email": "이메일",
+ "password": "비밀번호",
+ "submit": "생성"
+ },
+ "reset_password": {
+ "title": "계정 비밀번호 재설정",
+ "subtext": "새 비밀번호 입력",
+ "password": "비밀번호",
+ "password_confirm": "비밀번호 확인",
+ "submit": "비밀번호 재설정"
+ },
+ "order": {
+ "title": "{{ name }} 주문",
+ "date_html": "주문 일자: {{ date }}",
+ "cancelled_html": "주문 취소 일자: {{ date }}",
+ "cancelled_reason": "이유: {{ reason }}",
+ "billing_address": "청구 주소",
+ "payment_status": "결제 상태",
+ "shipping_address": "배송 주소",
+ "fulfillment_status": "주문 처리 상태",
+ "discount": "할인",
+ "shipping": "배송",
+ "tax": "세금",
+ "product": "제품",
+ "sku": "SKU(재고 관리 코드)",
+ "price": "가격",
+ "quantity": "수량",
+ "total": "총계",
+ "fulfilled_at_html": "주문 처리 : {{ date }}",
+ "track_shipment": "배송 추적",
+ "tracking_url": "추적 링크",
+ "tracking_company": "배송업체",
+ "tracking_number": "추적 번호",
+ "subtotal": "소계",
+ "total_duties": "관세",
+ "total_refunded": "환불됨"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "다음은 {{ shop }}의 {{ value }} 기프트 카드 잔액입니다.",
+ "subtext": "기프트 카드",
+ "gift_card_code": "기프트 카드 코드",
+ "shop_link": "온라인 스토어 방문",
+ "add_to_apple_wallet": "Apple Wallet에 추가",
+ "qr_image_alt": "QR 코드 — 스캔하여 기프트 카드 사용",
+ "copy_code": "기프트 카드 코드 복사",
+ "expired": "만료됨",
+ "copy_code_success": "코드 복사 완료",
+ "how_to_use_gift_card": "온라인 기프트 카드 코드 또는 매장 내 QR 코드 사용",
+ "expiration_date": "만료: {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "선물로 보내고 싶습니다.",
+ "email_label": "수신자 이메일",
+ "email": "이메일",
+ "name_label": "수신자 이름(선택 사항)",
+ "name": "이름",
+ "message_label": "메시지(선택 사항)",
+ "message": "메시지",
+ "max_characters": "최대 {{ max_chars }}자",
+ "email_label_optional_for_no_js_behavior": "수신자 이메일(선택 사항)",
+ "send_on": "YYYY-MM-DD",
+ "send_on_label": "전송 날짜(선택 사항)",
+ "expanded": "기프트 카드 수신자 양식 펼치기",
+ "collapsed": "기프트 카드 수신자 양식 접기"
+ }
+ }
+}
diff --git a/locales/ko.schema.json b/locales/ko.schema.json
new file mode 100644
index 0000000..4aa26ab
--- /dev/null
+++ b/locales/ko.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "색상",
+ "settings": {
+ "background": {
+ "label": "배경"
+ },
+ "background_gradient": {
+ "label": "배경 그라데이션",
+ "info": "가능한 경우 배경이 배경 그라데이션으로 대체됩니다."
+ },
+ "text": {
+ "label": "텍스트"
+ },
+ "button_background": {
+ "label": "단색 버튼 배경"
+ },
+ "button_label": {
+ "label": "단색 버튼 레이블"
+ },
+ "secondary_button_label": {
+ "label": "윤곽선 버튼"
+ },
+ "shadow": {
+ "label": "그림자"
+ }
+ }
+ },
+ "typography": {
+ "name": "입력 체계",
+ "settings": {
+ "type_header_font": {
+ "label": "글꼴",
+ "info": "다른 글꼴을 선택하면 스토어 속도가 영향을 받을 수 있습니다. [시스템 글꼴에 대해 자세히 알아보십시오.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "제목"
+ },
+ "header__2": {
+ "content": "본문"
+ },
+ "type_body_font": {
+ "label": "글꼴",
+ "info": "다른 글꼴을 선택하면 스토어 속도가 영향을 받을 수 있습니다. [시스템 글꼴에 대해 자세히 알아보십시오.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "글꼴 크기 배율"
+ },
+ "body_scale": {
+ "label": "글꼴 크기 배율"
+ }
+ }
+ },
+ "social-media": {
+ "name": "소셜 미디어",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "소셜 계정"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "통화 형식",
+ "settings": {
+ "content": "통화 코드",
+ "paragraph": "카트 및 결제 가격에는 항상 통화 코드가 표시됩니다. 예: $1.00(USD)",
+ "currency_code_enabled": {
+ "label": "통화 코드 표시"
+ }
+ }
+ },
+ "layout": {
+ "name": "레이아웃",
+ "settings": {
+ "page_width": {
+ "label": "페이지 너비"
+ },
+ "spacing_sections": {
+ "label": "템플릿 섹션 사이 간격"
+ },
+ "header__grid": {
+ "content": "그리드"
+ },
+ "paragraph__grid": {
+ "content": "여러 열이나 행이 있는 영역에 영향을 미칩니다."
+ },
+ "spacing_grid_horizontal": {
+ "label": "수평 영역"
+ },
+ "spacing_grid_vertical": {
+ "label": "수직 영역"
+ }
+ }
+ },
+ "search_input": {
+ "name": "검색 행동",
+ "settings": {
+ "header": {
+ "content": "검색 제안"
+ },
+ "predictive_search_enabled": {
+ "label": "검색 제안 활성화"
+ },
+ "predictive_search_show_vendor": {
+ "label": "제품 공급업체 표시",
+ "info": "검색 제안이 활성화되면 표시됩니다."
+ },
+ "predictive_search_show_price": {
+ "label": "제품 가격 표시",
+ "info": "검색 제안이 활성화되면 표시됩니다."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "테두리"
+ },
+ "header__shadow": {
+ "content": "그림자"
+ },
+ "blur": {
+ "label": "흐리게"
+ },
+ "corner_radius": {
+ "label": "코너 반경"
+ },
+ "horizontal_offset": {
+ "label": "가로 오프셋"
+ },
+ "vertical_offset": {
+ "label": "세로 오프셋"
+ },
+ "thickness": {
+ "label": "두께"
+ },
+ "opacity": {
+ "label": "불투명도"
+ },
+ "image_padding": {
+ "label": "이미지 패딩"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "텍스트 정렬"
+ }
+ }
+ },
+ "badges": {
+ "name": "배지",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "왼쪽 하단"
+ },
+ "options__2": {
+ "label": "오른쪽 하단"
+ },
+ "options__3": {
+ "label": "왼쪽 상단"
+ },
+ "options__4": {
+ "label": "오른쪽 상단"
+ },
+ "label": "카드에서의 위치"
+ },
+ "sale_badge_color_scheme": {
+ "label": "할인 배지 색상 체계"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "품절 배지 색상 체계"
+ }
+ }
+ },
+ "buttons": {
+ "name": "버튼"
+ },
+ "variant_pills": {
+ "name": "이형 상품 타원형",
+ "paragraph": "이형 상품 필은 제품 이형 상품을 표시하는 방법 중 하나입니다. [자세히 알아보기](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "입력"
+ },
+ "content_containers": {
+ "name": "콘텐츠 포함"
+ },
+ "popups": {
+ "name": "드롭다운 및 팝업",
+ "paragraph": "탐색 드롭다운, 팝업 모달 및 카트 팝업과 같은 영역에 영향을 줍니다."
+ },
+ "media": {
+ "name": "미디어"
+ },
+ "drawers": {
+ "name": "등록기"
+ },
+ "cart": {
+ "name": "카트",
+ "settings": {
+ "cart_type": {
+ "label": "카트 유형",
+ "drawer": {
+ "label": "펼침 메뉴"
+ },
+ "page": {
+ "label": "페이지"
+ },
+ "notification": {
+ "label": "팝업 알림"
+ }
+ },
+ "show_vendor": {
+ "label": "공급업체 표시"
+ },
+ "show_cart_note": {
+ "label": "카트 참고 사항 사용"
+ },
+ "cart_drawer": {
+ "header": "카트 서랍",
+ "collection": {
+ "label": "컬렉션",
+ "info": "카트 서랍이 비어 있으면 표시됩니다."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "제품 카드",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "표준"
+ },
+ "options__2": {
+ "label": "카드"
+ },
+ "label": "스타일"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "컬렉션 카드",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "표준"
+ },
+ "options__2": {
+ "label": "카드"
+ },
+ "label": "스타일"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "블로그 카드",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "표준"
+ },
+ "options__2": {
+ "label": "카드"
+ },
+ "label": "스타일"
+ }
+ }
+ },
+ "logo": {
+ "name": "로고",
+ "settings": {
+ "logo_image": {
+ "label": "로고"
+ },
+ "logo_width": {
+ "label": "데스크톱 로고 너비",
+ "info": "로고 너비는 자동으로 모바일에 최적화됩니다."
+ },
+ "favicon": {
+ "label": "파비콘 이미지",
+ "info": "32 x 32픽셀로 축소됩니다"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "브랜드 정보",
+ "settings": {
+ "brand_headline": {
+ "label": "헤드라인"
+ },
+ "brand_description": {
+ "label": "설명"
+ },
+ "brand_image": {
+ "label": "이미지"
+ },
+ "brand_image_width": {
+ "label": "이미지 너비"
+ },
+ "paragraph": {
+ "content": "스토어의 바닥글에 브랜드 설명을 추가하세요."
+ }
+ }
+ },
+ "animations": {
+ "name": "애니메이션",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "스크롤 시 섹션 표시"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "없음"
+ },
+ "options__2": {
+ "label": "수직 리프트"
+ },
+ "label": "호버 효과",
+ "info": "카드 및 버튼에 영향을 미칩니다.",
+ "options__3": {
+ "label": "3D 리프트"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "섹션 패딩",
+ "padding_top": "상단 패딩",
+ "padding_bottom": "하단 패딩"
+ },
+ "spacing": "간격",
+ "colors": {
+ "label": "색상 배합",
+ "has_cards_info": "카드 색상 배합을 변경하려면 테마 설정을 업데이트하십시오."
+ },
+ "heading_size": {
+ "label": "제목 사이즈",
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ },
+ "options__4": {
+ "label": "특대"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "기본"
+ },
+ "options__2": {
+ "label": "아치"
+ },
+ "options__3": {
+ "label": "블랍"
+ },
+ "options__4": {
+ "label": "왼쪽 방향 표시"
+ },
+ "options__5": {
+ "label": "오른쪽 방향 표시"
+ },
+ "options__6": {
+ "label": "다이아몬드"
+ },
+ "options__7": {
+ "label": "평행사변형"
+ },
+ "options__8": {
+ "label": "원형"
+ },
+ "label": "이미지 모양",
+ "info": "이미지 모양이 활성화되어 있으면 스타일이 표준인 카드에는 테두리가 없습니다."
+ },
+ "animation": {
+ "content": "애니메이션",
+ "image_behavior": {
+ "options__1": {
+ "label": "없음"
+ },
+ "options__2": {
+ "label": "잔잔한 움직임"
+ },
+ "label": "이미지 동작",
+ "options__3": {
+ "label": "고정 배경 위치"
+ },
+ "options__4": {
+ "label": "스크롤 시 확대"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "공지 표시줄",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "텍스트"
+ },
+ "text_alignment": {
+ "label": "텍스트 정렬",
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ }
+ },
+ "link": {
+ "label": "링크"
+ }
+ },
+ "name": "공지"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "공지 사항 자동 회전"
+ },
+ "change_slides_speed": {
+ "label": "변경 간격"
+ },
+ "header__1": {
+ "content": "소셜 미디어 아이콘",
+ "info": "소셜 미디어 계정을 표시하려면 [테마 설정](/editor?context=theme&category=social%20media)에서 계정을 연결하십시오."
+ },
+ "header__2": {
+ "content": "공지 사항"
+ },
+ "show_social": {
+ "label": "데스크톱에서 아이콘 표시"
+ },
+ "header__3": {
+ "content": "국가/지역 선택기",
+ "info": "국가/지역을 추가하려면 [마켓 설정](/admin/settings/markets)으로 이동하십시오."
+ },
+ "enable_country_selector": {
+ "label": "국가/지역 선택기 사용"
+ },
+ "header__4": {
+ "content": "언어 선택기",
+ "info": "언어를 추가하려면 [언어 설정](/admin/settings/languages)으로 이동하십시오."
+ },
+ "enable_language_selector": {
+ "label": "언어 선택기 사용"
+ }
+ },
+ "presets": {
+ "name": "공지 표시줄"
+ }
+ },
+ "collage": {
+ "name": "콜라주",
+ "settings": {
+ "heading": {
+ "label": "제목"
+ },
+ "desktop_layout": {
+ "label": "데스크톱 레이아웃",
+ "options__1": {
+ "label": "좌측에 큰 블록"
+ },
+ "options__2": {
+ "label": "우측에 큰 블록"
+ }
+ },
+ "mobile_layout": {
+ "label": "모바일 레이아웃",
+ "options__1": {
+ "label": "콜라주"
+ },
+ "options__2": {
+ "label": "열"
+ }
+ },
+ "card_styles": {
+ "label": "카드 스타일",
+ "info": "제품, 컬렉션, 블로그 카드 스타일은 테마 설정에서 업데이트할 수 있습니다.",
+ "options__1": {
+ "label": "개별 카드 스타일 사용"
+ },
+ "options__2": {
+ "label": "제품 카드를 모든 스타일에 적용"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "이미지"
+ }
+ },
+ "name": "이미지"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "제품"
+ },
+ "secondary_background": {
+ "label": "보조 배경 표시"
+ },
+ "second_image": {
+ "label": "마우스를 올리면 보조 배경 표시"
+ }
+ },
+ "name": "제품"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "컬렉션"
+ }
+ },
+ "name": "컬렉션"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "커버 이미지"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "이 섹션에 다른 블록이 포함되면 동영상이 팝업 창에서 재생됩니다.",
+ "placeholder": "YouTube 또는 Vimeo URL 사용"
+ },
+ "description": {
+ "label": "동영상 대체 텍스트",
+ "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "동영상"
+ }
+ },
+ "presets": {
+ "name": "콜라주"
+ }
+ },
+ "collection-list": {
+ "name": "컬렉션 목록",
+ "settings": {
+ "title": {
+ "label": "제목"
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로형"
+ },
+ "options__3": {
+ "label": "정사각형"
+ },
+ "info": "컬렉션을 편집하여 이미지를 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "모바일에서 긁기 활성화"
+ },
+ "show_view_all": {
+ "label": "목록에 표시된 것보다 많은 컬렉션이 있는 경우 \"모두 보기\" 버튼을 활성화하십시오."
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "컬렉션"
+ }
+ },
+ "name": "컬렉션"
+ }
+ },
+ "presets": {
+ "name": "컬렉션 목록"
+ }
+ },
+ "contact-form": {
+ "name": "연락처 양식",
+ "presets": {
+ "name": "연락처 양식"
+ }
+ },
+ "custom-liquid": {
+ "name": "사용자 지정 Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid 코드",
+ "info": "앱 코드 조각이나 기타 코드를 추가하여 고급 사용자 지정을 생성할 수 있습니다. [자세히 알아보기](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "사용자 지정 Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "블로그 게시물",
+ "settings": {
+ "heading": {
+ "label": "제목"
+ },
+ "blog": {
+ "label": "블로그"
+ },
+ "post_limit": {
+ "label": "표시할 블로그 게시물 수"
+ },
+ "show_view_all": {
+ "label": "블로그에 표시된 것보다 많은 블로그 게시물이 있는 경우 \"모두 보기\" 버튼을 활성화하십시오."
+ },
+ "show_image": {
+ "label": "추천 이미지 표시",
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 3:2로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "날짜 표시"
+ },
+ "show_author": {
+ "label": "작성자 표시"
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ }
+ },
+ "presets": {
+ "name": "블로그 게시물"
+ }
+ },
+ "featured-collection": {
+ "name": "추천 컬렉션",
+ "settings": {
+ "title": {
+ "label": "제목"
+ },
+ "collection": {
+ "label": "컬렉션"
+ },
+ "products_to_show": {
+ "label": "표시할 제품의 최대 수"
+ },
+ "show_view_all": {
+ "label": "컬렉션에 표시된 것보다 많은 제품이 있는 경우 \"모두 보기\"를 활성화하십시오."
+ },
+ "header": {
+ "content": "제품 카드"
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로형"
+ },
+ "options__3": {
+ "label": "정사각형"
+ }
+ },
+ "show_secondary_image": {
+ "label": "마우스를 올리면 보조 배경 표시"
+ },
+ "show_vendor": {
+ "label": "공급업체 표시"
+ },
+ "show_rating": {
+ "label": "제품 평점 표시",
+ "info": "평점을 표시하려면 제품 평점 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "빠른 추가 버튼 활성화",
+ "info": "팝업 또는 서랍식 카트 유형에 가장 알맞습니다."
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "description": {
+ "label": "설명"
+ },
+ "show_description": {
+ "label": "관리자에서 컬렉션 설명 표시"
+ },
+ "description_style": {
+ "label": "설명 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "소제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "링크"
+ },
+ "options__2": {
+ "label": "윤곽 버튼"
+ },
+ "options__3": {
+ "label": "단색 버튼"
+ },
+ "label": "\"모두 보기\" 스타일"
+ },
+ "enable_desktop_slider": {
+ "label": "데스크톱에서 캐러셀 활성화"
+ },
+ "full_width": {
+ "label": "제품을 전체 폭 사용"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "모바일에서 긁기 활성화"
+ }
+ },
+ "presets": {
+ "name": "추천 컬렉션"
+ }
+ },
+ "footer": {
+ "name": "바닥글",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "제목"
+ },
+ "menu": {
+ "label": "메뉴",
+ "info": "최상위 메뉴 항목만 표시합니다."
+ }
+ },
+ "name": "메뉴"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "제목"
+ },
+ "subtext": {
+ "label": "하위 텍스트"
+ }
+ },
+ "name": "텍스트"
+ },
+ "brand_information": {
+ "name": "브랜드 정보",
+ "settings": {
+ "paragraph": {
+ "content": "이 블록에는 브랜드 정보가 표시됩니다. [브랜드 정보를 편집하십시오.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "소셜 미디어 아이콘"
+ },
+ "show_social": {
+ "label": "소셜 미디어 아이콘 표시",
+ "info": "소셜 미디어 계정을 표시하려면 [테마 설정](/editor?context=theme&category=social%20media)에서 계정을 연결하십시오."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "이메일 가입 표시"
+ },
+ "newsletter_heading": {
+ "label": "제목"
+ },
+ "header__1": {
+ "info": "가입자가 “마케팅 수락” 고객 목록에 자동으로 추가되었습니다. [자세히 알아보기](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "이메일 가입"
+ },
+ "header__2": {
+ "content": "소셜 미디어 아이콘",
+ "info": "소셜 미디어 계정을 표시하려면 [테마 설정](/editor?context=theme&category=social%20media)에서 계정을 연결하십시오."
+ },
+ "show_social": {
+ "label": "소셜 미디어 아이콘 표시"
+ },
+ "header__3": {
+ "content": "국가/지역 선택기"
+ },
+ "header__4": {
+ "info": "국가/지역을 추가하려면 [마켓 설정](/admin/settings/markets)으로 이동하십시오."
+ },
+ "enable_country_selector": {
+ "label": "국가/지역 선택기 사용"
+ },
+ "header__5": {
+ "content": "언어 선택기"
+ },
+ "header__6": {
+ "info": "언어를 추가하려면 [언어 설정](/admin/settings/languages)으로 이동하십시오."
+ },
+ "enable_language_selector": {
+ "label": "언어 선택기 사용"
+ },
+ "header__7": {
+ "content": "결제 방법"
+ },
+ "payment_enable": {
+ "label": "결제 아이콘 표시"
+ },
+ "margin_top": {
+ "label": "상단 마진"
+ },
+ "header__8": {
+ "content": "정책 링크",
+ "info": "스토어 정책을 추가하려면 [정책 설정](/admin/settings/legal)으로 이동하십시오."
+ },
+ "show_policy": {
+ "label": "정책 링크 표시"
+ },
+ "header__9": {
+ "content": "Shop에서 팔로우",
+ "info": "고객이 상점에서 Shop 앱의 스토어를 팔로우할 수 있도록 하려면 Shop Pay를 활성화해야 합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Shop에서 팔로우 사용"
+ }
+ }
+ },
+ "header": {
+ "name": "머리글",
+ "settings": {
+ "logo_position": {
+ "label": "데스크톱 로고 위치",
+ "options__1": {
+ "label": "왼쪽 중간"
+ },
+ "options__2": {
+ "label": "왼쪽 상단"
+ },
+ "options__3": {
+ "label": "가운데 상단"
+ },
+ "options__4": {
+ "label": "정가운데"
+ }
+ },
+ "menu": {
+ "label": "메뉴"
+ },
+ "show_line_separator": {
+ "label": "구분선 표시"
+ },
+ "margin_bottom": {
+ "label": "하단 마진"
+ },
+ "menu_type_desktop": {
+ "label": "데스크톱 메뉴 유형",
+ "info": "메뉴 유형은 자동으로 모바일에 최적화됩니다.",
+ "options__1": {
+ "label": "드롭다운"
+ },
+ "options__2": {
+ "label": "메가 메뉴"
+ },
+ "options__3": {
+ "label": "서랍"
+ }
+ },
+ "mobile_layout": {
+ "content": "모바일 레이아웃"
+ },
+ "mobile_logo_position": {
+ "label": "모바일 로고 위치",
+ "options__1": {
+ "label": "가운데"
+ },
+ "options__2": {
+ "label": "왼쪽"
+ }
+ },
+ "logo_help": {
+ "content": "[테마 설정](/editor?context=theme&category=logo)에서 로고를 편집합니다."
+ },
+ "sticky_header_type": {
+ "label": "고정 머리글",
+ "options__1": {
+ "label": "없음"
+ },
+ "options__2": {
+ "label": "위로 스크롤"
+ },
+ "options__3": {
+ "label": "항상"
+ },
+ "options__4": {
+ "label": "항상, 로고 크기 축소"
+ }
+ },
+ "header__3": {
+ "content": "국가/지역 선택기"
+ },
+ "header__4": {
+ "info": "국가/지역을 추가하려면 [마켓 설정](/admin/settings/markets)으로 이동하십시오."
+ },
+ "enable_country_selector": {
+ "label": "국가/지역 선택기 사용"
+ },
+ "header__5": {
+ "content": "언어 선택기"
+ },
+ "header__6": {
+ "info": "언어를 추가하려면 [언어 설정](/admin/settings/languages)으로 이동하십시오."
+ },
+ "enable_language_selector": {
+ "label": "언어 선택기 사용"
+ },
+ "header__1": {
+ "content": "색상"
+ },
+ "menu_color_scheme": {
+ "label": "메뉴 색상 구성표"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "이미지 배너",
+ "settings": {
+ "image": {
+ "label": "첫 번째 이미지"
+ },
+ "image_2": {
+ "label": "두 번째 이미지"
+ },
+ "stack_images_on_mobile": {
+ "label": "모바일 스택 이미지"
+ },
+ "show_text_box": {
+ "label": "데스크톱에 컨테이너 표시"
+ },
+ "image_overlay_opacity": {
+ "label": "이미지 오버레이 투명도"
+ },
+ "show_text_below": {
+ "label": "모바일에서 컨테이너 표시"
+ },
+ "image_height": {
+ "label": "배너 높이",
+ "options__1": {
+ "label": "첫 번째 이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 3:2로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "크게"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "왼쪽 상단"
+ },
+ "options__2": {
+ "label": "가운데 상단"
+ },
+ "options__3": {
+ "label": "오른쪽 상단"
+ },
+ "options__4": {
+ "label": "왼쪽 중간"
+ },
+ "options__5": {
+ "label": "가운데 중간"
+ },
+ "options__6": {
+ "label": "오른쪽 중간"
+ },
+ "options__7": {
+ "label": "왼쪽 하단"
+ },
+ "options__8": {
+ "label": "가운데 하단"
+ },
+ "options__9": {
+ "label": "오른쪽 하단"
+ },
+ "label": "데스크톱 콘텐츠 위치"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "데스크톱 콘텐츠 정렬"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "모바일 콘텐츠 정렬"
+ },
+ "mobile": {
+ "content": "모바일 레이아웃"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "제목"
+ }
+ },
+ "name": "제목"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "설명"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "소제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ },
+ "label": "텍스트 스타일"
+ }
+ },
+ "name": "텍스트"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "첫 번째 버튼 레이블",
+ "info": "버튼을 숨기려면 레이블을 비워둡니다."
+ },
+ "button_link_1": {
+ "label": "첫 번째 버튼 링크"
+ },
+ "button_style_secondary_1": {
+ "label": "윤곽 버튼 스타일 사용"
+ },
+ "button_label_2": {
+ "label": "두 번째 버튼 레이블",
+ "info": "버튼을 숨기려면 레이블을 비워둡니다."
+ },
+ "button_link_2": {
+ "label": "두 번째 버튼 링크"
+ },
+ "button_style_secondary_2": {
+ "label": "윤곽 버튼 스타일 사용"
+ }
+ },
+ "name": "버튼"
+ }
+ },
+ "presets": {
+ "name": "이미지 배너"
+ }
+ },
+ "image-with-text": {
+ "name": "텍스트 포함 이미지",
+ "settings": {
+ "image": {
+ "label": "이미지"
+ },
+ "height": {
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "label": "이미지 높이",
+ "options__4": {
+ "label": "크게"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "이미지 우선"
+ },
+ "options__2": {
+ "label": "이미지 두 번째"
+ },
+ "label": "데스크톱 이미지 배치",
+ "info": "기본 모바일 레이아웃은 이미지 우선입니다."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ },
+ "label": "데스크톱 이미지 폭",
+ "info": "이미지는 자동으로 모바일에 최적화됩니다."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "데스크톱 콘텐츠 정렬",
+ "options__2": {
+ "label": "가운데"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "위쪽"
+ },
+ "options__2": {
+ "label": "중간"
+ },
+ "options__3": {
+ "label": "아래쪽"
+ },
+ "label": "데스크톱 콘텐츠 위치"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "겹침 없음"
+ },
+ "options__2": {
+ "label": "겹침"
+ },
+ "label": "콘텐츠 레이아웃"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "모바일 콘텐츠 정렬",
+ "options__2": {
+ "label": "가운데"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "제목"
+ }
+ },
+ "name": "제목"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "콘텐츠"
+ },
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "소제목"
+ }
+ }
+ },
+ "name": "텍스트"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "버튼 레이블",
+ "info": "버튼을 숨기려면 레이블을 비워둡니다."
+ },
+ "button_link": {
+ "label": "버튼 링크"
+ },
+ "outline_button": {
+ "label": "윤곽 버튼 스타일 사용"
+ }
+ },
+ "name": "버튼"
+ },
+ "caption": {
+ "name": "캡션",
+ "settings": {
+ "text": {
+ "label": "텍스트"
+ },
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "소제목"
+ },
+ "options__2": {
+ "label": "대문자"
+ }
+ },
+ "caption_size": {
+ "label": "텍스트 사이즈",
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "텍스트 포함 이미지"
+ }
+ },
+ "main-article": {
+ "name": "블로그 게시물",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "추천 이미지 높이",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 16:9로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "크게"
+ }
+ }
+ },
+ "name": "추천 이미지"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "날짜 표시"
+ },
+ "blog_show_author": {
+ "label": "작성자 표시"
+ }
+ },
+ "name": "제목"
+ },
+ "content": {
+ "name": "콘텐츠"
+ },
+ "share": {
+ "name": "공유",
+ "settings": {
+ "featured_image_info": {
+ "content": "소셜 미디어 게시글에 링크를 포함하면 페이지의 미리 보기 이미지에 추천 이미지가 표시됩니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "미리 보기 이미지에 스토어 제목 및 설명이 포함됩니다. [자세히 알아보기](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "텍스트"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "블로그 게시물",
+ "settings": {
+ "header": {
+ "content": "블로그 게시물 카드"
+ },
+ "show_image": {
+ "label": "추천 이미지 표시"
+ },
+ "paragraph": {
+ "content": "블로그 게시물을 편집하여 요약을 변경하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "날짜 표시"
+ },
+ "show_author": {
+ "label": "작성자 표시"
+ },
+ "layout": {
+ "label": "데스크톱 레이아웃",
+ "options__1": {
+ "label": "그리드"
+ },
+ "options__2": {
+ "label": "콜라주"
+ },
+ "info": "게시물은 모바일에 누적됩니다."
+ },
+ "image_height": {
+ "label": "추천 이미지 높이",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "options__4": {
+ "label": "크게"
+ },
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 3:2로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "소계",
+ "blocks": {
+ "subtotal": {
+ "name": "소계 가격"
+ },
+ "buttons": {
+ "name": "결제 버튼"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "품목"
+ },
+ "main-collection-banner": {
+ "name": "컬렉션 배너",
+ "settings": {
+ "paragraph": {
+ "content": "컬렉션을 편집하여 설명 또는 이미지를 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "컬렉션 설명 표시"
+ },
+ "show_collection_image": {
+ "label": "컬렉션 이미지 표시",
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 16:9로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "제품 그리드",
+ "settings": {
+ "products_per_page": {
+ "label": "페이지당 제품"
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로형"
+ },
+ "options__3": {
+ "label": "정사각형"
+ }
+ },
+ "show_secondary_image": {
+ "label": "마우스를 올리면 보조 배경 표시"
+ },
+ "show_vendor": {
+ "label": "공급업체 표시"
+ },
+ "header__1": {
+ "content": "필터 및 정렬"
+ },
+ "enable_tags": {
+ "label": "필터 사용",
+ "info": "Search & Discovery 앱으로 필터를 사용자 지정합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "필터 사용",
+ "info": "Search & Discovery 앱으로 필터를 사용자 지정합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "정렬 사용"
+ },
+ "header__3": {
+ "content": "제품 카드"
+ },
+ "show_rating": {
+ "label": "제품 평점 표시",
+ "info": "평점을 표시하려면 제품 평점 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "빠른 추가 버튼 활성화",
+ "info": "팝업 또는 서랍식 카트 유형에 가장 알맞습니다."
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ },
+ "filter_type": {
+ "label": "데스크톱 필터 레이아웃",
+ "options__1": {
+ "label": "수평"
+ },
+ "options__2": {
+ "label": "수직"
+ },
+ "options__3": {
+ "label": "펼침 메뉴"
+ },
+ "info": "펼침 메뉴는 모바일용 기본 레이아웃입니다."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "컬렉션 목록 페이지",
+ "settings": {
+ "title": {
+ "label": "제목"
+ },
+ "sort": {
+ "label": "컬렉션 정렬 기준:",
+ "options__1": {
+ "label": "알파벳순, A-Z"
+ },
+ "options__2": {
+ "label": "알파벳순, Z-A"
+ },
+ "options__3": {
+ "label": "날짜(최신 날짜부터)"
+ },
+ "options__4": {
+ "label": "날짜(오래된 날짜부터)"
+ },
+ "options__5": {
+ "label": "제품 개수, 높은 개수부터"
+ },
+ "options__6": {
+ "label": "제품 개수, 낮은 개수부터"
+ }
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로형"
+ },
+ "options__3": {
+ "label": "정사각형"
+ },
+ "info": "컬렉션을 편집하여 이미지를 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "페이지"
+ },
+ "main-password-footer": {
+ "name": "비밀번호 바닥글"
+ },
+ "main-password-header": {
+ "name": "비밀번호 머리글",
+ "settings": {
+ "logo_header": {
+ "content": "로고"
+ },
+ "logo_help": {
+ "content": "테마 설정에서 로고를 편집합니다."
+ }
+ }
+ },
+ "main-product": {
+ "name": "제품 정보",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "텍스트"
+ },
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "소제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ }
+ }
+ },
+ "name": "텍스트"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "유형",
+ "options__1": {
+ "label": "드롭다운"
+ },
+ "options__2": {
+ "label": "타원형"
+ }
+ }
+ },
+ "name": "이형 상품 피커"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "동적 결제 버튼 표시",
+ "info": "스토어에서 사용 가능한 결제 방법을 사용하면 고객이 PayPal 또는 ApplePay처럼 원하는 옵션을 볼 수 있습니다. [자세히 알아보기](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "기프트 카드의 수취인 정보 양식 표시",
+ "info": "구매자가 개인 메시지와 함께 예약된 날짜에 기프트 카드를 보낼 수 있도록 허용합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "구매 버튼"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "소셜 미디어 게시글에 링크를 포함하면 페이지의 미리 보기 이미지에 추천 이미지가 표시됩니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "미리 보기 이미지에 스토어 제목 및 설명이 포함됩니다. [자세히 알아보기](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "텍스트"
+ }
+ },
+ "name": "공유"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "콘텐츠를 설명하는 제목을 포함합니다.",
+ "label": "제목"
+ },
+ "content": {
+ "label": "행 콘텐츠"
+ },
+ "page": {
+ "label": "페이지의 행 콘텐츠"
+ },
+ "icon": {
+ "label": "아이콘",
+ "options__1": {
+ "label": "없음"
+ },
+ "options__2": {
+ "label": "사과"
+ },
+ "options__3": {
+ "label": "바나나"
+ },
+ "options__4": {
+ "label": "병"
+ },
+ "options__5": {
+ "label": "상자"
+ },
+ "options__6": {
+ "label": "당근"
+ },
+ "options__7": {
+ "label": "채팅 말풍선"
+ },
+ "options__8": {
+ "label": "확인 표시"
+ },
+ "options__9": {
+ "label": "클립보드"
+ },
+ "options__10": {
+ "label": "유제품"
+ },
+ "options__11": {
+ "label": "유제품 무첨가"
+ },
+ "options__12": {
+ "label": "드라이어"
+ },
+ "options__13": {
+ "label": "눈"
+ },
+ "options__14": {
+ "label": "파이어"
+ },
+ "options__15": {
+ "label": "글루텐 프리"
+ },
+ "options__16": {
+ "label": "하트"
+ },
+ "options__17": {
+ "label": "강철"
+ },
+ "options__18": {
+ "label": "나뭇잎"
+ },
+ "options__19": {
+ "label": "가죽"
+ },
+ "options__20": {
+ "label": "번개 표시"
+ },
+ "options__21": {
+ "label": "립스틱"
+ },
+ "options__22": {
+ "label": "자물쇠"
+ },
+ "options__23": {
+ "label": "지도 핀 표시"
+ },
+ "options__24": {
+ "label": "너트 프리"
+ },
+ "options__25": {
+ "label": "바지"
+ },
+ "options__26": {
+ "label": "발자국"
+ },
+ "options__27": {
+ "label": "후추"
+ },
+ "options__28": {
+ "label": "향수"
+ },
+ "options__29": {
+ "label": "비행기"
+ },
+ "options__30": {
+ "label": "화훼"
+ },
+ "options__31": {
+ "label": "가격표"
+ },
+ "options__32": {
+ "label": "물음표"
+ },
+ "options__33": {
+ "label": "재활용"
+ },
+ "options__34": {
+ "label": "되돌아가기"
+ },
+ "options__35": {
+ "label": "자"
+ },
+ "options__36": {
+ "label": "서빙용 접시"
+ },
+ "options__37": {
+ "label": "셔츠"
+ },
+ "options__38": {
+ "label": "신발"
+ },
+ "options__39": {
+ "label": "실루엣"
+ },
+ "options__40": {
+ "label": "스노우플레이크"
+ },
+ "options__41": {
+ "label": "별"
+ },
+ "options__42": {
+ "label": "스톱워치"
+ },
+ "options__43": {
+ "label": "트럭"
+ },
+ "options__44": {
+ "label": "씻기"
+ }
+ }
+ },
+ "name": "축소 가능한 행"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "레이블 링크"
+ },
+ "page": {
+ "label": "페이지"
+ }
+ },
+ "name": "팝업"
+ },
+ "title": {
+ "name": "제목"
+ },
+ "price": {
+ "name": "가격"
+ },
+ "quantity_selector": {
+ "name": "수량 선택기"
+ },
+ "pickup_availability": {
+ "name": "픽업 사용 가능성"
+ },
+ "description": {
+ "name": "설명"
+ },
+ "rating": {
+ "name": "제품 평점",
+ "settings": {
+ "paragraph": {
+ "content": "평점을 표시하려면 제품 평점 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "보완 제품",
+ "settings": {
+ "paragraph": {
+ "content": "보완 제품을 선택하려면 Search & Discovery 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "제목"
+ },
+ "make_collapsible_row": {
+ "label": "축소 가능한 행으로 표시"
+ },
+ "icon": {
+ "info": "축소 가능한 행이 표시되면 볼 수 있습니다."
+ },
+ "product_list_limit": {
+ "label": "표시할 최대 제품 수"
+ },
+ "products_per_page": {
+ "label": "페이지당 제품 수"
+ },
+ "pagination_style": {
+ "label": "페이지 매김 스타일",
+ "options": {
+ "option_1": "점",
+ "option_2": "카운터",
+ "option_3": "번호"
+ }
+ },
+ "product_card": {
+ "heading": "제품 카드"
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options": {
+ "option_1": "세로",
+ "option_2": "정사각형"
+ }
+ },
+ "enable_quick_add": {
+ "label": "빠른 추가 버튼 활성화"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "아이콘 텍스트",
+ "settings": {
+ "layout": {
+ "label": "레이아웃",
+ "options__1": {
+ "label": "수평"
+ },
+ "options__2": {
+ "label": "수직"
+ }
+ },
+ "content": {
+ "label": "콘텐츠",
+ "info": "각 열 또는 행에 대한 아이콘을 선택하거나 이미지를 추가합니다."
+ },
+ "heading": {
+ "info": "아이콘 열을 숨기려면 제목 레이블을 비워 두십시오."
+ },
+ "icon_1": {
+ "label": "첫 번째 아이콘"
+ },
+ "image_1": {
+ "label": "첫 번째 이미지"
+ },
+ "heading_1": {
+ "label": "첫 번째 제목"
+ },
+ "icon_2": {
+ "label": "두 번째 아이콘"
+ },
+ "image_2": {
+ "label": "두 번째 이미지"
+ },
+ "heading_2": {
+ "label": "두 번째 제목"
+ },
+ "icon_3": {
+ "label": "세 번째 아이콘"
+ },
+ "image_3": {
+ "label": "세 번째 이미지"
+ },
+ "heading_3": {
+ "label": "세 번째 제목"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU(재고 관리 코드)",
+ "settings": {
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "부제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "재고 상태",
+ "settings": {
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "부제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ }
+ },
+ "inventory_threshold": {
+ "label": "재고 부족 임계값",
+ "info": "재고 있음을 가능한 경우 항상 표시하려면 0을 선택합니다."
+ },
+ "show_inventory_quantity": {
+ "label": "재고 수 표시"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "미디어",
+ "info": "[미디어 유형](https://help.shopify.com/manual/products/product-media)에 대해 자세히 알아보기"
+ },
+ "enable_video_looping": {
+ "label": "동영상 루프 활성화"
+ },
+ "enable_sticky_info": {
+ "label": "데스크톱에서 콘텐츠 고정 활성화"
+ },
+ "hide_variants": {
+ "label": "이형 상품을 선택한 후 다른 이형 상품의 미디어 숨기기"
+ },
+ "gallery_layout": {
+ "label": "데스크톱 레이아웃",
+ "options__1": {
+ "label": "누적"
+ },
+ "options__2": {
+ "label": "열 2개"
+ },
+ "options__3": {
+ "label": "썸네일"
+ },
+ "options__4": {
+ "label": "썸네일 캐러셀"
+ }
+ },
+ "media_size": {
+ "label": "데스크톱 미디어 너비",
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ },
+ "info": "미디어는 자동으로 모바일에 최적화됩니다."
+ },
+ "mobile_thumbnails": {
+ "label": "모바일 레이아웃",
+ "options__1": {
+ "label": "열 2개"
+ },
+ "options__2": {
+ "label": "썸네일 표시"
+ },
+ "options__3": {
+ "label": "썸네일 숨기기"
+ }
+ },
+ "media_position": {
+ "label": "데스크톱 미디어 위치",
+ "info": "위치는 자동으로 모바일에 최적화됩니다.",
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "오른쪽"
+ }
+ },
+ "image_zoom": {
+ "label": "이미지 확대/축소",
+ "info": "클릭 및 커서 올리기는 모바일에서 라이트박스 열기로 기본값이 설정됩니다.",
+ "options__1": {
+ "label": "라이트박스 열기"
+ },
+ "options__2": {
+ "label": "클릭 및 커서 올리기"
+ },
+ "options__3": {
+ "label": "확대/축소 안 함"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "미디어를 화면 높이로 제한"
+ },
+ "media_fit": {
+ "label": "미디어 맞춤",
+ "options__1": {
+ "label": "원본"
+ },
+ "options__2": {
+ "label": "채우기"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "검색 결과",
+ "settings": {
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로형"
+ },
+ "options__3": {
+ "label": "정사각형"
+ }
+ },
+ "show_secondary_image": {
+ "label": "마우스를 올리면 보조 배경 표시"
+ },
+ "show_vendor": {
+ "label": "공급업체 표시"
+ },
+ "header__1": {
+ "content": "제품 카드"
+ },
+ "header__2": {
+ "content": "블로그 카드",
+ "info": "블로그 카드 유형은 검색 결과의 페이지 카드에도 적용됩니다. 카드 스타일을 변경하려면 테마 설정을 업데이트하십시오."
+ },
+ "article_show_date": {
+ "label": "날짜 표시"
+ },
+ "article_show_author": {
+ "label": "작성자 표시"
+ },
+ "show_rating": {
+ "label": "제품 평점 표시",
+ "info": "평점을 표시하려면 제품 평점 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "여러 열",
+ "settings": {
+ "title": {
+ "label": "제목"
+ },
+ "image_width": {
+ "label": "이미지 폭",
+ "options__1": {
+ "label": "열의 1/3 폭"
+ },
+ "options__2": {
+ "label": "열의 1/2 폭"
+ },
+ "options__3": {
+ "label": "열의 전체 폭"
+ }
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로형"
+ },
+ "options__3": {
+ "label": "정사각형"
+ },
+ "options__4": {
+ "label": "원형"
+ }
+ },
+ "column_alignment": {
+ "label": "열 맞춤",
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "중앙"
+ }
+ },
+ "background_style": {
+ "label": "보조 배경",
+ "options__1": {
+ "label": "없음"
+ },
+ "options__2": {
+ "label": "열의 배경으로 표시"
+ }
+ },
+ "button_label": {
+ "label": "버튼 레이블"
+ },
+ "button_link": {
+ "label": "버튼 링크"
+ },
+ "swipe_on_mobile": {
+ "label": "모바일에서 긁기 활성화"
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "이미지"
+ },
+ "title": {
+ "label": "제목"
+ },
+ "text": {
+ "label": "설명"
+ },
+ "link_label": {
+ "label": "레이블 링크"
+ },
+ "link": {
+ "label": "링크"
+ }
+ },
+ "name": "열"
+ }
+ },
+ "presets": {
+ "name": "여러 열"
+ }
+ },
+ "newsletter": {
+ "name": "이메일 가입",
+ "settings": {
+ "full_width": {
+ "label": "섹션을 전체 폭 사용"
+ },
+ "paragraph": {
+ "content": "이메일 가입할 때마다 고객 계정이 생성됩니다. [자세히 알아보기](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "제목"
+ }
+ },
+ "name": "제목"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "설명"
+ }
+ },
+ "name": "소제목"
+ },
+ "email_form": {
+ "name": "이메일 양식"
+ }
+ },
+ "presets": {
+ "name": "이메일 가입"
+ }
+ },
+ "page": {
+ "name": "페이지",
+ "settings": {
+ "page": {
+ "label": "페이지"
+ }
+ },
+ "presets": {
+ "name": "페이지"
+ }
+ },
+ "rich-text": {
+ "name": "서식있는 텍스트",
+ "settings": {
+ "full_width": {
+ "label": "섹션을 전체 폭 사용"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "데스크톱 콘텐츠 위치",
+ "info": "위치는 자동으로 모바일에 최적화됩니다."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "콘텐츠 정렬"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "제목"
+ }
+ },
+ "name": "제목"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "설명"
+ }
+ },
+ "name": "텍스트"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "첫 번째 버튼 레이블",
+ "info": "버튼을 숨기려면 레이블을 비워둡니다."
+ },
+ "button_link_1": {
+ "label": "첫 번째 버튼 링크"
+ },
+ "button_style_secondary_1": {
+ "label": "윤곽 버튼 스타일 사용"
+ },
+ "button_label_2": {
+ "label": "두 번째 버튼 레이블",
+ "info": "버튼을 숨기려면 레이블을 비워둡니다."
+ },
+ "button_link_2": {
+ "label": "두 번째 버튼 링크"
+ },
+ "button_style_secondary_2": {
+ "label": "윤곽 버튼 스타일 사용"
+ }
+ },
+ "name": "버튼"
+ },
+ "caption": {
+ "name": "캡션",
+ "settings": {
+ "text": {
+ "label": "텍스트"
+ },
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "소제목"
+ },
+ "options__2": {
+ "label": "대문자"
+ }
+ },
+ "caption_size": {
+ "label": "텍스트 사이즈",
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "서식있는 텍스트"
+ }
+ },
+ "apps": {
+ "name": "앱",
+ "settings": {
+ "include_margins": {
+ "label": "섹션 마진을 테마와 동일하게 적용"
+ }
+ },
+ "presets": {
+ "name": "앱"
+ }
+ },
+ "video": {
+ "name": "동영상",
+ "settings": {
+ "heading": {
+ "label": "제목"
+ },
+ "cover_image": {
+ "label": "커버 이미지"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "YouTube 또는 Vimeo URL 사용"
+ },
+ "description": {
+ "label": "동영상 대체 텍스트",
+ "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "이미지 패딩 추가",
+ "info": "이미지가 잘리는 것을 방지하려면 이미지 패딩을 선택하십시오."
+ },
+ "full_width": {
+ "label": "섹션을 전체 폭 사용"
+ },
+ "video": {
+ "label": "동영상"
+ },
+ "enable_video_looping": {
+ "label": "동영상 반복 재생"
+ },
+ "header__1": {
+ "content": "Shopify 호스팅 동영상"
+ },
+ "header__2": {
+ "content": "또는 URL의 동영상 포함"
+ },
+ "header__3": {
+ "content": "스타일"
+ },
+ "paragraph": {
+ "content": "Shopify 호스팅 동영상이 선택되지 않으면 표시됩니다."
+ }
+ },
+ "presets": {
+ "name": "동영상"
+ }
+ },
+ "featured-product": {
+ "name": "특별 제품",
+ "blocks": {
+ "text": {
+ "name": "텍스트",
+ "settings": {
+ "text": {
+ "label": "텍스트"
+ },
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "소제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "제목"
+ },
+ "price": {
+ "name": "가격"
+ },
+ "quantity_selector": {
+ "name": "수량 선택기"
+ },
+ "variant_picker": {
+ "name": "이형 상품 피커",
+ "settings": {
+ "picker_type": {
+ "label": "유형",
+ "options__1": {
+ "label": "드롭다운"
+ },
+ "options__2": {
+ "label": "타원형"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "구매 버튼",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "동적 결제 버튼 표시",
+ "info": "스토어에서 사용 가능한 결제 방법을 사용하면 고객이 PayPal 또는 Apple Pay처럼 원하는 옵션을 볼 수 있습니다. [자세히 알아보기](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "설명"
+ },
+ "share": {
+ "name": "공유",
+ "settings": {
+ "featured_image_info": {
+ "content": "소셜 미디어 게시글에 링크를 포함하면 페이지의 미리 보기 이미지에 추천 이미지가 표시됩니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "미리 보기 이미지에 스토어 제목 및 설명이 포함됩니다. [자세히 알아보기](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "텍스트"
+ }
+ }
+ },
+ "rating": {
+ "name": "제품 평점",
+ "settings": {
+ "paragraph": {
+ "content": "평점을 표시하려면 제품 평점 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU(재고 관리 코드)",
+ "settings": {
+ "text_style": {
+ "label": "텍스트 스타일",
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "부제목"
+ },
+ "options__3": {
+ "label": "대문자"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "제품"
+ },
+ "secondary_background": {
+ "label": "보조 배경 표시"
+ },
+ "header": {
+ "content": "미디어",
+ "info": "[미디어 유형](https://help.shopify.com/manual/products/product-media)에 대해 자세히 알아보기"
+ },
+ "enable_video_looping": {
+ "label": "동영상 루프 활성화"
+ },
+ "hide_variants": {
+ "label": "데스크톱에서 선택하지 않은 이형 상품의 미디어 숨기기"
+ },
+ "media_position": {
+ "label": "데스크톱 미디어 위치",
+ "info": "위치는 자동으로 모바일에 최적화됩니다.",
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "오른쪽"
+ }
+ }
+ },
+ "presets": {
+ "name": "특별 제품"
+ }
+ },
+ "email-signup-banner": {
+ "name": "이메일 가입 배너",
+ "settings": {
+ "paragraph": {
+ "content": "이메일 가입할 때마다 고객 계정이 생성됩니다. [자세히 알아보기](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "배경 이미지"
+ },
+ "show_background_image": {
+ "label": "배경 이미지 표시"
+ },
+ "show_text_box": {
+ "label": "데스크톱에 컨테이너 표시"
+ },
+ "image_overlay_opacity": {
+ "label": "이미지 오버레이 투명도"
+ },
+ "show_text_below": {
+ "label": "모바일에서 이미지 아래에 콘텐츠 표시",
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 16:9로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "배너 높이",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "options__4": {
+ "label": "크게"
+ },
+ "info": "최고의 결과를 얻으려면 이미지의 가로 세로 비율을 16:9로 사용하십시오. [자세히 알아보기](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "왼쪽 중간"
+ },
+ "options__5": {
+ "label": "가운데 중간"
+ },
+ "options__6": {
+ "label": "오른쪽 중간"
+ },
+ "options__7": {
+ "label": "왼쪽 하단"
+ },
+ "options__8": {
+ "label": "가운데 하단"
+ },
+ "options__9": {
+ "label": "오른쪽 하단"
+ },
+ "options__1": {
+ "label": "왼쪽 상단"
+ },
+ "options__2": {
+ "label": "가운데 상단"
+ },
+ "options__3": {
+ "label": "오른쪽 상단"
+ },
+ "label": "데스크톱 콘텐츠 위치"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "데스크톱 콘텐츠 정렬"
+ },
+ "header": {
+ "content": "모바일 레이아웃"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "모바일 콘텐츠 정렬"
+ },
+ "color_scheme": {
+ "info": "컨테이너가 표시될 때 볼 수 있습니다."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "제목",
+ "settings": {
+ "heading": {
+ "label": "제목"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "단락",
+ "settings": {
+ "paragraph": {
+ "label": "설명"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "소제목"
+ },
+ "label": "텍스트 스타일"
+ }
+ }
+ },
+ "email_form": {
+ "name": "이메일 양식"
+ }
+ },
+ "presets": {
+ "name": "이메일 가입 배너"
+ }
+ },
+ "slideshow": {
+ "name": "슬라이드 쇼",
+ "settings": {
+ "layout": {
+ "label": "레이아웃",
+ "options__1": {
+ "label": "전체 폭"
+ },
+ "options__2": {
+ "label": "그리드"
+ }
+ },
+ "slide_height": {
+ "label": "슬라이드 높이",
+ "options__1": {
+ "label": "첫 번째 이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "options__4": {
+ "label": "크게"
+ }
+ },
+ "slider_visual": {
+ "label": "페이지 매김 스타일",
+ "options__1": {
+ "label": "카운터기"
+ },
+ "options__2": {
+ "label": "점"
+ },
+ "options__3": {
+ "label": "번호"
+ }
+ },
+ "auto_rotate": {
+ "label": "슬라이드 자동 회전"
+ },
+ "change_slides_speed": {
+ "label": "슬라이드를 매번 변경"
+ },
+ "mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "show_text_below": {
+ "label": "모바일에서 이미지 아래에 콘텐츠 표시"
+ },
+ "accessibility": {
+ "content": "접근성",
+ "label": "슬라이드 쇼 설명",
+ "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "슬라이드",
+ "settings": {
+ "image": {
+ "label": "이미지"
+ },
+ "heading": {
+ "label": "제목"
+ },
+ "subheading": {
+ "label": "소제목"
+ },
+ "button_label": {
+ "label": "버튼 레이블",
+ "info": "버튼을 숨기려면 레이블을 비워 둡니다."
+ },
+ "link": {
+ "label": "버튼 링크"
+ },
+ "secondary_style": {
+ "label": "윤곽 버튼 스타일 사용"
+ },
+ "box_align": {
+ "label": "데스크톱 콘텐츠 위치",
+ "options__1": {
+ "label": "왼쪽 상단"
+ },
+ "options__2": {
+ "label": "가운데 상단"
+ },
+ "options__3": {
+ "label": "오른쪽 상단"
+ },
+ "options__4": {
+ "label": "왼쪽 중간"
+ },
+ "options__5": {
+ "label": "가운데 중간"
+ },
+ "options__6": {
+ "label": "오른쪽 중간"
+ },
+ "options__7": {
+ "label": "왼쪽 하단"
+ },
+ "options__8": {
+ "label": "가운데 하단"
+ },
+ "options__9": {
+ "label": "오른쪽 하단"
+ },
+ "info": "위치는 자동으로 모바일에 최적화됩니다."
+ },
+ "show_text_box": {
+ "label": "데스크톱에 컨테이너 표시"
+ },
+ "text_alignment": {
+ "label": "데스크톱 콘텐츠 정렬",
+ "option_1": {
+ "label": "왼쪽"
+ },
+ "option_2": {
+ "label": "가운데"
+ },
+ "option_3": {
+ "label": "오른쪽"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "이미지 오버레이 투명도"
+ },
+ "text_alignment_mobile": {
+ "label": "모바일 콘텐츠 정렬",
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "슬라이드 쇼"
+ }
+ },
+ "collapsible_content": {
+ "name": "축소 가능한 콘텐츠",
+ "settings": {
+ "caption": {
+ "label": "캡션"
+ },
+ "heading": {
+ "label": "제목"
+ },
+ "heading_alignment": {
+ "label": "제목 정렬",
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ }
+ },
+ "layout": {
+ "label": "레이아웃",
+ "options__1": {
+ "label": "컨테이너 없음"
+ },
+ "options__2": {
+ "label": "행 컨테이너"
+ },
+ "options__3": {
+ "label": "섹션 컨테이너"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "첫 번째 축소 가능한 행 열기"
+ },
+ "header": {
+ "content": "이미지 레이아웃"
+ },
+ "image": {
+ "label": "이미지"
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "크게"
+ }
+ },
+ "desktop_layout": {
+ "label": "데스크톱 레이아웃",
+ "options__1": {
+ "label": "이미지 우선"
+ },
+ "options__2": {
+ "label": "이미지 두 번째"
+ },
+ "info": "모바일에서는 항상 이미지가 우선입니다."
+ },
+ "container_color_scheme": {
+ "label": "컨테이너 색상 배합",
+ "info": "행 또는 섹션 컨테이너에 레이아웃이 설정되면 표시됩니다."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "축소 가능한 행",
+ "settings": {
+ "heading": {
+ "info": "콘텐츠를 설명하는 제목을 포함합니다.",
+ "label": "제목"
+ },
+ "row_content": {
+ "label": "행 콘텐츠"
+ },
+ "page": {
+ "label": "페이지의 행 콘텐츠"
+ },
+ "icon": {
+ "label": "아이콘",
+ "options__1": {
+ "label": "없음"
+ },
+ "options__2": {
+ "label": "사과"
+ },
+ "options__3": {
+ "label": "바나나"
+ },
+ "options__4": {
+ "label": "병"
+ },
+ "options__5": {
+ "label": "상자"
+ },
+ "options__6": {
+ "label": "당근"
+ },
+ "options__7": {
+ "label": "채팅 말풍선"
+ },
+ "options__8": {
+ "label": "확인 표시"
+ },
+ "options__9": {
+ "label": "클립보드"
+ },
+ "options__10": {
+ "label": "유제품"
+ },
+ "options__11": {
+ "label": "유제품 무첨가"
+ },
+ "options__12": {
+ "label": "드라이어"
+ },
+ "options__13": {
+ "label": "눈"
+ },
+ "options__14": {
+ "label": "파이어"
+ },
+ "options__15": {
+ "label": "글루텐 프리"
+ },
+ "options__16": {
+ "label": "하트"
+ },
+ "options__17": {
+ "label": "강철"
+ },
+ "options__18": {
+ "label": "나뭇잎"
+ },
+ "options__19": {
+ "label": "가죽"
+ },
+ "options__20": {
+ "label": "번개 표시"
+ },
+ "options__21": {
+ "label": "립스틱"
+ },
+ "options__22": {
+ "label": "자물쇠"
+ },
+ "options__23": {
+ "label": "지도 핀 표시"
+ },
+ "options__24": {
+ "label": "너트 프리"
+ },
+ "options__25": {
+ "label": "바지"
+ },
+ "options__26": {
+ "label": "발자국"
+ },
+ "options__27": {
+ "label": "후추"
+ },
+ "options__28": {
+ "label": "향수"
+ },
+ "options__29": {
+ "label": "비행기"
+ },
+ "options__30": {
+ "label": "화훼"
+ },
+ "options__31": {
+ "label": "가격표"
+ },
+ "options__32": {
+ "label": "물음표"
+ },
+ "options__33": {
+ "label": "재활용"
+ },
+ "options__34": {
+ "label": "되돌아가기"
+ },
+ "options__35": {
+ "label": "자"
+ },
+ "options__36": {
+ "label": "서빙용 접시"
+ },
+ "options__37": {
+ "label": "셔츠"
+ },
+ "options__38": {
+ "label": "신발"
+ },
+ "options__39": {
+ "label": "실루엣"
+ },
+ "options__40": {
+ "label": "스노우플레이크"
+ },
+ "options__41": {
+ "label": "별"
+ },
+ "options__42": {
+ "label": "스톱워치"
+ },
+ "options__43": {
+ "label": "트럭"
+ },
+ "options__44": {
+ "label": "씻기"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "축소 가능한 콘텐츠"
+ }
+ },
+ "main-account": {
+ "name": "계정"
+ },
+ "main-activate-account": {
+ "name": "계정 활성화"
+ },
+ "main-addresses": {
+ "name": "주소"
+ },
+ "main-login": {
+ "name": "로그인"
+ },
+ "main-order": {
+ "name": "주문"
+ },
+ "main-register": {
+ "name": "등록"
+ },
+ "main-reset-password": {
+ "name": "암호 재설정"
+ },
+ "related-products": {
+ "name": "관련 제품",
+ "settings": {
+ "heading": {
+ "label": "제목"
+ },
+ "products_to_show": {
+ "label": "표시할 최대 제품 수"
+ },
+ "columns_desktop": {
+ "label": "데스크톱의 열 수"
+ },
+ "paragraph__1": {
+ "content": "동적 추천은 주문 및 제품 정보를 사용하여 시간에 따라 변경되고 개선됩니다. [자세히 알아보기](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "제품 카드"
+ },
+ "image_ratio": {
+ "label": "이미지 비율",
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "세로"
+ },
+ "options__3": {
+ "label": "정사각형"
+ }
+ },
+ "show_secondary_image": {
+ "label": "마우스를 올리면 보조 이미지 표시"
+ },
+ "show_vendor": {
+ "label": "공급업체 표시"
+ },
+ "show_rating": {
+ "label": "제품 평점 표시",
+ "info": "평점을 표시하려면 제품 평점 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ },
+ "columns_mobile": {
+ "label": "모바일의 열 수",
+ "options__1": {
+ "label": "열 1개"
+ },
+ "options__2": {
+ "label": "열 2개"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "여러 행",
+ "settings": {
+ "image": {
+ "label": "이미지"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "이미지에 맞춤"
+ },
+ "options__2": {
+ "label": "작게"
+ },
+ "options__3": {
+ "label": "보통"
+ },
+ "options__4": {
+ "label": "크게"
+ },
+ "label": "이미지 높이"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ },
+ "label": "데스크톱 이미지 너비",
+ "info": "이미지는 자동으로 모바일에 최적화됩니다."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "작게"
+ },
+ "options__2": {
+ "label": "보통"
+ },
+ "options__3": {
+ "label": "크게"
+ },
+ "label": "제목 크기"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "본문"
+ },
+ "options__2": {
+ "label": "부제목"
+ },
+ "label": "텍스트 스타일"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "단색 버튼"
+ },
+ "options__2": {
+ "label": "윤곽선 버튼"
+ },
+ "label": "버튼 스타일"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "데스크톱 콘텐츠 정렬"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "위쪽"
+ },
+ "options__2": {
+ "label": "중간"
+ },
+ "options__3": {
+ "label": "아래쪽"
+ },
+ "label": "데스크톱 콘텐츠 위치",
+ "info": "위치는 자동으로 모바일에 최적화됩니다."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "왼쪽에서 번갈아"
+ },
+ "options__2": {
+ "label": "오른쪽에서 번갈아"
+ },
+ "options__3": {
+ "label": "왼쪽 맞춤"
+ },
+ "options__4": {
+ "label": "오른쪽 맞춤"
+ },
+ "label": "데스크톱 이미지 배치",
+ "info": "배치는 자동으로 모바일에 최적화됩니다."
+ },
+ "container_color_scheme": {
+ "label": "컨테이너 색상 구성표"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "왼쪽"
+ },
+ "options__2": {
+ "label": "가운데"
+ },
+ "options__3": {
+ "label": "오른쪽"
+ },
+ "label": "모바일 콘텐츠 정렬"
+ },
+ "header_mobile": {
+ "content": "모바일 레이아웃"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "열",
+ "settings": {
+ "image": {
+ "label": "이미지"
+ },
+ "caption": {
+ "label": "캡션"
+ },
+ "heading": {
+ "label": "제목"
+ },
+ "text": {
+ "label": "텍스트"
+ },
+ "button_label": {
+ "label": "버튼 레이블"
+ },
+ "button_link": {
+ "label": "버튼 링크"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "여러 행"
+ }
+ },
+ "quick-order-list": {
+ "name": "빠른 주문 목록",
+ "settings": {
+ "show_image": {
+ "label": "이미지 표시"
+ },
+ "show_sku": {
+ "label": "SKU(재고 관리 코드) 표시"
+ }
+ },
+ "presets": {
+ "name": "빠른 주문 목록"
+ }
+ }
+ }
+}
diff --git a/locales/lt-LT.json b/locales/lt-LT.json
new file mode 100644
index 0000000..9a418b0
--- /dev/null
+++ b/locales/lt-LT.json
@@ -0,0 +1,536 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Apsilankyti parduotuvėje naudojant slaptažodį:",
+ "login_password_button": "Apsilankyti naudojant slaptažodį",
+ "login_form_password_label": "Slaptažodis",
+ "login_form_password_placeholder": "Jūsų slaptažodis",
+ "login_form_error": "Slaptažodis neteisingas!",
+ "login_form_submit": "Įvesti",
+ "admin_link_html": "Ar esate parduotuvės savininkas? Prisijunkite čia ",
+ "powered_by_shopify_html": "Ši parduotuvė priklausys platformai „{{ shopify }}“"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Bendrinti „Facebook“",
+ "share_on_twitter": "Skelbti „Twitter“",
+ "share_on_pinterest": "Skelbti „Pinterest“"
+ },
+ "links": {
+ "twitter": "„Twitter“",
+ "facebook": "„Facebook“",
+ "pinterest": "„Pinterest“",
+ "instagram": "„Instagram“",
+ "tumblr": "„Tumblr“",
+ "snapchat": "„Snapchat“",
+ "youtube": "„YouTube“",
+ "vimeo": "„Vimeo“",
+ "tiktok": "„TikTok“"
+ }
+ },
+ "continue_shopping": "Tęsti apsipirkimą",
+ "pagination": {
+ "label": "Puslapių numeravimas",
+ "page": "{{ number }} psl.",
+ "next": "Kitas puslapis",
+ "previous": "Ankstesnis puslapis"
+ },
+ "search": {
+ "search": "Ieškoti",
+ "reset": "Išvalyti paieškos terminą"
+ },
+ "cart": {
+ "view": "Peržiūrėti krepšelį ({{ count }})",
+ "item_added": "Prekė įdėta į jūsų krepšelį",
+ "view_empty_cart": "Peržiūrėti krepšelį"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopijuoti nuorodą",
+ "share_url": "Nuoroda",
+ "success_message": "Nuoroda nukopijuota į iškarpinę",
+ "close": "Uždaryti bendrinimą"
+ },
+ "slider": {
+ "of": "iš",
+ "next_slide": "Slinkti dešinėn",
+ "previous_slide": "Slinkti kairėn",
+ "name": "Slankiklis"
+ }
+ },
+ "newsletter": {
+ "label": "El. pašto adresas",
+ "success": "Dėkojame, kad prenumeruojate",
+ "button_label": "Prenumeruoti"
+ },
+ "accessibility": {
+ "skip_to_text": "Eiti į turinį",
+ "close": "Uždaryti",
+ "unit_price_separator": "per",
+ "vendor": "Tiekėjas:",
+ "error": "Klaida",
+ "refresh_page": "Pasirenkant variantą persikrauna visas puslapis.",
+ "loading": "Įkeliama...",
+ "link_messages": {
+ "new_window": "Atsidaro naujame lange.",
+ "external": "Atidaro išorinę svetainę."
+ },
+ "skip_to_product_info": "Pereiti prie informacijos apie gaminį",
+ "total_reviews": "iš viso apžvalgų",
+ "star_reviews_info": "{{ rating_value }} iš {{ rating_max }} žvaigždučių",
+ "collapsible_content_title": "Suskleidžiamas turinys",
+ "complementary_products": "Papildomi produktai"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Tinklaraštis",
+ "read_more_title": "Skaityti daugiau: „{{ title }}“",
+ "moderated": "Turėkite omenyje, kad prieš paskelbiant komentarus, jie turi būti patvirtinti.",
+ "comment_form_title": "Rašyti komentarą",
+ "name": "Vardas",
+ "email": "El. pašto adresas",
+ "message": "Komentuoti",
+ "post": "Skelbti komentarą",
+ "back_to_blog": "Grįžti į tinklaraštį",
+ "share": "Bendrinti šį straipsnį",
+ "success": "Komentaras sėkmingai pateiktas! Dėkojame!",
+ "success_moderated": "Komentaras sėkmingai pateiktas. Paskelbsime jį netrukus, nes mūsų tinklaraštis prižiūrimas.",
+ "comments": {
+ "one": "{{ count }} komentaras",
+ "other": "{{ count }} komentarai (-ų)",
+ "few": "{{ count }} komentarai (-ų)",
+ "many": "{{ count }} komentarai (-ų)"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Pavyzdinio gaminio pavadinimas",
+ "collection_title": "Jūsų kolekcijos pavadinimas"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Įdėti į krepšelį",
+ "description": "Aprašymas",
+ "on_sale": "Išpardavimas",
+ "product_variants": "Gaminio variantai",
+ "share": "Bendrinti šį gaminį",
+ "sold_out": "Išparduota",
+ "unavailable": "Nėra",
+ "vendor": "Tiekėjas",
+ "video_exit_message": "{{ title }} atveria viso ekrano filmą tame pačiame lange.",
+ "xr_button": "Peržiūra savo erdvėje",
+ "xr_button_label": "Funkcija „Peržiūra savo erdvėje“ elementą įkelia į papildytos realybės langą",
+ "quantity": {
+ "label": "Kiekis",
+ "input_label": "{{ product }} kiekis",
+ "increase": "Padidinti {{ product }} kiekį",
+ "decrease": "Sumažinti {{ product }} kiekį",
+ "minimum_of": "Mažiausiai {{ quantity }}",
+ "maximum_of": "Daugiausiai {{ quantity }}",
+ "multiples_of": "Kiekis didėja kas {{ quantity }}",
+ "in_cart_html": "{{ quantity }} vnt. krepšelyje",
+ "note": "Peržiūrėti kiekių taisykles"
+ },
+ "price": {
+ "from_price_html": "Nuo {{ price }}",
+ "regular_price": "Įprasta kaina",
+ "sale_price": "Išpardavimo kaina",
+ "unit_price": "Vieneto kaina"
+ },
+ "pickup_availability": {
+ "view_store_info": "Žiūrėti parduotuvės informaciją",
+ "check_other_stores": "Pažiūrėti, ar yra kitose parduotuvėse",
+ "pick_up_available": "Galima atsiimti",
+ "pick_up_available_at_html": "Galima atsiimti {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Šiuo metu atsiimti {{ location_name }} negalima",
+ "unavailable": "Nepavyko įkelti atsiėmimo galimybių",
+ "refresh": "Atnaujinti"
+ },
+ "media": {
+ "open_media": "Atidaryti mediją {{ index }} modaliniame lange",
+ "play_model": "Paleisti 3D peržiūros programą",
+ "play_video": "Paleisti vaizdo įrašą",
+ "gallery_viewer": "Galerijos žiūryklė",
+ "load_image": "Įkelti vaizdą {{ index }} į galerijos rodinį",
+ "load_model": "Įkelti trimatį modelį {{ index }} į galerijos rodinį",
+ "load_video": "Leisti vaizdo įrašą {{ index }} galerijos rodinyje",
+ "image_available": "Vaizdas {{ index }} dabar prieinamas galerijos rodinyje"
+ },
+ "view_full_details": "Žiūrėti visą informaciją",
+ "include_taxes": "Mokesčiai įtraukti.",
+ "shipping_policy_html": "Siuntimo išlaidos apskaičiuojamos atsiskaitant.",
+ "choose_options": "Rinktis variantus",
+ "choose_product_options": "Rinktis {{ product_name }} variantus",
+ "value_unavailable": "{{ option_value }} – neturime",
+ "variant_sold_out_or_unavailable": "Prekė išparduota arba jos neturime",
+ "inventory_in_stock": "Yra sandėlyje",
+ "inventory_in_stock_show_count": "{{ quantity }} vnt. sandėlyje",
+ "inventory_low_stock": "Atsargos senka",
+ "inventory_low_stock_show_count": "Atsargos senka: liko {{ quantity }} vnt.",
+ "inventory_out_of_stock": "Neturime",
+ "inventory_out_of_stock_continue_selling": "Yra sandėlyje",
+ "sku": "SKU kodas",
+ "volume_pricing": {
+ "title": "Kiekybinė kainodara",
+ "note": "Galima kiekybinė kainodara",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "po {{ price }}/vnt.",
+ "price_range": "{{ minimum }}–{{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Medijų galerija"
+ },
+ "facets": {
+ "apply": "Taikyti",
+ "clear": "Išvalyti",
+ "clear_all": "Pašalinti viską",
+ "from": "Nuo",
+ "filter_and_sort": "Filtruoti ir rūšiuoti",
+ "filter_by_label": "Filtruoti:",
+ "filter_button": "Filtruoti",
+ "max_price": "Didžiausia kaina yra {{ price }}",
+ "reset": "Nustatyti iš naujo",
+ "sort_button": "Rūšiuoti",
+ "sort_by_label": "Rūšiuoti pagal:",
+ "to": "Į",
+ "filters_selected": {
+ "one": "Pasirinkta {{ count }}",
+ "other": "Pasirinkta {{ count }}",
+ "few": "Pasirinkta {{ count }}",
+ "many": "Pasirinkta {{ count }}"
+ },
+ "product_count": {
+ "one": "{{ product_count }} iš {{ count }} gaminio",
+ "other": "{{ product_count }} iš {{ count }} gaminių",
+ "few": "{{ product_count }} iš {{ count }} gaminių",
+ "many": "{{ product_count }} iš {{ count }} gaminių"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} gaminys",
+ "other": "{{ count }} gaminiai (-ių)",
+ "few": "{{ count }} gaminiai (-ių)",
+ "many": "{{ count }} gaminiai (-ių)"
+ },
+ "clear_filter": "Pašalinti filtrą",
+ "filter_selected_accessibility": "{{ type }} (pasirinkta filtrų: {{ count }})",
+ "show_more": "Rodyti daugiau",
+ "show_less": "Rodyti mažiau",
+ "filter_and_operator_subtitle": "Atitikti visas"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nerasta jokių rezultatų pagal užklausą „{{ terms }}“. Patikrinkite rašybą arba vartokite kitą žodį ar frazę.",
+ "page": "Puslapis",
+ "title": "Paieškos rezultatai",
+ "results_with_count": {
+ "one": "{{ count }} rezultatas",
+ "other": "{{ count }} rezultatas",
+ "few": "{{ count }} rezultatas",
+ "many": "{{ count }} rezultatas"
+ },
+ "products": "Gaminiai",
+ "search_for": "Ieškoti „{{ terms }}“",
+ "results_with_count_and_term": {
+ "one": "Rastas {{ count }} rezultatas pagal užklausą „{{ terms }}“",
+ "other": "Rasti {{ count }} rezultatai (-ų) pagal užklausą „{{ terms }}“",
+ "few": "Rasti {{ count }} rezultatai (-ų) pagal užklausą „{{ terms }}“",
+ "many": "Rasti {{ count }} rezultatai (-ų) pagal užklausą „{{ terms }}“"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} puslapis",
+ "other": "{{ count }} puslapiai (-ių)",
+ "few": "{{ count }} puslapiai (-ių)",
+ "many": "{{ count }} puslapiai (-ių)"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} pasiūlymas",
+ "other": "{{ count }} pasiūlymai (-ų)",
+ "few": "{{ count }} pasiūlymai (-ų)",
+ "many": "{{ count }} pasiūlymai (-ų)"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} gaminys",
+ "other": "{{ count }} gaminiai (-ių)",
+ "few": "{{ count }} gaminiai (-ių)",
+ "many": "{{ count }} gaminiai (-ių)"
+ },
+ "suggestions": "Pasiūlymai",
+ "pages": "Puslapiai"
+ },
+ "cart": {
+ "cart": "Krepšelis"
+ },
+ "contact": {
+ "form": {
+ "name": "Vardas",
+ "email": "El. pašto adresas",
+ "phone": "Telefono numeris",
+ "comment": "Komentuoti",
+ "send": "Siųsti",
+ "post_success": "Dėkojame, kad su mumis susisiekėte. Atsakysime kaip galėdami greičiau.",
+ "error_heading": "Pakoreguokite toliau pateiktą informaciją.",
+ "title": "Kontaktinė forma"
+ }
+ },
+ "404": {
+ "title": "Puslapis nerastas",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Skelbimas",
+ "menu": "Meniu",
+ "cart_count": {
+ "one": "{{ count }} prekė",
+ "other": "{{ count }} prekės (-ių)",
+ "few": "{{ count }} prekės (-ių)",
+ "many": "{{ count }} prekės (-ių)"
+ }
+ },
+ "cart": {
+ "title": "Jūsų krepšelis",
+ "caption": "Krepšelio turinys",
+ "remove_title": "Pašalinti {{ title }}",
+ "note": "Specialūs nurodymai dėl užsakymo",
+ "checkout": "Atsiskaityti",
+ "empty": "Jūsų krepšelis tuščias",
+ "cart_error": "Atnaujinant krepšelį įvyko klaida. Bandykite dar kartą.",
+ "cart_quantity_error_html": "Į krepšelį galite įdėti tik {{ quantity }}šios prekės vnt.",
+ "taxes_and_shipping_policy_at_checkout_html": "Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojami atsiskaitant",
+ "taxes_included_but_shipping_at_checkout": "Mokesčiai įtraukti, o siuntimo išlaidos ir nuolaidos apskaičiuojamos atsiskaitant",
+ "taxes_included_and_shipping_policy_html": "Mokesčiai įtraukti. Siuntimo išlaidos ir nuolaidos apskaičiuojamos atsiskaitant.",
+ "taxes_and_shipping_at_checkout": "Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojami atsiskaitant",
+ "update": "Atnaujinti",
+ "headings": {
+ "product": "Gaminys",
+ "price": "Kaina",
+ "total": "Visa suma",
+ "quantity": "Kiekis",
+ "image": "Gaminio nuotrauka"
+ },
+ "login": {
+ "title": "Turite paskyrą?",
+ "paragraph_html": "Prisijunkite ir atsiskaitysite greičiau."
+ },
+ "estimated_total": "Apskaičiuota bendra suma",
+ "new_estimated_total": "Nauja apskaičiuota bendra suma"
+ },
+ "footer": {
+ "payment": "Mokėjimo būdai"
+ },
+ "featured_blog": {
+ "view_all": "Žr. viską",
+ "onboarding_title": "Tinklaraščio įrašas",
+ "onboarding_content": "Pateikite savo klientams savo tinklaraščio įrašo santrauką"
+ },
+ "featured_collection": {
+ "view_all": "Žr. viską",
+ "view_all_label": "Žr. visus kolekcijos „{{ collection_name }}“ gaminius"
+ },
+ "collection_list": {
+ "view_all": "Žr. viską"
+ },
+ "collection_template": {
+ "title": "Kolekcija",
+ "empty": "Nerasta jokių gaminių",
+ "use_fewer_filters_html": "Naudoti mažiau filtrų arba pašalinti viską "
+ },
+ "video": {
+ "load_video": "Įkelti vaizdo įrašą „{{ description }}“"
+ },
+ "slideshow": {
+ "load_slide": "Įkelti skaidrę",
+ "previous_slideshow": "Ankstesnė skaidrė",
+ "next_slideshow": "Kita skaidrė",
+ "pause_slideshow": "Pristabdyti skaidrių peržiūrą",
+ "play_slideshow": "Leisti skaidrių peržiūrą",
+ "carousel": "Karuselė",
+ "slide": "Skaidrė"
+ },
+ "page": {
+ "title": "Puslapio pavadinimas"
+ },
+ "announcements": {
+ "previous_announcement": "Ankstesnis skelbimas",
+ "next_announcement": "Kitas skelbimas",
+ "carousel": "Karuselė",
+ "announcement": "Skelbimas",
+ "announcement_bar": "Skelbimo juosta"
+ },
+ "quick_order_list": {
+ "product_total": "Gaminių tarpinė suma",
+ "view_cart": "Peržiūrėti krepšelį",
+ "each": "{{ money }}/vnt.",
+ "product": "Gaminys",
+ "variant": "Variantas",
+ "variant_total": "Variantų bendra suma",
+ "items_added": {
+ "one": "Pridėta {{ quantity }} prekė",
+ "other": "Pridėtos {{ quantity }} prekės (-ių)",
+ "few": "Pridėtos {{ quantity }} prekės (-ių)",
+ "many": "Pridėtos {{ quantity }} prekės (-ių)"
+ },
+ "items_removed": {
+ "one": "Pašalinta {{ quantity }} prekė",
+ "other": "Pašalintos {{ quantity }} prekės (-ių)",
+ "few": "Pašalintos {{ quantity }} prekės (-ių)",
+ "many": "Pašalintos {{ quantity }} prekės (-ių)"
+ },
+ "product_variants": "Gaminio variantai",
+ "total_items": "Prekių iš viso",
+ "remove_all_items_confirmation": "Pašalinti visas {{ quantity }} prekes (-ių) iš krepšelio?",
+ "remove_all": "Pašalinti viską",
+ "cancel": "Atšaukti"
+ }
+ },
+ "localization": {
+ "country_label": "Šalis / regionas",
+ "language_label": "Kalba",
+ "update_language": "Atnaujinti kalbą",
+ "update_country": "Atnaujinti šalį / regioną"
+ },
+ "customer": {
+ "account": {
+ "title": "Paskyra",
+ "details": "Paskyros informacija",
+ "view_addresses": "Žr. adresus",
+ "return": "Grįžti į paskyros informaciją"
+ },
+ "account_fallback": "Paskyra",
+ "log_in": "Prisijungti",
+ "log_out": "Atsijungti",
+ "activate_account": {
+ "title": "Aktyvinti paskyrą",
+ "subtext": "Sukurkite slaptažodį, kad galėtumėte aktyvinti paskyrą.",
+ "password": "Slaptažodis",
+ "password_confirm": "Patvirtinti slaptažodį",
+ "submit": "Aktyvinti paskyrą",
+ "cancel": "Atmesti kvietimą"
+ },
+ "addresses": {
+ "title": "Adresai",
+ "default": "Numatytasis",
+ "add_new": "Pridėti naują adresą",
+ "edit_address": "Redaguoti adresą",
+ "first_name": "Vardas",
+ "last_name": "Pavardė",
+ "company": "Įmonė",
+ "address1": "1 adresas",
+ "address2": "2 adresas",
+ "city": "Miestas",
+ "country": "Šalis / regionas",
+ "province": "Provincija",
+ "zip": "Pašto kodas",
+ "phone": "Telefonas",
+ "set_default": "Nustatyti kaip numatytąjį adresą",
+ "add": "Pridėti adresą",
+ "update": "Atnaujinti adresą",
+ "cancel": "Atšaukti",
+ "edit": "Redaguoti",
+ "delete": "Ištrinti",
+ "delete_confirm": "Ar tikrai norite ištrinti šį adresą?"
+ },
+ "login_page": {
+ "cancel": "Atšaukti",
+ "create_account": "Kurti paskyrą",
+ "email": "El. pašto adresas",
+ "forgot_password": "Pamiršote slaptažodį?",
+ "guest_continue": "Tęsti",
+ "guest_title": "Tęsti kaip svečias",
+ "password": "Slaptažodis",
+ "title": "Prisijungimo vardas",
+ "sign_in": "Prisijungti",
+ "submit": "Pateikti"
+ },
+ "order": {
+ "title": "Užsakymas {{ name }}",
+ "date_html": "Pateiktas {{ date }}",
+ "cancelled_html": "Užsakymas atšauktas {{ date }}",
+ "cancelled_reason": "Priežastis: {{ reason }}",
+ "billing_address": "Sąskaitos pateikimo adresas",
+ "payment_status": "Mokėjimo būsena",
+ "shipping_address": "Pristatymo adresas",
+ "fulfillment_status": "Įvykdymo būsena",
+ "discount": "Nuolaida",
+ "shipping": "Siuntimas",
+ "tax": "Mokesčiai",
+ "product": "Gaminys",
+ "sku": "SKU kodas",
+ "price": "Kaina",
+ "quantity": "Kiekis",
+ "total": "Visa suma",
+ "fulfilled_at_html": "Įvykdyta {{ date }}",
+ "track_shipment": "Stebėti siuntą",
+ "tracking_url": "Sekimo nuoroda",
+ "tracking_company": "Vežėjas",
+ "tracking_number": "Sekimo numeris",
+ "subtotal": "Tarpinė suma",
+ "total_duties": "Muito mokesčiai",
+ "total_refunded": "Kompensuota"
+ },
+ "orders": {
+ "title": "Užsakymų istorija",
+ "order_number": "Užsakymas",
+ "order_number_link": "Užsakymo numeris {{ number }}",
+ "date": "Data",
+ "payment_status": "Mokėjimo būsena",
+ "fulfillment_status": "Įvykdymo būsena",
+ "total": "Visa suma",
+ "none": "Dar nepateikėte užsakymų."
+ },
+ "recover_password": {
+ "title": "Nustatykite slaptažodį iš naujo",
+ "subtext": "Atsiųsime jums el. laišką, kad galėtumėte nustatyti slaptažodį iš naujo",
+ "success": "Išsiuntėme jums el. laišką su nuoroda slaptažodžiui atnaujinti."
+ },
+ "register": {
+ "title": "Kurti paskyrą",
+ "first_name": "Vardas",
+ "last_name": "Pavardė",
+ "email": "El. pašto adresas",
+ "password": "Slaptažodis",
+ "submit": "Kurti"
+ },
+ "reset_password": {
+ "title": "Nustatyti paskyros slaptažodį iš naujo",
+ "subtext": "Įveskite naują slaptažodį",
+ "password": "Slaptažodis",
+ "password_confirm": "Patvirtinti slaptažodį",
+ "submit": "Nustatyti slaptažodį iš naujo"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Štai jūsų {{ value }} vertės parduotuvės {{ shop }} dovanų kortelė!",
+ "subtext": "Jūsų dovanų kortelė",
+ "gift_card_code": "Dovanų kortelės kodas",
+ "shop_link": "Apsilankyti internetinėje parduotuvėje",
+ "add_to_apple_wallet": "Pridėti prie „Apple Wallet“",
+ "qr_image_alt": "QR kodas — nuskaitykite ir panaudokite dovanų kortelę",
+ "copy_code": "Kopijuoti dovanų kortelės kodą",
+ "expired": "Nebegalioja",
+ "copy_code_success": "Kodą pavyko nukopijuoti",
+ "how_to_use_gift_card": "Panaudokite dovanų kortelės kodą internetinėje parduotuvėje arba QR kodą fizinėje parduotuvėje",
+ "expiration_date": "Baigs galioti {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Noriu siųsti kaip dovaną",
+ "email_label": "Gavėjo el. pašto adresas",
+ "email": "El. pašto adresas",
+ "name_label": "Gavėjo vardas (pasirinktinai)",
+ "name": "Vardas",
+ "message_label": "Žinutė (pasirinktinai)",
+ "message": "Žinutė",
+ "max_characters": "Daugiausia {{ max_chars }} simbolių",
+ "email_label_optional_for_no_js_behavior": "Gavėjo el. pašto adresas (pasirinktinai)",
+ "send_on": "MMMM-MM-DD",
+ "send_on_label": "Išsiuntimo data (pasirinktinai)",
+ "expanded": "Išskleista dovanų kortelės gavėjo forma",
+ "collapsed": "Suskleista dovanų kortelės gavėjo forma"
+ }
+ }
+}
diff --git a/locales/nb.json b/locales/nb.json
new file mode 100644
index 0000000..b2ca9a7
--- /dev/null
+++ b/locales/nb.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Gå inn i butikken ved hjelp av passord:",
+ "login_password_button": "Gå inn ved hjelp av passord",
+ "login_form_password_label": "Passord",
+ "login_form_password_placeholder": "Passordet ditt",
+ "login_form_error": "Feil passord!",
+ "login_form_submit": "Gå inn",
+ "admin_link_html": "Er du butikkeieren? Logg inn her ",
+ "powered_by_shopify_html": "Denne butikken vil bli drevet av {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Del på Facebook",
+ "share_on_twitter": "Tweet på Twitter",
+ "share_on_pinterest": "Pin på Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Fortsett å handle",
+ "pagination": {
+ "label": "Sideinndeling",
+ "page": "Side {{ number }}",
+ "next": "Neste side",
+ "previous": "Forrige side"
+ },
+ "search": {
+ "search": "Søk",
+ "reset": "Fjern søket"
+ },
+ "cart": {
+ "view": "Vis handlekurv ({{ count }})",
+ "item_added": "Vare lagt i handlekurven",
+ "view_empty_cart": "Vis handlekurv"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopier kobling",
+ "share_url": "Kobling",
+ "success_message": "Koblingen er kopiert til utklippstavlen",
+ "close": "Lukk deling"
+ },
+ "slider": {
+ "of": "av",
+ "next_slide": "Bla til høyre",
+ "previous_slide": "Bla til venstre",
+ "name": "Glidefelt"
+ }
+ },
+ "newsletter": {
+ "label": "E-post",
+ "success": "Takk for at du abonnerer",
+ "button_label": "Abonner"
+ },
+ "accessibility": {
+ "skip_to_text": "Gå videre til innholdet",
+ "close": "Lukk",
+ "unit_price_separator": "per",
+ "vendor": "Selger:",
+ "error": "Feil",
+ "refresh_page": "Ved å gjøre et valg vil hele siden lastes inn på nytt.",
+ "link_messages": {
+ "new_window": "Åpner i et nytt vindu.",
+ "external": "Åpner eksternt nettsted."
+ },
+ "loading": "Laster inn …",
+ "skip_to_product_info": "Hopp til produktinformasjon",
+ "total_reviews": "totale omtaler",
+ "star_reviews_info": "{{ rating_value }} av {{ rating_max }} stjerner",
+ "collapsible_content_title": "Sammenleggbart innhold",
+ "complementary_products": "Komplimentære produkter"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blogg",
+ "read_more_title": "Les mer: {{ title }}",
+ "comments": {
+ "one": "{{ count }} kommentar",
+ "other": "{{ count }} kommentarer"
+ },
+ "moderated": "Merk at kommentarer må godkjennes før de publiseres.",
+ "comment_form_title": "Legg igjen en kommentar",
+ "name": "Navn",
+ "email": "E-post",
+ "message": "Kommentar",
+ "post": "Del en kommentar",
+ "back_to_blog": "Tilbake til bloggen",
+ "share": "Del denne artikkelen",
+ "success": "Kommentaren din ble delt! Takk!",
+ "success_moderated": "Kommentaren din ble delt. Vi publiserer den om en liten stund, siden bloggen din er moderert."
+ }
+ },
+ "onboarding": {
+ "product_title": "Eksempel på produkttittel",
+ "collection_title": "Navnet på samlingen"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Legg i handlekurv",
+ "description": "Beskrivelse",
+ "on_sale": "Salg",
+ "quantity": {
+ "label": "Antall",
+ "input_label": "Antall for {{ product }}",
+ "increase": "Øk antallet for {{ product }}",
+ "decrease": "Senk antallet for {{ product }}",
+ "minimum_of": "Minimum på {{ quantity }}",
+ "maximum_of": "Maksimum på {{ quantity }}",
+ "multiples_of": "Økninger på {{ quantity }}",
+ "in_cart_html": "{{ quantity }} i handlekurven",
+ "note": "Vis antallsregler"
+ },
+ "price": {
+ "from_price_html": "Fra {{ price }}",
+ "regular_price": "Vanlig pris",
+ "sale_price": "Salgspris",
+ "unit_price": "Enhetspris"
+ },
+ "share": "Del dette produktet",
+ "sold_out": "Utsolgt",
+ "unavailable": "Utilgjengelig",
+ "vendor": "Selger",
+ "video_exit_message": "{{ title }} åpner en fullskjermvideo i det samme vinduet.",
+ "xr_button": "Se på din plass",
+ "xr_button_label": "Vis i ditt område, laster element i vindu for utvidet virkelighet",
+ "pickup_availability": {
+ "view_store_info": "Vis butikkinformasjon",
+ "check_other_stores": "Sjekk tilgjengelighet i andre butikker",
+ "pick_up_available": "Henting tilgjengelig",
+ "pick_up_available_at_html": "Henting tilgjengelig hos {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Henting er for øyeblikket ikke tilgjengelig hos {{ location_name }} ",
+ "unavailable": "Kunne ikke laste inn hentetilgjengelighet",
+ "refresh": "Oppdater"
+ },
+ "media": {
+ "open_media": "Åpne medie {{ index }} i modal",
+ "play_model": "Spill 3D-visning",
+ "play_video": "Spill av video",
+ "gallery_viewer": "Gallerivisning",
+ "load_image": "Last inn bilde {{ index }} i gallerivisning",
+ "load_model": "Last inn 3D-modell {{ index }} i gallerivisning",
+ "load_video": "Spill av video {{ index }} i gallerivisning",
+ "image_available": "Bilde {{ index }} er nå tilgjengelig i gallerivisning"
+ },
+ "view_full_details": "Vis alle detaljer",
+ "include_taxes": "Avgift inkludert.",
+ "shipping_policy_html": "Frakt beregnes ved kassen.",
+ "choose_options": "Velg alternativer",
+ "choose_product_options": "Velg alternativer for {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – utilgjengelig",
+ "variant_sold_out_or_unavailable": "Varianten er utsolgt eller utilgjengelig",
+ "inventory_in_stock": "På lager",
+ "inventory_in_stock_show_count": "{{ quantity }} på lager",
+ "inventory_low_stock": "Lav lagerbeholdning",
+ "inventory_low_stock_show_count": "Lav lagerbeholdning: {{ quantity }} igjen",
+ "inventory_out_of_stock": "Ikke på lager",
+ "inventory_out_of_stock_continue_selling": "På lager",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Volumprissetting",
+ "note": "Volumprissetting er tilgjengelig",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "til {{ price }}/pr. stk",
+ "price_range": "{{ minimum }}–{{ maximum }}"
+ },
+ "product_variants": "Produktvarianter"
+ },
+ "modal": {
+ "label": "Mediegalleri"
+ },
+ "facets": {
+ "apply": "Bruk",
+ "clear": "Fjern",
+ "clear_all": "Fjern alle",
+ "from": "Fra",
+ "filter_and_sort": "Filtrer og sorter",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filter",
+ "filters_selected": {
+ "one": "{{ count }} valgt",
+ "other": "{{ count }} valgte"
+ },
+ "max_price": "Den høyeste prisen er {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} av {{ count }} produkt",
+ "other": "{{ product_count }} av {{ count }} produkter"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkter"
+ },
+ "reset": "Tilbakestill",
+ "sort_button": "Sorter",
+ "sort_by_label": "Sorter etter:",
+ "to": "Til",
+ "clear_filter": "Fjern filter",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtre valgt)",
+ "show_more": "Vis mer",
+ "show_less": "Vis færre",
+ "filter_and_operator_subtitle": "Match alle"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Fant ingen resultater for «{{ terms }}». Kontroller stavemåten, eller bruk et annet ord.",
+ "page": "Side",
+ "results_with_count": {
+ "one": "{{ count }} resultat",
+ "other": "{{ count }} resultater"
+ },
+ "title": "Søkeresultater",
+ "products": "Produkter",
+ "search_for": "Søk etter «{{ terms }}»",
+ "results_with_count_and_term": {
+ "one": "Fant {{ count }} resultat for {{ terms }}",
+ "other": "Fant {{ count }} resultater for {{ terms }}"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} side",
+ "other": "{{ count }} sider"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} forslag",
+ "other": "{{ count }} forslag"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkter"
+ },
+ "suggestions": "Forslag",
+ "pages": "Sider"
+ },
+ "cart": {
+ "cart": "Handlekurv"
+ },
+ "contact": {
+ "form": {
+ "name": "Navn",
+ "email": "E-post",
+ "phone": "Telefonnummer",
+ "comment": "Kommentar",
+ "send": "Send",
+ "post_success": "Takk for at du kontaktet oss. Vi vil svare deg så snart som mulig.",
+ "error_heading": "Juster følgende:",
+ "title": "Kontaktskjema"
+ }
+ },
+ "404": {
+ "title": "Siden finnes ikke",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Kunngjøring",
+ "menu": "Meny",
+ "cart_count": {
+ "one": "{{ count }} vare",
+ "other": "{{ count }} varer"
+ }
+ },
+ "cart": {
+ "title": "Handlekurven din",
+ "caption": "Varer i handlekurven",
+ "remove_title": "Fjern {{ title }}",
+ "note": "Spesielle instruksjoner for bestillingen",
+ "checkout": "Kasse",
+ "empty": "Handlekurven din er tom",
+ "cart_error": "Det oppstod en feil under oppdateringen av handlekurven din. Prøv på nytt.",
+ "cart_quantity_error_html": "Du kan bare legge {{ quantity }} av denne varen i handlekurven.",
+ "taxes_and_shipping_policy_at_checkout_html": "Avgifter, rabatter og frakt beregnes i kassen",
+ "taxes_included_but_shipping_at_checkout": "Inkluderte avgifter, frakt og rabatter beregnes i kassen",
+ "taxes_included_and_shipping_policy_html": "Inkluderte avgifter. Frakt og rabatter beregnes i kassen.",
+ "taxes_and_shipping_at_checkout": "Avgifter, rabatter og frakt beregnes i kassen",
+ "headings": {
+ "product": "Produkt",
+ "price": "Pris",
+ "total": "Totalt",
+ "quantity": "Antall",
+ "image": "Produktbilde"
+ },
+ "update": "Oppdater",
+ "login": {
+ "title": "Har du en konto?",
+ "paragraph_html": "Logg på for å betale raskere."
+ },
+ "estimated_total": "Estimert totalsum",
+ "new_estimated_total": "Ny estimert totalsum"
+ },
+ "footer": {
+ "payment": "Betalingsmåter"
+ },
+ "featured_blog": {
+ "view_all": "Vis alle",
+ "onboarding_title": "Blogginnlegg",
+ "onboarding_content": "Gi kundene et sammendrag av blogginnlegget"
+ },
+ "featured_collection": {
+ "view_all": "Vis alle",
+ "view_all_label": "Vis alle produktene i {{ collection_name }}-samlingen"
+ },
+ "collection_list": {
+ "view_all": "Vis alle"
+ },
+ "collection_template": {
+ "title": "Samling",
+ "empty": "Ingen produkter funnet",
+ "use_fewer_filters_html": "Bruk færre filtre eller fjern alle "
+ },
+ "video": {
+ "load_video": "Last inn video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Last inn lysbilde",
+ "previous_slideshow": "Forrige lysbilde",
+ "next_slideshow": "Neste lysbilde",
+ "pause_slideshow": "Sett lysbildefremvisningen på pause",
+ "play_slideshow": "Spill av lysbildefremvisningen",
+ "carousel": "Karusell",
+ "slide": "Lysbilde"
+ },
+ "page": {
+ "title": "Sidetittel"
+ },
+ "announcements": {
+ "previous_announcement": "Forrige kunngjøring",
+ "next_announcement": "Neste kunngjøring",
+ "carousel": "Karusell",
+ "announcement": "Kunngjøring",
+ "announcement_bar": "Kunngjøringslinje"
+ },
+ "quick_order_list": {
+ "product_total": "Produktets delsum",
+ "view_cart": "Vis handlekurv",
+ "each": "{{ money }}/stk.",
+ "product": "Produkt",
+ "variant": "Variant",
+ "variant_total": "Delsum varianter",
+ "items_added": {
+ "one": "{{ quantity }} vare ble lagt til",
+ "other": "{{ quantity }} varer ble lagt til"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} vare ble fjernet",
+ "other": "{{ quantity }} varer ble fjernet"
+ },
+ "product_variants": "Produktvarianter",
+ "total_items": "Totalt antall varer",
+ "remove_all_items_confirmation": "Vil du fjerne alle {{ quantity }} varer fra handlekurven?",
+ "remove_all": "Fjern alle",
+ "cancel": "Avbryt"
+ }
+ },
+ "localization": {
+ "country_label": "Land/region",
+ "language_label": "Språk",
+ "update_language": "Oppdater språk",
+ "update_country": "Oppdater land/region"
+ },
+ "customer": {
+ "account": {
+ "title": "Konto",
+ "details": "Kontodetaljer",
+ "view_addresses": "Vis adresser",
+ "return": "Gå tilbake til kontodetaljer"
+ },
+ "account_fallback": "Konto",
+ "activate_account": {
+ "title": "Aktiver konto",
+ "subtext": "Opprett passordet ditt for å aktivere kontoen.",
+ "password": "Passord",
+ "password_confirm": "Bekreft passord",
+ "submit": "Aktiver konto",
+ "cancel": "Avslå invitasjon"
+ },
+ "addresses": {
+ "title": "Adresser",
+ "default": "Standard",
+ "add_new": "Legg til en ny adresse",
+ "edit_address": "Rediger adresse",
+ "first_name": "Fornavn",
+ "last_name": "Etternavn",
+ "company": "Bedrift",
+ "address1": "Adresse 1",
+ "address2": "Adresse 2",
+ "city": "Sted",
+ "country": "Land/region",
+ "province": "Provins",
+ "zip": "Postnummer",
+ "phone": "Telefon",
+ "set_default": "Angi som standardadresse",
+ "add": "Legg til adresse",
+ "update": "Oppdater adresse",
+ "cancel": "Avbryt",
+ "edit": "Rediger",
+ "delete": "Slett",
+ "delete_confirm": "Er du sikker på at du vil slette denne adressen?"
+ },
+ "log_in": "Logg inn",
+ "log_out": "Logg ut",
+ "login_page": {
+ "cancel": "Avbryt",
+ "create_account": "Opprett konto",
+ "email": "E-post",
+ "forgot_password": "Har du glemt passordet ditt?",
+ "guest_continue": "Fortsett",
+ "guest_title": "Fortsett som gjest",
+ "password": "Passord",
+ "title": "Logg på",
+ "sign_in": "Logg inn",
+ "submit": "Send inn"
+ },
+ "order": {
+ "title": "Bestilling {{ name }}",
+ "date_html": "Lagt inn den {{ date }}",
+ "cancelled_html": "Bestilling kansellert den {{ date }}",
+ "cancelled_reason": "Grunn: {{ reason }}",
+ "billing_address": "Fakturaadresse",
+ "payment_status": "Betalingsstatus",
+ "shipping_address": "Leveringsadresse",
+ "fulfillment_status": "Distribusjonsstatus",
+ "discount": "Rabatt",
+ "shipping": "Frakt",
+ "tax": "Avgift",
+ "product": "Produkt",
+ "sku": "SKU",
+ "price": "Pris",
+ "quantity": "Antall",
+ "total": "Totalt",
+ "fulfilled_at_html": "Sluttført {{ date }}",
+ "track_shipment": "Spor forsendelse",
+ "tracking_url": "Sporingskobling",
+ "tracking_company": "Transportør",
+ "tracking_number": "Sporingsnummer",
+ "subtotal": "Delsum",
+ "total_duties": "Tollplikter",
+ "total_refunded": "Refundert"
+ },
+ "orders": {
+ "title": "Bestillingshistorikk",
+ "order_number": "Bestilling",
+ "order_number_link": "Ordrenummer {{ number }}",
+ "date": "Dato",
+ "payment_status": "Betalingsstatus",
+ "fulfillment_status": "Distribusjonsstatus",
+ "total": "Totalt",
+ "none": "Du har ikke lagt inn noen bestillinger enda."
+ },
+ "recover_password": {
+ "title": "Tilbakestill passordet ditt",
+ "subtext": "Vi vil sende deg en e-post for tilbakestilling av passordet",
+ "success": "Vi har sendt deg en e-post med en kobling for å oppdatere passordet ditt."
+ },
+ "register": {
+ "title": "Opprett konto",
+ "first_name": "Fornavn",
+ "last_name": "Etternavn",
+ "email": "E-post",
+ "password": "Passord",
+ "submit": "Opprett"
+ },
+ "reset_password": {
+ "title": "Tilbakestill kontopassord",
+ "subtext": "Angi et nytt passord",
+ "password": "Passord",
+ "password_confirm": "Bekreft passord",
+ "submit": "Tilbakestill passord"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Her er gavekortsaldoen {{ value }} for {{ shop }}.",
+ "subtext": "Ditt gavekort",
+ "gift_card_code": "Gavekortkode",
+ "shop_link": "Besøk nettbutikken",
+ "add_to_apple_wallet": "Legg til i Apple Wallet",
+ "qr_image_alt": "QR-kode – skann for å løse inn gavekortet",
+ "copy_code": "Kopier gavekortkoden",
+ "expired": "Utløpt",
+ "copy_code_success": "Koden er kopiert",
+ "how_to_use_gift_card": "Bruk gavekortet på nettet eller QR-koden i butikken",
+ "expiration_date": "Utløper {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Jeg vil sende dette som en gave",
+ "email_label": "Mottakerens e-post",
+ "email": "E-post",
+ "name_label": "Mottakerens navn (valgfritt)",
+ "name": "Navn",
+ "message_label": "Melding (valgfritt)",
+ "message": "Melding",
+ "max_characters": "Maks. {{ max_chars }} tegn",
+ "email_label_optional_for_no_js_behavior": "Mottakerens e-post (valgfritt)",
+ "send_on": "ÅÅÅÅ-MM-DD",
+ "send_on_label": "Send (valgfritt)",
+ "expanded": "Utvidet skjema for gavekortmottaker",
+ "collapsed": "Lukket skjema for gavekortmottaker"
+ }
+ }
+}
diff --git a/locales/nb.schema.json b/locales/nb.schema.json
new file mode 100644
index 0000000..41038ea
--- /dev/null
+++ b/locales/nb.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Farger",
+ "settings": {
+ "background": {
+ "label": "Bakgrunn"
+ },
+ "background_gradient": {
+ "label": "Bakgrunn med fargeovergang",
+ "info": "Bakgrunn med fargeovergang erstatter bakgrunn dersom det er mulig."
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_background": {
+ "label": "Fylt knappebakgrunn"
+ },
+ "button_label": {
+ "label": "Fylt knappetikett"
+ },
+ "secondary_button_label": {
+ "label": "Omriss rundt knapp"
+ },
+ "shadow": {
+ "label": "Skygge"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografi",
+ "settings": {
+ "type_header_font": {
+ "label": "Skrifttype",
+ "info": "Dersom du velger en annen skrifttype kan det påvirke hastigheten i butikken. [Finn ut mer om systemskrifter.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Overskrifter"
+ },
+ "header__2": {
+ "content": "Brødtekst"
+ },
+ "type_body_font": {
+ "label": "Skrifttype",
+ "info": "Dersom du velger en annen skrifttype kan det påvirke hastigheten i butikken. [Finn ut mer om systemskrifter.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Skriftstørrelsens skala"
+ },
+ "body_scale": {
+ "label": "Skriftstørrelsens skala"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Sosiale medier",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Sosiale kontoer"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Valutaformat",
+ "settings": {
+ "content": "Valutakoder",
+ "currency_code_enabled": {
+ "label": "Vis valutakoder"
+ },
+ "paragraph": "Handlekurv- og kassepriser viser alltid valutakoder. Eksempel: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Oppsett",
+ "settings": {
+ "page_width": {
+ "label": "Sidebredde"
+ },
+ "spacing_sections": {
+ "label": "Mellomrom mellom malseksjoner"
+ },
+ "header__grid": {
+ "content": "Rutenett"
+ },
+ "paragraph__grid": {
+ "content": "Påvirker områder med flere kolonner eller rader."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Horisontal plass"
+ },
+ "spacing_grid_vertical": {
+ "label": "Vertikal plass"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Søkeadferd",
+ "settings": {
+ "header": {
+ "content": "Søkeforslag"
+ },
+ "predictive_search_enabled": {
+ "label": "Aktiver søkeforslag"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Vis produktselger",
+ "info": "Synlig når søkeforslag er aktivert."
+ },
+ "predictive_search_show_price": {
+ "label": "Vis produktpris",
+ "info": "Synlig når søkeforslag er aktivert."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Ramme"
+ },
+ "header__shadow": {
+ "content": "Skygge"
+ },
+ "blur": {
+ "label": "Uklarhet"
+ },
+ "corner_radius": {
+ "label": "Hjørneradius"
+ },
+ "horizontal_offset": {
+ "label": "Horisontal justering"
+ },
+ "vertical_offset": {
+ "label": "Vertikal justering"
+ },
+ "thickness": {
+ "label": "Tykkelse"
+ },
+ "opacity": {
+ "label": "Gjennomsiktighet"
+ },
+ "image_padding": {
+ "label": "Bildemarg"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Tekstjustering"
+ }
+ }
+ },
+ "badges": {
+ "name": "Merker",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Nederst til venstre"
+ },
+ "options__2": {
+ "label": "Nederst til høyre"
+ },
+ "options__3": {
+ "label": "Øverst til venstre"
+ },
+ "options__4": {
+ "label": "Øverst til høyre"
+ },
+ "label": "Plassering på kort"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Fargetema for salgsmerke"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Fargetema for utsolgt-merker"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knapper"
+ },
+ "variant_pills": {
+ "name": "Variantknapper",
+ "paragraph": "Variantknapper er én måte å presentere produktvarianter på. [Finn ut mer](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Inputs"
+ },
+ "content_containers": {
+ "name": "Innholdsbeholdere"
+ },
+ "popups": {
+ "name": "Rullegardinmenyer og popup-vinduer",
+ "paragraph": "Påvirker områder som rullegardinmenyer for navigasjon, popup-modalbokser og popup-vinduer for handlekurv."
+ },
+ "media": {
+ "name": "Medier"
+ },
+ "drawers": {
+ "name": "Skuffer"
+ },
+ "cart": {
+ "name": "Handlekurv",
+ "settings": {
+ "cart_type": {
+ "label": "Handlekurvtype",
+ "drawer": {
+ "label": "Skuff"
+ },
+ "page": {
+ "label": "Side"
+ },
+ "notification": {
+ "label": "Popup-varsel"
+ }
+ },
+ "show_vendor": {
+ "label": "Vis selger"
+ },
+ "show_cart_note": {
+ "label": "Aktiver handlekurvnotat"
+ },
+ "cart_drawer": {
+ "header": "Handlekurvskuff",
+ "collection": {
+ "label": "Samling",
+ "info": "Synlig når handlekurvskuffen er tom."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Produktkort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Samlingskort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Bloggkort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Logobredde på datamaskiner",
+ "info": "Logobredden optimaliseres automatisk for mobil."
+ },
+ "favicon": {
+ "label": "Favorittikon-bilde",
+ "info": "Vil skaleres ned til 32 x 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Merkevareinformasjon",
+ "settings": {
+ "brand_headline": {
+ "label": "Overskrift"
+ },
+ "brand_description": {
+ "label": "Beskrivelse"
+ },
+ "brand_image": {
+ "label": "Bilde"
+ },
+ "brand_image_width": {
+ "label": "Bildebredde"
+ },
+ "paragraph": {
+ "content": "Legg til en merkevarebeskrivelse i butikkens bunntekst."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animasjoner",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Vis melding ved rulling"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Vertikalt løft"
+ },
+ "label": "Musepekereffekt",
+ "info": "Påvirker kort og knapper.",
+ "options__3": {
+ "label": "3D-løft"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Seksjonsmarg",
+ "padding_top": "Toppmarg",
+ "padding_bottom": "Bunnmarg"
+ },
+ "spacing": "Mellomrom",
+ "colors": {
+ "label": "Fargepalett",
+ "has_cards_info": "For å endre fargetemaet på kort må du oppdatere temainnstillingene."
+ },
+ "heading_size": {
+ "label": "Overskriftsstørrelse",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "options__4": {
+ "label": "Ekstra stort"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Bue"
+ },
+ "options__3": {
+ "label": "Blob"
+ },
+ "options__4": {
+ "label": "Større enn"
+ },
+ "options__5": {
+ "label": "Mindre enn"
+ },
+ "options__6": {
+ "label": "Diamant"
+ },
+ "options__7": {
+ "label": "Parallellogram"
+ },
+ "options__8": {
+ "label": "Rund"
+ },
+ "label": "Bildeform",
+ "info": "Standardiserte kort har ingen linjer når bildets form er aktivt."
+ },
+ "animation": {
+ "content": "Animasjoner",
+ "image_behavior": {
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Bevegelse i omgivelsene"
+ },
+ "label": "Bildeatferd",
+ "options__3": {
+ "label": "Låst bakgrunnsposisjon"
+ },
+ "options__4": {
+ "label": "Zoom inn på rulling"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Kunngjøringslinje",
+ "blocks": {
+ "announcement": {
+ "name": "Kunngjøring",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_alignment": {
+ "label": "Tekstjustering",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ }
+ },
+ "link": {
+ "label": "Kobling"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Roter kunngjøringer automatisk"
+ },
+ "change_slides_speed": {
+ "label": "Endre hver"
+ },
+ "header__1": {
+ "content": "Ikoner for sosiale medier",
+ "info": "Koble til kontoer i sosiale medier i [temainnstillingene](/editor?context=theme&category=social%20media) for å vise dem."
+ },
+ "header__2": {
+ "content": "Kunngjøringer"
+ },
+ "show_social": {
+ "label": "Vis ikoner på skrivebordet"
+ },
+ "header__3": {
+ "content": "Land-/områdevelger",
+ "info": "Gå til [markedsinnstillinger](/admin/settings/markets) for å legge til land/område."
+ },
+ "enable_country_selector": {
+ "label": "Aktiver land-/områdevelger"
+ },
+ "header__4": {
+ "content": "Språkvelger",
+ "info": "Gå til [språkinnstillingene](/admin/settings/languages) for å legge til et språk."
+ },
+ "enable_language_selector": {
+ "label": "Aktiver språkvelger"
+ }
+ },
+ "presets": {
+ "name": "Kunngjøringslinje"
+ }
+ },
+ "collage": {
+ "name": "Fotomontasje",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "desktop_layout": {
+ "label": "Layout på datamaskin",
+ "options__1": {
+ "label": "Stor blokk til venstre"
+ },
+ "options__2": {
+ "label": "Stor blokk til høyre"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobillayout",
+ "options__1": {
+ "label": "Fotomontasje"
+ },
+ "options__2": {
+ "label": "Kolonne"
+ }
+ },
+ "card_styles": {
+ "label": "Kortstil",
+ "info": "Stiler for produkter, samlinger og bloggkort kan oppdateres i temainnstillingene.",
+ "options__1": {
+ "label": "Bruk individuelle kortstiler"
+ },
+ "options__2": {
+ "label": "Stilsett alle som produktkort"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Bilde",
+ "settings": {
+ "image": {
+ "label": "Bilde"
+ }
+ }
+ },
+ "product": {
+ "name": "Produkt",
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Vis sekundærbakgrunn"
+ },
+ "second_image": {
+ "label": "Vis sekundærbilde når musepekeren beveges over"
+ }
+ }
+ },
+ "collection": {
+ "name": "Samling",
+ "settings": {
+ "collection": {
+ "label": "Samling"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Forsidebilde"
+ },
+ "video_url": {
+ "label": "URL-adresse",
+ "info": "Videoer spilles i et popup-vindu hvis seksjonen inneholder andre blokker.",
+ "placeholder": "Bruk en YouTube- eller Vimeo-URL-adresse"
+ },
+ "description": {
+ "label": "Alt. tekst for video",
+ "info": "Beskriv videoen for kunder som bruker skjermlesere. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Fotomontasje"
+ }
+ },
+ "collection-list": {
+ "name": "Liste over samlinger",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ },
+ "info": "Legg til bilder ved å redigere samlingene dine. [Finn ut mer](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Aktiver sveip på mobil"
+ },
+ "show_view_all": {
+ "label": "Aktiver «Vis alle»-knapp hvis listen inneholder flere samlinger enn de som vises"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Samling",
+ "settings": {
+ "collection": {
+ "label": "Samling"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Liste over samlinger"
+ }
+ },
+ "contact-form": {
+ "name": "Kontaktskjema",
+ "presets": {
+ "name": "Kontaktskjema"
+ }
+ },
+ "custom-liquid": {
+ "name": "Egendefinert Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid-kode",
+ "info": "Legg til kodeutdrag fra app eller en annen kode for å opprette avanserte tilpasninger. [Finn ut mer](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Egendefinert Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blogginnlegg",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "blog": {
+ "label": "Blogg"
+ },
+ "post_limit": {
+ "label": "Antall blogginnlegg som vises"
+ },
+ "show_view_all": {
+ "label": "Aktiver «Vis alle»-knapp hvis bloggen inneholder flere blogginnlegg enn de som vises"
+ },
+ "show_image": {
+ "label": "Vis fremhevet bilde",
+ "info": "Bruk et bilde med størrelsesforhold 3:2 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Vis dato"
+ },
+ "show_author": {
+ "label": "Vis forfatter"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ }
+ },
+ "presets": {
+ "name": "Blogginnlegg"
+ }
+ },
+ "featured-collection": {
+ "name": "Fremhevet samling",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "collection": {
+ "label": "Samling"
+ },
+ "products_to_show": {
+ "label": "Maksimalt antall produkter som vises"
+ },
+ "show_view_all": {
+ "label": "Aktiver en «Vis alle»-knapp hvis samlingen inneholder flere produkter enn de som vises"
+ },
+ "header": {
+ "content": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundærbilde når musepekeren beveges over"
+ },
+ "show_vendor": {
+ "label": "Vis selger"
+ },
+ "show_rating": {
+ "label": "Vis produktvurdering",
+ "info": "Legg til en produktvurderingsapp for å vise en vurdering. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "description": {
+ "label": "Beskrivelse"
+ },
+ "show_description": {
+ "label": "Vis samlingsbeskrivelse fra administrator"
+ },
+ "description_style": {
+ "label": "Beskrivelsesstil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ }
+ },
+ "view_all_style": {
+ "label": "«Vis alle»-stil",
+ "options__1": {
+ "label": "Kobling"
+ },
+ "options__2": {
+ "label": "Omriss rundt knapp"
+ },
+ "options__3": {
+ "label": "Helfarget knapp"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Aktiver karusell på datamaskiner"
+ },
+ "full_width": {
+ "label": "Gjør produkter fullbredde"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Aktiver sveip på mobil"
+ },
+ "enable_quick_buy": {
+ "label": "Aktiver knapp for hurtigtillegging",
+ "info": "Optimal med popup- eller handlekurvskuff-typen."
+ }
+ },
+ "presets": {
+ "name": "Fremhevet samling"
+ }
+ },
+ "footer": {
+ "name": "Bunntekst",
+ "blocks": {
+ "link_list": {
+ "name": "Meny",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "menu": {
+ "label": "Meny",
+ "info": "Vises bare på menyelementer i toppnivå."
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "subtext": {
+ "label": "Undertekst"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Merkevareinformasjon",
+ "settings": {
+ "paragraph": {
+ "content": "Denne blokken viser merkevareinformasjon. [Rediger merkevareinformasjon.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Ikoner for sosiale medier"
+ },
+ "show_social": {
+ "label": "Vis ikoner for sosiale medier",
+ "info": "Koble til kontoer i sosiale medier i [temainnstillingene](/editor?context=theme&category=social%20media) for å vise dem."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Vis e-postregistrering"
+ },
+ "newsletter_heading": {
+ "label": "Overskrift"
+ },
+ "header__1": {
+ "content": "E-postregistrering",
+ "info": "Abonnenter legges automatisk til i «aksepterer markedsføring»-kundelisten. [Finn ut mer](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Ikoner for sosiale medier",
+ "info": "Koble til kontoer i sosiale medier i [temainnstillingene](/editor?context=theme&category=social%20media) for å vise dem."
+ },
+ "show_social": {
+ "label": "Vis ikoner for sosiale medier"
+ },
+ "header__3": {
+ "content": "Land-/regionvelger"
+ },
+ "header__4": {
+ "info": "Gå til [markedsinnstillingene](/admin/settings/markets) for å legge til et land/område."
+ },
+ "enable_country_selector": {
+ "label": "Ativer land-/regionvelger"
+ },
+ "header__5": {
+ "content": "Språkvelger"
+ },
+ "header__6": {
+ "info": "Gå til [språkinnstillingene](/admin/settings/languages) for å legge til et språk."
+ },
+ "enable_language_selector": {
+ "label": "Aktiver språkvelger"
+ },
+ "header__7": {
+ "content": "Betalingsmåter"
+ },
+ "payment_enable": {
+ "label": "Vis betalingsikoner"
+ },
+ "margin_top": {
+ "label": "Toppmarg"
+ },
+ "header__8": {
+ "content": "Koblinger til retningslinjer",
+ "info": "Gå til [innstillingene for retningslinjer](/admin/settings/legal) for å legge til retningslinjer i butikken."
+ },
+ "show_policy": {
+ "label": "Vis koblinger til retningslinjer"
+ },
+ "header__9": {
+ "content": "Følg på Shop",
+ "info": "Shop Pay må være aktivert for å tillate at kunder følger butikken din i Shop-appen fra butikkfronten. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Aktiver Følg på Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Overskrift",
+ "settings": {
+ "logo_position": {
+ "label": "Logoplassering på datamaskiner",
+ "options__1": {
+ "label": "Midt til venstre"
+ },
+ "options__2": {
+ "label": "Øverst til venstre"
+ },
+ "options__3": {
+ "label": "Toppsentrert"
+ },
+ "options__4": {
+ "label": "Midt i senter"
+ }
+ },
+ "menu": {
+ "label": "Meny"
+ },
+ "show_line_separator": {
+ "label": "Vis delelinje"
+ },
+ "margin_bottom": {
+ "label": "Bunnmarg"
+ },
+ "menu_type_desktop": {
+ "label": "Menytype på datamaskiner",
+ "info": "Menytypen optimaliseres automatisk for mobil.",
+ "options__1": {
+ "label": "Rullegardin"
+ },
+ "options__2": {
+ "label": "Megameny"
+ },
+ "options__3": {
+ "label": "Skuff"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobillayout"
+ },
+ "mobile_logo_position": {
+ "label": "Logoplassering på mobil",
+ "options__1": {
+ "label": "Sentrert"
+ },
+ "options__2": {
+ "label": "Venstre"
+ }
+ },
+ "logo_help": {
+ "content": "Rediger logoen i [temainnstillingene](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Festet overskrift",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Ved rulling oppover"
+ },
+ "options__3": {
+ "label": "Alltid"
+ },
+ "options__4": {
+ "label": "Alltid, reduser logostørrelsen"
+ }
+ },
+ "header__3": {
+ "content": "Land-/regionvelger"
+ },
+ "header__4": {
+ "info": "Gå til [markedsinnstillinger](/admin/settings/markets) for å legge til land/region."
+ },
+ "enable_country_selector": {
+ "label": "Aktiver land-/regionvelger"
+ },
+ "header__5": {
+ "content": "Språkvelger"
+ },
+ "header__6": {
+ "info": "Gå til [språkinnstillingene](/admin/settings/languages) for å legge til et språk."
+ },
+ "enable_language_selector": {
+ "label": "Aktiver språkvelger"
+ },
+ "header__1": {
+ "content": "Farge"
+ },
+ "menu_color_scheme": {
+ "label": "Menyens fargepalett"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Bildeoverskrift",
+ "settings": {
+ "image": {
+ "label": "Første bilde"
+ },
+ "image_2": {
+ "label": "Andre bilde"
+ },
+ "stack_images_on_mobile": {
+ "label": "Stable bilder på mobil"
+ },
+ "show_text_box": {
+ "label": "Vis beholder på datamaskin"
+ },
+ "image_overlay_opacity": {
+ "label": "Gjennomsiktighet for bildeoverlegg"
+ },
+ "show_text_below": {
+ "label": "Vis beholder på mobil"
+ },
+ "image_height": {
+ "label": "Bannerhøyde",
+ "options__1": {
+ "label": "Tilpass etter første bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "info": "Bruk et bilde med størrelsesforhold 3:2 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Øverst til venstre"
+ },
+ "options__2": {
+ "label": "Toppsentrert"
+ },
+ "options__3": {
+ "label": "Øverst til høyre"
+ },
+ "options__4": {
+ "label": "Midt til venstre"
+ },
+ "options__5": {
+ "label": "Midt i senter"
+ },
+ "options__6": {
+ "label": "Midt til høyre"
+ },
+ "options__7": {
+ "label": "Nederst til venstre"
+ },
+ "options__8": {
+ "label": "Bunnsentrert"
+ },
+ "options__9": {
+ "label": "Nederst til høyre"
+ },
+ "label": "Innholdsplassering på datamaskin"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på datamaskin"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på mobiltelefon"
+ },
+ "mobile": {
+ "content": "Mobillayout"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Beskrivelse"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ },
+ "label": "Tekststil"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knapper",
+ "settings": {
+ "button_label_1": {
+ "label": "Første knappetikett",
+ "info": "La etiketten stå tom for å skjule knappen."
+ },
+ "button_link_1": {
+ "label": "Første knappekobling"
+ },
+ "button_style_secondary_1": {
+ "label": "Bruk knappestil med omriss"
+ },
+ "button_label_2": {
+ "label": "Andre knappetikett",
+ "info": "La etiketten stå tom for å skjule knappen."
+ },
+ "button_link_2": {
+ "label": "Andre knappekobling"
+ },
+ "button_style_secondary_2": {
+ "label": "Bruk knappestil med omriss"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bildeoverskrift"
+ }
+ },
+ "image-with-text": {
+ "name": "Bilde med tekst",
+ "settings": {
+ "image": {
+ "label": "Bilde"
+ },
+ "height": {
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "label": "Bildehøyde",
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Bilde først"
+ },
+ "options__2": {
+ "label": "Andre bilde"
+ },
+ "label": "Bildeplassering på datamaskin",
+ "info": "Bilde først er standardlayout for mobil."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Bildebredde på datamaskiner",
+ "info": "Bildet optimaliseres automatisk for mobil."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på datamaskin"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Topp"
+ },
+ "options__2": {
+ "label": "Midten"
+ },
+ "options__3": {
+ "label": "Bunn"
+ },
+ "label": "Innholdsplassering på datamaskin"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Ingen overlapping"
+ },
+ "options__2": {
+ "label": "Overlapping"
+ },
+ "label": "Innholdslayout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på mobiltelefon"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Innhold"
+ },
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Knapp",
+ "settings": {
+ "button_label": {
+ "label": "Knappetikett",
+ "info": "La etiketten stå tom for å skjule knappen."
+ },
+ "button_link": {
+ "label": "Knappekobling"
+ },
+ "outline_button": {
+ "label": "Bruk knappestil med omriss"
+ }
+ }
+ },
+ "caption": {
+ "name": "Bildetekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Undertekst"
+ },
+ "options__2": {
+ "label": "Store bokstaver"
+ }
+ },
+ "caption_size": {
+ "label": "Tekststørrelse",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bilde med tekst"
+ }
+ },
+ "main-article": {
+ "name": "Blogginnlegg",
+ "blocks": {
+ "featured_image": {
+ "name": "Fremhevet bilde",
+ "settings": {
+ "image_height": {
+ "label": "Høyde på fremhevet bilde",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "info": "Bruk et bilde med størrelsesforhold 16:9 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Stor"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tittel",
+ "settings": {
+ "blog_show_date": {
+ "label": "Vis dato"
+ },
+ "blog_show_author": {
+ "label": "Vis forfatter"
+ }
+ }
+ },
+ "content": {
+ "name": "Innhold"
+ },
+ "share": {
+ "name": "Del",
+ "settings": {
+ "featured_image_info": {
+ "content": "Hvis du inkluderer en kobling i innlegg på sosiale medier, vil sidens fremhevede bilde vises som forhåndsvisningsbilde. [Finn ut mer](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "En butikktittel og -beskrivelse inkluderes med forhåndsvisningsbildet. [Finn ut mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blogginnlegg",
+ "settings": {
+ "header": {
+ "content": "Blogginnleggkort"
+ },
+ "show_image": {
+ "label": "Vis fremhevet bilde"
+ },
+ "paragraph": {
+ "content": "Endre utdrag ved å redigere blogginnlegg. [Finn ut mer](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Vis dato"
+ },
+ "show_author": {
+ "label": "Vis forfatter"
+ },
+ "layout": {
+ "label": "Layout på datamaskiner",
+ "options__1": {
+ "label": "Rutenett"
+ },
+ "options__2": {
+ "label": "Fotomontasje"
+ },
+ "info": "Innlegg stables på mobil."
+ },
+ "image_height": {
+ "label": "Høyde på fremhevet bilde",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "info": "Bruk et bilde med størrelsesforhold 3:2 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Delsum",
+ "blocks": {
+ "subtotal": {
+ "name": "Delsumpris"
+ },
+ "buttons": {
+ "name": "Knapp for å gå til kassen"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Varer"
+ },
+ "main-collection-banner": {
+ "name": "Samlingsbanner",
+ "settings": {
+ "paragraph": {
+ "content": "Legg til en beskrivelse eller et bilde ved å redigere samlingen. [Finn ut mer](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Vis samlingsbeskrivelse"
+ },
+ "show_collection_image": {
+ "label": "Vis samlingsbilde",
+ "info": "Bruk et bilde med størrelsesforhold 16:9 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Produktrutenett",
+ "settings": {
+ "products_per_page": {
+ "label": "Produkter per side"
+ },
+ "enable_filtering": {
+ "label": "Aktiver filtrering",
+ "info": "Tilpass filtre med Search & Discovery-appen. [Finn ut mer](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Aktiver sortering"
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundærbilde når musepekeren beveges over"
+ },
+ "show_vendor": {
+ "label": "Vis selger"
+ },
+ "header__1": {
+ "content": "Filtrering og sortering"
+ },
+ "header__3": {
+ "content": "Produktkort"
+ },
+ "enable_tags": {
+ "label": "Aktiver filtrering",
+ "info": "Tilpass filtre med Search & Discovery-appen. [Finn ut mer](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "show_rating": {
+ "label": "Vis produktvurdering",
+ "info": "Legg til en produktvurderingsapp for å vise en vurdering. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ },
+ "enable_quick_buy": {
+ "label": "Aktiver knapp for hurtigtillegging",
+ "info": "Optimal med popup- eller handlekurvskuff-typen."
+ },
+ "filter_type": {
+ "label": "Filtreringsoppsett på datamaskin",
+ "options__1": {
+ "label": "Horisontalt"
+ },
+ "options__2": {
+ "label": "Vertikalt"
+ },
+ "options__3": {
+ "label": "Skuff"
+ },
+ "info": "Skuff er standardoppsett for mobil."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Samlingsliste-side",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "sort": {
+ "label": "Sorter samlinger etter:",
+ "options__1": {
+ "label": "Alfabetisk, A–Å"
+ },
+ "options__2": {
+ "label": "Alfabetisk, Å–A"
+ },
+ "options__3": {
+ "label": "Dato, nytt til gammelt"
+ },
+ "options__4": {
+ "label": "Dato, gammelt til nytt"
+ },
+ "options__5": {
+ "label": "Produktantall, høy til lav"
+ },
+ "options__6": {
+ "label": "Produktantall, lav til høy"
+ }
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ },
+ "info": "Legg til bilder ved å redigere samlingene dine. [Finn ut mer](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Side"
+ },
+ "main-password-footer": {
+ "name": "Bunntekst for passord"
+ },
+ "main-password-header": {
+ "name": "Overskrift for passord",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Rediger logoen i temainnstillingene."
+ }
+ }
+ },
+ "main-product": {
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tittel"
+ },
+ "price": {
+ "name": "Pris"
+ },
+ "quantity_selector": {
+ "name": "Antallsvelger"
+ },
+ "variant_picker": {
+ "name": "Variantvelger",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Rullegardin"
+ },
+ "options__2": {
+ "label": "Knapper"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Kjøp-knapper",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Vis dynamiske knapper for å gå til kassen",
+ "info": "Kundene vil se sitt foretrukne alternativ, som PayPal eller Apple Pay, av betalingsmåtene som er tilgjengelig i butikken. [Finn ut mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Vis skjema med mottakerinformasjon for gavekort",
+ "info": "Tillat at kjøpere sender gavekort på en planlagt dato sammen med en personlig hilsen. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Hentetilgjengelighet"
+ },
+ "description": {
+ "name": "Beskrivelse"
+ },
+ "share": {
+ "name": "Del",
+ "settings": {
+ "featured_image_info": {
+ "content": "Hvis du inkluderer en kobling i innlegg på sosiale medier, vil sidens fremhevede bilde vises som forhåndsvisningsbilde. [Finn ut mer](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "En butikktittel og -beskrivelse inkluderes med forhåndsvisningsbildet. [Finn ut mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Sammenleggbar rad",
+ "settings": {
+ "heading": {
+ "info": "Inkluder en overskrift som forklarer innholdet.",
+ "label": "Overskrift"
+ },
+ "content": {
+ "label": "Radinnhold"
+ },
+ "page": {
+ "label": "Radinnhold fra side"
+ },
+ "icon": {
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Eple"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Flaske"
+ },
+ "options__5": {
+ "label": "Boks"
+ },
+ "options__6": {
+ "label": "Gulrot"
+ },
+ "options__7": {
+ "label": "Chatboble"
+ },
+ "options__8": {
+ "label": "Avkrysningsmerke"
+ },
+ "options__9": {
+ "label": "Skriveplater"
+ },
+ "options__10": {
+ "label": "Meierivarer"
+ },
+ "options__11": {
+ "label": "Melkefritt"
+ },
+ "options__12": {
+ "label": "Tørker"
+ },
+ "options__13": {
+ "label": "Øye"
+ },
+ "options__14": {
+ "label": "Brann"
+ },
+ "options__15": {
+ "label": "Glutenfri"
+ },
+ "options__16": {
+ "label": "Hjerte"
+ },
+ "options__17": {
+ "label": "Jern"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Skinn"
+ },
+ "options__20": {
+ "label": "Lyn"
+ },
+ "options__21": {
+ "label": "Leppestift"
+ },
+ "options__22": {
+ "label": "Lås"
+ },
+ "options__23": {
+ "label": "Kartpinne"
+ },
+ "options__24": {
+ "label": "Nøttefri"
+ },
+ "label": "Ikon",
+ "options__25": {
+ "label": "Bukser"
+ },
+ "options__26": {
+ "label": "Potetrykk"
+ },
+ "options__27": {
+ "label": "Pepper"
+ },
+ "options__28": {
+ "label": "Parfyme"
+ },
+ "options__29": {
+ "label": "Fly"
+ },
+ "options__30": {
+ "label": "Plante"
+ },
+ "options__31": {
+ "label": "Prislapp"
+ },
+ "options__32": {
+ "label": "Spørsmålstegn"
+ },
+ "options__33": {
+ "label": "Resirkuler"
+ },
+ "options__34": {
+ "label": "Retur"
+ },
+ "options__35": {
+ "label": "Linjal"
+ },
+ "options__36": {
+ "label": "Serveringsfat"
+ },
+ "options__37": {
+ "label": "Skjorte"
+ },
+ "options__38": {
+ "label": "Sko"
+ },
+ "options__39": {
+ "label": "Silhuett"
+ },
+ "options__40": {
+ "label": "Snøkrystall"
+ },
+ "options__41": {
+ "label": "Stjerne"
+ },
+ "options__42": {
+ "label": "Stoppeklokke"
+ },
+ "options__43": {
+ "label": "Varebil"
+ },
+ "options__44": {
+ "label": "Vasking"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-up",
+ "settings": {
+ "link_label": {
+ "label": "Koblingsetikett"
+ },
+ "page": {
+ "label": "Side"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktvurdering",
+ "settings": {
+ "paragraph": {
+ "content": "Legg til en produktvurderingsapp for å vise en vurdering. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Komplimentære produkter",
+ "settings": {
+ "paragraph": {
+ "content": "Legg til Search & Discovery-appen for å velge komplimentære produkter. [Finn ut mer](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "make_collapsible_row": {
+ "label": "Vis som sammenleggbar rad"
+ },
+ "icon": {
+ "info": "Synlig når den sammenleggbare raden vises."
+ },
+ "product_list_limit": {
+ "label": "Maksimalt antall produkter som vises"
+ },
+ "products_per_page": {
+ "label": "Antall produkter per side"
+ },
+ "pagination_style": {
+ "label": "Pagineringsstil",
+ "options": {
+ "option_1": "Prikker",
+ "option_2": "Teller",
+ "option_3": "Tall"
+ }
+ },
+ "product_card": {
+ "heading": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options": {
+ "option_1": "Portrett",
+ "option_2": "Firkant"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Aktiver knapp for hurtigtillegging"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ikon med tekst",
+ "settings": {
+ "layout": {
+ "label": "Oppsett",
+ "options__1": {
+ "label": "Horisontalt"
+ },
+ "options__2": {
+ "label": "Vertikalt"
+ }
+ },
+ "content": {
+ "label": "Innhold",
+ "info": "Velg et ikon eller legg til et bilde for hver kolonne eller rad."
+ },
+ "heading": {
+ "info": "La overskriftsetiketten stå tom for å skjule ikonkolonnen."
+ },
+ "icon_1": {
+ "label": "Første ikon"
+ },
+ "image_1": {
+ "label": "Første bilde"
+ },
+ "heading_1": {
+ "label": "Første overskrift"
+ },
+ "icon_2": {
+ "label": "Andre ikon"
+ },
+ "image_2": {
+ "label": "Andre bilde"
+ },
+ "heading_2": {
+ "label": "Andre overskrift"
+ },
+ "icon_3": {
+ "label": "Tredje ikon"
+ },
+ "image_3": {
+ "label": "Tredje bilde"
+ },
+ "heading_3": {
+ "label": "Tredje overskrift"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Lagerstatus",
+ "settings": {
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Terskel for lav lagerbeholdning",
+ "info": "Velg 0 for å alltid vise på lager hvis tilgjengelig."
+ },
+ "show_inventory_quantity": {
+ "label": "Vis lagerantall"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Medier",
+ "info": "Finn ut mer om [medietyper.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Aktiver løkkeavspilling av video"
+ },
+ "enable_sticky_info": {
+ "label": "Aktiver festet innhold på datamaskiner"
+ },
+ "hide_variants": {
+ "label": "Skjul andre varianters medier etter å ha valgt en variant"
+ },
+ "gallery_layout": {
+ "label": "Layout på datamaskiner",
+ "options__1": {
+ "label": "Stablet"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ },
+ "options__3": {
+ "label": "Miniatyrbilder"
+ },
+ "options__4": {
+ "label": "Karusell med miniatyrbilder"
+ }
+ },
+ "media_size": {
+ "label": "Mediebredde på datamaskin",
+ "info": "Medier optimaliseres automatisk for mobil.",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Mobillayout",
+ "options__1": {
+ "label": "2 kolonner"
+ },
+ "options__2": {
+ "label": "Vis miniatyrbilder"
+ },
+ "options__3": {
+ "label": "Skjul miniatyrbilder"
+ }
+ },
+ "media_position": {
+ "label": "Plassering av medier på datamaskin",
+ "info": "Posisjonen optimaliseres automatisk for mobil.",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Høyre"
+ }
+ },
+ "image_zoom": {
+ "label": "Bildezoom",
+ "info": "Standard for klikk og markør for å åpne lysboks på mobil.",
+ "options__1": {
+ "label": "Åpne lysboks"
+ },
+ "options__2": {
+ "label": "Klikk og hold markøren over"
+ },
+ "options__3": {
+ "label": "Ingen zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Begrens medier til skjermens høyde"
+ },
+ "media_fit": {
+ "label": "Mediepassform",
+ "options__1": {
+ "label": "Opprinnelig"
+ },
+ "options__2": {
+ "label": "Fyll ut"
+ }
+ }
+ },
+ "name": "Produktinformasjon"
+ },
+ "main-search": {
+ "name": "Søkeresultater",
+ "settings": {
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundærbilde når musepekeren beveges over"
+ },
+ "show_vendor": {
+ "label": "Vis selger"
+ },
+ "header__1": {
+ "content": "Produktkort"
+ },
+ "header__2": {
+ "content": "Bloggkort",
+ "info": "Bloggkortstiler gjelder også sidekort i søkeresultater. Oppdater temainnstillingene for å endre kortstiler."
+ },
+ "article_show_date": {
+ "label": "Vis dato"
+ },
+ "article_show_author": {
+ "label": "Vis forfatter"
+ },
+ "show_rating": {
+ "label": "Vis produktvurdering",
+ "info": "Legg til en produktvurderingsapp for å vise en vurdering. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Flerkolonne",
+ "settings": {
+ "title": {
+ "label": "Overskrift"
+ },
+ "image_width": {
+ "label": "Bildebredde",
+ "options__1": {
+ "label": "Én tredjedels bredde av kolonnen"
+ },
+ "options__2": {
+ "label": "Halve kolonnebredden"
+ },
+ "options__3": {
+ "label": "Hele kolonnebredden"
+ }
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ },
+ "options__4": {
+ "label": "Sirkel"
+ }
+ },
+ "column_alignment": {
+ "label": "Kolonnejustering",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ }
+ },
+ "background_style": {
+ "label": "Sekundær bakgrunn",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Vis som kolonnebakgrunn"
+ }
+ },
+ "button_label": {
+ "label": "Knappetikett"
+ },
+ "button_link": {
+ "label": "Knappekobling"
+ },
+ "swipe_on_mobile": {
+ "label": "Aktiver sveip på mobil"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Kolonne",
+ "settings": {
+ "image": {
+ "label": "Bilde"
+ },
+ "title": {
+ "label": "Overskrift"
+ },
+ "text": {
+ "label": "Beskrivelse"
+ },
+ "link_label": {
+ "label": "Koblingsetikett"
+ },
+ "link": {
+ "label": "Kobling"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Flerkolonne"
+ }
+ },
+ "newsletter": {
+ "name": "E-postregistrering",
+ "settings": {
+ "full_width": {
+ "label": "Gjør seksjonen til full bredde"
+ },
+ "paragraph": {
+ "content": "Hvert e-postabonnement oppretter en kundekonto. [Finn ut mer](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Underoverskrift",
+ "settings": {
+ "paragraph": {
+ "label": "Beskrivelse"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-postskjema"
+ }
+ },
+ "presets": {
+ "name": "E-postregistrering"
+ }
+ },
+ "page": {
+ "name": "Side",
+ "settings": {
+ "page": {
+ "label": "Side"
+ }
+ },
+ "presets": {
+ "name": "Side"
+ }
+ },
+ "rich-text": {
+ "name": "Rik tekst",
+ "settings": {
+ "full_width": {
+ "label": "Gjør seksjonen til full bredde"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsplassering på datamaskin",
+ "info": "Posisjonen optimaliseres automatisk for mobil."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Beskrivelse"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knapper",
+ "settings": {
+ "button_label_1": {
+ "label": "Første knappetikett",
+ "info": "La etiketten stå tom for å skjule knappen."
+ },
+ "button_link_1": {
+ "label": "Første knappekobling"
+ },
+ "button_style_secondary_1": {
+ "label": "Bruk knappestil med omriss"
+ },
+ "button_label_2": {
+ "label": "Andre knappetikett",
+ "info": "La etiketten stå tom for å skjule knappen."
+ },
+ "button_link_2": {
+ "label": "Andre knappekobling"
+ },
+ "button_style_secondary_2": {
+ "label": "Bruk knappestil med omriss"
+ }
+ }
+ },
+ "caption": {
+ "name": "Bildetekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Undertekst"
+ },
+ "options__2": {
+ "label": "Store bokstaver"
+ }
+ },
+ "caption_size": {
+ "label": "Tekststørrelse",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rik tekst"
+ }
+ },
+ "apps": {
+ "name": "Apper",
+ "settings": {
+ "include_margins": {
+ "label": "Gjør seksjonsmarginene like som i temaet"
+ }
+ },
+ "presets": {
+ "name": "Apper"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "cover_image": {
+ "label": "Forsidebilde"
+ },
+ "video_url": {
+ "label": "URL-adresse",
+ "info": "Bruk en YouTube- eller Vimeo-URL-adresse"
+ },
+ "description": {
+ "label": "Alt. tekst for video",
+ "info": "Beskriv videoen for kunder som bruker skjermlesere. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Legg til bildemarg",
+ "info": "Velg bildemarg hvis du ikke ønsker at toppbildet skal beskjæres."
+ },
+ "full_width": {
+ "label": "Gjør seksjonen til full bredde"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Spill video i loop"
+ },
+ "header__1": {
+ "content": "Shopify-driftet video"
+ },
+ "header__2": {
+ "content": "Eller integrer en video fra en URL-adresse"
+ },
+ "header__3": {
+ "content": "Stil"
+ },
+ "paragraph": {
+ "content": "Vises når ingen Shopify-driftet video er valgt."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Utvalgt produkt",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tittel"
+ },
+ "price": {
+ "name": "Pris"
+ },
+ "quantity_selector": {
+ "name": "Mengdevelger"
+ },
+ "variant_picker": {
+ "name": "Variantvelger",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Rullegardin"
+ },
+ "options__2": {
+ "label": "Knapper"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Kjøp-knapper",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Vis dynamiske knapper for å gå til kassen",
+ "info": "Kundene vil se sitt foretrukne alternativ, som PayPal eller Apple Pay, av betalingsmåtene som er tilgjengelig i butikken. [Finn ut mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Beskrivelse"
+ },
+ "share": {
+ "name": "Del",
+ "settings": {
+ "featured_image_info": {
+ "content": "Hvis du inkluderer en kobling i innlegg på sosiale medier, vil sidens fremhevede bilde vises som forhåndsvisningsbilde. [Finn ut mer](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "En butikktittel og -beskrivelse inkluderes med forhåndsvisningsbildet. [Finn ut mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktvurdering",
+ "settings": {
+ "paragraph": {
+ "content": "Legg til en produktvurderingsapp for å vise en vurdering. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Tekststil",
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "options__3": {
+ "label": "Store bokstaver"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Vis sekundærbakgrunn"
+ },
+ "header": {
+ "content": "Medier",
+ "info": "Finn ut mer om [medietyper](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Aktiver løkkeavspilling av video"
+ },
+ "hide_variants": {
+ "label": "Skjul uvalgte varianters medier på datamaskiner"
+ },
+ "media_position": {
+ "label": "Plassering av medier på datamaskin",
+ "info": "Posisjonen optimaliseres automatisk for mobil.",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Høyre"
+ }
+ }
+ },
+ "presets": {
+ "name": "Utvalgt produkt"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner for e-postregistrering",
+ "settings": {
+ "paragraph": {
+ "content": "Hvert e-postabonnement oppretter en kundekonto. [Finn ut mer](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Bakgrunnsbilde"
+ },
+ "show_background_image": {
+ "label": "Vis bakgrunnsbilde"
+ },
+ "show_text_box": {
+ "label": "Vis beholder på datamaskin"
+ },
+ "image_overlay_opacity": {
+ "label": "Gjennomsiktighet for bildeoverlegg"
+ },
+ "show_text_below": {
+ "label": "Vis innhold under bildet på mobil",
+ "info": "Bruk et bilde med størrelsesforhold 16:9 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Bannerhøyde",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "info": "Bruk et bilde med størrelsesforhold 16:9 for best resultat. [Finn ut mer](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Øverst til venstre"
+ },
+ "options__2": {
+ "label": "Toppsentrert"
+ },
+ "options__3": {
+ "label": "Øverst til høyre"
+ },
+ "options__4": {
+ "label": "Midt til venstre"
+ },
+ "options__5": {
+ "label": "Midt i senter"
+ },
+ "options__6": {
+ "label": "Midt til høyre"
+ },
+ "options__7": {
+ "label": "Nederst til venstre"
+ },
+ "options__8": {
+ "label": "Bunnsentrert"
+ },
+ "options__9": {
+ "label": "Nederst til høyre"
+ },
+ "label": "Innholdsplassering på datamaskin"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på datamaskin"
+ },
+ "header": {
+ "content": "Mobillayout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på mobiltelefon"
+ },
+ "color_scheme": {
+ "info": "Synlig når beholderen vises."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Overskrift",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Avsnitt",
+ "settings": {
+ "paragraph": {
+ "label": "Beskrivelse"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "label": "Tekststil"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-postskjema"
+ }
+ },
+ "presets": {
+ "name": "Banner for e-postregistrering"
+ }
+ },
+ "slideshow": {
+ "name": "Lysbildefremvisning",
+ "settings": {
+ "layout": {
+ "label": "Oppsett",
+ "options__1": {
+ "label": "Full bredde"
+ },
+ "options__2": {
+ "label": "Rutenett"
+ }
+ },
+ "slide_height": {
+ "label": "Lysbildehøyde",
+ "options__1": {
+ "label": "Tilpass etter første bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "slider_visual": {
+ "label": "Pagineringsstil",
+ "options__1": {
+ "label": "Teller"
+ },
+ "options__2": {
+ "label": "Prikker"
+ },
+ "options__3": {
+ "label": "Tall"
+ }
+ },
+ "auto_rotate": {
+ "label": "Autoroter lysbildene"
+ },
+ "change_slides_speed": {
+ "label": "Endre lysbilde hvert"
+ },
+ "show_text_below": {
+ "label": "Vis innhold under bilder på mobil"
+ },
+ "mobile": {
+ "content": "Mobillayout"
+ },
+ "accessibility": {
+ "content": "Tilgjengelighet",
+ "label": "Beskrivelse av lysbildefremvisning",
+ "info": "Beskriv lysbildefremvisningen for kunder som bruker skjermlesere."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Lysbilde",
+ "settings": {
+ "image": {
+ "label": "Bilde"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "subheading": {
+ "label": "Underoverskrift"
+ },
+ "button_label": {
+ "label": "Knappetikett",
+ "info": "La etiketten stå tom for å skjule knappen."
+ },
+ "link": {
+ "label": "Knappekobling"
+ },
+ "secondary_style": {
+ "label": "Bruk knappestil med omriss"
+ },
+ "box_align": {
+ "label": "Innholdsplassering på datamaskin",
+ "options__1": {
+ "label": "Øverst til venstre"
+ },
+ "options__2": {
+ "label": "Toppsentrert"
+ },
+ "options__3": {
+ "label": "Øverst til høyre"
+ },
+ "options__4": {
+ "label": "Midt til venstre"
+ },
+ "options__5": {
+ "label": "Midt i senter"
+ },
+ "options__6": {
+ "label": "Midt til høyre"
+ },
+ "options__7": {
+ "label": "Nederst til venstre"
+ },
+ "options__8": {
+ "label": "Bunnsentrert"
+ },
+ "options__9": {
+ "label": "Nederst til høyre"
+ },
+ "info": "Posisjonen optimaliseres automatisk for mobil."
+ },
+ "show_text_box": {
+ "label": "Vis beholder på datamaskin"
+ },
+ "text_alignment": {
+ "label": "Innholdsjustering på datamaskin",
+ "option_1": {
+ "label": "Venstre"
+ },
+ "option_2": {
+ "label": "Sentrert"
+ },
+ "option_3": {
+ "label": "Høyre"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Gjennomsiktighet for bildeoverlegg"
+ },
+ "text_alignment_mobile": {
+ "label": "Innholdsjustering på mobiltelefon",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Lysbildefremvisning"
+ }
+ },
+ "collapsible_content": {
+ "name": "Sammenleggbart innhold",
+ "settings": {
+ "caption": {
+ "label": "Bildetekst"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "heading_alignment": {
+ "label": "Justering av overskrift",
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ }
+ },
+ "layout": {
+ "label": "Oppsett",
+ "options__1": {
+ "label": "Ingen beholder"
+ },
+ "options__2": {
+ "label": "Radbeholder"
+ },
+ "options__3": {
+ "label": "Seksjonsbeholder"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Fargetema for beholder",
+ "info": "Synlig når layouten er satt til rad- eller seksjonsbeholder."
+ },
+ "open_first_collapsible_row": {
+ "label": "Åpne første sammenleggbare rad"
+ },
+ "header": {
+ "content": "Bildeoppsett"
+ },
+ "image": {
+ "label": "Bilde"
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ },
+ "desktop_layout": {
+ "label": "Layout på datamaskin",
+ "options__1": {
+ "label": "Bilde først"
+ },
+ "options__2": {
+ "label": "Andre bilde"
+ },
+ "info": "Bildet kommer alltid først på mobil."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Sammenleggbar rad",
+ "settings": {
+ "heading": {
+ "info": "Inkluder en overskrift som forklarer innholdet.",
+ "label": "Overskrift"
+ },
+ "row_content": {
+ "label": "Radinnhold"
+ },
+ "page": {
+ "label": "Radinnhold fra side"
+ },
+ "icon": {
+ "label": "Ikon",
+ "options__1": {
+ "label": "Ingen"
+ },
+ "options__2": {
+ "label": "Eple"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Flaske"
+ },
+ "options__5": {
+ "label": "Boks"
+ },
+ "options__6": {
+ "label": "Gulrot"
+ },
+ "options__7": {
+ "label": "Chatboble"
+ },
+ "options__8": {
+ "label": "Avkrysningsmerke"
+ },
+ "options__9": {
+ "label": "Skriveplater"
+ },
+ "options__10": {
+ "label": "Meierivarer"
+ },
+ "options__11": {
+ "label": "Melkefritt"
+ },
+ "options__12": {
+ "label": "Tørker"
+ },
+ "options__13": {
+ "label": "Øye"
+ },
+ "options__14": {
+ "label": "Brann"
+ },
+ "options__15": {
+ "label": "Glutenfri"
+ },
+ "options__16": {
+ "label": "Hjerte"
+ },
+ "options__17": {
+ "label": "Jern"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Skinn"
+ },
+ "options__20": {
+ "label": "Lyn"
+ },
+ "options__21": {
+ "label": "Leppestift"
+ },
+ "options__22": {
+ "label": "Lås"
+ },
+ "options__23": {
+ "label": "Kartpinne"
+ },
+ "options__24": {
+ "label": "Nøttefri"
+ },
+ "options__25": {
+ "label": "Bukser"
+ },
+ "options__26": {
+ "label": "Potetrykk"
+ },
+ "options__27": {
+ "label": "Pepper"
+ },
+ "options__28": {
+ "label": "Parfyme"
+ },
+ "options__29": {
+ "label": "Fly"
+ },
+ "options__30": {
+ "label": "Plante"
+ },
+ "options__31": {
+ "label": "Prislapp"
+ },
+ "options__32": {
+ "label": "Spørsmålstegn"
+ },
+ "options__33": {
+ "label": "Resirkuler"
+ },
+ "options__34": {
+ "label": "Retur"
+ },
+ "options__35": {
+ "label": "Linjal"
+ },
+ "options__36": {
+ "label": "Serveringsfat"
+ },
+ "options__37": {
+ "label": "Skjorte"
+ },
+ "options__38": {
+ "label": "Sko"
+ },
+ "options__39": {
+ "label": "Silhuett"
+ },
+ "options__40": {
+ "label": "Snøkrystall"
+ },
+ "options__41": {
+ "label": "Stjerne"
+ },
+ "options__42": {
+ "label": "Stoppeklokke"
+ },
+ "options__43": {
+ "label": "Varebil"
+ },
+ "options__44": {
+ "label": "Vasking"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Sammenleggbart innhold"
+ }
+ },
+ "main-account": {
+ "name": "Konto"
+ },
+ "main-activate-account": {
+ "name": "Kontoaktivering"
+ },
+ "main-addresses": {
+ "name": "Adresser"
+ },
+ "main-login": {
+ "name": "Logg på"
+ },
+ "main-order": {
+ "name": "Bestilling"
+ },
+ "main-register": {
+ "name": "Registrering"
+ },
+ "main-reset-password": {
+ "name": "Tilbakestill passord"
+ },
+ "related-products": {
+ "name": "Relaterte produkter",
+ "settings": {
+ "heading": {
+ "label": "Overskrift"
+ },
+ "products_to_show": {
+ "label": "Maksimalt antall produkter som vises"
+ },
+ "columns_desktop": {
+ "label": "Antall kolonner på datamaskin"
+ },
+ "paragraph__1": {
+ "content": "Dynamiske anbefalinger bruker bestillings- og produktinformasjon til å endres og forbedres over tid. [Finn ut mer](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Bildeforhold",
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Portrett"
+ },
+ "options__3": {
+ "label": "Firkant"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Vis sekundærbilde når musepekeren beveges over"
+ },
+ "show_vendor": {
+ "label": "Vis selger"
+ },
+ "show_rating": {
+ "label": "Vis produktvurdering",
+ "info": "Legg til en produktvurderingsapp for å vise en vurdering. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ },
+ "columns_mobile": {
+ "label": "Antall kolonner på mobil",
+ "options__1": {
+ "label": "1 kolonne"
+ },
+ "options__2": {
+ "label": "2 kolonner"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Flere rader",
+ "settings": {
+ "image": {
+ "label": "Bilde"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Tilpass til bilde"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Middels"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "label": "Bildehøyde"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Bildebredde på datamaskiner",
+ "info": "Bildet optimaliseres automatisk for mobil."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Middels"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Overskriftsstørrelse"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brødtekst"
+ },
+ "options__2": {
+ "label": "Undertekst"
+ },
+ "label": "Tekststil"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Helfarget knapp"
+ },
+ "options__2": {
+ "label": "Omriss rundt knapp"
+ },
+ "label": "Knappestil"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på datamaskin"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Topp"
+ },
+ "options__2": {
+ "label": "Midten"
+ },
+ "options__3": {
+ "label": "Bunn"
+ },
+ "label": "Innholdsplassering på datamaskin",
+ "info": "Posisjonen optimaliseres automatisk for mobil."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Annenhver fra venstre"
+ },
+ "options__2": {
+ "label": "Annenhver fra høyre"
+ },
+ "options__3": {
+ "label": "Justert mot venstre"
+ },
+ "options__4": {
+ "label": "Justert mot høyre"
+ },
+ "label": "Bildeplassering på datamaskin",
+ "info": "Plasseringen optimaliseres automatisk for mobil."
+ },
+ "container_color_scheme": {
+ "label": "Fargetema for beholder"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Venstre"
+ },
+ "options__2": {
+ "label": "Sentrert"
+ },
+ "options__3": {
+ "label": "Høyre"
+ },
+ "label": "Innholdsjustering på mobiltelefon"
+ },
+ "header_mobile": {
+ "content": "Mobillayout"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Rad",
+ "settings": {
+ "image": {
+ "label": "Bilde"
+ },
+ "caption": {
+ "label": "Bildetekst"
+ },
+ "heading": {
+ "label": "Overskrift"
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_label": {
+ "label": "Knappetikett"
+ },
+ "button_link": {
+ "label": "Knappekobling"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Flere rader"
+ }
+ },
+ "quick-order-list": {
+ "name": "Hurtigordreliste",
+ "settings": {
+ "show_image": {
+ "label": "Vis bilder"
+ },
+ "show_sku": {
+ "label": "Vis SKU-er"
+ }
+ },
+ "presets": {
+ "name": "Hurtigordreliste"
+ }
+ }
+ }
+}
diff --git a/locales/nl.json b/locales/nl.json
new file mode 100644
index 0000000..e17599b
--- /dev/null
+++ b/locales/nl.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Ga winkel binnen met wachtwoord:",
+ "login_password_button": "Ga naar binnen met wachtwoord",
+ "login_form_password_label": "Wachtwoord",
+ "login_form_password_placeholder": "Je wachtwoord",
+ "login_form_error": "Wachtwoord onjuist!",
+ "login_form_submit": "Invoeren",
+ "admin_link_html": "Ben je de winkeleigenaar? Log hier in ",
+ "powered_by_shopify_html": "Deze winkel wordt door {{ shopify }} aangedreven"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Delen op Facebook",
+ "share_on_twitter": "Twitteren op Twitter",
+ "share_on_pinterest": "Pinnen op Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Terugkeren naar winkel",
+ "pagination": {
+ "label": "Paginering",
+ "page": "Pagina {{ number }}",
+ "next": "Volgende pagina",
+ "previous": "Vorige pagina"
+ },
+ "search": {
+ "search": "Zoeken",
+ "reset": "Zoekterm wissen"
+ },
+ "cart": {
+ "view": "Winkelwagen bekijken ({{ count }})",
+ "item_added": "Artikel toegevoegd aan winkelwagen",
+ "view_empty_cart": "Winkelwagen bekijken"
+ },
+ "share": {
+ "copy_to_clipboard": "Link kopiëren",
+ "share_url": "Link",
+ "success_message": "Link gekopieerd naar klembord",
+ "close": "Delen sluiten"
+ },
+ "slider": {
+ "of": "van",
+ "next_slide": "Naar rechts schuiven",
+ "previous_slide": "Naar links schuiven",
+ "name": "Schuifregelaar"
+ }
+ },
+ "newsletter": {
+ "label": "E‑mail",
+ "success": "Bedankt voor het abonneren",
+ "button_label": "Abonneren"
+ },
+ "accessibility": {
+ "skip_to_text": "Meteen naar de content",
+ "close": "Sluiten",
+ "unit_price_separator": "per",
+ "vendor": "Verkoper:",
+ "error": "Fout",
+ "refresh_page": "Een selectie kiezen resulteert in het geheel verversen van de pagina.",
+ "link_messages": {
+ "new_window": "Opent in een nieuw venster.",
+ "external": "Opent externe website."
+ },
+ "loading": "Bezig met laden...",
+ "skip_to_product_info": "Ga direct naar productinformatie",
+ "total_reviews": "totaal aantal recensies",
+ "star_reviews_info": "{{ rating_value }} van de {{ rating_max }} sterren",
+ "collapsible_content_title": "Inklapbare content",
+ "complementary_products": "Aanvullende producten"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Lees verder: {{ title }}",
+ "comments": {
+ "one": "{{ count }} reactie",
+ "other": "{{ count }} reacties"
+ },
+ "moderated": "Let op: opmerkingen moeten worden goedgekeurd voordat ze worden gepubliceerd.",
+ "comment_form_title": "Reactie plaatsen",
+ "name": "Naam",
+ "email": "E‑mail",
+ "message": "Reactie",
+ "post": "Plaats een reactie",
+ "back_to_blog": "Terug naar blog",
+ "share": "Dit artikelen delen",
+ "success": "Je reactie is geplaatst! Bedankt!",
+ "success_moderated": "Je reactie is geplaatst. Wij publiceren het zo; onze blog wordt gemodereerd."
+ }
+ },
+ "onboarding": {
+ "product_title": "Voorbeeld producttitel",
+ "collection_title": "De naam van je collectie"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Aan winkelwagen toevoegen",
+ "description": "Beschrijving",
+ "on_sale": "Aanbieding",
+ "quantity": {
+ "label": "Aantal",
+ "input_label": "Aantal voor {{ product }}",
+ "increase": "Aantal verhogen voor {{ product }}",
+ "decrease": "Aantal verlagen voor {{ product }}",
+ "minimum_of": "Minimum van {{ quantity }}",
+ "maximum_of": "Maximum van {{ quantity }}",
+ "multiples_of": "Stappen van {{ quantity }}",
+ "in_cart_html": "{{ quantity }} in winkelwagen",
+ "note": "Hoeveelheidsregels bekijken"
+ },
+ "price": {
+ "from_price_html": "Vanaf {{ price }}",
+ "regular_price": "Normale prijs",
+ "sale_price": "Aanbiedingsprijs",
+ "unit_price": "Eenheidsprijs"
+ },
+ "share": "Dit product delen",
+ "sold_out": "Uitverkocht",
+ "unavailable": "Niet beschikbaar",
+ "vendor": "Verkoper",
+ "video_exit_message": "{{ title }} opent een video op volledig scherm in hetzelfde venster.",
+ "xr_button": "Bekijk in je ruimte",
+ "xr_button_label": "Bekijk in je ruimte, laadt artikel in augmented reality-venster",
+ "pickup_availability": {
+ "view_store_info": "Winkelgegevens bekijken",
+ "check_other_stores": "Controleer de beschikbaarheid bij andere winkels",
+ "pick_up_available": "Afhaling is beschikbaar",
+ "pick_up_available_at_html": "Afhaling is beschikbaar bij {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Afhaling is momenteel niet beschikbaar bij {{ location_name }} ",
+ "unavailable": "Kan beschikbaarheid voor afhalen niet laden",
+ "refresh": "Vernieuwen"
+ },
+ "media": {
+ "open_media": "Media {{ index }} openen in modaal",
+ "play_model": "3D-viewer afspelen",
+ "play_video": "Video afspelen",
+ "gallery_viewer": "Gallery-weergave",
+ "load_image": "Afbeelding {{ index }} laden in gallery-weergave",
+ "load_model": "3D-model {{ index }} laden in gallery-weergave",
+ "load_video": "Video {{ index }} afspelen in gallery-weergave",
+ "image_available": "Afbeelding {{ index }} is nu beschikbaar in gallery-weergave"
+ },
+ "view_full_details": "Alle details bekijken",
+ "include_taxes": "Inclusief btw.",
+ "shipping_policy_html": "Verzendkosten worden berekend bij de checkout.",
+ "choose_options": "Opties kiezen",
+ "choose_product_options": "Opties kiezen voor {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Niet beschikbaar",
+ "variant_sold_out_or_unavailable": "Variant uitverkocht of niet beschikbaar",
+ "inventory_in_stock": "Op voorraad",
+ "inventory_in_stock_show_count": "{{ quantity }} op voorraad",
+ "inventory_low_stock": "Voorraad laag",
+ "inventory_low_stock_show_count": "Lage voorraad: nog maar {{ quantity }}",
+ "inventory_out_of_stock": "Niet op voorraad",
+ "sku": "SKU",
+ "inventory_out_of_stock_continue_selling": "Op voorraad",
+ "volume_pricing": {
+ "title": "Volumeprijsstelling",
+ "note": "Volumeprijsstelling beschikbaar",
+ "minimum": "Meer dan {{ quantity }}",
+ "price_at_each": "{{ price }}/st.",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "Productvarianten"
+ },
+ "modal": {
+ "label": "Mediagalerij"
+ },
+ "facets": {
+ "apply": "Toepassen",
+ "clear": "Wissen",
+ "clear_all": "Alles verwijderen",
+ "from": "Van",
+ "filter_and_sort": "Filteren en sorteren",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filter",
+ "filters_selected": {
+ "one": "{{ count }} geselecteerd",
+ "other": "{{ count }} geselecteerd"
+ },
+ "max_price": "De hoogste prijs is {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} korting op {{ count }} producten",
+ "other": "{{ product_count }} korting op {{ count }} producten"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} product",
+ "other": "{{ count }} producten"
+ },
+ "reset": "Opnieuw instellen",
+ "sort_button": "Sorteren",
+ "sort_by_label": "Sorteer op:",
+ "to": "Aan",
+ "clear_filter": "Filter verwijderen",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filters geselecteerd)",
+ "show_more": "Meer weergeven",
+ "show_less": "Minder weergeven",
+ "filter_and_operator_subtitle": "Alles matchen"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Geen resultaten gevonden voor “{{ terms }}”. Controleer de spelling of gebruik een ander woord of een andere zin.",
+ "results_with_count": {
+ "one": "{{ count }} resultaat",
+ "other": "{{ count }} resultaten"
+ },
+ "title": "Zoekresultaten",
+ "page": "Pagina",
+ "products": "Producten",
+ "search_for": "Zoeken naar '{{ terms }}'",
+ "results_with_count_and_term": {
+ "one": "{{ count }} resultaat gevonden voor “{{ terms }}”",
+ "other": "{{ count }} resultaten gevonden voor “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} pagina",
+ "other": "{{ count }} pagina's"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} suggestie",
+ "other": "{{ count }} suggesties"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} product",
+ "other": "{{ count }} producten"
+ },
+ "suggestions": "Suggesties",
+ "pages": "Pagina's"
+ },
+ "cart": {
+ "cart": "Winkelwagen"
+ },
+ "contact": {
+ "form": {
+ "name": "Naam",
+ "email": "E‑mail",
+ "phone": "Telefoonnummer",
+ "comment": "Reactie",
+ "send": "Sturen",
+ "post_success": "Bedankt dat je contact met ons hebt opgenomen. Je hoort zo snel mogelijk van ons.",
+ "error_heading": "Pas het volgende aan:",
+ "title": "Contactformulier"
+ }
+ },
+ "404": {
+ "title": "Pagina niet gevonden",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Aankondiging",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} artikel",
+ "other": "{{ count }} artikelen"
+ }
+ },
+ "cart": {
+ "title": "Je winkelwagen",
+ "caption": "Artikelen in winkelwagen",
+ "remove_title": "{{ title }} verwijderen",
+ "note": "Speciale instructies voor bestelling",
+ "checkout": "Afrekenen",
+ "empty": "Je winkelwagen is leeg",
+ "cart_error": "Er is een fout opgetreden bij het bijwerken van je winkelwagen. Probeer het opnieuw.",
+ "cart_quantity_error_html": "Je kunt maar {{ quantity }} van dit artikel toevoegen aan je winkelwagen.",
+ "taxes_and_shipping_policy_at_checkout_html": "Belastingen, kortingen en verzending worden bij de checkout berekend",
+ "taxes_included_but_shipping_at_checkout": "Inclusief belasting; verzendkosten en kortingen worden bij de checkout berekend",
+ "taxes_included_and_shipping_policy_html": "Inclusief belasting. Verzending en kortingen worden bij de checkout berekend.",
+ "taxes_and_shipping_at_checkout": "Belastingen, kortingen en verzending worden bij de checkout berekend",
+ "headings": {
+ "product": "Product",
+ "price": "Prijs",
+ "total": "Totaal",
+ "quantity": "Aantal",
+ "image": "Productafbeelding"
+ },
+ "update": "Bijwerken",
+ "login": {
+ "title": "Heb je een account?",
+ "paragraph_html": "Log in om sneller af te rekenen."
+ },
+ "estimated_total": "Geschat totaal",
+ "new_estimated_total": "Nieuw geschat totaal"
+ },
+ "footer": {
+ "payment": "Betaalmethoden"
+ },
+ "featured_blog": {
+ "view_all": "Alles bekijken",
+ "onboarding_title": "Blogpost",
+ "onboarding_content": "Geef je klanten een overzicht van je blogpost"
+ },
+ "featured_collection": {
+ "view_all": "Alles bekijken",
+ "view_all_label": "Bekijk alle producten in de collectie {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Alles bekijken"
+ },
+ "collection_template": {
+ "title": "Collectie",
+ "empty": "Geen producten gevonden",
+ "use_fewer_filters_html": "Minder filters gebruiken of alles verwijderen "
+ },
+ "video": {
+ "load_video": "Video laden: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Dia laden",
+ "previous_slideshow": "Vorige dia",
+ "next_slideshow": "Volgende dia",
+ "pause_slideshow": "Diavoorstelling pauzeren",
+ "play_slideshow": "Diavoorstelling afspelen",
+ "carousel": "Carrousel",
+ "slide": "Dia"
+ },
+ "page": {
+ "title": "Paginatitel"
+ },
+ "announcements": {
+ "previous_announcement": "Vorige aankondiging",
+ "next_announcement": "Volgende aankondiging",
+ "carousel": "Carrousel",
+ "announcement": "Aankondiging",
+ "announcement_bar": "Aankondigingsbalk"
+ },
+ "quick_order_list": {
+ "product_total": "Productsubtotaal",
+ "view_cart": "Winkelwagen bekijken",
+ "each": "{{ money }}/st",
+ "product": "Product",
+ "variant": "Variant",
+ "variant_total": "Totaal variant",
+ "items_added": {
+ "one": "{{ quantity }} artikel toegevoegd",
+ "other": "{{ quantity }} artikelen toegevoegd"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} artikel verwijderd",
+ "other": "{{ quantity }} artikelen verwijderd"
+ },
+ "product_variants": "Productvarianten",
+ "total_items": "Totaal aantal artikelen",
+ "remove_all_items_confirmation": "Alle {{ quantity }} artikelen uit je winkelwagen verwijderen?",
+ "remove_all": "Alles verwijderen",
+ "cancel": "Annuleren"
+ }
+ },
+ "localization": {
+ "country_label": "Land/regio",
+ "language_label": "Taal",
+ "update_language": "Taal bijwerken",
+ "update_country": "Land/regio bijwerken"
+ },
+ "customer": {
+ "account": {
+ "title": "Account",
+ "details": "Accountgegevens",
+ "view_addresses": "Adressen bekijken",
+ "return": "Terug naar Accountgegevens"
+ },
+ "account_fallback": "Account",
+ "activate_account": {
+ "title": "Account activeren",
+ "subtext": "Maak je wachtwoord aan om je account te activeren.",
+ "password": "Wachtwoord",
+ "password_confirm": "Wachtwoord bevestigen",
+ "submit": "Account activeren",
+ "cancel": "Uitnodiging afwijzen"
+ },
+ "addresses": {
+ "title": "Adressen",
+ "default": "Standaard",
+ "add_new": "Voeg een nieuw adres toe",
+ "edit_address": "Adres bewerken",
+ "first_name": "Voornaam",
+ "last_name": "Achternaam",
+ "company": "Bedrijf",
+ "address1": "Adres 1",
+ "address2": "Adres 2",
+ "city": "Plaats",
+ "country": "Land/regio",
+ "province": "Provincie",
+ "zip": "Postcode",
+ "phone": "Telefoonnummer",
+ "set_default": "Als standaard adres instellen",
+ "add": "Adres toevoegen",
+ "update": "Adres bijwerken",
+ "cancel": "Annuleren",
+ "edit": "Bewerken",
+ "delete": "Verwijderen",
+ "delete_confirm": "Weet je zeker dat je dit adres wilt verwijderen?"
+ },
+ "log_in": "Inloggen",
+ "log_out": "Uitloggen",
+ "login_page": {
+ "cancel": "Annuleren",
+ "create_account": "Account aanmaken",
+ "email": "E‑mail",
+ "forgot_password": "Wachtwoord vergeten?",
+ "guest_continue": "Doorgaan",
+ "guest_title": "Doorgaan als gast",
+ "password": "Wachtwoord",
+ "title": "Inloggegevens",
+ "sign_in": "Inloggen",
+ "submit": "Verzenden"
+ },
+ "orders": {
+ "title": "Besteloverzicht",
+ "order_number": "Bestelling",
+ "order_number_link": "Bestelnummer {{ number }}",
+ "date": "Datum",
+ "payment_status": "Betaalstatus",
+ "fulfillment_status": "Fulfilmentstatus",
+ "total": "Totaal",
+ "none": "Je hebt nog geen bestellingen geplaatst."
+ },
+ "recover_password": {
+ "title": "Wachtwoord opnieuw instellen",
+ "subtext": "Wij sturen je een e-mail om je wachtwoord opnieuw in te stellen",
+ "success": "We hebben je een e-mail gestuurd met een link om je wachtwoord opnieuw in te stellen."
+ },
+ "register": {
+ "title": "Account aanmaken",
+ "first_name": "Voornaam",
+ "last_name": "Achternaam",
+ "email": "E‑mail",
+ "password": "Wachtwoord",
+ "submit": "Aanmaken"
+ },
+ "reset_password": {
+ "title": "Account-wachtwoord opnieuw instellen",
+ "subtext": "Voer een nieuw wachtwoord in",
+ "password": "Wachtwoord",
+ "password_confirm": "Wachtwoord bevestigen",
+ "submit": "Wachtwoord opnieuw instellen"
+ },
+ "order": {
+ "title": "Bestelling {{ name }}",
+ "date_html": "Geplaatst op {{ date }}",
+ "cancelled_html": "Bestelling geannuleerd op {{ date }}",
+ "cancelled_reason": "Reden: {{ reason }}",
+ "billing_address": "Factuuradres",
+ "payment_status": "Betaalstatus",
+ "shipping_address": "Bezorgadres",
+ "fulfillment_status": "Fulfilmentstatus",
+ "discount": "Korting",
+ "shipping": "Verzending",
+ "tax": "Belasting",
+ "product": "Product",
+ "sku": "SKU",
+ "price": "Prijs",
+ "quantity": "Aantal",
+ "total": "Totaal",
+ "fulfilled_at_html": "Voldaan {{ date }}",
+ "track_shipment": "Volg verzending",
+ "tracking_url": "Volglink",
+ "tracking_company": "Vervoerder",
+ "tracking_number": "Trackingnummer",
+ "subtotal": "Subtotaal",
+ "total_duties": "Douanerechten",
+ "total_refunded": "Terugbetaald"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Dit is het saldo van de cadeaubon ter waarde van {{ value }} voor {{ shop }}",
+ "subtext": "Je cadeaubon",
+ "gift_card_code": "Cadeaubon code",
+ "shop_link": "Onlinewinkel bezoeken",
+ "add_to_apple_wallet": "Aan Apple Wallet toevoegen",
+ "qr_image_alt": "QR-code — scannen om cadeaubon te verzilveren",
+ "copy_code": "Cadeauboncode kopiëren",
+ "expired": "Verlopen",
+ "copy_code_success": "Code gekopieerd",
+ "how_to_use_gift_card": "Gebruik de cadeauboncode online of de QR-code in de winkel",
+ "expiration_date": "Verloopt op {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Ik wil dit als cadeau sturen",
+ "email_label": "E-mailadres ontvanger",
+ "email": "E‑mailadres",
+ "name_label": "Naam ontvanger (optioneel)",
+ "name": "Naam",
+ "message_label": "Bericht (optioneel)",
+ "message": "Bericht",
+ "max_characters": "Maximaal {{ max_chars }} tekens",
+ "email_label_optional_for_no_js_behavior": "E-mailadres ontvanger (optioneel)",
+ "send_on": "JJJJ-MM-DD",
+ "send_on_label": "Verzenden op (optioneel)",
+ "expanded": "Formulier voor ontvanger cadeaubon uitgevouwen",
+ "collapsed": "Formulier voor ontvanger cadeaubon ingeklapt"
+ }
+ }
+}
diff --git a/locales/nl.schema.json b/locales/nl.schema.json
new file mode 100644
index 0000000..4ae878c
--- /dev/null
+++ b/locales/nl.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Kleuren",
+ "settings": {
+ "background": {
+ "label": "Achtergrond"
+ },
+ "background_gradient": {
+ "label": "Kleurverloop achtergrond",
+ "info": "Het kleurverloop vervangt waar mogelijk de achtergrond."
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_background": {
+ "label": "Effen knopachtergrond"
+ },
+ "button_label": {
+ "label": "Effen knoplabel"
+ },
+ "secondary_button_label": {
+ "label": "Knop Omlijnen"
+ },
+ "shadow": {
+ "label": "Schaduw"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografie",
+ "settings": {
+ "type_header_font": {
+ "label": "Lettertype",
+ "info": "Als je een ander lettertype selecteert, kan dit de snelheid van je winkel beïnvloeden. Meer informatie over systeemlettertypen.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Kopteksten"
+ },
+ "header__2": {
+ "content": "Hoofdtekst"
+ },
+ "type_body_font": {
+ "label": "Lettertype",
+ "info": "Als je een ander lettertype selecteert, kan dit de snelheid van je winkel beïnvloeden. Meer informatie over systeemlettertypen.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Schaal lettertypegrootte"
+ },
+ "body_scale": {
+ "label": "Schaal lettertypegrootte"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Social media",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Socialmedia-accounts"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Valuta-indeling",
+ "settings": {
+ "content": "Valutacodes",
+ "currency_code_enabled": {
+ "label": "Valutacodes tonen"
+ },
+ "paragraph": "Prijzen in winkelwagen en bij checkout tonen altijd de valutacodes. Voorbeeld: $1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Opmaak",
+ "settings": {
+ "page_width": {
+ "label": "Paginabreedte"
+ },
+ "spacing_sections": {
+ "label": "Ruimte tussen secties in een template"
+ },
+ "header__grid": {
+ "content": "Grid"
+ },
+ "paragraph__grid": {
+ "content": "Is van invloed op secties met meerdere kolommen of rijen."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Horizontale ruimte"
+ },
+ "spacing_grid_vertical": {
+ "label": "Verticale ruimte"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Zoekgedrag",
+ "settings": {
+ "header": {
+ "content": "Zoeksuggesties"
+ },
+ "predictive_search_enabled": {
+ "label": "Zoeksuggesties inschakelen"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Productverkoper weergeven",
+ "info": "Zichtbaar als zoeksuggesties zijn ingeschakeld."
+ },
+ "predictive_search_show_price": {
+ "label": "Productprijs weergeven",
+ "info": "Zichtbaar als zoeksuggesties zijn ingeschakeld."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Rand"
+ },
+ "header__shadow": {
+ "content": "Schaduw"
+ },
+ "blur": {
+ "label": "Vervaging"
+ },
+ "corner_radius": {
+ "label": "Hoekradius"
+ },
+ "horizontal_offset": {
+ "label": "Horizontale verschuiving"
+ },
+ "vertical_offset": {
+ "label": "Verticale verschuiving"
+ },
+ "thickness": {
+ "label": "Dikte"
+ },
+ "opacity": {
+ "label": "Dekking"
+ },
+ "image_padding": {
+ "label": "Opvulling voor afbeeldingen"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Tekstuitlijning"
+ }
+ }
+ },
+ "badges": {
+ "name": "Badges",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Linksonder"
+ },
+ "options__2": {
+ "label": "Rechtsonder"
+ },
+ "options__3": {
+ "label": "Linksboven"
+ },
+ "options__4": {
+ "label": "Rechtsboven"
+ },
+ "label": "Positie op kaarten"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Kleurschema uitverkoop-badge"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Kleurschema uitverkocht-badge"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knoppen"
+ },
+ "variant_pills": {
+ "name": "Variantopties",
+ "paragraph": "Variantopties zijn een manier om je productvarianten weer te geven. [Meer informatie](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Invoer"
+ },
+ "content_containers": {
+ "name": "Content-containers"
+ },
+ "popups": {
+ "name": "Vervolgkeuzelijsten en pop-ups",
+ "paragraph": "Is van invloed op o.a. navigatie-vervolgkeuzelijsten, modale pop-upvensters en winkelwagengerelateerde pop-upmeldingen."
+ },
+ "media": {
+ "name": "Media"
+ },
+ "drawers": {
+ "name": "Lades"
+ },
+ "cart": {
+ "name": "Winkelwagen",
+ "settings": {
+ "cart_type": {
+ "label": "Type winkelwagen",
+ "drawer": {
+ "label": "Optie"
+ },
+ "page": {
+ "label": "Pagina"
+ },
+ "notification": {
+ "label": "Pop-upmelding"
+ }
+ },
+ "show_vendor": {
+ "label": "Verkoper weergeven"
+ },
+ "show_cart_note": {
+ "label": "Notitie voor winkelwagen inschakelen"
+ },
+ "cart_drawer": {
+ "header": "Winkelwagenoptie",
+ "collection": {
+ "label": "Collectie",
+ "info": "Zichtbaar wanneer winkelwagenoptie leeg is."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Productkaarten",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standaard"
+ },
+ "options__2": {
+ "label": "Kaart"
+ },
+ "label": "Stijl"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Collectiekaarten",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standaard"
+ },
+ "options__2": {
+ "label": "Kaart"
+ },
+ "label": "Stijl"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Blogkaarten",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standaard"
+ },
+ "options__2": {
+ "label": "Kaart"
+ },
+ "label": "Stijl"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Breedte van logo op desktop",
+ "info": "De breedte van het logo wordt automatisch geoptimaliseerd voor mobiele weergave."
+ },
+ "favicon": {
+ "label": "Favicon-afbeelding",
+ "info": "Wordt verkleind tot 32x32 pixels"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Merkinformatie",
+ "settings": {
+ "brand_headline": {
+ "label": "Headline"
+ },
+ "brand_description": {
+ "label": "Beschrijving"
+ },
+ "brand_image": {
+ "label": "Afbeelding"
+ },
+ "brand_image_width": {
+ "label": "Breedte afbeelding"
+ },
+ "paragraph": {
+ "content": "Voeg een merkbeschrijving toe aan de voettekst van de winkel."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animaties",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Secties laten zien bij scrollen"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Geen"
+ },
+ "options__2": {
+ "label": "Verticale lift"
+ },
+ "label": "Zweef-effect",
+ "info": "Wordt gebruikt voor kaarten en knoppen.",
+ "options__3": {
+ "label": "3D-lift"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Opvulling voor sectie",
+ "padding_top": "Opvulling boven",
+ "padding_bottom": "Opvulling onder"
+ },
+ "spacing": "Afstand",
+ "colors": {
+ "label": "Kleurschema",
+ "has_cards_info": "Werk je thema-instellingen bij om het kleurschema van de kaart te wijzigen."
+ },
+ "heading_size": {
+ "label": "Grootte kop",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ },
+ "options__4": {
+ "label": "Extra groot"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Standaard"
+ },
+ "options__2": {
+ "label": "Boog"
+ },
+ "options__3": {
+ "label": "Amorf"
+ },
+ "options__4": {
+ "label": "Chevronpijl naar links"
+ },
+ "options__5": {
+ "label": "Chevronpijl naar rechts"
+ },
+ "options__6": {
+ "label": "Ruit"
+ },
+ "options__7": {
+ "label": "Parallellogram"
+ },
+ "options__8": {
+ "label": "Rond"
+ },
+ "label": "Vorm afbeelding",
+ "info": "Kaarten in standaardstijl hebben geen randen wanneer een afbeeldingsvorm actief is."
+ },
+ "animation": {
+ "content": "Animaties",
+ "image_behavior": {
+ "options__1": {
+ "label": "Geen"
+ },
+ "options__2": {
+ "label": "Bewegingen van de omgeving"
+ },
+ "label": "Gedrag van afbeeldingen",
+ "options__3": {
+ "label": "Vaste positie op de achtergrond"
+ },
+ "options__4": {
+ "label": "Inzoomen bij scrollen"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Aankondigingsbalk",
+ "blocks": {
+ "announcement": {
+ "name": "Aankondiging",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_alignment": {
+ "label": "Tekstuitlijning",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Rechts"
+ }
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Aankondigingen automatisch draaien"
+ },
+ "change_slides_speed": {
+ "label": "Wijzig elke"
+ },
+ "header__1": {
+ "content": "Pictogrammen voor social media",
+ "info": "Als je socialmedia-accounts wilt weergeven, koppel je ze in de [thema-instellingen](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Aankondigingen"
+ },
+ "show_social": {
+ "label": "Pictogrammen op bureaublad weergeven"
+ },
+ "header__3": {
+ "content": "Kiezer voor land/regio",
+ "info": "Ga naar de [marktinstellingen](/admin/settings/markets) om een land/regio toe te voegen."
+ },
+ "enable_country_selector": {
+ "label": "Kiezer voor land/regio inschakelen"
+ },
+ "header__4": {
+ "content": "Taalkiezer",
+ "info": "Ga naar je [taalinstellingen](/admin/settings/languages) om een taal toe te voegen."
+ },
+ "enable_language_selector": {
+ "label": "Taalkiezer inschakelen"
+ }
+ },
+ "presets": {
+ "name": "Aankondigingsbalk"
+ }
+ },
+ "collage": {
+ "name": "Collage",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ },
+ "desktop_layout": {
+ "label": "Opmaak bureaublad",
+ "options__1": {
+ "label": "Groot blok links"
+ },
+ "options__2": {
+ "label": "Groot blok rechts"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobiele opmaak",
+ "options__1": {
+ "label": "Collage"
+ },
+ "options__2": {
+ "label": "Kolom"
+ }
+ },
+ "card_styles": {
+ "label": "Kaartstijl",
+ "info": "Product-, collectie- en blogkaartstijlen kunnen worden bijgewerkt in de thema-instellingen.",
+ "options__1": {
+ "label": "Individuele kaartstijlen gebruiken"
+ },
+ "options__2": {
+ "label": "Alles vormgeven als productkaarten"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Afbeelding",
+ "settings": {
+ "image": {
+ "label": "Afbeelding"
+ }
+ }
+ },
+ "product": {
+ "name": "Product",
+ "settings": {
+ "product": {
+ "label": "Product"
+ },
+ "secondary_background": {
+ "label": "Secundaire achtergrond tonen"
+ },
+ "second_image": {
+ "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt"
+ }
+ }
+ },
+ "collection": {
+ "name": "Collectie",
+ "settings": {
+ "collection": {
+ "label": "Collectie"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Coverafbeelding"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Video's worden afgespeeld in een pop-up als de sectie andere blokken bevat.",
+ "placeholder": "Gebruik een URL van YouTube of Vimeo"
+ },
+ "description": {
+ "label": "Alt-tekst video",
+ "info": "Geef een beschrijving van de video voor klanten die schermlezers gebruiken. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collage"
+ }
+ },
+ "collection-list": {
+ "name": "Collectielijst",
+ "settings": {
+ "title": {
+ "label": "Opschrift"
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "info": "Voeg afbeeldingen toe door je collecties bij te werken. [Meer informatie](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Swipen op mobiel inschakelen"
+ },
+ "show_view_all": {
+ "label": "Schakel de knop 'Alles weergeven' in als de lijst meer collecties bevat dan wordt getoond"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktop"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiel"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiel",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Collectie",
+ "settings": {
+ "collection": {
+ "label": "Collectie"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Collectielijst"
+ }
+ },
+ "contact-form": {
+ "name": "Contactformulier",
+ "presets": {
+ "name": "Contactformulier"
+ }
+ },
+ "custom-liquid": {
+ "name": "Aangepaste Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid-code",
+ "info": "Voeg app-fragmenten of andere code toe om geavanceerde aanpassingen aan te maken. [Meer informatie](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Aangepaste Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blogberichten",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Aantal weer te geven blogposts"
+ },
+ "show_view_all": {
+ "label": "Schakel de knop 'Alles weergeven' in als de blog meer blogberichten bevat dan wordt getoond"
+ },
+ "show_image": {
+ "label": "Uitgelichte afbeelding weergeven",
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 3:2. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Datum weergeven"
+ },
+ "show_author": {
+ "label": "Auteur weergeven"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktop"
+ }
+ },
+ "presets": {
+ "name": "Blogberichten"
+ }
+ },
+ "featured-collection": {
+ "name": "Uitgelichte collectie",
+ "settings": {
+ "title": {
+ "label": "Opschrift"
+ },
+ "collection": {
+ "label": "Collectie"
+ },
+ "products_to_show": {
+ "label": "Maximum aantal producten om te tonen"
+ },
+ "show_view_all": {
+ "label": "Schakel Alles weergeven in als een collectie meer producten heeft dan wordt getoond"
+ },
+ "header": {
+ "content": "Productkaart"
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt"
+ },
+ "show_vendor": {
+ "label": "Verkoper weergeven"
+ },
+ "show_rating": {
+ "label": "Geef productbeoordeling weer",
+ "info": "Voeg een app toe voor productbeoordelingen om deze weer te geven. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktop"
+ },
+ "description": {
+ "label": "Beschrijving"
+ },
+ "show_description": {
+ "label": "Collectiebeschrijving van het beheercentrum weergeven"
+ },
+ "description_style": {
+ "label": "Stijl beschrijving",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Subtitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Knop Omlijnen"
+ },
+ "options__3": {
+ "label": "Knop Effen"
+ },
+ "label": "Stijl 'Alles weergeven'"
+ },
+ "enable_desktop_slider": {
+ "label": "Carrousel op desktop inschakelen"
+ },
+ "full_width": {
+ "label": "Volledige breedte voor producten gebruiken"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiel"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiel",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Swipen op mobiel inschakelen"
+ },
+ "enable_quick_buy": {
+ "label": "Knop 'Snel toevoegen' inschakelen",
+ "info": "Optimaal met een pop-up of een winkelwagentype."
+ }
+ },
+ "presets": {
+ "name": "Uitgelichte collectie"
+ }
+ },
+ "footer": {
+ "name": "Voettekst",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Geeft alleen de bovenste menuopties weer"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ },
+ "subtext": {
+ "label": "Subtekst"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Merkinformatie",
+ "settings": {
+ "paragraph": {
+ "content": "In dit blok komt informatie over je merk. [Bewerk merkinformatie.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Pictogrammen voor social media"
+ },
+ "show_social": {
+ "label": "Pictogrammen social media weergeven",
+ "info": "Als je je socialmedia-accounts wilt weergeven, koppel je ze in de [thema-instellingen](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Aanmelding voor het ontvangen van e-mail weergeven"
+ },
+ "newsletter_heading": {
+ "label": "Opschrift"
+ },
+ "header__1": {
+ "content": "Aanmelding voor het ontvangen van e-mail",
+ "info": "Abonnees die worden toegevoegd aan je 'geaccepteerde marketing'-klantenlijst. [Meer informatie](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Pictogrammen voor social media",
+ "info": "Als je je socialmedia-accounts wilt weergeven, koppel je ze in de [thema-instellingen](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Pictogrammen social media weergeven"
+ },
+ "header__3": {
+ "content": "Kiezer voor land/regio"
+ },
+ "header__4": {
+ "info": "Ga naar de [marktinstellingen](/admin/settings/markets) om een land/regio toe te voegen."
+ },
+ "enable_country_selector": {
+ "label": "Kiezer voor land/regio inschakelen"
+ },
+ "header__5": {
+ "content": "Taalkiezer"
+ },
+ "header__6": {
+ "info": "Ga naar je [language settings.](/admin/settings/languages) om een taal toe te voegen"
+ },
+ "enable_language_selector": {
+ "label": "Taalkiezer inschakelen"
+ },
+ "header__7": {
+ "content": "Betaalmethoden"
+ },
+ "payment_enable": {
+ "label": "Betalingspictogrammen weergeven"
+ },
+ "margin_top": {
+ "label": "Bovenmarge"
+ },
+ "header__8": {
+ "content": "Links naar beleid",
+ "info": "Ga naar je [beleidsinstellingen ](/admin/settings/legal) om winkelbeleid toe te voegen."
+ },
+ "show_policy": {
+ "label": "Links naar beleid tonen"
+ },
+ "header__9": {
+ "content": "Volgen op Shop",
+ "info": "Klanten kunnen de winkel alleen vanuit de webshop volgen in de Shop-app als Shop Pay is ingeschakeld. [Meer informatie](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "'Volgen op Shop' inschakelen"
+ }
+ }
+ },
+ "header": {
+ "name": "Koptekst",
+ "settings": {
+ "logo_position": {
+ "label": "Positie van logo voor desktop",
+ "options__1": {
+ "label": "Midden links"
+ },
+ "options__2": {
+ "label": "Linksboven"
+ },
+ "options__3": {
+ "label": "Centraal boven"
+ },
+ "options__4": {
+ "label": "Centraal midden"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Scheidingsregel tonen"
+ },
+ "margin_bottom": {
+ "label": "Ondermarge"
+ },
+ "menu_type_desktop": {
+ "label": "Menutype voor desktop",
+ "info": "Menutype wordt automatisch aangepast voor mobiele apparaten.",
+ "options__1": {
+ "label": "Vervolgkeuzelijst"
+ },
+ "options__2": {
+ "label": "Megamenu"
+ },
+ "options__3": {
+ "label": "Lade"
+ }
+ },
+ "mobile_layout": {
+ "content": "Opmaak voor mobiel"
+ },
+ "mobile_logo_position": {
+ "label": "Positie logo op mobiel",
+ "options__1": {
+ "label": "Midden"
+ },
+ "options__2": {
+ "label": "Links"
+ }
+ },
+ "logo_help": {
+ "content": "Bewerk je logo in [thema-instellingen](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Sticky header",
+ "options__1": {
+ "label": "Geen"
+ },
+ "options__2": {
+ "label": "Bij omhoog scrollen"
+ },
+ "options__3": {
+ "label": "Altijd"
+ },
+ "options__4": {
+ "label": "Altijd; verklein logo"
+ }
+ },
+ "header__3": {
+ "content": "Kiezer voor land/regio"
+ },
+ "header__4": {
+ "info": "Ga naar de [marktinstellingen](/admin/settings/markets) om een land/regio toe te voegen."
+ },
+ "enable_country_selector": {
+ "label": "Kiezer voor land/regio inschakelen"
+ },
+ "header__5": {
+ "content": "Taalkiezer"
+ },
+ "header__6": {
+ "info": "Ga naar je [taalinstellingen](/admin/settings/languages) om een taal toe te voegen."
+ },
+ "enable_language_selector": {
+ "label": "Taalkiezer inschakelen"
+ },
+ "header__1": {
+ "content": "Kleur"
+ },
+ "menu_color_scheme": {
+ "label": "Kleurschemamenu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Bannerafbeelding",
+ "settings": {
+ "image": {
+ "label": "Eerste afbeelding"
+ },
+ "image_2": {
+ "label": "Tweede afbeelding"
+ },
+ "stack_images_on_mobile": {
+ "label": "Afbeeldingen stapelen op mobiel"
+ },
+ "show_text_box": {
+ "label": "Container op desktop weergeven"
+ },
+ "image_overlay_opacity": {
+ "label": "Dekking van afbeeldingsoverlay"
+ },
+ "show_text_below": {
+ "label": "Container op mobiel weergeven"
+ },
+ "image_height": {
+ "label": "Hoogte van de banner",
+ "options__1": {
+ "label": "Aanpassen aan eerste afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 3:2. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Groot"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Linksboven"
+ },
+ "options__2": {
+ "label": "Centraal boven"
+ },
+ "options__3": {
+ "label": "Rechtsboven"
+ },
+ "options__4": {
+ "label": "Midden links"
+ },
+ "options__5": {
+ "label": "Centraal midden"
+ },
+ "options__6": {
+ "label": "Midden rechts"
+ },
+ "options__7": {
+ "label": "Linksonder"
+ },
+ "options__8": {
+ "label": "Centraal onder"
+ },
+ "options__9": {
+ "label": "Rechtsonder"
+ },
+ "label": "Positie van content op desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Centraal"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op desktop"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Centraal"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op mobiel"
+ },
+ "mobile": {
+ "content": "Opmaak op mobiel"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Opschrift",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekstkleur",
+ "settings": {
+ "text": {
+ "label": "Beschrijving"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Subtitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ },
+ "label": "Tekststijl"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knoppen",
+ "settings": {
+ "button_label_1": {
+ "label": "Eerste knoplabel",
+ "info": "Laat het label leeg om de knop te verbergen."
+ },
+ "button_link_1": {
+ "label": "Eerste knoplink"
+ },
+ "button_style_secondary_1": {
+ "label": "Gebruik de knopstijl Omlijnen"
+ },
+ "button_label_2": {
+ "label": "Tweede knoplabel",
+ "info": "Laat het label leeg om de knop te verbergen."
+ },
+ "button_link_2": {
+ "label": "Tweede knoplink"
+ },
+ "button_style_secondary_2": {
+ "label": "Gebruik de knopstijl Omlijnen"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bannerafbeelding"
+ }
+ },
+ "image-with-text": {
+ "name": "Afbeelding met tekst",
+ "settings": {
+ "image": {
+ "label": "Afbeelding"
+ },
+ "height": {
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "label": "Hoogte afbeelding",
+ "options__4": {
+ "label": "Groot"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Afbeelding eerst"
+ },
+ "options__2": {
+ "label": "Tweede afbeelding"
+ },
+ "label": "Plaatsing van afbeelding op desktop",
+ "info": "Afbeelding eerst is de standaard opmaak voor mobiel."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ },
+ "label": "Breedte van bureaubladafbeelding",
+ "info": "De afbeelding wordt automatisch geoptimaliseerd voor mobiel."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op desktop",
+ "options__2": {
+ "label": "Centraal"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Boven"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Onder"
+ },
+ "label": "Positie van content op desktop"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Geen overlappingen"
+ },
+ "options__2": {
+ "label": "Overlappingen"
+ },
+ "label": "Content-opmaak"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op mobiel",
+ "options__2": {
+ "label": "Centraal"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Opschrift",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Content"
+ },
+ "text_style": {
+ "label": "Tekststijl",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Subtitel"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Knop",
+ "settings": {
+ "button_label": {
+ "label": "Knop met tekstlabel",
+ "info": "Laat het label leeg om de knop te verbergen."
+ },
+ "button_link": {
+ "label": "Knop met link"
+ },
+ "outline_button": {
+ "label": "Gebruik de knopstijl Omlijnen"
+ }
+ }
+ },
+ "caption": {
+ "name": "Bijschrift",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Tekststijl",
+ "options__1": {
+ "label": "Subtitel"
+ },
+ "options__2": {
+ "label": "Hoofdletters"
+ }
+ },
+ "caption_size": {
+ "label": "Tekstgrootte",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Afbeelding met tekst"
+ }
+ },
+ "main-article": {
+ "name": "Blogpost",
+ "blocks": {
+ "featured_image": {
+ "name": "Uitgelichte afbeelding",
+ "settings": {
+ "image_height": {
+ "label": "Hoogte van uitgelichte afbeelding",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 16:9. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Groot"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel",
+ "settings": {
+ "blog_show_date": {
+ "label": "Datum weergeven"
+ },
+ "blog_show_author": {
+ "label": "Auteur weergeven"
+ }
+ }
+ },
+ "content": {
+ "name": "Inhoud"
+ },
+ "share": {
+ "name": "Delen",
+ "settings": {
+ "featured_image_info": {
+ "content": "De uitgelichte afbeelding van de pagina wordt weergegeven als een voorbeeldafbeelding als je een link in je posts op social media plaatst. [Meer informatie](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Een winkelnaam en beschrijving worden weergegeven in de voorbeeldafbeelding. [Meer informatie](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blogberichten",
+ "settings": {
+ "header": {
+ "content": "Kaart blogbericht"
+ },
+ "show_image": {
+ "label": "Uitgelichte afbeelding weergeven"
+ },
+ "paragraph": {
+ "content": "Wijzig uittreksels door je blogposts bij te werken. [Meer informatie](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Datum weergeven"
+ },
+ "show_author": {
+ "label": "Auteur weergeven"
+ },
+ "layout": {
+ "label": "Opmaak voor desktop",
+ "options__1": {
+ "label": "Grid"
+ },
+ "options__2": {
+ "label": "Collage"
+ },
+ "info": "Op mobiel worden berichten gestapeld."
+ },
+ "image_height": {
+ "label": "Hoogte van uitgelichte afbeelding",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "options__4": {
+ "label": "Groot"
+ },
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 3:2. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotaal",
+ "blocks": {
+ "subtotal": {
+ "name": "Subtotaalprijs"
+ },
+ "buttons": {
+ "name": "Checkoutknop"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Artikelen"
+ },
+ "main-collection-banner": {
+ "name": "Collectiebanner",
+ "settings": {
+ "paragraph": {
+ "content": "Voeg een beschrijving of afbeelding toe door je collectie bij te werken. [Meer informatie](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Collectiebeschrijving weergeven"
+ },
+ "show_collection_image": {
+ "label": "Collectieafbeelding weergeven",
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 16:9. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Productgrid",
+ "settings": {
+ "products_per_page": {
+ "label": "Producten per pagina"
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt"
+ },
+ "show_vendor": {
+ "label": "Verkoper weergeven"
+ },
+ "enable_tags": {
+ "label": "Filteren inschakelen",
+ "info": "Pas filters aan met de Search & Discovery-app. [Meer informatie](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Filteren inschakelen",
+ "info": "Pas filters aan met de Search & Discovery-app. [Meer informatie](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Sortering inschakelen"
+ },
+ "header__1": {
+ "content": "Filteren en sorteren"
+ },
+ "header__3": {
+ "content": "Productkaart"
+ },
+ "show_rating": {
+ "label": "Geef productbeoordeling weer",
+ "info": "Voeg een app toe voor productbeoordelingen om deze weer te geven. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktop"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiel"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiel",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ },
+ "enable_quick_buy": {
+ "label": "Knop 'Snel toevoegen' inschakelen",
+ "info": "Optimaal met een pop-up of een winkelwagentype."
+ },
+ "filter_type": {
+ "label": "Opmaak voor desktopfilter",
+ "options__1": {
+ "label": "Horizontaal"
+ },
+ "options__2": {
+ "label": "Verticaal"
+ },
+ "options__3": {
+ "label": "Lade"
+ },
+ "info": "Lade is de standaardopmaak voor mobiele apparaten"
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Pagina collectielijst",
+ "settings": {
+ "title": {
+ "label": "Opschrift"
+ },
+ "sort": {
+ "label": "Collecties sorteren op:",
+ "options__1": {
+ "label": "Alfabetisch: A-Z"
+ },
+ "options__2": {
+ "label": "Alfabetisch: Z-A"
+ },
+ "options__3": {
+ "label": "Datum: nieuw naar oud"
+ },
+ "options__4": {
+ "label": "Datum: oud naar nieuw"
+ },
+ "options__5": {
+ "label": "Aantal producten, van hoog naar laag"
+ },
+ "options__6": {
+ "label": "Aantal producten, van laag naar hoog"
+ }
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "info": "Voeg afbeeldingen toe door je collecties bij te werken. [Meer informatie](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktopcomputers"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiele apparaten"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiele apparaten",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Pagina"
+ },
+ "main-password-footer": {
+ "name": "Wachtwoord voettekst"
+ },
+ "main-password-header": {
+ "name": "Wachtwoord koptekst",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Bewerk je logo in thema-instellingen."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Productinformatie",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "TextStyle",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Subtitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Prijs"
+ },
+ "quantity_selector": {
+ "name": "Hoeveelheidselector"
+ },
+ "variant_picker": {
+ "name": "Variantkiezer",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Vervolgkeuzelijst"
+ },
+ "options__2": {
+ "label": "Pillen"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Koopknoppen",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Dynamische checkoutknoppen weergeven",
+ "info": "Bij de betaalmethoden die bij je winkel beschikbaar zijn, zien klanten de optie die hun voorkeur heeft, zoals PayPal of Apple Pay. [Learn more](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Formulier voor gegevens van ontvanger weergeven voor cadeaubonnen",
+ "info": "Hiermee kunnen kopers op een geplande datum een cadeaubon met een persoonlijk bericht sturen. [Meer informatie](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Beschikbaarheid voor afhaling"
+ },
+ "description": {
+ "name": "Beschrijving"
+ },
+ "share": {
+ "name": "Delen",
+ "settings": {
+ "featured_image_info": {
+ "content": "De uitgelichte afbeelding van de pagina wordt weergegeven als een voorbeeldafbeelding als je een link in je posts op social media plaatst. [Meer informatie](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Een winkelnaam en beschrijving worden weergegeven in de voorbeeldafbeelding. [Meer informatie](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Inklapbare rij",
+ "settings": {
+ "heading": {
+ "info": "Gebruik een kop die de content verklaart.",
+ "label": "Opschrift"
+ },
+ "content": {
+ "label": "Content rij"
+ },
+ "page": {
+ "label": "Content rij vanaf pagina"
+ },
+ "icon": {
+ "label": "Pictogram",
+ "options__1": {
+ "label": "Geen"
+ },
+ "options__2": {
+ "label": "Apple"
+ },
+ "options__3": {
+ "label": "Banaan"
+ },
+ "options__4": {
+ "label": "Fles"
+ },
+ "options__5": {
+ "label": "Vak"
+ },
+ "options__6": {
+ "label": "Wortel"
+ },
+ "options__7": {
+ "label": "Chatbubbel"
+ },
+ "options__8": {
+ "label": "Vinkje"
+ },
+ "options__9": {
+ "label": "Klembord"
+ },
+ "options__10": {
+ "label": "Zuivel"
+ },
+ "options__11": {
+ "label": "Zuivelvrij"
+ },
+ "options__12": {
+ "label": "Droger"
+ },
+ "options__13": {
+ "label": "Oog"
+ },
+ "options__14": {
+ "label": "Vuur"
+ },
+ "options__15": {
+ "label": "Glutenvrij"
+ },
+ "options__16": {
+ "label": "Hart"
+ },
+ "options__17": {
+ "label": "Strijkijzer"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Leder"
+ },
+ "options__20": {
+ "label": "Bliksemstraal"
+ },
+ "options__21": {
+ "label": "Lipstick"
+ },
+ "options__22": {
+ "label": "Slot"
+ },
+ "options__23": {
+ "label": "Kaart-pin"
+ },
+ "options__24": {
+ "label": "Zonder noten"
+ },
+ "options__25": {
+ "label": "Lange broeken"
+ },
+ "options__26": {
+ "label": "Print van klauw"
+ },
+ "options__27": {
+ "label": "Peper"
+ },
+ "options__28": {
+ "label": "Parfum"
+ },
+ "options__29": {
+ "label": "Vliegtuig"
+ },
+ "options__30": {
+ "label": "Planten"
+ },
+ "options__31": {
+ "label": "Prijskaartje"
+ },
+ "options__32": {
+ "label": "Vraagteken"
+ },
+ "options__33": {
+ "label": "Recyclen"
+ },
+ "options__34": {
+ "label": "Retourneren"
+ },
+ "options__35": {
+ "label": "Liniaal"
+ },
+ "options__36": {
+ "label": "Serveerschaal"
+ },
+ "options__37": {
+ "label": "Overhemd"
+ },
+ "options__38": {
+ "label": "Schoen"
+ },
+ "options__39": {
+ "label": "Silhouet"
+ },
+ "options__40": {
+ "label": "Sneeuwvlokje"
+ },
+ "options__41": {
+ "label": "Ster"
+ },
+ "options__42": {
+ "label": "Stopwatch"
+ },
+ "options__43": {
+ "label": "Vrachtwagen"
+ },
+ "options__44": {
+ "label": "Wassen"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-up",
+ "settings": {
+ "link_label": {
+ "label": "Link-label"
+ },
+ "page": {
+ "label": "Pagina"
+ }
+ }
+ },
+ "rating": {
+ "name": "Productbeoordeling",
+ "settings": {
+ "paragraph": {
+ "content": "Voeg een app toe voor productbeoordelingen om deze weer te geven. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Aanvullende producten",
+ "settings": {
+ "paragraph": {
+ "content": "Als je aanvullende producten wilt selecteren, voeg je de Search en Zichtbaarheid-app toe. [Meer informatie](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Koptekst"
+ },
+ "make_collapsible_row": {
+ "label": "Weergeven als inklapbare rij"
+ },
+ "icon": {
+ "info": "Zichtbaar wanneer de inklapbare rij wordt weergegeven."
+ },
+ "product_list_limit": {
+ "label": "Maximaal aantal weer te geven producten"
+ },
+ "products_per_page": {
+ "label": "Aantal producten per pagina"
+ },
+ "pagination_style": {
+ "label": "Pagineringsstijl",
+ "options": {
+ "option_1": "Stippen",
+ "option_2": "Teller",
+ "option_3": "Getallen"
+ }
+ },
+ "product_card": {
+ "heading": "Productkaart"
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options": {
+ "option_1": "Staand",
+ "option_2": "Vierkant"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Knop 'Snel toevoegen' inschakelen"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Pictogram met tekst",
+ "settings": {
+ "layout": {
+ "label": "Opmaak",
+ "options__1": {
+ "label": "Horizontaal"
+ },
+ "options__2": {
+ "label": "Verticaal"
+ }
+ },
+ "content": {
+ "label": "Inhoud",
+ "info": "Kies een pictogram of voeg een afbeelding toe voor elke kolom of rij."
+ },
+ "heading": {
+ "info": "Laat het opschriftlabel leeg om de kolom met pictogrammen te verbergen."
+ },
+ "icon_1": {
+ "label": "Eerste pictogram"
+ },
+ "image_1": {
+ "label": "Eerste afbeelding"
+ },
+ "heading_1": {
+ "label": "Eerste opschrift"
+ },
+ "icon_2": {
+ "label": "Tweede pictogram"
+ },
+ "image_2": {
+ "label": "Tweede afbeelding"
+ },
+ "heading_2": {
+ "label": "Tweede opschrift"
+ },
+ "icon_3": {
+ "label": "Derde pictogram"
+ },
+ "image_3": {
+ "label": "Derde afbeelding"
+ },
+ "heading_3": {
+ "label": "Derde opschrift"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Tekststijl",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Ondertitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Voorraadstatus",
+ "settings": {
+ "text_style": {
+ "label": "Tekststijl",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Ondertitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Drempelwaarde lage voorraad",
+ "info": "Kies 0 als je altijd 'Op voorraad' wilt weergeven als er voorraad beschikbaar is."
+ },
+ "show_inventory_quantity": {
+ "label": "Voorraadhoeveelheid weergeven"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Media",
+ "info": "Meer informatie over [mediatypen](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Video-looping inschakelen"
+ },
+ "enable_sticky_info": {
+ "label": "Sticky content op desktop inschakelen"
+ },
+ "hide_variants": {
+ "label": "De media van andere varianten verbergen na het selecteren van een variant"
+ },
+ "gallery_layout": {
+ "label": "Opmaak bureaublad",
+ "options__1": {
+ "label": "Gestapeld"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ },
+ "options__3": {
+ "label": "Miniatuurafbeeldingen"
+ },
+ "options__4": {
+ "label": "Carrousel van miniaturen"
+ }
+ },
+ "media_size": {
+ "label": "Media op desktopbreedte",
+ "info": "Media wordt automatisch geoptimaliseerd voor mobiel.",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Mobiele opmaak",
+ "options__1": {
+ "label": "2 kolommen"
+ },
+ "options__2": {
+ "label": "Miniaturen weergeven"
+ },
+ "options__3": {
+ "label": "Miniaturen verbergen"
+ }
+ },
+ "media_position": {
+ "label": "Positie van media voor desktop",
+ "info": "De positie wordt automatisch geoptimaliseerd voor mobiel.",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Rechts"
+ }
+ },
+ "image_zoom": {
+ "label": "Inzoomen op afbeelding",
+ "info": "Standaarden voor klikken en aanwijzen om Lightbox te openen op mobiel.",
+ "options__1": {
+ "label": "Lightbox openen"
+ },
+ "options__2": {
+ "label": "Klikken en aanwijzen"
+ },
+ "options__3": {
+ "label": "Geen zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Beperk media tot schermhoogte"
+ },
+ "media_fit": {
+ "label": "Media passen",
+ "options__1": {
+ "label": "Origineel"
+ },
+ "options__2": {
+ "label": "Opvullen"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Zoekresultaten",
+ "settings": {
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt"
+ },
+ "show_vendor": {
+ "label": "Verkoper weergeven"
+ },
+ "header__1": {
+ "content": "Productkaart"
+ },
+ "header__2": {
+ "content": "Blogkaart",
+ "info": "Blogkaartstijlen zijn ook van toepassing op paginakaarten in zoekresultaten. Werk je thema-instellingen bij om van kaartstijl te veranderen."
+ },
+ "article_show_date": {
+ "label": "Datum weergeven"
+ },
+ "article_show_author": {
+ "label": "Auteur weergeven"
+ },
+ "show_rating": {
+ "label": "Geef productbeoordeling weer",
+ "info": "Voeg een app toe voor productbeoordelingen om deze weer te geven. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktop"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiel"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiel",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Meerdere kolommen",
+ "settings": {
+ "title": {
+ "label": "Opschrift"
+ },
+ "image_width": {
+ "label": "Breedte afbeelding",
+ "options__1": {
+ "label": "Een derde van breedte van kolom"
+ },
+ "options__2": {
+ "label": "Halve breedte van kolom"
+ },
+ "options__3": {
+ "label": "Volledige breedte van kolom"
+ }
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Square"
+ },
+ "options__4": {
+ "label": "Cirkel"
+ }
+ },
+ "column_alignment": {
+ "label": "Uitlijning kolom",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ }
+ },
+ "background_style": {
+ "label": "Secundaire achtergrond",
+ "options__1": {
+ "label": "Geen"
+ },
+ "options__2": {
+ "label": "Weergeven als kolomachtergrond"
+ }
+ },
+ "button_label": {
+ "label": "Knop met tekstlabel"
+ },
+ "button_link": {
+ "label": "Knop met link"
+ },
+ "swipe_on_mobile": {
+ "label": "Swipen op mobiel inschakelen"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktop"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiel"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiel",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Kolom",
+ "settings": {
+ "image": {
+ "label": "Afbeelding"
+ },
+ "title": {
+ "label": "Opschrift"
+ },
+ "text": {
+ "label": "Beschrijving"
+ },
+ "link_label": {
+ "label": "Link-label"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Meerdere kolommen"
+ }
+ },
+ "newsletter": {
+ "name": "Aanmelding voor het ontvangen van e-mail",
+ "settings": {
+ "full_width": {
+ "label": "Volledige breedte voor sectie gebruiken"
+ },
+ "paragraph": {
+ "content": "Voor elk abonnement via e-mail wordt een klantaccount aangemaakt. [Meer informatie](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Opschrift",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Subkop",
+ "settings": {
+ "paragraph": {
+ "label": "Beschrijving"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-mailformulier"
+ }
+ },
+ "presets": {
+ "name": "Aanmelding voor het ontvangen van e-mail"
+ }
+ },
+ "page": {
+ "name": "Pagina",
+ "settings": {
+ "page": {
+ "label": "Pagina"
+ }
+ },
+ "presets": {
+ "name": "Pagina"
+ }
+ },
+ "rich-text": {
+ "name": "Tekst met opmaak",
+ "settings": {
+ "full_width": {
+ "label": "Volledige breedte voor sectie gebruiken"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Positie van content op desktop",
+ "info": "De positie wordt automatisch geoptimaliseerd voor mobiel."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Content uitlijnen"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Opschrift",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekstkleur",
+ "settings": {
+ "text": {
+ "label": "Beschrijving"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knoppen",
+ "settings": {
+ "button_label_1": {
+ "label": "Eerste knoplabel",
+ "info": "Laat het label leeg om de knop te verbergen."
+ },
+ "button_link_1": {
+ "label": "Eerste knoplink"
+ },
+ "button_style_secondary_1": {
+ "label": "Gebruik de knopstijl Omlijnen"
+ },
+ "button_label_2": {
+ "label": "Tweede knoplabel",
+ "info": "Laat het label leeg om de knop te verbergen."
+ },
+ "button_link_2": {
+ "label": "Tweede knoplink"
+ },
+ "button_style_secondary_2": {
+ "label": "Gebruik de knopstijl Omlijnen"
+ }
+ }
+ },
+ "caption": {
+ "name": "Bijschrift",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Tekststijl",
+ "options__1": {
+ "label": "Ondertitel"
+ },
+ "options__2": {
+ "label": "Hoofdletters"
+ }
+ },
+ "caption_size": {
+ "label": "Tekstgrootte",
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Tekst met opmaak"
+ }
+ },
+ "apps": {
+ "name": "Apps",
+ "settings": {
+ "include_margins": {
+ "label": "Maak sectiemarges hetzelfde als thema"
+ }
+ },
+ "presets": {
+ "name": "Apps"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ },
+ "cover_image": {
+ "label": "Coverafbeelding"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Een URL van YouTube of Vimeo gebruiken"
+ },
+ "description": {
+ "label": "Alt-tekst video",
+ "info": "Geef een beschrijving van de video voor klanten die schermlezers gebruiken. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Opvulling voor afbeeldingen toevoegen",
+ "info": "Selecteer de opvulling voor afbeeldingen als je niet wilt dat je coverafbeelding wordt bijgesneden."
+ },
+ "full_width": {
+ "label": "Volledige breedte voor sectie gebruiken"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Video continu herhalen"
+ },
+ "header__1": {
+ "content": "Door Shopify gehoste video"
+ },
+ "header__2": {
+ "content": "Of video via URL insluiten"
+ },
+ "header__3": {
+ "content": "Stijl"
+ },
+ "paragraph": {
+ "content": "Wordt weergegeven wanneer er geen door Shopify gehoste video is geselecteerd."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Uitgelicht product",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "TextStyle",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Subtitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Prijs"
+ },
+ "quantity_selector": {
+ "name": "Hoeveelheidskiezer"
+ },
+ "variant_picker": {
+ "name": "Variantkiezer",
+ "settings": {
+ "picker_type": {
+ "label": "Type",
+ "options__1": {
+ "label": "Vervolgkeuzelijst"
+ },
+ "options__2": {
+ "label": "Keuzeopties"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Koopknoppen",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Dynamische checkout-knoppen weergeven",
+ "info": "Bij de betaalmethoden die bij je winkel beschikbaar zijn, zien klanten de optie die hun voorkeur heeft, zoals PayPal of Apple Pay. [Meer informatie](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Beschrijving"
+ },
+ "share": {
+ "name": "Delen",
+ "settings": {
+ "featured_image_info": {
+ "content": "De uitgelichte afbeelding van de pagina wordt weergegeven als een voorbeeldafbeelding als je een link in je posts op social media plaatst. [Meer informatie](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Een winkelnaam en beschrijving worden weergegeven in de voorbeeldafbeelding. [Meer informatie](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Tekstkleur"
+ }
+ }
+ },
+ "rating": {
+ "name": "Productbeoordeling",
+ "settings": {
+ "paragraph": {
+ "content": "Voeg een app toe voor productbeoordelingen om deze weer te geven. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Tekststijl",
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Ondertitel"
+ },
+ "options__3": {
+ "label": "Hoofdletters"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Product"
+ },
+ "secondary_background": {
+ "label": "Secundaire achtergrond tonen"
+ },
+ "header": {
+ "content": "Media",
+ "info": "Meer informatie over [mediatypen](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Video-looping inschakelen"
+ },
+ "hide_variants": {
+ "label": "Niet geselecteerde media van varianten op bureaublad verbergen"
+ },
+ "media_position": {
+ "label": "Positie van media voor desktopcomputer",
+ "info": "De positie wordt automatisch geoptimaliseerd voor mobiele weergave.",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Rechts"
+ }
+ }
+ },
+ "presets": {
+ "name": "Uitgelicht product"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner voor aanmelding voor het ontvangen van e-mail",
+ "settings": {
+ "paragraph": {
+ "content": "Voor elk abonnement via e-mail wordt een klantaccount aangemaakt. [Meer informatie](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Achtergrondafbeelding"
+ },
+ "show_background_image": {
+ "label": "Achtergrondafbeelding weergeven"
+ },
+ "show_text_box": {
+ "label": "Container op desktop weergeven"
+ },
+ "image_overlay_opacity": {
+ "label": "Dekking van afbeeldingsoverlay"
+ },
+ "show_text_below": {
+ "label": "Content op mobiel onder de afbeelding weergeven",
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 16:9. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Hoogte van de banner",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "options__4": {
+ "label": "Groot"
+ },
+ "info": "Gebruik voor de beste resultaten een afbeelding met een beeldverhouding van 16:9. [Meer informatie](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "Midden links"
+ },
+ "options__5": {
+ "label": "Centraal midden"
+ },
+ "options__6": {
+ "label": "Midden rechts"
+ },
+ "options__7": {
+ "label": "Linksonder"
+ },
+ "options__8": {
+ "label": "Centraal onder"
+ },
+ "options__9": {
+ "label": "Rechtsonder"
+ },
+ "options__1": {
+ "label": "Linksboven"
+ },
+ "options__2": {
+ "label": "Centraal boven"
+ },
+ "options__3": {
+ "label": "Rechtsboven"
+ },
+ "label": "Positie van content op desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Centraal"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op desktop"
+ },
+ "header": {
+ "content": "Opmaak op mobiel"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Centraal"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op mobiel"
+ },
+ "color_scheme": {
+ "info": "Zichtbaar wanneer de container wordt weergegeven."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Opschrift",
+ "settings": {
+ "heading": {
+ "label": "Opschrift"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Paragraaf",
+ "settings": {
+ "paragraph": {
+ "label": "Beschrijving"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Subtitel"
+ },
+ "label": "Tekststijl"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-mailformulier"
+ }
+ },
+ "presets": {
+ "name": "Banner voor aanmelding voor het ontvangen van e-mail"
+ }
+ },
+ "slideshow": {
+ "name": "Diavoorstelling",
+ "settings": {
+ "layout": {
+ "label": "Opmaak",
+ "options__1": {
+ "label": "Volledige breedte"
+ },
+ "options__2": {
+ "label": "Grid"
+ }
+ },
+ "slide_height": {
+ "label": "Diahoogte",
+ "options__1": {
+ "label": "Aanpassen aan eerste afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "options__4": {
+ "label": "Groot"
+ }
+ },
+ "slider_visual": {
+ "label": "Pagineringsstijl",
+ "options__1": {
+ "label": "Teller"
+ },
+ "options__2": {
+ "label": "Stippen"
+ },
+ "options__3": {
+ "label": "Getallen"
+ }
+ },
+ "auto_rotate": {
+ "label": "Dia's automatisch draaien"
+ },
+ "change_slides_speed": {
+ "label": "Wijzig dia's elke"
+ },
+ "mobile": {
+ "content": "Mobiele opmaak"
+ },
+ "show_text_below": {
+ "label": "Content op mobiel onder de afbeelding weergeven"
+ },
+ "accessibility": {
+ "content": "Toegankelijkheid",
+ "label": "Beschrijving van diavoorstelling",
+ "info": "Geef een beschrijving van de diavoorstelling voor klanten die schermlezers gebruiken."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Dia",
+ "settings": {
+ "image": {
+ "label": "Afbeelding"
+ },
+ "heading": {
+ "label": "Kop"
+ },
+ "subheading": {
+ "label": "Subkop"
+ },
+ "button_label": {
+ "label": "Knoplabel",
+ "info": "Laat het label leeg om de knop te verbergen."
+ },
+ "link": {
+ "label": "Knoplink"
+ },
+ "secondary_style": {
+ "label": "Gebruik de knopstijl Omlijnen"
+ },
+ "box_align": {
+ "label": "Positie van content op desktop",
+ "options__1": {
+ "label": "Linksboven"
+ },
+ "options__2": {
+ "label": "Centraal boven"
+ },
+ "options__3": {
+ "label": "Rechtsboven"
+ },
+ "options__4": {
+ "label": "Midden links"
+ },
+ "options__5": {
+ "label": "Centraal midden"
+ },
+ "options__6": {
+ "label": "Midden rechts"
+ },
+ "options__7": {
+ "label": "Linksonder"
+ },
+ "options__8": {
+ "label": "Midden onder"
+ },
+ "options__9": {
+ "label": "Rechtsonder"
+ },
+ "info": "De positie wordt automatisch geoptimaliseerd voor mobiel."
+ },
+ "show_text_box": {
+ "label": "Container op desktop weergeven"
+ },
+ "text_alignment": {
+ "label": "Uitlijning van content op desktop",
+ "option_1": {
+ "label": "Links"
+ },
+ "option_2": {
+ "label": "Centraal"
+ },
+ "option_3": {
+ "label": "Rechts"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Dekking van afbeeldingsoverlay"
+ },
+ "text_alignment_mobile": {
+ "label": "Uitlijning van content op mobiel",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Centraal"
+ },
+ "options__3": {
+ "label": "Rechts"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Diavoorstelling"
+ }
+ },
+ "collapsible_content": {
+ "name": "Inklapbare content",
+ "settings": {
+ "caption": {
+ "label": "Bijschrift"
+ },
+ "heading": {
+ "label": "Kop"
+ },
+ "heading_alignment": {
+ "label": "Uitlijning kop",
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Centraal"
+ },
+ "options__3": {
+ "label": "Rechts"
+ }
+ },
+ "layout": {
+ "label": "Opmaak",
+ "options__1": {
+ "label": "Geen container"
+ },
+ "options__2": {
+ "label": "Container rij"
+ },
+ "options__3": {
+ "label": "Container sectie"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Kleurschema van container",
+ "info": "Zichtbaar wanneer de opmaak is ingesteld op rij- of sectiecontainer."
+ },
+ "open_first_collapsible_row": {
+ "label": "Eerste inklapbare rij uitklappen"
+ },
+ "header": {
+ "content": "Opmaak van afbeelding"
+ },
+ "image": {
+ "label": "Afbeelding"
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Groot"
+ }
+ },
+ "desktop_layout": {
+ "label": "Opmaak bureaublad",
+ "options__1": {
+ "label": "Afbeelding eerst"
+ },
+ "options__2": {
+ "label": "Afbeelding als tweede"
+ },
+ "info": "Afbeelding wordt als eerste weergegeven op mobiel."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Inklapbare rij",
+ "settings": {
+ "heading": {
+ "info": "Gebruik een kop die de content verklaart.",
+ "label": "Kop"
+ },
+ "row_content": {
+ "label": "Content rij"
+ },
+ "page": {
+ "label": "Content rij vanaf pagina"
+ },
+ "icon": {
+ "label": "Pictogram",
+ "options__1": {
+ "label": "Geen"
+ },
+ "options__2": {
+ "label": "Apple"
+ },
+ "options__3": {
+ "label": "Banaan"
+ },
+ "options__4": {
+ "label": "Fles"
+ },
+ "options__5": {
+ "label": "Vak"
+ },
+ "options__6": {
+ "label": "Wortel"
+ },
+ "options__7": {
+ "label": "Chatbubbel"
+ },
+ "options__8": {
+ "label": "Vinkje"
+ },
+ "options__9": {
+ "label": "Klembord"
+ },
+ "options__10": {
+ "label": "Zuivel"
+ },
+ "options__11": {
+ "label": "Zuivelvrij"
+ },
+ "options__12": {
+ "label": "Droger"
+ },
+ "options__13": {
+ "label": "Oog"
+ },
+ "options__14": {
+ "label": "Vuur"
+ },
+ "options__15": {
+ "label": "Glutenvrij"
+ },
+ "options__16": {
+ "label": "Hart"
+ },
+ "options__17": {
+ "label": "Strijkijzer"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Leder"
+ },
+ "options__20": {
+ "label": "Bliksemstraal"
+ },
+ "options__21": {
+ "label": "Lipstick"
+ },
+ "options__22": {
+ "label": "Slot"
+ },
+ "options__23": {
+ "label": "Kaart-pin"
+ },
+ "options__24": {
+ "label": "Zonder noten"
+ },
+ "options__25": {
+ "label": "Lange broeken"
+ },
+ "options__26": {
+ "label": "Print van klauw"
+ },
+ "options__27": {
+ "label": "Peper"
+ },
+ "options__28": {
+ "label": "Parfum"
+ },
+ "options__29": {
+ "label": "Vliegtuig"
+ },
+ "options__30": {
+ "label": "Planten"
+ },
+ "options__31": {
+ "label": "Prijskaartje"
+ },
+ "options__32": {
+ "label": "Vraagteken"
+ },
+ "options__33": {
+ "label": "Recyclen"
+ },
+ "options__34": {
+ "label": "Retourneren"
+ },
+ "options__35": {
+ "label": "Liniaal"
+ },
+ "options__36": {
+ "label": "Serveerschaal"
+ },
+ "options__37": {
+ "label": "Overhemd"
+ },
+ "options__38": {
+ "label": "Schoen"
+ },
+ "options__39": {
+ "label": "Silhouet"
+ },
+ "options__40": {
+ "label": "Sneeuwvlokje"
+ },
+ "options__41": {
+ "label": "Ster"
+ },
+ "options__42": {
+ "label": "Stopwatch"
+ },
+ "options__43": {
+ "label": "Vrachtwagen"
+ },
+ "options__44": {
+ "label": "Wassen"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Inklapbare content"
+ }
+ },
+ "main-account": {
+ "name": "Account"
+ },
+ "main-activate-account": {
+ "name": "Accountactivering"
+ },
+ "main-addresses": {
+ "name": "Adressen"
+ },
+ "main-login": {
+ "name": "Inloggen"
+ },
+ "main-order": {
+ "name": "Bestelling"
+ },
+ "main-register": {
+ "name": "Registratie"
+ },
+ "main-reset-password": {
+ "name": "Wachtwoord opnieuw instellen"
+ },
+ "related-products": {
+ "name": "Gerelateerde producten",
+ "settings": {
+ "heading": {
+ "label": "Koptekst"
+ },
+ "products_to_show": {
+ "label": "Maximaal aantal weer te geven producten"
+ },
+ "columns_desktop": {
+ "label": "Aantal kolommen op desktopcomputers"
+ },
+ "paragraph__1": {
+ "content": "In de loop van de tijd worden veranderingen en verbeteringen doorgevoerd dankzij dynamische aanbevelingen, waarbij gebruik wordt gemaakt van informatie over bestellingen en producten. [Meer informatie](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Productkaart"
+ },
+ "image_ratio": {
+ "label": "Breedte-/hoogteverhouding van afbeeldingen",
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Staand"
+ },
+ "options__3": {
+ "label": "Vierkant"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Tweede afbeelding weergeven als je de aanwijzer erboven houdt"
+ },
+ "show_vendor": {
+ "label": "Verkoper weergeven"
+ },
+ "show_rating": {
+ "label": "Productbeoordeling weergeven",
+ "info": "Voeg een app voor productbeoordelingen toe om een beoordeling weer te geven. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiele apparaten"
+ },
+ "columns_mobile": {
+ "label": "Aantal kolommen op mobiele apparaten",
+ "options__1": {
+ "label": "1 kolom"
+ },
+ "options__2": {
+ "label": "2 kolommen"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Meerdere rijen",
+ "settings": {
+ "image": {
+ "label": "Afbeelding"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Aanpassen aan afbeelding"
+ },
+ "options__2": {
+ "label": "Klein"
+ },
+ "options__3": {
+ "label": "Gemiddeld"
+ },
+ "options__4": {
+ "label": "Groot"
+ },
+ "label": "Hoogte afbeelding"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ },
+ "label": "Breedte van bureaubladafbeelding",
+ "info": "De afbeelding wordt automatisch geoptimaliseerd voor mobiel."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Klein"
+ },
+ "options__2": {
+ "label": "Gemiddeld"
+ },
+ "options__3": {
+ "label": "Groot"
+ },
+ "label": "Grootte koptekst"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Hoofdtekst"
+ },
+ "options__2": {
+ "label": "Ondertitel"
+ },
+ "label": "Tekststijl"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Knop Doorgetrokken"
+ },
+ "options__2": {
+ "label": "Knop Omlijnen"
+ },
+ "label": "Knopstijl"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op bureaublad"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Boven"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Onder"
+ },
+ "label": "Positie van content op bureaublad",
+ "info": "De positie wordt automatisch geoptimaliseerd voor mobiele weergave."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Afwisselend van links"
+ },
+ "options__2": {
+ "label": "Afwisselend van rechts"
+ },
+ "options__3": {
+ "label": "Links uitgelijnd"
+ },
+ "options__4": {
+ "label": "Rechts uitgelijnd"
+ },
+ "label": "Plaatsing van afbeelding op bureaublad",
+ "info": "De plaatsing wordt automatisch geoptimaliseerd voor mobiel."
+ },
+ "container_color_scheme": {
+ "label": "Kleurschema van container"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Links"
+ },
+ "options__2": {
+ "label": "Midden"
+ },
+ "options__3": {
+ "label": "Rechts"
+ },
+ "label": "Uitlijning van content op mobiel"
+ },
+ "header_mobile": {
+ "content": "Opmaak op mobiel"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Rij",
+ "settings": {
+ "image": {
+ "label": "Afbeelding"
+ },
+ "caption": {
+ "label": "Bijschrift"
+ },
+ "heading": {
+ "label": "Koptekst"
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_label": {
+ "label": "Knoplabel"
+ },
+ "button_link": {
+ "label": "Knoplink"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Meerdere rijen"
+ }
+ },
+ "quick-order-list": {
+ "name": "Snelle lijst met bestellingen",
+ "settings": {
+ "show_image": {
+ "label": "Afbeeldingen weergeven"
+ },
+ "show_sku": {
+ "label": "SKU's weergeven"
+ }
+ },
+ "presets": {
+ "name": "Snelle lijst met bestellingen"
+ }
+ }
+ }
+}
diff --git a/locales/pl.json b/locales/pl.json
new file mode 100644
index 0000000..91636e3
--- /dev/null
+++ b/locales/pl.json
@@ -0,0 +1,536 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Wejdź do sklepu, wpisując hasło:",
+ "login_password_button": "Wejdź, wpisując hasło",
+ "login_form_password_label": "Hasło",
+ "login_form_password_placeholder": "Twoje hasło",
+ "login_form_error": "Nieprawidłowe hasło!",
+ "login_form_submit": "Enter",
+ "admin_link_html": "Czy jesteś właścicielem sklepu? Zaloguj się tutaj ",
+ "powered_by_shopify_html": "Ten sklep będzie obsługiwany przez {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Udostępnij na Facebooku",
+ "share_on_twitter": "Tweetuj na Twitterze",
+ "share_on_pinterest": "Przypnij do tablicy Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "Youtube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Kontynuuj zakupy",
+ "pagination": {
+ "label": "Paginacja",
+ "page": "Strona {{ number }}",
+ "next": "Następna strona",
+ "previous": "Poprzednia strona"
+ },
+ "search": {
+ "search": "Szukaj",
+ "reset": "Wyczyść szukany termin"
+ },
+ "cart": {
+ "view": "Pokaż koszyk ({{ count }})",
+ "item_added": "Pozycję dodano do koszyka",
+ "view_empty_cart": "Pokaż koszyk"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopiuj link",
+ "share_url": "Link",
+ "success_message": "Link skopiowany do schowka",
+ "close": "Zamknij udostępnienie"
+ },
+ "slider": {
+ "of": "z",
+ "next_slide": "Przesuń w prawo",
+ "previous_slide": "Przesuń w lewo",
+ "name": "Suwak"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Dziękujemy za subskrypcję",
+ "button_label": "Subskrybuj"
+ },
+ "accessibility": {
+ "skip_to_text": "Przejdź do treści",
+ "close": "Zamknij",
+ "unit_price_separator": "na",
+ "vendor": "Dostawca:",
+ "error": "Błąd",
+ "refresh_page": "Zaznaczenie wyboru powoduje całkowite odświeżenie strony.",
+ "loading": "Ładowanie...",
+ "link_messages": {
+ "new_window": "Otwiera się w nowym oknie.",
+ "external": "Otwiera zewnętrzną stronę internetową."
+ },
+ "skip_to_product_info": "Pomiń, aby przejść do informacji o produkcie",
+ "total_reviews": "suma recenzji",
+ "star_reviews_info": "{{ rating_value }} z {{ rating_max }} gwiazdek",
+ "collapsible_content_title": "Zwijana treść",
+ "complementary_products": "Produkty uzupełniające"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Czytaj dalej: {{ title }}",
+ "moderated": "Pamiętaj, że komentarze muszą zostać zatwierdzone przed ich opublikowaniem.",
+ "comment_form_title": "Zostaw komentarz",
+ "name": "Nazwa",
+ "email": "E-mail",
+ "message": "Komentarz",
+ "post": "Opublikuj komentarz",
+ "back_to_blog": "Powrót do blogu",
+ "share": "Udostępnij ten artykuł",
+ "success": "Twój komentarz został opublikowany pomyślnie! Dziękujemy!",
+ "success_moderated": "Twój komentarz został opublikowany pomyślnie. Opublikujemy go za chwilę, ponieważ nasz blog jest moderowany.",
+ "comments": {
+ "one": "{{ count }} komentarz",
+ "other": "{{ count }} komentarze(-y)",
+ "few": "{{ count }} komentarze(-y)",
+ "many": "{{ count }} komentarze(-y)"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Przykładowy tytuł produktu",
+ "collection_title": "Nazwa Twojej kolekcji"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Dodaj do koszyka",
+ "description": "Opis",
+ "on_sale": "W promocji",
+ "share": "Udostępnij ten produkt",
+ "sold_out": "Wyprzedane",
+ "unavailable": "Niedostępny",
+ "vendor": "Dostawca",
+ "video_exit_message": "{{ title }} otwiera film w trybie pełnoekranowym w tym samym oknie.",
+ "xr_button": "Zobacz w swojej przestrzeni",
+ "xr_button_label": "„Widok w Twojej przestrzeni” wczytuje przedmiot do okna rzeczywistości rozszerzonej",
+ "quantity": {
+ "label": "Ilość",
+ "input_label": "Ilość dla {{ product }}",
+ "increase": "Zwiększ ilość dla {{ product }}",
+ "decrease": "Zmniejsz ilość dla {{ product }}",
+ "minimum_of": "Minimum {{ quantity }}",
+ "maximum_of": "Maksimum {{ quantity }}",
+ "multiples_of": "Przyrost o {{ quantity }}",
+ "in_cart_html": "{{ quantity }} w koszyku",
+ "note": "Wyświetl reguły ilości"
+ },
+ "price": {
+ "from_price_html": "Od {{ price }}",
+ "regular_price": "Cena regularna",
+ "sale_price": "Cena promocyjna",
+ "unit_price": "Cena jednostkowa"
+ },
+ "pickup_availability": {
+ "view_store_info": "Wyświetl informacje o sklepie",
+ "check_other_stores": "Sprawdź dostępność w innych sklepach",
+ "pick_up_available": "Odbiór jest możliwy",
+ "pick_up_available_at_html": "Odbiór możliwy w {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Odbiór w {{ location_name }} jest obecnie niemożliwy",
+ "unavailable": "Nie można załadować gotowości do odbioru",
+ "refresh": "Odśwież"
+ },
+ "media": {
+ "open_media": "Otwórz multimedia {{ index }} w oknie modalnym",
+ "play_model": "Uruchom przeglądarkę 3D",
+ "play_video": "Odtwórz film",
+ "gallery_viewer": "Przeglądarka galerii",
+ "load_image": "Załaduj obraz {{ index }} do widoku galerii",
+ "load_model": "Załaduj model 3D {{ index }} do widoku galerii",
+ "load_video": "Odtwórz film {{ index }} w widoku galerii",
+ "image_available": "Obraz {{ index }} jest teraz dostępny w widoku galerii"
+ },
+ "view_full_details": "Pokaż kompletne dane",
+ "include_taxes": "Z wliczonym podatkiem.",
+ "shipping_policy_html": "Koszt wysyłki obliczony przy realizacji zakupu.",
+ "choose_options": "Wybierz opcje",
+ "choose_product_options": "Wybierz opcje dla {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - niedostępny",
+ "variant_sold_out_or_unavailable": "Wariant wyprzedany lub niedostępny",
+ "inventory_in_stock": "W magazynie",
+ "inventory_in_stock_show_count": "{{ quantity }} w magazynie",
+ "inventory_low_stock": "Niski poziom zapasów",
+ "inventory_low_stock_show_count": "Niski poziom zapasów: pozostało {{ quantity }}",
+ "inventory_out_of_stock": "Zapas wyczerpany",
+ "inventory_out_of_stock_continue_selling": "W magazynie",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Ceny zależne od wolumenu",
+ "note": "Ceny zależne od wolumenu są dostępne",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/szt.",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "Warianty produktów"
+ },
+ "modal": {
+ "label": "Galeria multimediów"
+ },
+ "facets": {
+ "apply": "Zastosuj",
+ "clear": "Wyczyść",
+ "clear_all": "Usuń wszystko",
+ "from": "Od",
+ "filter_and_sort": "Filtrowanie i sortowanie",
+ "filter_by_label": "Filtr:",
+ "filter_button": "Filtr",
+ "max_price": "Najwyższa cena to {{ price }}",
+ "reset": "Zresetuj",
+ "sort_button": "Sortuj",
+ "sort_by_label": "Sortuj według:",
+ "to": "Do",
+ "filters_selected": {
+ "one": "Wybrane: {{ count }}",
+ "other": "Wybrane: {{ count }}",
+ "few": "Wybrane: {{ count }}",
+ "many": "Wybrane: {{ count }}"
+ },
+ "product_count": {
+ "one": "{{ product_count }} z {{ count }} produktu",
+ "other": "{{ product_count }} z {{ count }} produktów",
+ "few": "{{ product_count }} z {{ count }} produktów",
+ "many": "{{ product_count }} z {{ count }} produktów"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkty(-ów)",
+ "few": "{{ count }} produkty(-ów)",
+ "many": "{{ count }} produkty(-ów)"
+ },
+ "clear_filter": "Usuń filtr",
+ "filter_selected_accessibility": "{{ type }} (wybrano {{ count }} fitry(-ów))",
+ "show_more": "Pokaż więcej",
+ "show_less": "Pokaż mniej",
+ "filter_and_operator_subtitle": "Dopasuj wszystko"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nie znaleziono wyników dla “{{ terms }}”. Sprawdź pisownię lub użyj innego słowa lub zwrotu.",
+ "page": "Strona",
+ "title": "Wyniki wyszukiwania",
+ "results_with_count": {
+ "one": "{{ count }} wynik",
+ "other": "{{ count }} wyniki(-ów)",
+ "few": "{{ count }} wyniki(-ów)",
+ "many": "{{ count }} wyniki(-ów)"
+ },
+ "products": "Produkty",
+ "search_for": "Szukaj „{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "Znaleziono {{ count }} wynik dla \"{{ terms }}\"",
+ "other": "Znaleziono {{ count }} wyniki(-ów) dla \"{{ terms }}\"",
+ "few": "Znaleziono {{ count }} wyniki(-ów) dla \"{{ terms }}\"",
+ "many": "Znaleziono {{ count }} wyniki(-ów) dla \"{{ terms }}\""
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} strona",
+ "other": "{{ count }} stron(y)",
+ "few": "{{ count }} stron(y)",
+ "many": "{{ count }} stron(y)"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} podpowiedź",
+ "other": "Sugestie: {{ count }}",
+ "few": "Sugestie: {{ count }}",
+ "many": "Sugestie: {{ count }}"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkty(-ów)",
+ "few": "{{ count }} produkty(-ów)",
+ "many": "{{ count }} produkty(-ów)"
+ },
+ "suggestions": "Sugestie",
+ "pages": "Strony"
+ },
+ "cart": {
+ "cart": "Koszyk"
+ },
+ "contact": {
+ "form": {
+ "name": "Nazwa",
+ "email": "E-mail",
+ "phone": "Numer telefonu",
+ "comment": "Komentarz",
+ "send": "Wyślij",
+ "post_success": "Dziękujemy za skontaktowanie się z nami. Skontaktujemy się z Tobą tak szybko, jak to możliwe.",
+ "error_heading": "Dostosuj następujące dane:",
+ "title": "Formularz kontaktowy"
+ }
+ },
+ "404": {
+ "title": "Nie znaleziono strony",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Ogłoszenie",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} pozycja",
+ "other": "{{ count }} pozycje(-i)",
+ "few": "{{ count }} pozycje(-i)",
+ "many": "{{ count }} pozycje(-i)"
+ }
+ },
+ "cart": {
+ "title": "Twój koszyk",
+ "caption": "Pozycje w koszyku",
+ "remove_title": "Usuń {{ title }}",
+ "note": "Specjalne instrukcje do zamówienia",
+ "checkout": "Realizuj zakup",
+ "empty": "Twój koszyk jest pusty",
+ "cart_error": "Wystąpił błąd podczas aktualizowania Twojego koszyka. Spróbuj ponownie.",
+ "cart_quantity_error_html": "Możesz dodać do koszyka tylko {{ quantity }} sztuk(i) tej pozycji.",
+ "taxes_and_shipping_policy_at_checkout_html": "Podatki, rabaty i wysyłki obliczane przy realizacji zakupu",
+ "taxes_included_but_shipping_at_checkout": "Podatek wliczony w cenę, koszty wysyłki i rabaty są obliczane przy realizacji zakupu",
+ "taxes_included_and_shipping_policy_html": "Z wliczonym podatkiem. Koszt wysyłki obliczony przy realizacji zakupu. Wysyłka i rabaty obliczone przy realizacji zakupu.",
+ "taxes_and_shipping_at_checkout": "Podatki, rabaty i wysyłki obliczane przy realizacji zakupu",
+ "update": "Aktualizuj",
+ "headings": {
+ "product": "Produkt",
+ "price": "Cena",
+ "total": "Suma",
+ "quantity": "Ilość",
+ "image": "Obraz produktu"
+ },
+ "login": {
+ "title": "Masz już konto?",
+ "paragraph_html": "Zaloguj się , aby szybciej realizować zakupy."
+ },
+ "estimated_total": "Przewidywana suma",
+ "new_estimated_total": "Nowa przewidywana suma"
+ },
+ "footer": {
+ "payment": "Metody płatności"
+ },
+ "featured_blog": {
+ "view_all": "Wyświetl wszystkie",
+ "onboarding_title": "Post na blogu",
+ "onboarding_content": "Przedstaw swoim klientom podsumowanie swojego wpisu na blogu"
+ },
+ "featured_collection": {
+ "view_all": "Wyświetl wszystkie",
+ "view_all_label": "Wyświetl wszystkie produkty w kolekcji {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Wyświetl wszystkie"
+ },
+ "collection_template": {
+ "title": "Kolekcja",
+ "empty": "Nie znaleziono produktów",
+ "use_fewer_filters_html": "Użyj mniejszej ilości filtrów lub usuń wszystko "
+ },
+ "video": {
+ "load_video": "Załaduj film: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Wczytaj slajd",
+ "previous_slideshow": "Poprzedni slajd",
+ "next_slideshow": "Następny slajd",
+ "pause_slideshow": "Wstrzymaj pokaz slajdów",
+ "play_slideshow": "Odtwórz pokaz slajdów",
+ "carousel": "Karuzela",
+ "slide": "Slajd"
+ },
+ "page": {
+ "title": "Tytuł strony"
+ },
+ "announcements": {
+ "previous_announcement": "Poprzednie ogłoszenie",
+ "next_announcement": "Kolejne ogłoszenie",
+ "carousel": "Karuzela",
+ "announcement": "Ogłoszenie",
+ "announcement_bar": "Pasek ogłoszeń"
+ },
+ "quick_order_list": {
+ "product_total": "Suma częściowa dla produktu",
+ "view_cart": "Pokaż koszyk",
+ "each": "{{ money }}/szt.",
+ "product": "Produkt",
+ "variant": "Wariant",
+ "variant_total": "Suma wariantów",
+ "items_added": {
+ "one": "Dodano {{ quantity }} pozycję",
+ "other": "Dodano {{ quantity }} pozycje(-i)",
+ "few": "Dodano {{ quantity }} pozycje(-i)",
+ "many": "Dodano {{ quantity }} pozycje(-i)"
+ },
+ "items_removed": {
+ "one": "Usunięto {{ quantity }} pozycję",
+ "other": "Usunięto {{ quantity }} pozycje(-i)",
+ "few": "Usunięto {{ quantity }} pozycje(-i)",
+ "many": "Usunięto {{ quantity }} pozycje(-i)"
+ },
+ "product_variants": "Warianty produktów",
+ "total_items": "Pozycje łącznie",
+ "remove_all_items_confirmation": "Usunąć wszystkie {{ quantity }} pozycje(-i) z koszyka?",
+ "remove_all": "Usuń wszystko",
+ "cancel": "Anuluj"
+ }
+ },
+ "localization": {
+ "country_label": "Kraj/region",
+ "language_label": "Język",
+ "update_language": "Aktualizuj język",
+ "update_country": "Aktualizuj kraj/region"
+ },
+ "customer": {
+ "account": {
+ "title": "Konto",
+ "details": "Szczegóły konta",
+ "view_addresses": "Wyświetl adresy",
+ "return": "Wróć do szczegółów konta"
+ },
+ "account_fallback": "Konto",
+ "log_in": "Zaloguj się",
+ "log_out": "Wyloguj",
+ "activate_account": {
+ "title": "Aktywuj konto",
+ "subtext": "Utwórz hasło, aby aktywować konto.",
+ "password": "Hasło",
+ "password_confirm": "Potwierdź hasło",
+ "submit": "Aktywuj konto",
+ "cancel": "Odrzuć zaproszenie"
+ },
+ "addresses": {
+ "title": "Adresy",
+ "default": "Domyślne",
+ "add_new": "Dodaj nowy adres",
+ "edit_address": "Edytuj adres",
+ "first_name": "Imię",
+ "last_name": "Nazwisko",
+ "company": "Firma",
+ "address1": "Adres 1",
+ "address2": "Adres 2",
+ "city": "Miasto",
+ "country": "Kraj/region",
+ "province": "Prowincja",
+ "zip": "Kod pocztowy",
+ "phone": "Telefon",
+ "set_default": "Ustaw jako adres domyślny",
+ "add": "Dodaj adres",
+ "update": "Zaktualizuj adres",
+ "cancel": "Anuluj",
+ "edit": "Edytuj",
+ "delete": "Usuń",
+ "delete_confirm": "Czy na pewno chcesz usunąć ten adres?"
+ },
+ "login_page": {
+ "cancel": "Anuluj",
+ "create_account": "Utwórz konto",
+ "email": "E-mail",
+ "forgot_password": "Nie pamiętasz hasła?",
+ "guest_continue": "Kontynuuj",
+ "guest_title": "Kontynuuj jako gość",
+ "password": "Hasło",
+ "title": "Login",
+ "sign_in": "Zaloguj się",
+ "submit": "Prześlij"
+ },
+ "order": {
+ "title": "Zamówienie {{ name }}",
+ "date_html": "Umieszczone dnia {{ date }}",
+ "cancelled_html": "Zamówienie anulowane dnia {{ date }}",
+ "cancelled_reason": "Powód: {{ reason }}",
+ "billing_address": "Adres rozliczeniowy",
+ "payment_status": "Status płatności",
+ "shipping_address": "Adres wysyłki",
+ "fulfillment_status": "Status realizacji",
+ "discount": "Rabat",
+ "shipping": "Wysyłka",
+ "tax": "Podatek",
+ "product": "Produkt",
+ "sku": "SKU",
+ "price": "Cena",
+ "quantity": "Ilość",
+ "total": "Suma",
+ "fulfilled_at_html": "Zrealizowano {{ date }}",
+ "track_shipment": "Śledź przesyłkę",
+ "tracking_url": "Link do śledzenia",
+ "tracking_company": "Przewoźnik",
+ "tracking_number": "Numer śledzenia",
+ "subtotal": "Suma częściowa",
+ "total_duties": "Cła",
+ "total_refunded": "Zwrócono koszty"
+ },
+ "orders": {
+ "title": "Historia zamówień",
+ "order_number": "Zamówienie",
+ "order_number_link": "Nr zamówienia {{ number }}",
+ "date": "Data",
+ "payment_status": "Status płatności",
+ "fulfillment_status": "Status realizacji",
+ "total": "Suma",
+ "none": "Nie złożyłeś(-aś) jeszcze żadnych zamówień."
+ },
+ "recover_password": {
+ "title": "Zresetuj swoje hasło",
+ "subtext": "Wyślemy Ci e-mail, aby zresetować Twoje hasło",
+ "success": "Wysłaliśmy do Ciebie e-mail z linkiem do aktualizacji hasła."
+ },
+ "register": {
+ "title": "Utwórz konto",
+ "first_name": "Imię",
+ "last_name": "Nazwisko",
+ "email": "E-mail",
+ "password": "Hasło",
+ "submit": "Utwórz"
+ },
+ "reset_password": {
+ "title": "Zresetuj hasło do konta",
+ "subtext": "Wprowadź nowe hasło",
+ "password": "Hasło",
+ "password_confirm": "Potwierdź hasło",
+ "submit": "Zresetuj hasło"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Oto Twoja karta prezentowa o wartości {{ value }} do {{ shop }}!",
+ "subtext": "Twoja karta prezentowa",
+ "gift_card_code": "Kod karty prezentowej",
+ "shop_link": "Odwiedź sklep online",
+ "add_to_apple_wallet": "Dodaj do Apple Wallet",
+ "qr_image_alt": "Kod QR – zeskanuj, aby wykorzystać kartę prezentową",
+ "copy_code": "Kopiuj kod karty prezentowej",
+ "expired": "Utraciła ważność",
+ "copy_code_success": "Kod został skopiowany",
+ "how_to_use_gift_card": "Użyj kodu karty prezentowej online lub kodu QR w sklepie",
+ "expiration_date": "Wygasa {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Chcę to wysłać jako prezent",
+ "email_label": "E-mail odbiorcy",
+ "email": "E-mail",
+ "name_label": "Nazwa odbiorcy (opcjonalnie)",
+ "name": "Nazwisko",
+ "message_label": "Wiadomość (opcjonalna)",
+ "message": "Wiadomość",
+ "max_characters": "Maks. {{ max_chars }} znaki(-ów)",
+ "email_label_optional_for_no_js_behavior": "Adres e-mail odbiorcy (opcjonalnie)",
+ "send_on": "RRRR-MM-DD",
+ "send_on_label": "Wyślij dnia (opcjonalnie)",
+ "expanded": "Rozwinięty formularz odbiorcy karty prezentowej",
+ "collapsed": "Zwinięty formularz odbiorcy karty prezentowej"
+ }
+ }
+}
diff --git a/locales/pl.schema.json b/locales/pl.schema.json
new file mode 100644
index 0000000..40b5172
--- /dev/null
+++ b/locales/pl.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Kolory",
+ "settings": {
+ "background": {
+ "label": "Tło"
+ },
+ "background_gradient": {
+ "label": "Gradient tła",
+ "info": "Gradient tła zastępuje tło tam, gdzie to możliwe."
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_background": {
+ "label": "Tło przycisku w jednolitym kolorze"
+ },
+ "button_label": {
+ "label": "Przycisk z etykietą w jednolitym kolorze"
+ },
+ "secondary_button_label": {
+ "label": "Przycisk konspektu"
+ },
+ "shadow": {
+ "label": "Cień"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografia",
+ "settings": {
+ "type_header_font": {
+ "label": "Czcionka",
+ "info": "Wybór innej czcionki może wpłynąć na szybkość działania Twojego sklepu. [Dowiedz się więcej o czcionkach systemowych.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Nagłówki"
+ },
+ "header__2": {
+ "content": "Tekst podstawowy"
+ },
+ "type_body_font": {
+ "label": "Czcionka",
+ "info": "Wybór innej czcionki może wpłynąć na szybkość działania Twojego sklepu. [Dowiedz się więcej o czcionkach systemowych.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Skala rozmiaru czcionki"
+ },
+ "body_scale": {
+ "label": "Skala rozmiaru czcionki"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Media społecznościowe",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "Youtube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Konta społecznościowe"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Format waluty",
+ "settings": {
+ "content": "Kody walut",
+ "currency_code_enabled": {
+ "label": "Pokaż kody walut"
+ },
+ "paragraph": "Ceny w koszyku i kasie zawsze zawierają kody walut. Przykład: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Układ",
+ "settings": {
+ "page_width": {
+ "label": "Szerokość strony"
+ },
+ "spacing_sections": {
+ "label": "Odstęp między sekcjami szablonu"
+ },
+ "header__grid": {
+ "content": "Siatka"
+ },
+ "paragraph__grid": {
+ "content": "Dotyczy obszarów z wieloma kolumnami lub wierszami."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Przestrzeń pozioma"
+ },
+ "spacing_grid_vertical": {
+ "label": "Przestrzeń pionowa"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Zachowanie podczas wyszukiwania",
+ "settings": {
+ "header": {
+ "content": "Podpowiedzi wyszukiwania"
+ },
+ "predictive_search_enabled": {
+ "label": "Włącz podpowiedzi wyszukiwania"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Pokaż dostawcę produktu",
+ "info": "Widoczne w przypadku włączenia podpowiedzi wyszukiwania."
+ },
+ "predictive_search_show_price": {
+ "label": "Pokaż cenę produktu",
+ "info": "Widoczne w przypadku włączenia podpowiedzi wyszukiwania."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Obramowanie"
+ },
+ "header__shadow": {
+ "content": "Cień"
+ },
+ "blur": {
+ "label": "Zamazanie"
+ },
+ "corner_radius": {
+ "label": "Promień narożnika"
+ },
+ "horizontal_offset": {
+ "label": "Przesunięcie w poziomie"
+ },
+ "vertical_offset": {
+ "label": "Przesunięcie w pionie"
+ },
+ "thickness": {
+ "label": "Grubość"
+ },
+ "opacity": {
+ "label": "Nieprzezroczystość"
+ },
+ "image_padding": {
+ "label": "Dopełnienie obrazu"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie tekstu"
+ }
+ }
+ },
+ "badges": {
+ "name": "Znaczki",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Lewy dolny"
+ },
+ "options__2": {
+ "label": "Prawy dolny"
+ },
+ "options__3": {
+ "label": "Do góry, do lewej"
+ },
+ "options__4": {
+ "label": "Do góry, do prawej"
+ },
+ "label": "Położenie na kartach"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Kolorystyka znaczków Wyprzedaż"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Kolorystyka znaczków Wyprzedane"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Przyciski"
+ },
+ "variant_pills": {
+ "name": "Okrągłe przełączniki wariantów",
+ "paragraph": "Okrągłe przełączniki wariantów to jeden ze sposobów wyświetlania wariantów produktów. [Dowiedz się więcej](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Dane wejściowe"
+ },
+ "content_containers": {
+ "name": "Kontenery zawartości"
+ },
+ "popups": {
+ "name": "Listy rozwijane i wyskakujące okienka",
+ "paragraph": "Dotyczy obszarów takich jak rozwijane listy nawigacji, wyskakujące okienka modalne i wyskakujące okienka koszyka."
+ },
+ "media": {
+ "name": "Media"
+ },
+ "drawers": {
+ "name": "Szuflady"
+ },
+ "cart": {
+ "name": "Koszyk",
+ "settings": {
+ "cart_type": {
+ "label": "Typ koszyka",
+ "drawer": {
+ "label": "Szuflada"
+ },
+ "page": {
+ "label": "Strona"
+ },
+ "notification": {
+ "label": "Powiadomienie w wyskakującym okienku"
+ }
+ },
+ "show_vendor": {
+ "label": "Pokaż dostawcę"
+ },
+ "show_cart_note": {
+ "label": "Włącz uwagę dotyczącą koszyka"
+ },
+ "cart_drawer": {
+ "header": "Szuflada koszyka",
+ "collection": {
+ "label": "Kolekcja",
+ "info": "Widoczne, gdy szuflada koszyka jest pusta"
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Karty produktów",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standardowy"
+ },
+ "options__2": {
+ "label": "Karta"
+ },
+ "label": "Styl"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Karty kolekcji",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standardowy"
+ },
+ "options__2": {
+ "label": "Karta"
+ },
+ "label": "Styl"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Karty blogu",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standardowy"
+ },
+ "options__2": {
+ "label": "Karta"
+ },
+ "label": "Styl"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Szerokość logo na komputerze",
+ "info": "Szerokość logo jest automatycznie optymalizowana dla urządzeń mobilnych."
+ },
+ "favicon": {
+ "label": "Obraz ikony Favicon",
+ "info": "Zostanie zmniejszony do rozmiaru 32 x 32 piksele"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informacje o marce",
+ "settings": {
+ "brand_headline": {
+ "label": "Headline"
+ },
+ "brand_description": {
+ "label": "Opis"
+ },
+ "brand_image": {
+ "label": "Obraz"
+ },
+ "brand_image_width": {
+ "label": "Szerokość obrazu"
+ },
+ "paragraph": {
+ "content": "Dodaj opis marki do stopki swojego sklepu."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animacje",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Pokaż sekcje podczas przewijania"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Brak"
+ },
+ "options__2": {
+ "label": "Podnoszenie w pionie"
+ },
+ "label": "Efekt obszaru aktywnego",
+ "info": "Wpływa na karty i przyciski.",
+ "options__3": {
+ "label": "Podnoszenie 3D"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Dopełnienie sekcji",
+ "padding_top": "Dopełnienie na górze",
+ "padding_bottom": "Dopełnienie na dole"
+ },
+ "spacing": "Odstępy",
+ "colors": {
+ "label": "Kolorystyka",
+ "has_cards_info": "Aby zmienić kolorystykę karty, zaktualizuj ustawienia szablonu."
+ },
+ "heading_size": {
+ "label": "Rozmiar nagłówka",
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ },
+ "options__4": {
+ "label": "Bardzo duży"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Domyślny"
+ },
+ "options__2": {
+ "label": "Łuk"
+ },
+ "options__3": {
+ "label": "Kropla"
+ },
+ "options__4": {
+ "label": "Pagon skierowany w lewo"
+ },
+ "options__5": {
+ "label": "Pagon skierowany w prawo"
+ },
+ "options__6": {
+ "label": "Romb"
+ },
+ "options__7": {
+ "label": "Równoległobok"
+ },
+ "options__8": {
+ "label": "Okrągły"
+ },
+ "label": "Kształt obrazu",
+ "info": "Karty w stylu standardowym nie mają obramowania, gdy aktywny jest kształt obrazu."
+ },
+ "animation": {
+ "content": "Animacje",
+ "image_behavior": {
+ "options__1": {
+ "label": "Brak"
+ },
+ "options__2": {
+ "label": "Ruch otoczenia"
+ },
+ "label": "Zachowanie obrazu",
+ "options__3": {
+ "label": "Stałe położenie tła"
+ },
+ "options__4": {
+ "label": "Powiększenie przy przewijaniu"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Pasek ogłoszeń",
+ "blocks": {
+ "announcement": {
+ "name": "Ogłoszenie",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_alignment": {
+ "label": "Wyrównanie tekstu",
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ }
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Automatyczna zmiana ogłoszeń"
+ },
+ "change_slides_speed": {
+ "label": "Zmieniaj co"
+ },
+ "header__1": {
+ "content": "Ikony mediów społecznościowych",
+ "info": "Aby wyświetlić swoje konta w mediach społecznościowych, podlinkuj je w [ustawienia szablonu](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Ogłoszenia"
+ },
+ "show_social": {
+ "label": "Pokaż ikony na pulpicie"
+ },
+ "header__3": {
+ "content": "Selektor kraju/regionu",
+ "info": "Aby dodać kraj/region, przejdź do swoich [ustawień rynku.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Włącz selektor kraju/regionu"
+ },
+ "header__4": {
+ "content": "Selektor języka",
+ "info": "Aby dodać język, przejdź do swoich [ustawień języka.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Włącz selektor języka"
+ }
+ },
+ "presets": {
+ "name": "Pasek ogłoszeń"
+ }
+ },
+ "collage": {
+ "name": "Kolaż",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "desktop_layout": {
+ "label": "Układ pulpitu",
+ "options__1": {
+ "label": "Lewy duży blok"
+ },
+ "options__2": {
+ "label": "Prawy duży blok"
+ }
+ },
+ "mobile_layout": {
+ "label": "Układ na urządzeniu zdalnym",
+ "options__1": {
+ "label": "Kolaż"
+ },
+ "options__2": {
+ "label": "Kolumna"
+ }
+ },
+ "card_styles": {
+ "label": "Styl karty",
+ "info": "Style kart produktów, kolekcji i bloga można aktualizować w ustawieniach szablonu.",
+ "options__1": {
+ "label": "Użyj indywidualnych stylów kart"
+ },
+ "options__2": {
+ "label": "Nadaj wszystkiemu styl kart produktów"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Obraz",
+ "settings": {
+ "image": {
+ "label": "Obraz"
+ }
+ }
+ },
+ "product": {
+ "name": "Produkt",
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Pokaż dodatkowe tło"
+ },
+ "second_image": {
+ "label": "Pokaż drugi obraz po najechaniu kursorem"
+ }
+ }
+ },
+ "collection": {
+ "name": "Kolekcja",
+ "settings": {
+ "collection": {
+ "label": "Kolekcja"
+ }
+ }
+ },
+ "video": {
+ "name": "Film",
+ "settings": {
+ "cover_image": {
+ "label": "Obraz w tle"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Film jest odtwarzany w wyskakującym okienku, jeśli sekcja zawiera inne bloki.",
+ "placeholder": "Użyj adresu URL do YouTube lub Vimeo"
+ },
+ "description": {
+ "label": "Alternatywny tekst filmu",
+ "info": "Opisz film dla klientów korzystających z czytników ekranu. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kolaż"
+ }
+ },
+ "collection-list": {
+ "name": "Lista kolekcji",
+ "settings": {
+ "title": {
+ "label": "Nagłówek"
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "info": "Dodaj obrazy, edytując swoje kolekcje. [Dowiedz się więcej ](https://help.shopify.com/manual/products/collections)",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Włącz przeciąganie na urządzeniu mobilnym"
+ },
+ "show_view_all": {
+ "label": "Włącz przycisk „Wyświetl wszystko”, jeśli lista zawiera więcej kolekcji niż pokazano"
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Kolekcja",
+ "settings": {
+ "collection": {
+ "label": "Kolekcja"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Lista kolekcji"
+ }
+ },
+ "contact-form": {
+ "name": "Formularz kontaktowy",
+ "presets": {
+ "name": "Formularz kontaktowy"
+ }
+ },
+ "custom-liquid": {
+ "name": "Niestandardowy Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Kod Liquid",
+ "info": "Dodaj fragmenty kodu aplikacji lub inny kod, aby utworzyć zaawansowane dostosowania. [Dowiedz się więcej](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Niestandardowy Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Posty na blogu",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Liczba wpisów na blogu do wyświetlenia"
+ },
+ "show_view_all": {
+ "label": "Włącz przycisk „Wyświetl wszystko”, jeśli blog zawiera więcej postów niż pokazano"
+ },
+ "show_image": {
+ "label": "Pokaż wyróżniony obraz",
+ "info": "Aby uzyskać najlepszy efekt, użyj obrazu o współczynniku proporcji 2:3. [Dowiedz się więcej](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Pokaż datę"
+ },
+ "show_author": {
+ "label": "Pokaż autora"
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ }
+ },
+ "presets": {
+ "name": "Posty na blogu"
+ }
+ },
+ "featured-collection": {
+ "name": "Polecana kolekcja",
+ "settings": {
+ "title": {
+ "label": "Nagłówek"
+ },
+ "collection": {
+ "label": "Kolekcja"
+ },
+ "products_to_show": {
+ "label": "Maksymalna ilość produktów do wyświetlenia"
+ },
+ "show_view_all": {
+ "label": "Włącz opcję „Wyświetl wszystkie”, jeśli kolekcja ma więcej produktów niż pokazano"
+ },
+ "header": {
+ "content": "Karta produktów"
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Pokaż drugi obraz po najechaniu kursorem"
+ },
+ "show_vendor": {
+ "label": "Pokaż dostawcę"
+ },
+ "show_rating": {
+ "label": "Pokaż ocenę produktu",
+ "info": "Aby wyświetlić ocenę, dodaj aplikację do oceny produktów. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Włącz przycisk szybkiego dodawania",
+ "info": "Optymalny dla wózków w wyskakującym okienku lub wysuwanych."
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "description": {
+ "label": "Opis"
+ },
+ "show_description": {
+ "label": "Pokaż opis kolekcji z panelu administracyjnego"
+ },
+ "description_style": {
+ "label": "Styl opisu",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Przycisk konspektu"
+ },
+ "options__3": {
+ "label": "Przycisk w jednolitym kolorze"
+ },
+ "label": "Styl „Wyświetl wszystkie”"
+ },
+ "enable_desktop_slider": {
+ "label": "Włącz karuzelę na pulpicie"
+ },
+ "full_width": {
+ "label": "Wyświetl produkty na całej szerokości"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Włącz przeciąganie na urządzeniu mobilnym"
+ }
+ },
+ "presets": {
+ "name": "Polecana kolekcja"
+ }
+ },
+ "footer": {
+ "name": "Stopka",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Wyświetla tylko pozycje menu najwyższego poziomu."
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "subtext": {
+ "label": "Tekst podrzędny"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informacje o marce",
+ "settings": {
+ "paragraph": {
+ "content": "W tym bloku będą wyświetlane informacje o marce. [Edytuj informacje o marce.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Ikony mediów społecznościowych"
+ },
+ "show_social": {
+ "label": "Pokaż ikony mediów społecznościowych",
+ "info": "Aby wyświetlić swoje konta w mediach społecznościowych, podlinkuj je w [ustawienia szablonu](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Pokaż rejestrację w celu otrzymywania e-maili."
+ },
+ "newsletter_heading": {
+ "label": "Nagłówek"
+ },
+ "header__1": {
+ "content": "Osoba zarejestrowana w celu otrzymywania e-maili",
+ "info": "Subskrybenci zostali automatycznie dodani do listy klientów „wyrażających zgodę na marketing\". [Dowiedz się więcej ](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Ikony mediów społecznościowych",
+ "info": "Aby wyświetlić swoje konta w mediach społecznościowych, podlinkuj je w [ustawienia szablonu](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Pokaż ikony mediów społecznościowych"
+ },
+ "header__3": {
+ "content": "Selektor kraju/regionu"
+ },
+ "header__4": {
+ "info": "Aby dodać kraj/region, przejdź do swoich [ustawień rynku.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Włącz selektor kraju/regionu"
+ },
+ "header__5": {
+ "content": "Selektor języka"
+ },
+ "header__6": {
+ "info": "Aby dodać język, przejdź do swoich [ustawień języka.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Włącz selektor języka"
+ },
+ "header__7": {
+ "content": "Metody płatności"
+ },
+ "payment_enable": {
+ "label": "Pokaż ikony płatności"
+ },
+ "margin_top": {
+ "label": "Górna granica"
+ },
+ "header__8": {
+ "content": "Linki do polityki",
+ "info": "Aby dodać polityki sklepu, przejdź do [ustawień polityki](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Pokaż linki do polityki"
+ },
+ "header__9": {
+ "content": "Obserwuj w Shop",
+ "info": "Aby umożliwić klientom śledzenie Twojego sklepu w aplikacji Shop z poziomu Twojej witryny sklepu, należy włączyć funkcję Shop Pay. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Włącz opcję Obserwuj w Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Nagłówek",
+ "settings": {
+ "logo_position": {
+ "label": "Pozycja logo na komputerze",
+ "options__1": {
+ "label": "Do środka, do lewej"
+ },
+ "options__2": {
+ "label": "Do góry, do lewej"
+ },
+ "options__3": {
+ "label": "Do góry, wyśrodkowany"
+ },
+ "options__4": {
+ "label": "Wyśrodkowane, środek"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Pokaż linię separatora"
+ },
+ "margin_bottom": {
+ "label": "Dolna granica"
+ },
+ "menu_type_desktop": {
+ "label": "Typ menu pulpitu",
+ "info": "Typ menu jest automatycznie optymalizowany pod kątem urządzeń mobilnych.",
+ "options__1": {
+ "label": "Lista rozwijana"
+ },
+ "options__2": {
+ "label": "Mega menu"
+ },
+ "options__3": {
+ "label": "Szuflada"
+ }
+ },
+ "mobile_layout": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "mobile_logo_position": {
+ "label": "Położenie logo na urządzeniu mobilnym",
+ "options__1": {
+ "label": "Środek"
+ },
+ "options__2": {
+ "label": "Lewa strona"
+ }
+ },
+ "logo_help": {
+ "content": "Edytuj logo w [theme settings](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Przypięty nagłówek",
+ "options__1": {
+ "label": "Brak"
+ },
+ "options__2": {
+ "label": "Przy przewijaniu w górę"
+ },
+ "options__3": {
+ "label": "Zawsze"
+ },
+ "options__4": {
+ "label": "Zawsze, zmniejsz rozmiar logo"
+ }
+ },
+ "header__3": {
+ "content": "Selektor kraju/regionu"
+ },
+ "header__4": {
+ "info": "Aby dodać kraj/region, przejdź do swoich [ustawień rynku.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Włącz selektor kraju/regionu"
+ },
+ "header__5": {
+ "content": "Selektor języka"
+ },
+ "header__6": {
+ "info": "Aby dodać język, przejdź do swoich [ustawień języka.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Włącz selektor języka"
+ },
+ "header__1": {
+ "content": "Kolor"
+ },
+ "menu_color_scheme": {
+ "label": "Kolorystyka menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Baner z obrazem",
+ "settings": {
+ "image": {
+ "label": "Pierwszy obraz"
+ },
+ "image_2": {
+ "label": "Drugi obraz"
+ },
+ "stack_images_on_mobile": {
+ "label": "Układaj obrazy w stosy na urządzeniu mobilnym"
+ },
+ "show_text_box": {
+ "label": "Pokaż kontener na komputerze"
+ },
+ "image_overlay_opacity": {
+ "label": "Nieprzezroczystość nakładki obrazu"
+ },
+ "show_text_below": {
+ "label": "Pokaż kontener na urządzeniu mobilnym"
+ },
+ "image_height": {
+ "label": "Wysokość banera",
+ "options__1": {
+ "label": "Dostosuj do pierwszego obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "info": "Aby uzyskać najlepszy efekt, użyj obrazu o współczynniku proporcji 2:3. [Dowiedz się więcej](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Duży"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Do góry, do lewej"
+ },
+ "options__2": {
+ "label": "Do góry, wyśrodkowany"
+ },
+ "options__3": {
+ "label": "Do góry, do prawej"
+ },
+ "options__4": {
+ "label": "Do środka, do lewej"
+ },
+ "options__5": {
+ "label": "Do środka, wyśrodkowany"
+ },
+ "options__6": {
+ "label": "Do środka, do prawej"
+ },
+ "options__7": {
+ "label": "Na dole, do lewej"
+ },
+ "options__8": {
+ "label": "Na dole, pośrodku"
+ },
+ "options__9": {
+ "label": "Na dole, do prawej"
+ },
+ "label": "Pozycja treści na pulpicie"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na pulpicie"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na urządzeniu mobilnym"
+ },
+ "mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nagłówek",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Opis"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ },
+ "label": "Styl tekstu"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Przyciski",
+ "settings": {
+ "button_label_1": {
+ "label": "Pierwszy przycisk z etykietą",
+ "info": "Pozostaw etykietę pustą, aby ukryć przycisk."
+ },
+ "button_link_1": {
+ "label": "Pierwszy link przycisku"
+ },
+ "button_style_secondary_1": {
+ "label": "Użyj stylu przycisku konspektu"
+ },
+ "button_label_2": {
+ "label": "Drugi przycisk z etykietą",
+ "info": "Pozostaw etykietę pustą, aby ukryć przycisk."
+ },
+ "button_link_2": {
+ "label": "Drugi link przycisku"
+ },
+ "button_style_secondary_2": {
+ "label": "Użyj stylu przycisku konspektu"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Baner z obrazem"
+ }
+ },
+ "image-with-text": {
+ "name": "Obraz z tekstem",
+ "settings": {
+ "image": {
+ "label": "Obraz"
+ },
+ "height": {
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "label": "Wysokość obrazu",
+ "options__4": {
+ "label": "Duży"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Najpierw obraz"
+ },
+ "options__2": {
+ "label": "Drugi obraz"
+ },
+ "label": "Umieszczanie obrazów na pulpicie",
+ "info": "Najpierw obraz to domyślny układ na urządzeniu mobilnym"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ },
+ "label": "Szerokość obrazu pulpitu",
+ "info": "Obraz jest automatycznie optymalizowany dla urządzeń mobilnych."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na komputerze"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Góra"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Dół"
+ },
+ "label": "Pozycja treści na pulpicie"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Bez nakładania"
+ },
+ "options__2": {
+ "label": "Nakładanie się"
+ },
+ "label": "Układ zawartości"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na urządzeniu mobilnym"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nagłówek",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Treść"
+ },
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Przycisk",
+ "settings": {
+ "button_label": {
+ "label": "Przycisk z etykietą",
+ "info": "Pozostaw etykietę pustą, aby ukryć przycisk."
+ },
+ "button_link": {
+ "label": "Link przycisku"
+ },
+ "outline_button": {
+ "label": "Użyj stylu przycisku konspektu"
+ }
+ }
+ },
+ "caption": {
+ "name": "Napisy",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Podtytuł"
+ },
+ "options__2": {
+ "label": "Duże litery"
+ }
+ },
+ "caption_size": {
+ "label": "Rozmiar tekstu",
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Obraz z tekstem"
+ }
+ },
+ "main-article": {
+ "name": "Post na blogu",
+ "blocks": {
+ "featured_image": {
+ "name": "Wyróżniony obraz",
+ "settings": {
+ "image_height": {
+ "label": "Wysokość wyróżnionego obrazu",
+ "info": "Aby uzyskać najlepsze wyniki, użyj obrazu o współczynniku proporcji 16:9. [Dowiedz się więcej ](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "options__4": {
+ "label": "Duży"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tytuł",
+ "settings": {
+ "blog_show_date": {
+ "label": "Pokaż datę"
+ },
+ "blog_show_author": {
+ "label": "Pokaż autora"
+ }
+ }
+ },
+ "content": {
+ "name": "Treść"
+ },
+ "share": {
+ "name": "Udostępnij",
+ "settings": {
+ "featured_image_info": {
+ "content": "Jeśli dodasz link w postach mediów społecznościowych, wyróżniony obraz strony będzie wyświetlany jako obraz podglądu. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Tytuł i opis strony są dodawane wraz z obrazem podglądu. [Dowiedz się więcej](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Posty na blogu",
+ "settings": {
+ "header": {
+ "content": "Karta postów na blogu"
+ },
+ "show_image": {
+ "label": "Pokaż wyróżniony obraz"
+ },
+ "paragraph": {
+ "content": "Zmień fragmenty, edytując swoje posty na blogu. [Dowiedz się więcej ](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Pokaż datę"
+ },
+ "show_author": {
+ "label": "Pokaż autora"
+ },
+ "layout": {
+ "label": "Układ na komputerze",
+ "options__1": {
+ "label": "Siatka"
+ },
+ "options__2": {
+ "label": "Kolaż"
+ },
+ "info": "Posty są umieszczane jeden na drugim na urządzeniu mobilnym."
+ },
+ "image_height": {
+ "label": "Wysokość wyróżnionego obrazu",
+ "info": "Aby uzyskać najlepszy efekt, użyj obrazu o współczynniku proporcji 2:3. [Dowiedz się więcej](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "options__4": {
+ "label": "Duży"
+ }
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Suma częściowa",
+ "blocks": {
+ "subtotal": {
+ "name": "Cena cząstkowa"
+ },
+ "buttons": {
+ "name": "Przycisk realizacji zakupu"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Pozycje"
+ },
+ "main-collection-banner": {
+ "name": "Baner kolekcji",
+ "settings": {
+ "paragraph": {
+ "content": "Dodaj opis lub obraz, edytując swoją kolekcję. [Dowiedz się więcej ](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Pokaż opis kolekcji"
+ },
+ "show_collection_image": {
+ "label": "Pokaż obraz kolekcji",
+ "info": "Aby uzyskać najlepsze wyniki, użyj obrazu o współczynniku proporcji 16:9. [Dowiedz się więcej ](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Siatka produktów",
+ "settings": {
+ "products_per_page": {
+ "label": "Liczba produktów na stronę"
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Pokaż drugi obraz po najechaniu kursorem"
+ },
+ "show_vendor": {
+ "label": "Pokaż dostawcę"
+ },
+ "enable_tags": {
+ "label": "Włącz filtrowanie",
+ "info": "Dostosuj filtry za pomocą aplikacji Search & Discovery. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Włącz filtrowanie",
+ "info": "Dostosuj filtry za pomocą aplikacji Search & Discovery. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Włącz sortowanie"
+ },
+ "header__1": {
+ "content": "Filtrowanie i sortowanie"
+ },
+ "header__3": {
+ "content": "Karta produktów"
+ },
+ "show_rating": {
+ "label": "Pokaż ocenę produktu",
+ "info": "Aby wyświetlić ocenę, dodaj aplikację do oceny produktów. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Włącz przycisk szybkiego dodawania",
+ "info": "Optymalny dla wózków w wyskakującym okienku lub wysuwanych."
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ },
+ "filter_type": {
+ "label": "Układ filtrów na komputerze",
+ "options__1": {
+ "label": "W poziomie"
+ },
+ "options__2": {
+ "label": "W pionie"
+ },
+ "options__3": {
+ "label": "Szuflada"
+ },
+ "info": "Szuflada odpowiada domyślnemu układowi na urządzeniach mobilnych."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Strona listy kolekcji",
+ "settings": {
+ "title": {
+ "label": "Nagłówek"
+ },
+ "sort": {
+ "label": "Sortuj kolekcje według:",
+ "options__1": {
+ "label": "Alfabetycznie, A-Z"
+ },
+ "options__2": {
+ "label": "Alfabetycznie, Z-A"
+ },
+ "options__3": {
+ "label": "Data, od najpóźniejszej do najwcześniejszej"
+ },
+ "options__4": {
+ "label": "Data, od najwcześniejszej do najpóźniejszej"
+ },
+ "options__5": {
+ "label": "Liczba produktów, od najwyższej do najniższej"
+ },
+ "options__6": {
+ "label": "Liczba produktów, od najniższej do najwyższej"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "info": "Dodaj obrazy, edytując swoje kolekcje. [Dowiedz się więcej ](https://help.shopify.com/manual/products/collections)",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ }
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Strona"
+ },
+ "main-password-footer": {
+ "name": "Stopka hasła"
+ },
+ "main-password-header": {
+ "name": "Nagłówek hasła",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Edytuj logo w ustawieniach szablonu."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Informacje o produkcie",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tytuł"
+ },
+ "price": {
+ "name": "Cena"
+ },
+ "quantity_selector": {
+ "name": "Selektor ilości"
+ },
+ "variant_picker": {
+ "name": "Selektor wariantów",
+ "settings": {
+ "picker_type": {
+ "label": "Typ",
+ "options__1": {
+ "label": "Lista rozwijana"
+ },
+ "options__2": {
+ "label": "Okrągłe przełączniki"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Przyciski zakupu",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Pokaż dynamiczne przyciski realizacji zakupu",
+ "info": "Korzystając z metod płatności dostępnych w Twoim sklepie, klienci widzą swoją preferowaną opcję, np. PayPal lub Apple Pay. [Dowiedz się więcej](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Pokaż formularz danych odbiorcy dla kart prezentowych",
+ "info": "Umożliwia kupującym wysyłanie kart prezentowych w zaplanowanym terminie wraz z osobistą wiadomością. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Możliwość odbioru"
+ },
+ "description": {
+ "name": "Opis"
+ },
+ "share": {
+ "name": "Udostępnij",
+ "settings": {
+ "featured_image_info": {
+ "content": "Jeśli dodasz link w postach mediów społecznościowych, wyróżniony obraz strony będzie wyświetlany jako obraz podglądu. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Tytuł i opis strony są dodawane wraz z obrazem podglądu. [Dowiedz się więcej](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Zwijany wiersz",
+ "settings": {
+ "heading": {
+ "info": "Dołącz nagłówek, który wyjaśnia treść.",
+ "label": "Nagłówek"
+ },
+ "content": {
+ "label": "Treść wiersza"
+ },
+ "page": {
+ "label": "Treść wiersza ze strony"
+ },
+ "icon": {
+ "label": "Ikona",
+ "options__1": {
+ "label": "Brak"
+ },
+ "options__2": {
+ "label": "Jabłko"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Butelka"
+ },
+ "options__5": {
+ "label": "Pudełko"
+ },
+ "options__6": {
+ "label": "Marchewka"
+ },
+ "options__7": {
+ "label": "Dymek czatu"
+ },
+ "options__8": {
+ "label": "Znacznik wyboru"
+ },
+ "options__9": {
+ "label": "Podkładka do pisania"
+ },
+ "options__10": {
+ "label": "Mleczne"
+ },
+ "options__11": {
+ "label": "Bezmleczne"
+ },
+ "options__12": {
+ "label": "Suszarka"
+ },
+ "options__13": {
+ "label": "Oko"
+ },
+ "options__14": {
+ "label": "Ogień"
+ },
+ "options__15": {
+ "label": "Bez glutenu"
+ },
+ "options__16": {
+ "label": "Serce"
+ },
+ "options__17": {
+ "label": "Żelazko"
+ },
+ "options__18": {
+ "label": "Liść"
+ },
+ "options__19": {
+ "label": "Skóra"
+ },
+ "options__20": {
+ "label": "Błyskawica"
+ },
+ "options__21": {
+ "label": "Pomadka do ust"
+ },
+ "options__22": {
+ "label": "Zamek"
+ },
+ "options__23": {
+ "label": "Pinezka na mapie"
+ },
+ "options__24": {
+ "label": "Nie zawiera orzechów"
+ },
+ "options__25": {
+ "label": "Spodnie"
+ },
+ "options__26": {
+ "label": "Odcisk łapy"
+ },
+ "options__27": {
+ "label": "Pieprz"
+ },
+ "options__28": {
+ "label": "Perfumy"
+ },
+ "options__29": {
+ "label": "Samolot"
+ },
+ "options__30": {
+ "label": "Roślina"
+ },
+ "options__31": {
+ "label": "Tag ceny"
+ },
+ "options__32": {
+ "label": "Znak zapytania"
+ },
+ "options__33": {
+ "label": "Zutylizuj"
+ },
+ "options__34": {
+ "label": "Zwrot"
+ },
+ "options__35": {
+ "label": "Linijka"
+ },
+ "options__36": {
+ "label": "Naczynie do serwowania"
+ },
+ "options__37": {
+ "label": "Koszula"
+ },
+ "options__38": {
+ "label": "But"
+ },
+ "options__39": {
+ "label": "Kontury"
+ },
+ "options__40": {
+ "label": "Płatek śniegu"
+ },
+ "options__41": {
+ "label": "Gwiazdka"
+ },
+ "options__42": {
+ "label": "Stoper"
+ },
+ "options__43": {
+ "label": "Ciężarówka"
+ },
+ "options__44": {
+ "label": "Pranie"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Wyskakujące okienko",
+ "settings": {
+ "link_label": {
+ "label": "Etykieta linku"
+ },
+ "page": {
+ "label": "Strona"
+ }
+ }
+ },
+ "rating": {
+ "name": "Ocena produktu",
+ "settings": {
+ "paragraph": {
+ "content": "Aby wyświetlić ocenę, dodaj aplikację do oceny produktów. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Produkty uzupełniające",
+ "settings": {
+ "paragraph": {
+ "content": "Aby wybrać produkty uzupełniające, dodaj aplikację Search & Discovery. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "make_collapsible_row": {
+ "label": "Pokaż jako zwijany wiersz"
+ },
+ "icon": {
+ "info": "Widoczne podczas wyświetlania zwijanego wiersza"
+ },
+ "product_list_limit": {
+ "label": "Maksymalna liczba produktów do wyświetlenia"
+ },
+ "products_per_page": {
+ "label": "Liczba produktów na stronę"
+ },
+ "pagination_style": {
+ "label": "Styl paginacji",
+ "options": {
+ "option_1": "Kropki",
+ "option_2": "Licznik",
+ "option_3": "Liczby"
+ }
+ },
+ "product_card": {
+ "heading": "Karta produktów"
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options": {
+ "option_1": "Portret",
+ "option_2": "Kwadrat"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Włącz przycisk szybkiego dodawania"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ikona z tekstem",
+ "settings": {
+ "layout": {
+ "label": "Układ",
+ "options__1": {
+ "label": "W poziomie"
+ },
+ "options__2": {
+ "label": "W pionie"
+ }
+ },
+ "content": {
+ "label": "Zawartość",
+ "info": "Wybierz ikonę lub dodaj obraz dla każdej kolumny lub wiersza."
+ },
+ "heading": {
+ "info": "Pozostaw etykietę nagłówka pustą, aby ukryć kolumnę ikony."
+ },
+ "icon_1": {
+ "label": "Pierwsza ikona"
+ },
+ "image_1": {
+ "label": "Pierwszy obraz"
+ },
+ "heading_1": {
+ "label": "Pierwszy nagłówek"
+ },
+ "icon_2": {
+ "label": "Druga ikona"
+ },
+ "image_2": {
+ "label": "Drugi obraz"
+ },
+ "heading_2": {
+ "label": "Drugi nagłówek"
+ },
+ "icon_3": {
+ "label": "Trzecia ikona"
+ },
+ "image_3": {
+ "label": "Trzeci obraz"
+ },
+ "heading_3": {
+ "label": "Trzeci nagłówek"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Status zapasów",
+ "settings": {
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Niski próg zapasów",
+ "info": "Wybierz 0, aby zawsze pokazywać w magazynie, jeśli jest dostępny."
+ },
+ "show_inventory_quantity": {
+ "label": "Pokaż ilość zapasów"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Multimedia",
+ "info": "Dowiedz się więcej o [typach multimediów.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Włącz zapętlanie wideo"
+ },
+ "enable_sticky_info": {
+ "label": "Włącz przypiętą zawartość na komputerze"
+ },
+ "hide_variants": {
+ "label": "Ukryj multimedia innych wariantów po wybraniu wariantu"
+ },
+ "gallery_layout": {
+ "label": "Układ pulpitu",
+ "options__1": {
+ "label": "Ułożone w stos"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ },
+ "options__3": {
+ "label": "Miniatury"
+ },
+ "options__4": {
+ "label": "Karuzela z miniaturami"
+ }
+ },
+ "media_size": {
+ "label": "Szerokość multimediów dla komputera",
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ },
+ "info": "Pliki multimedialne są automatycznie optymalizowane dla urządzeń mobilnych."
+ },
+ "mobile_thumbnails": {
+ "label": "Układ na urządzeniu mobilnym",
+ "options__1": {
+ "label": "2 kolumny"
+ },
+ "options__2": {
+ "label": "Pokaż miniatury"
+ },
+ "options__3": {
+ "label": "Ukryj miniatury"
+ }
+ },
+ "media_position": {
+ "label": "Pozycja multimediów na pulpicie",
+ "info": "Pozycja jest automatycznie optymalizowana dla urządzeń mobilnych.",
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Prawa strona"
+ }
+ },
+ "image_zoom": {
+ "label": "Powiększenie obrazu",
+ "info": "Kliknij i najedź kursorem na wartości domyślne, aby otworzyć lightbox na urządzeniu mobilnym.",
+ "options__1": {
+ "label": "Otwórz lightbox"
+ },
+ "options__2": {
+ "label": "Kliknij i najedź kursorem"
+ },
+ "options__3": {
+ "label": "Bez powiększenia"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Ograniczenie multimediów do wysokości ekranu"
+ },
+ "media_fit": {
+ "label": "Dopasowanie multimediów",
+ "options__1": {
+ "label": "Oryginalny"
+ },
+ "options__2": {
+ "label": "Wypełnienie"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Wyniki wyszukiwania",
+ "settings": {
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Pokaż drugi obraz po najechaniu kursorem"
+ },
+ "show_vendor": {
+ "label": "Pokaż dostawcę"
+ },
+ "header__1": {
+ "content": "Karta produktów"
+ },
+ "header__2": {
+ "content": "Karta blogu",
+ "info": "Style kart blogów dotyczą również kart stron w wynikach wyszukiwania. Aby zmienić style kart, zaktualizuj ustawienia szablonu."
+ },
+ "article_show_date": {
+ "label": "Pokaż datę"
+ },
+ "article_show_author": {
+ "label": "Pokaż autora"
+ },
+ "show_rating": {
+ "label": "Pokaż ocenę produktu",
+ "info": "Aby wyświetlić ocenę, dodaj aplikację do oceny produktów. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Wielokolumnowy",
+ "settings": {
+ "title": {
+ "label": "Nagłówek"
+ },
+ "image_width": {
+ "label": "Szerokość obrazu",
+ "options__1": {
+ "label": "Jedna trzecia szerokości kolumny"
+ },
+ "options__2": {
+ "label": "Połowa szerokości kolumny"
+ },
+ "options__3": {
+ "label": "Pełna szerokość kolumny"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ },
+ "options__4": {
+ "label": "Koło"
+ }
+ },
+ "column_alignment": {
+ "label": "Wyrównanie kolumny",
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Do środka"
+ }
+ },
+ "background_style": {
+ "label": "Dodatkowe tło",
+ "options__1": {
+ "label": "Brak"
+ },
+ "options__2": {
+ "label": "Pokaż jako tło kolumny"
+ }
+ },
+ "button_label": {
+ "label": "Przycisk z etykietą"
+ },
+ "button_link": {
+ "label": "Link przycisku"
+ },
+ "swipe_on_mobile": {
+ "label": "Włącz przeciąganie na urządzeniu mobilnym"
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Kolumna",
+ "settings": {
+ "image": {
+ "label": "Obraz"
+ },
+ "title": {
+ "label": "Nagłówek"
+ },
+ "text": {
+ "label": "Opis"
+ },
+ "link_label": {
+ "label": "Etykieta linku"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Wielokolumnowy"
+ }
+ },
+ "newsletter": {
+ "name": "Osoba zarejestrowana w celu otrzymywania e-maili",
+ "settings": {
+ "full_width": {
+ "label": "Zrób sekcję na całą szerokość"
+ },
+ "paragraph": {
+ "content": "Dla każdej subskrypcji e-maili tworzone jest konto klienta. [Dowiedz się więcej ](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nagłówek",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Nagłówek podrzędny",
+ "settings": {
+ "paragraph": {
+ "label": "Opis"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formularz e-maila"
+ }
+ },
+ "presets": {
+ "name": "Osoba zarejestrowana w celu otrzymywania e-maili"
+ }
+ },
+ "page": {
+ "name": "Strona",
+ "settings": {
+ "page": {
+ "label": "Strona"
+ }
+ },
+ "presets": {
+ "name": "Strona"
+ }
+ },
+ "rich-text": {
+ "name": "Tekst sformatowany",
+ "settings": {
+ "full_width": {
+ "label": "Zrób sekcję na całą szerokość"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Pozycja treści na komputerze",
+ "info": "Pozycja jest automatycznie optymalizowana dla urządzeń mobilnych."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie zawartości"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nagłówek",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ }
+ }
+ },
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Opis"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Przyciski",
+ "settings": {
+ "button_label_1": {
+ "label": "Pierwszy przycisk z etykietą",
+ "info": "Pozostaw etykietę pustą, aby ukryć przycisk."
+ },
+ "button_link_1": {
+ "label": "Pierwszy link przycisku"
+ },
+ "button_style_secondary_1": {
+ "label": "Użyj stylu przycisku konspektu"
+ },
+ "button_label_2": {
+ "label": "Drugi przycisk z etykietą",
+ "info": "Pozostaw etykietę pustą, aby ukryć przycisk."
+ },
+ "button_link_2": {
+ "label": "Drugi link przycisku"
+ },
+ "button_style_secondary_2": {
+ "label": "Użyj stylu przycisku konspektu"
+ }
+ }
+ },
+ "caption": {
+ "name": "Napisy",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Podtytuł"
+ },
+ "options__2": {
+ "label": "Duże litery"
+ }
+ },
+ "caption_size": {
+ "label": "Rozmiar tekstu",
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Tekst sformatowany"
+ }
+ },
+ "apps": {
+ "name": "Aplikacje",
+ "settings": {
+ "include_margins": {
+ "label": "Dostosuj marginesy sekcji do szablonu"
+ }
+ },
+ "presets": {
+ "name": "Aplikacje"
+ }
+ },
+ "video": {
+ "name": "Film",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "cover_image": {
+ "label": "Obraz w tle"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Użyj adresu URL do YouTube lub Vimeo"
+ },
+ "description": {
+ "label": "Alternatywny tekst filmu",
+ "info": "Opisz film dla klientów korzystających z czytników ekranu. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Dodaj dopełnienie obrazu",
+ "info": "Wybierz dopełnienie obrazu, jeśli nie chcesz, aby obraz z tle był przycięty."
+ },
+ "full_width": {
+ "label": "Zrób sekcję na całą szerokość"
+ },
+ "video": {
+ "label": "Film"
+ },
+ "enable_video_looping": {
+ "label": "Odtwarzaj film w pętli"
+ },
+ "header__1": {
+ "content": "Film hostowany przez Shopify"
+ },
+ "header__2": {
+ "content": "Lub osadź film z adresu URL"
+ },
+ "header__3": {
+ "content": "Styl"
+ },
+ "paragraph": {
+ "content": "Pokazuje, gdy nie wybrano żadnego filmu hostowanego przez Shopify."
+ }
+ },
+ "presets": {
+ "name": "Film"
+ }
+ },
+ "featured-product": {
+ "name": "Polecany produkt",
+ "blocks": {
+ "text": {
+ "name": "Tekst",
+ "settings": {
+ "text": {
+ "label": "Tekst"
+ },
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tytuł"
+ },
+ "price": {
+ "name": "Cena"
+ },
+ "quantity_selector": {
+ "name": "Selektor ilości"
+ },
+ "variant_picker": {
+ "name": "Selektor wariantów",
+ "settings": {
+ "picker_type": {
+ "label": "Typ",
+ "options__1": {
+ "label": "Lista rozwijana"
+ },
+ "options__2": {
+ "label": "Okrągłe przełączniki"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Przyciski zakupu",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Pokaż dynamiczne przyciski realizacji zakupu",
+ "info": "Korzystając z metod płatności dostępnych w Twoim sklepie, klienci widzą swoją preferowaną opcję, np. PayPal lub Apple Pay. [Dowiedz się więcej](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Opis"
+ },
+ "share": {
+ "name": "Udostępnij",
+ "settings": {
+ "featured_image_info": {
+ "content": "Jeśli dodasz link w postach mediów społecznościowych, wyróżniony obraz strony będzie wyświetlany jako obraz podglądu. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Tytuł i opis strony są dodawane wraz z obrazem podglądu. [Dowiedz się więcej](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Tekst"
+ }
+ }
+ },
+ "rating": {
+ "name": "Ocena produktu",
+ "settings": {
+ "paragraph": {
+ "content": "Aby wyświetlić ocenę, dodaj aplikację do oceny produktów. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Styl tekstu",
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "options__3": {
+ "label": "Duże litery"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Pokaż dodatkowe tło"
+ },
+ "header": {
+ "content": "Multimedia",
+ "info": "Dowiedz się więcej o [typach multimediów](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Włącz zapętlanie wideo"
+ },
+ "hide_variants": {
+ "label": "Ukryj niewybrane pliki multimedialne wariantów na pulpicie"
+ },
+ "media_position": {
+ "label": "Pozycja multimediów na pulpicie",
+ "info": "Pozycja jest automatycznie optymalizowana dla urządzeń mobilnych.",
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Prawa strona"
+ }
+ }
+ },
+ "presets": {
+ "name": "Polecany produkt"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Baner rejestracji w celu otrzymywania e-maili",
+ "settings": {
+ "paragraph": {
+ "content": "Dla każdej subskrypcji e-maili tworzone jest konto klienta. [Dowiedz się więcej](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Obraz tła"
+ },
+ "show_background_image": {
+ "label": "Wyświetl obraz tła"
+ },
+ "show_text_box": {
+ "label": "Pokaż kontener na komputerze"
+ },
+ "image_overlay_opacity": {
+ "label": "Nieprzezroczystość nakładki obrazu"
+ },
+ "show_text_below": {
+ "label": "Pokaż treść pod obrazem na urządzeniu mobilnym",
+ "info": "Aby uzyskać najlepsze wyniki, użyj obrazu o współczynniku proporcji 16:9. [Dowiedz się więcej](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Wysokość banera",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "options__4": {
+ "label": "Duży"
+ },
+ "info": "Aby uzyskać najlepsze wyniki, użyj obrazu o współczynniku proporcji 16:9. [Dowiedz się więcej](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "Do środka, do lewej"
+ },
+ "options__5": {
+ "label": "Do środka, wyśrodkowany"
+ },
+ "options__6": {
+ "label": "Do środka, do prawej"
+ },
+ "options__7": {
+ "label": "Na dole, do lewej"
+ },
+ "options__8": {
+ "label": "Na dole, pośrodku"
+ },
+ "options__9": {
+ "label": "Na dole, do prawej"
+ },
+ "options__1": {
+ "label": "Do góry, do lewej"
+ },
+ "options__2": {
+ "label": "Do góry, wyśrodkowany"
+ },
+ "options__3": {
+ "label": "Do góry, do prawej"
+ },
+ "label": "Pozycja treści na pulpicie"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na komputerze"
+ },
+ "header": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na urządzeniu mobilnym"
+ },
+ "color_scheme": {
+ "info": "Widoczne podczas wyświetlania kontenera."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Nagłówek",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Akapit",
+ "settings": {
+ "paragraph": {
+ "label": "Opis"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "label": "Styl tekstu"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formularz e-maila"
+ }
+ },
+ "presets": {
+ "name": "Baner rejestracji w celu otrzymywania e-maili"
+ }
+ },
+ "slideshow": {
+ "name": "Pokaz slajdów",
+ "settings": {
+ "layout": {
+ "label": "Układ",
+ "options__1": {
+ "label": "Pełna szerokość"
+ },
+ "options__2": {
+ "label": "Siatka"
+ }
+ },
+ "slide_height": {
+ "label": "Wysokość slajdu",
+ "options__1": {
+ "label": "Dostosuj do pierwszego obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "options__4": {
+ "label": "Duży"
+ }
+ },
+ "slider_visual": {
+ "label": "Styl paginacji",
+ "options__1": {
+ "label": "Licznik"
+ },
+ "options__2": {
+ "label": "Kropki"
+ },
+ "options__3": {
+ "label": "Liczby"
+ }
+ },
+ "auto_rotate": {
+ "label": "Automatyczna zmiana slajdów"
+ },
+ "change_slides_speed": {
+ "label": "Zmieniaj slajdy co"
+ },
+ "show_text_below": {
+ "label": "Pokaż treść pod obrazami na urządzeniu mobilnym"
+ },
+ "mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "accessibility": {
+ "content": "Dostępność",
+ "label": "Opis pokazu slajdów",
+ "info": "Opisz pokaz slajdów dla klientów korzystających z czytników ekranu."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Slajd",
+ "settings": {
+ "image": {
+ "label": "Obraz"
+ },
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "subheading": {
+ "label": "Nagłówek podrzędny"
+ },
+ "button_label": {
+ "label": "Przycisk z etykietą",
+ "info": "Pozostaw etykietę pustą, aby ukryć przycisk."
+ },
+ "link": {
+ "label": "Link przycisku"
+ },
+ "secondary_style": {
+ "label": "Użyj stylu przycisku konspektu"
+ },
+ "box_align": {
+ "label": "Pozycja treści na pulpicie",
+ "options__1": {
+ "label": "Do góry, do lewej"
+ },
+ "options__2": {
+ "label": "Do góry, wyśrodkowany"
+ },
+ "options__3": {
+ "label": "Do góry, do prawej"
+ },
+ "options__4": {
+ "label": "Do środka, do lewej"
+ },
+ "options__5": {
+ "label": "Do środka, wyśrodkowany"
+ },
+ "options__6": {
+ "label": "Do środka, do prawej"
+ },
+ "options__7": {
+ "label": "Lewy dolny"
+ },
+ "options__8": {
+ "label": "Na dole, pośrodku"
+ },
+ "options__9": {
+ "label": "Prawy dolny"
+ },
+ "info": "Pozycja jest automatycznie optymalizowana dla urządzeń mobilnych."
+ },
+ "show_text_box": {
+ "label": "Pokaż kontener na komputerze"
+ },
+ "text_alignment": {
+ "label": "Wyrównanie treści na komputerze",
+ "option_1": {
+ "label": "Lewa strona"
+ },
+ "option_2": {
+ "label": "Środek"
+ },
+ "option_3": {
+ "label": "Prawa strona"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Nieprzezroczystość nakładki obrazu"
+ },
+ "text_alignment_mobile": {
+ "label": "Wyrównanie treści na urządzeniu mobilnym",
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Pokaz slajdów"
+ }
+ },
+ "collapsible_content": {
+ "name": "Zwijana treść",
+ "settings": {
+ "caption": {
+ "label": "Napisy"
+ },
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "heading_alignment": {
+ "label": "Wyrównanie nagłówka",
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ }
+ },
+ "layout": {
+ "label": "Układ",
+ "options__1": {
+ "label": "Brak kontenera"
+ },
+ "options__2": {
+ "label": "Kontener wiersza"
+ },
+ "options__3": {
+ "label": "Kontener sekcji"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Otwórz pierwszy zwijany wiersz"
+ },
+ "header": {
+ "content": "Układ obrazu"
+ },
+ "image": {
+ "label": "Obraz"
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Duży"
+ }
+ },
+ "desktop_layout": {
+ "label": "Układ pulpitu",
+ "options__1": {
+ "label": "Najpierw obraz"
+ },
+ "options__2": {
+ "label": "Drugi obraz"
+ },
+ "info": "Obraz pojawia się zawsze pierwszy na urządzeniu mobilnym."
+ },
+ "container_color_scheme": {
+ "label": "Schemat kolorów kontenera",
+ "info": "Widoczny, gdy układ jest ustawiony na Wiersz lub Kontener sekcji."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Zwijany wiersz",
+ "settings": {
+ "heading": {
+ "info": "Dołącz nagłówek, który wyjaśnia treść.",
+ "label": "Nagłówek"
+ },
+ "row_content": {
+ "label": "Treść wiersza"
+ },
+ "page": {
+ "label": "Treść wiersza ze strony"
+ },
+ "icon": {
+ "label": "Ikona",
+ "options__1": {
+ "label": "Brak"
+ },
+ "options__2": {
+ "label": "Apple"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Butelka"
+ },
+ "options__5": {
+ "label": "Pudełko"
+ },
+ "options__6": {
+ "label": "Marchewka"
+ },
+ "options__7": {
+ "label": "Dymek czatu"
+ },
+ "options__8": {
+ "label": "Znacznik wyboru"
+ },
+ "options__9": {
+ "label": "Podkładka do pisania"
+ },
+ "options__10": {
+ "label": "Mleczne"
+ },
+ "options__11": {
+ "label": "Bezmleczne"
+ },
+ "options__12": {
+ "label": "Suszarka"
+ },
+ "options__13": {
+ "label": "Oko"
+ },
+ "options__14": {
+ "label": "Ogień"
+ },
+ "options__15": {
+ "label": "Bez glutenu"
+ },
+ "options__16": {
+ "label": "Serce"
+ },
+ "options__17": {
+ "label": "Żelazko"
+ },
+ "options__18": {
+ "label": "Liść"
+ },
+ "options__19": {
+ "label": "Skóra"
+ },
+ "options__20": {
+ "label": "Błyskawica"
+ },
+ "options__21": {
+ "label": "Pomadka do ust"
+ },
+ "options__22": {
+ "label": "Zamek"
+ },
+ "options__23": {
+ "label": "Pinezka na mapie"
+ },
+ "options__24": {
+ "label": "Nie zawiera orzechów"
+ },
+ "options__25": {
+ "label": "Spodnie"
+ },
+ "options__26": {
+ "label": "Odcisk łapy"
+ },
+ "options__27": {
+ "label": "Pieprz"
+ },
+ "options__28": {
+ "label": "Perfumy"
+ },
+ "options__29": {
+ "label": "Samolot"
+ },
+ "options__30": {
+ "label": "Roślina"
+ },
+ "options__31": {
+ "label": "Tag ceny"
+ },
+ "options__32": {
+ "label": "Znak zapytania"
+ },
+ "options__33": {
+ "label": "Zutylizuj"
+ },
+ "options__34": {
+ "label": "Zwrot"
+ },
+ "options__35": {
+ "label": "Linijka"
+ },
+ "options__36": {
+ "label": "Naczynie do serwowania"
+ },
+ "options__37": {
+ "label": "Koszula"
+ },
+ "options__38": {
+ "label": "But"
+ },
+ "options__39": {
+ "label": "Kontury"
+ },
+ "options__40": {
+ "label": "Płatek śniegu"
+ },
+ "options__41": {
+ "label": "Gwiazdka"
+ },
+ "options__42": {
+ "label": "Stoper"
+ },
+ "options__43": {
+ "label": "Ciężarówka"
+ },
+ "options__44": {
+ "label": "Pranie"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Zwijana treść"
+ }
+ },
+ "main-account": {
+ "name": "Konto"
+ },
+ "main-activate-account": {
+ "name": "Aktywacja konta"
+ },
+ "main-addresses": {
+ "name": "Adresy"
+ },
+ "main-login": {
+ "name": "Zaloguj"
+ },
+ "main-order": {
+ "name": "Zamówienie"
+ },
+ "main-register": {
+ "name": "Rejestracja"
+ },
+ "main-reset-password": {
+ "name": "Resetowanie hasła"
+ },
+ "related-products": {
+ "name": "Powiązane produkty",
+ "settings": {
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "products_to_show": {
+ "label": "Maksymalna liczba produktów do wyświetlenia"
+ },
+ "columns_desktop": {
+ "label": "Liczba kolumn na komputerze"
+ },
+ "paragraph__1": {
+ "content": "Dynamiczne rekomendacje wykorzystują informacje o zamówieniach i produktach do ciągłego zmieniania i ulepszania. [Dowiedz się więcej](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Karta produktów"
+ },
+ "image_ratio": {
+ "label": "Proporcja obrazu",
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Portret"
+ },
+ "options__3": {
+ "label": "Kwadrat"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Pokaż drugi obraz po najechaniu kursorem"
+ },
+ "show_vendor": {
+ "label": "Pokaż dostawcę"
+ },
+ "show_rating": {
+ "label": "Pokaż ocenę produktu",
+ "info": "Aby wyświetlić ocenę, dodaj aplikację do oceny produktów. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ },
+ "columns_mobile": {
+ "label": "Liczba kolumn na urządzeniu mobilnym",
+ "options__1": {
+ "label": "1 kolumna"
+ },
+ "options__2": {
+ "label": "2 kolumny"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Wiele wierszy",
+ "settings": {
+ "image": {
+ "label": "Obraz"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Dostosuj do obrazu"
+ },
+ "options__2": {
+ "label": "Mały"
+ },
+ "options__3": {
+ "label": "Średni"
+ },
+ "options__4": {
+ "label": "Duży"
+ },
+ "label": "Wysokość obrazu"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ },
+ "label": "Szerokość obrazu na komputerze",
+ "info": "Obraz jest automatycznie optymalizowany dla urządzeń mobilnych."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Mały"
+ },
+ "options__2": {
+ "label": "Średni"
+ },
+ "options__3": {
+ "label": "Duży"
+ },
+ "label": "Rozmiar nagłówka"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Tekst podstawowy"
+ },
+ "options__2": {
+ "label": "Podtytuł"
+ },
+ "label": "Styl tekstu"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Przycisk w jednolitym kolorze"
+ },
+ "options__2": {
+ "label": "Przycisk konspektu"
+ },
+ "label": "Styl przycisku"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na komputerze"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Góra"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Dół"
+ },
+ "label": "Pozycja treści na komputerze",
+ "info": "Pozycja jest automatycznie optymalizowana dla urządzeń mobilnych."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Naprzemiennie od lewej strony"
+ },
+ "options__2": {
+ "label": "Naprzemiennie od prawej strony"
+ },
+ "options__3": {
+ "label": "Wyrównano do lewej"
+ },
+ "options__4": {
+ "label": "Wyrównano do prawej"
+ },
+ "label": "Umieszczanie obrazów na komputerze",
+ "info": "Umieszczanie jest automatycznie optymalizowane pod kątem urządzeń mobilnych."
+ },
+ "container_color_scheme": {
+ "label": "Kolorystyka kontenera"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Lewa strona"
+ },
+ "options__2": {
+ "label": "Środek"
+ },
+ "options__3": {
+ "label": "Prawa strona"
+ },
+ "label": "Wyrównanie treści na urządzeniu mobilnym"
+ },
+ "header_mobile": {
+ "content": "Układ na urządzeniu mobilnym"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Wiersz",
+ "settings": {
+ "image": {
+ "label": "Obraz"
+ },
+ "caption": {
+ "label": "Napisy"
+ },
+ "heading": {
+ "label": "Nagłówek"
+ },
+ "text": {
+ "label": "Tekst"
+ },
+ "button_label": {
+ "label": "Przycisk z etykietą"
+ },
+ "button_link": {
+ "label": "Link przycisku"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Wiele wierszy"
+ }
+ },
+ "quick-order-list": {
+ "name": "Lista szybkich zamówień",
+ "settings": {
+ "show_image": {
+ "label": "Pokaż obrazy"
+ },
+ "show_sku": {
+ "label": "Pokaż SKU"
+ }
+ },
+ "presets": {
+ "name": "Lista szybkich zamówień"
+ }
+ }
+ }
+}
diff --git a/locales/pt-BR.json b/locales/pt-BR.json
new file mode 100644
index 0000000..6d469d3
--- /dev/null
+++ b/locales/pt-BR.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Entre na loja usando a senha:",
+ "login_password_button": "Entrar usando a senha",
+ "login_form_password_label": "Senha",
+ "login_form_password_placeholder": "Sua senha",
+ "login_form_error": "Senha incorreta.",
+ "login_form_submit": "Entrar",
+ "admin_link_html": "Você é o titular da loja? Faça login aqui ",
+ "powered_by_shopify_html": "Esta loja terá a tecnologia da {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Compartilhar no Facebook",
+ "share_on_twitter": "Tuitar",
+ "share_on_pinterest": "Incluir como pin no Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Voltar à loja",
+ "pagination": {
+ "label": "Paginação",
+ "page": "Página {{ number }}",
+ "next": "Próxima página",
+ "previous": "Página anterior"
+ },
+ "search": {
+ "search": "Pesquisar",
+ "reset": "Limpar termo de pesquisa"
+ },
+ "cart": {
+ "view": "Ver carrinho ({{ count }})",
+ "item_added": "Item adicionado ao carrinho",
+ "view_empty_cart": "Ver carrinho"
+ },
+ "share": {
+ "copy_to_clipboard": "Copiar link",
+ "share_url": "Link",
+ "success_message": "Link copiado para a área de transferência",
+ "close": "Fechar compartilhamento"
+ },
+ "slider": {
+ "of": "de",
+ "next_slide": "Deslizar para a direita",
+ "previous_slide": "Deslizar para a esquerda",
+ "name": "Controle deslizante"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Agradecemos sua assinatura",
+ "button_label": "Assinar"
+ },
+ "accessibility": {
+ "skip_to_text": "Pular para o conteúdo",
+ "close": "Fechar",
+ "unit_price_separator": "por",
+ "vendor": "Fornecedor:",
+ "error": "Erro",
+ "refresh_page": "Ao escolher uma seleção, a página inteira é atualizada.",
+ "link_messages": {
+ "new_window": "Abre em uma nova janela.",
+ "external": "Abre um site externo."
+ },
+ "loading": "Carregando...",
+ "skip_to_product_info": "Pular para as informações do produto",
+ "total_reviews": "total de avaliações",
+ "star_reviews_info": "{{ rating_value }} de {{ rating_max }} estrelas",
+ "collapsible_content_title": "Conteúdo recolhível",
+ "complementary_products": "Produtos complementares"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Saiba mais: {{ title }}",
+ "comments": {
+ "one": "{{ count }} comentário",
+ "other": "{{ count }} comentários",
+ "many": "{{ count }} comentários"
+ },
+ "moderated": "Os comentários precisam ser aprovados antes da publicação.",
+ "comment_form_title": "Deixe um comentário",
+ "name": "Nome",
+ "email": "E-mail",
+ "message": "Comentário",
+ "post": "Publicar comentário",
+ "back_to_blog": "Voltar para o blog",
+ "share": "Compartilhar este artigo",
+ "success": "O comentário foi postado. Obrigado!",
+ "success_moderated": "O comentário foi postado. Nós o publicaremos em breve, pois o blog é moderado."
+ }
+ },
+ "onboarding": {
+ "product_title": "Exemplo de título do produto",
+ "collection_title": "Nome da coleção"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Adicionar ao carrinho",
+ "description": "Descrição",
+ "on_sale": "Promoção",
+ "quantity": {
+ "label": "Quantidade",
+ "input_label": "Quantidade de {{ product }}",
+ "increase": "Aumentar a quantidade de {{ product }}",
+ "decrease": "Diminuir a quantidade de {{ product }}",
+ "minimum_of": "Mínimo de {{ quantity }}",
+ "maximum_of": "Máximo de {{ quantity }}",
+ "multiples_of": "Pacote com {{ quantity }}",
+ "in_cart_html": "{{ quantity }} no carrinho",
+ "note": "Ver regras de quantidade"
+ },
+ "price": {
+ "from_price_html": "De {{ price }}",
+ "regular_price": "Preço normal",
+ "sale_price": "Preço promocional",
+ "unit_price": "Preço unitário"
+ },
+ "share": "Compartilhar o produto",
+ "sold_out": "Esgotado",
+ "unavailable": "Indisponível",
+ "vendor": "Fornecedor",
+ "video_exit_message": "{{ title }} abre um vídeo em tela cheia na mesma janela.",
+ "xr_button": "Ver em seu espaço",
+ "xr_button_label": "Ver em seu espaço, carrega item na janela de realidade aumentada",
+ "pickup_availability": {
+ "view_store_info": "Ver as informações da loja",
+ "check_other_stores": "Verificar a disponibilidade em outras lojas",
+ "pick_up_available": "Retirada disponível",
+ "pick_up_available_at_html": "Retirada disponível em {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Retirada em {{ location_name }} indisponível no momento",
+ "unavailable": "Não foi possível carregar a disponibilidade de retirada.",
+ "refresh": "Atualizar"
+ },
+ "media": {
+ "open_media": "Abrir mídia {{ index }} na janela modal",
+ "play_model": "Reproduzir o visualizador em 3D",
+ "play_video": "Reproduzir vídeo",
+ "gallery_viewer": "Visualizador da galeria",
+ "load_image": "Carregar imagem {{ index }} no visualizador da galeria",
+ "load_model": "Carregar modelo 3D {{ index }} no visualizador da galeria",
+ "load_video": "Reproduzir vídeo {{ index }} no visualizador da galeria",
+ "image_available": "A imagem {{ index }} está disponível no visualizador da galeria"
+ },
+ "view_full_details": "Ver informações completas",
+ "include_taxes": "Tributo incluído.",
+ "shipping_policy_html": "Frete calculado no checkout.",
+ "choose_options": "Escolher opções",
+ "choose_product_options": "Escolha opções para {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – indisponível",
+ "variant_sold_out_or_unavailable": "Variante esgotada ou indisponível",
+ "inventory_in_stock": "Em estoque",
+ "inventory_in_stock_show_count": "{{ quantity }} em estoque",
+ "inventory_low_stock": "Estoque baixo",
+ "inventory_low_stock_show_count": "Estoque baixo: {{ quantity }} restante(s)",
+ "inventory_out_of_stock": "Fora de estoque",
+ "inventory_out_of_stock_continue_selling": "Em estoque",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Preços por volume",
+ "note": "Os preços por volume estão disponíveis",
+ "minimum": "Mais de {{ quantity }}",
+ "price_at_each": "{{ price }}/cada",
+ "price_range": "{{ minimum }} – {{ maximum }}"
+ },
+ "product_variants": "Variantes do produto"
+ },
+ "modal": {
+ "label": "Galeria de mídia"
+ },
+ "facets": {
+ "apply": "Aplicar",
+ "clear": "Limpar",
+ "clear_all": "Remover tudo",
+ "from": "De",
+ "filter_and_sort": "Filtrar e organizar",
+ "filter_by_label": "Filtrar:",
+ "filter_button": "Filtrar",
+ "filters_selected": {
+ "one": "{{ count }} selecionado",
+ "other": "{{ count }} selecionados",
+ "many": "{{ count }} selecionados"
+ },
+ "max_price": "O maior preço é {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} de {{ count }} produto",
+ "other": "{{ product_count }} de {{ count }} produtos",
+ "many": "{{ product_count }} de {{ count }} produtos"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produto",
+ "other": "{{ count }} produtos",
+ "many": "{{ count }} produtos"
+ },
+ "reset": "Reinicializar",
+ "sort_button": "Organizar",
+ "sort_by_label": "Ordenar por:",
+ "to": "Para",
+ "clear_filter": "Remover filtro",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtros selecionados)",
+ "show_more": "Exibir mais",
+ "show_less": "Exibir menos",
+ "filter_and_operator_subtitle": "Corresponder todos"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Não foram encontrados resultados para “{{ terms }}”. Verifique a ortografia ou use uma palavra ou frase diferente.",
+ "results_with_count": {
+ "one": "{{ count }} resultado",
+ "other": "{{ count }} resultados",
+ "many": "{{ count }} resultados"
+ },
+ "title": "Resultados da pesquisa",
+ "page": "Página",
+ "products": "Produtos",
+ "search_for": "Pesquisar \"{{ terms }}\"",
+ "results_with_count_and_term": {
+ "one": "{{ count }} resultado encontrado para “{{ terms }}”",
+ "other": "{{ count }} resultados encontrados para “{{ terms }}”",
+ "many": "{{ count }} resultados encontrados para “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} página",
+ "other": "{{ count }} páginas",
+ "many": "{{ count }} páginas"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} sugestão",
+ "other": "{{ count }} sugestões",
+ "many": "{{ count }} sugestões"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produto",
+ "other": "{{ count }} produtos",
+ "many": "{{ count }} produtos"
+ },
+ "suggestions": "Sugestões",
+ "pages": "Páginas"
+ },
+ "cart": {
+ "cart": "Carrinho"
+ },
+ "contact": {
+ "form": {
+ "name": "Nome",
+ "email": "E-mail",
+ "phone": "Telefone",
+ "comment": "Comentário",
+ "send": "Enviar",
+ "post_success": "Agradecemos seu contato. Retornaremos o mais rápido possível.",
+ "error_heading": "Ajuste o seguinte:",
+ "title": "Formulário de contato"
+ }
+ },
+ "404": {
+ "title": "Página não encontrada",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Comunicado",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} item",
+ "other": "{{ count }} itens",
+ "many": "{{ count }} itens"
+ }
+ },
+ "cart": {
+ "title": "Carrinho",
+ "caption": "Itens do carrinho",
+ "remove_title": "Remover {{ title }}",
+ "note": "Instruções especiais do pedido",
+ "checkout": "Finalizar a compra",
+ "empty": "O carrinho está vazio",
+ "cart_error": "Ocorreu um erro ao atualizar o carrinho. Tente de novo.",
+ "cart_quantity_error_html": "É possível adicionar apenas {{ quantity }} unidade(s) desse item ao carrinho.",
+ "taxes_and_shipping_policy_at_checkout_html": "Tributos, descontos e frete calculados no checkout",
+ "taxes_included_but_shipping_at_checkout": "Tributos incluídos e frete e descontos calculados no checkout",
+ "taxes_included_and_shipping_policy_html": "Tributos incluídos. Frete e descontos calculados no checkout.",
+ "taxes_and_shipping_at_checkout": "Tributos, descontos e frete calculados no checkout",
+ "headings": {
+ "product": "Produto",
+ "price": "Preço",
+ "total": "Total",
+ "quantity": "Quantidade",
+ "image": "Imagem do produto"
+ },
+ "update": "Atualizar",
+ "login": {
+ "title": "Tem uma conta?",
+ "paragraph_html": "Faça login para finalizar a compra com mais rapidez."
+ },
+ "estimated_total": "Total estimado",
+ "new_estimated_total": "Novo total estimado"
+ },
+ "footer": {
+ "payment": "Formas de pagamento"
+ },
+ "featured_blog": {
+ "view_all": "Ver tudo",
+ "onboarding_title": "Post do blog",
+ "onboarding_content": "Apresente aos clientes um resumo do post do blog"
+ },
+ "featured_collection": {
+ "view_all": "Ver tudo",
+ "view_all_label": "Ver todos os produtos da coleção {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Ver tudo"
+ },
+ "collection_template": {
+ "title": "Coleção",
+ "empty": "Nenhum produto encontrado",
+ "use_fewer_filters_html": "Usar menos filtros ou remover tudo "
+ },
+ "video": {
+ "load_video": "Carregar vídeo: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Carregar slide",
+ "previous_slideshow": "Slide anterior",
+ "next_slideshow": "Próximo slide",
+ "pause_slideshow": "Pausar apresentação de slides",
+ "play_slideshow": "Reproduzir apresentação de slides",
+ "carousel": "Carrossel",
+ "slide": "Slide"
+ },
+ "page": {
+ "title": "Título da página"
+ },
+ "announcements": {
+ "previous_announcement": "Comunicado anterior",
+ "next_announcement": "Próximo comunicado",
+ "carousel": "Carrossel",
+ "announcement": "Comunicado",
+ "announcement_bar": "Barra de comunicados"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotal do produto",
+ "view_cart": "Ver carrinho",
+ "each": "{{ money }}/cada",
+ "product": "Produto",
+ "variant": "Variante",
+ "variant_total": "Total das variantes",
+ "items_added": {
+ "one": "{{ quantity }} item adicionado",
+ "other": "{{ quantity }} itens adicionados",
+ "many": "{{ quantity }} itens adicionados"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} item removido",
+ "other": "{{ quantity }} itens removidos",
+ "many": "{{ quantity }} itens removidos"
+ },
+ "product_variants": "Variantes do produto",
+ "total_items": "Total de itens",
+ "remove_all_items_confirmation": "Remover todos os {{ quantity }} itens do carrinho?",
+ "remove_all": "Remover tudo",
+ "cancel": "Cancelar"
+ }
+ },
+ "localization": {
+ "country_label": "País/Região",
+ "language_label": "Idioma",
+ "update_language": "Atualizar idioma",
+ "update_country": "Atualizar país/região"
+ },
+ "customer": {
+ "account": {
+ "title": "Conta",
+ "details": "Informações da conta",
+ "view_addresses": "Ver endereços",
+ "return": "Retornar às Informações da conta"
+ },
+ "account_fallback": "Conta",
+ "activate_account": {
+ "title": "Ativar conta",
+ "subtext": "Crie uma senha para ativar sua conta.",
+ "password": "Senha",
+ "password_confirm": "Confirmar senha",
+ "submit": "Ativar conta",
+ "cancel": "Recusar convite"
+ },
+ "addresses": {
+ "title": "Endereços",
+ "default": "Padrão",
+ "add_new": "Adicionar um novo endereço",
+ "edit_address": "Editar endereço",
+ "first_name": "Nome",
+ "last_name": "Sobrenome",
+ "company": "Empresa",
+ "address1": "Endereço 1",
+ "address2": "Endereço 2",
+ "city": "Cidade",
+ "country": "País/Região",
+ "province": "Província",
+ "zip": "CEP",
+ "phone": "Telefone",
+ "set_default": "Definir como endereço-padrão",
+ "add": "Adicionar endereço",
+ "update": "Atualizar endereço",
+ "cancel": "Cancelar",
+ "edit": "Editar",
+ "delete": "Excluir",
+ "delete_confirm": "Quer mesmo excluir o endereço?"
+ },
+ "log_in": "Fazer login",
+ "log_out": "Sair",
+ "login_page": {
+ "cancel": "Cancelar",
+ "create_account": "Criar conta",
+ "email": "E-mail",
+ "forgot_password": "Esqueceu a senha?",
+ "guest_continue": "Continuar",
+ "guest_title": "Continuar como convidado",
+ "password": "Senha",
+ "title": "Fazer login",
+ "sign_in": "Fazer login",
+ "submit": "Enviar"
+ },
+ "orders": {
+ "title": "Histórico de pedidos",
+ "order_number": "Pedido",
+ "order_number_link": "Número do pedido: {{ number }}",
+ "date": "Data",
+ "payment_status": "Status do pagamento",
+ "fulfillment_status": "Status de processamento do pedido",
+ "total": "Total",
+ "none": "Você ainda não fez nenhum pedido."
+ },
+ "recover_password": {
+ "title": "Redefinir a senha",
+ "subtext": "Você receberá um e-mail para redefinir a senha",
+ "success": "Você receberá um e-mail com um link para atualizar a senha."
+ },
+ "register": {
+ "title": "Criar conta",
+ "first_name": "Nome",
+ "last_name": "Sobrenome",
+ "email": "E-mail",
+ "password": "Senha",
+ "submit": "Criar"
+ },
+ "reset_password": {
+ "title": "Redefinir senha da conta",
+ "subtext": "Insira uma nova senha",
+ "password": "Senha",
+ "password_confirm": "Confirmar senha",
+ "submit": "Redefinir senha"
+ },
+ "order": {
+ "title": "Pedido {{ name }}",
+ "date_html": "Efetuado em {{ date }}",
+ "cancelled_html": "Pedido cancelado em {{ date }}",
+ "cancelled_reason": "Motivo: {{ reason }}",
+ "billing_address": "Endereço de faturamento",
+ "payment_status": "Status do pagamento",
+ "shipping_address": "Endereço de entrega",
+ "fulfillment_status": "Status de processamento do pedido",
+ "discount": "Desconto",
+ "shipping": "Frete",
+ "tax": "Tributo",
+ "product": "Produto",
+ "sku": "SKU",
+ "price": "Preço",
+ "quantity": "Quantidade",
+ "total": "Total",
+ "fulfilled_at_html": "Processado em {{ date }}",
+ "track_shipment": "Rastrear remessa",
+ "tracking_url": "Link de rastreamento",
+ "tracking_company": "Transportadora",
+ "tracking_number": "Número de rastreamento",
+ "subtotal": "Subtotal",
+ "total_duties": "Tributos de importação",
+ "total_refunded": "Reembolsado"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "O saldo no cartão-presente da loja {{ shop }} é de {{ value }}.",
+ "subtext": "Seu cartão-presente",
+ "gift_card_code": "Código do cartão-presente",
+ "shop_link": "Visitar loja virtual",
+ "add_to_apple_wallet": "Adicionar ao app Wallet da Apple",
+ "qr_image_alt": "Código QR — faça a leitura para resgatar o cartão-presente",
+ "copy_code": "Copiar código do cartão-presente",
+ "expired": "Expirado",
+ "copy_code_success": "Código copiado",
+ "how_to_use_gift_card": "Use o código do cartão-presente online ou o código QR na loja",
+ "expiration_date": "Expira em {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Quero enviar como presente",
+ "email_label": "E-mail do destinatário",
+ "email": "E-mail",
+ "name_label": "Nome do destinatário (opcional)",
+ "name": "Nome",
+ "message_label": "Mensagem (opcional)",
+ "message": "Mensagem",
+ "max_characters": "Máximo de {{ max_chars }} caracteres",
+ "email_label_optional_for_no_js_behavior": "E-mail do destinatário (opcional)",
+ "send_on": "AAAA-MM-DD",
+ "send_on_label": "Enviar em (opcional)",
+ "expanded": "Formulário de destinatário do cartão-presente expandido",
+ "collapsed": "Formulário de destinatário do cartão-presente recolhido"
+ }
+ }
+}
diff --git a/locales/pt-BR.schema.json b/locales/pt-BR.schema.json
new file mode 100644
index 0000000..fae8684
--- /dev/null
+++ b/locales/pt-BR.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Cores",
+ "settings": {
+ "background": {
+ "label": "Plano de fundo"
+ },
+ "background_gradient": {
+ "label": "Gradiente de plano de fundo",
+ "info": "O gradiente de plano de fundo substitui o plano de fundo sempre que possível."
+ },
+ "text": {
+ "label": "Texto"
+ },
+ "button_background": {
+ "label": "Plano de fundo do botão sólido"
+ },
+ "button_label": {
+ "label": "Etiqueta de botão sólido"
+ },
+ "secondary_button_label": {
+ "label": "Botão com contorno"
+ },
+ "shadow": {
+ "label": "Sombra"
+ }
+ }
+ },
+ "typography": {
+ "name": "Tipografia",
+ "settings": {
+ "type_header_font": {
+ "label": "Fonte",
+ "info": "A seleção de uma fonte diferente pode afetar a velocidade da loja. [Saiba mais sobre as fontes do sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Títulos"
+ },
+ "header__2": {
+ "content": "Corpo"
+ },
+ "type_body_font": {
+ "label": "Fonte",
+ "info": "A seleção de uma fonte diferente pode afetar a velocidade da loja. [Saiba mais sobre as fontes do sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Escala de tamanho da fonte"
+ },
+ "body_scale": {
+ "label": "Escala de tamanho da fonte"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Redes sociais",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Contas de redes sociais"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Formato de moeda",
+ "settings": {
+ "content": "Códigos de moeda",
+ "currency_code_enabled": {
+ "label": "Exibir códigos de moeda"
+ },
+ "paragraph": "Os preços do carrinho e do checkout sempre mostram os códigos de moeda. Exemplo: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Layout",
+ "settings": {
+ "page_width": {
+ "label": "Largura da página"
+ },
+ "spacing_sections": {
+ "label": "Espaço entre as seções do modelo"
+ },
+ "header__grid": {
+ "content": "Grade"
+ },
+ "paragraph__grid": {
+ "content": "Afeta áreas com várias colunas ou linhas."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Espaço horizontal"
+ },
+ "spacing_grid_vertical": {
+ "label": "Espaço vertical"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Comportamento da pesquisa",
+ "settings": {
+ "header": {
+ "content": "Sugestões de pesquisa"
+ },
+ "predictive_search_enabled": {
+ "label": "Ativar as sugestões de pesquisa"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Exibir o fornecedor do produto",
+ "info": "Visível quando as sugestões de pesquisa estão habilitadas."
+ },
+ "predictive_search_show_price": {
+ "label": "Exibir o preço do produto",
+ "info": "Visível quando as sugestões de pesquisa estão habilitadas."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Borda"
+ },
+ "header__shadow": {
+ "content": "Sombra"
+ },
+ "blur": {
+ "label": "Desfoque"
+ },
+ "corner_radius": {
+ "label": "Raio dos cantos"
+ },
+ "horizontal_offset": {
+ "label": "Compensação horizontal"
+ },
+ "vertical_offset": {
+ "label": "Compensação vertical"
+ },
+ "thickness": {
+ "label": "Espessura"
+ },
+ "opacity": {
+ "label": "Opacidade"
+ },
+ "image_padding": {
+ "label": "Preenchimento de imagem"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do texto"
+ }
+ }
+ },
+ "badges": {
+ "name": "Selos",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__2": {
+ "label": "Canto inferior direito"
+ },
+ "options__3": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__4": {
+ "label": "Canto superior direito"
+ },
+ "label": "Posição em cartões"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Esquema de cores do selo de promoção"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Esquema de cores do selo de esgotado"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botões"
+ },
+ "variant_pills": {
+ "name": "Pílulas de variantes",
+ "paragraph": "Pílulas de variante são uma forma de apresentar suas variantes do produto. [Saiba mais](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Entradas"
+ },
+ "content_containers": {
+ "name": "Contêineres de conteúdo"
+ },
+ "popups": {
+ "name": "Menus suspensos e pop-ups",
+ "paragraph": "Afeta áreas como menus suspensos de navegação, janelas modais de pop-up e pop-ups de carrinho."
+ },
+ "media": {
+ "name": "Mídia"
+ },
+ "drawers": {
+ "name": "Menus deslizantes"
+ },
+ "cart": {
+ "name": "Carrinho",
+ "settings": {
+ "cart_type": {
+ "label": "Tipo de carrinho",
+ "drawer": {
+ "label": "Deslizante"
+ },
+ "page": {
+ "label": "Página"
+ },
+ "notification": {
+ "label": "Notificação pop-up"
+ }
+ },
+ "show_vendor": {
+ "label": "Exibir fornecedor"
+ },
+ "show_cart_note": {
+ "label": "Habilitar observação do carrinho"
+ },
+ "cart_drawer": {
+ "header": "Carrinho de compras deslizante",
+ "collection": {
+ "label": "Coleção",
+ "info": "Exibido quando o carrinho de compras deslizante está vazio."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Cartões de produtos",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Cartão"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Cartões de coleção",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Cartão"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Cartões de blog",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Cartão"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Largura do logo no desktop",
+ "info": "A largura do logo é otimizada automaticamente para dispositivos móveis."
+ },
+ "favicon": {
+ "label": "Imagem de favicon",
+ "info": "Será reduzida para 32 x 32 pixels"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informações da marca",
+ "settings": {
+ "brand_headline": {
+ "label": "Cabeçalho"
+ },
+ "brand_description": {
+ "label": "Descrição"
+ },
+ "brand_image": {
+ "label": "Imagem"
+ },
+ "brand_image_width": {
+ "label": "Largura da imagem"
+ },
+ "paragraph": {
+ "content": "Adicione uma descrição da marca ao rodapé da loja."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animações",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Revelar seções durante a rolagem"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Elevação vertical"
+ },
+ "label": "Efeito ao passar o mouse",
+ "info": "Afeta cartões e botões.",
+ "options__3": {
+ "label": "Elevação 3D"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Preenchimento da seção",
+ "padding_top": "Preenchimento superior",
+ "padding_bottom": "Preenchimento inferior"
+ },
+ "spacing": "Espaçamento",
+ "colors": {
+ "label": "Esquema de cores",
+ "has_cards_info": "Atualize as configurações do tema para alterar o esquema de cores do cartão."
+ },
+ "heading_size": {
+ "label": "Tamanho do título",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "options__4": {
+ "label": "Extra grande"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Arco"
+ },
+ "options__3": {
+ "label": "Bolha"
+ },
+ "options__4": {
+ "label": "Chevron para esquerda"
+ },
+ "options__5": {
+ "label": "Chevron para direita"
+ },
+ "options__6": {
+ "label": "Diamante"
+ },
+ "options__7": {
+ "label": "Paralelogramo"
+ },
+ "options__8": {
+ "label": "Círculo"
+ },
+ "label": "Formato da imagem",
+ "info": "Cartões estilo-padrão não têm bordas quando uma forma de imagem está ativa."
+ },
+ "animation": {
+ "content": "Animações",
+ "image_behavior": {
+ "options__1": {
+ "label": "Nenhuma"
+ },
+ "options__2": {
+ "label": "Movimentação do ambiente"
+ },
+ "label": "Comportamento da imagem",
+ "options__3": {
+ "label": "Posição fixa do plano de fundo"
+ },
+ "options__4": {
+ "label": "Aumentar o zoom na rolagem"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Barra de avisos",
+ "blocks": {
+ "announcement": {
+ "name": "Comunicado",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_alignment": {
+ "label": "Alinhamento do texto",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ }
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Girar automaticamente os comunicados"
+ },
+ "change_slides_speed": {
+ "label": "Mudar a cada"
+ },
+ "header__1": {
+ "content": "Ícones de redes sociais",
+ "info": "Para exibir suas contas em redes sociais, crie links nas [configurações do tema](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Comunicados"
+ },
+ "show_social": {
+ "label": "Mostrar ícones no desktop"
+ },
+ "header__3": {
+ "content": "Seletor de país/região",
+ "info": "Adicione um país/uma região às [configurações de mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Habilitar seletor de país/região"
+ },
+ "header__4": {
+ "content": "Seletor de idioma",
+ "info": "Adicione um idioma às [configurações de idioma.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Habilitar seletor de idioma"
+ }
+ },
+ "presets": {
+ "name": "Barra de comunicados"
+ }
+ },
+ "collage": {
+ "name": "Colagem",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "desktop_layout": {
+ "label": "Layout para desktop",
+ "options__1": {
+ "label": "Bloco grande esquerdo"
+ },
+ "options__2": {
+ "label": "Bloco grande direito"
+ }
+ },
+ "mobile_layout": {
+ "label": "Layout para dispositivo móvel",
+ "options__1": {
+ "label": "Colagem"
+ },
+ "options__2": {
+ "label": "Coluna"
+ }
+ },
+ "card_styles": {
+ "label": "Estilo do cartão",
+ "info": "É possível atualizar os estilos de cartões de produto, coleção e blog nas configurações do tema.",
+ "options__1": {
+ "label": "Usar estilos de cartão individuais"
+ },
+ "options__2": {
+ "label": "Definir o estilo de todos como cartões de produto"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Imagem",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ }
+ }
+ },
+ "product": {
+ "name": "Produto",
+ "settings": {
+ "product": {
+ "label": "Produto"
+ },
+ "secondary_background": {
+ "label": "Exibir plano de fundo secundário"
+ },
+ "second_image": {
+ "label": "Exibir segunda imagem ao passar o cursor"
+ }
+ }
+ },
+ "collection": {
+ "name": "Coleção",
+ "settings": {
+ "collection": {
+ "label": "Coleção"
+ }
+ }
+ },
+ "video": {
+ "name": "Vídeo",
+ "settings": {
+ "cover_image": {
+ "label": "Imagem de capa"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Os vídeos serão reproduzidos em uma janela pop-up se a seção tiver outros blocos.",
+ "placeholder": "Usar um URL do YouTube ou do Vimeo"
+ },
+ "description": {
+ "label": "Texto alternativo do vídeo",
+ "info": "Descreva o vídeo para clientes que usam leitores de tela. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Colagem"
+ }
+ },
+ "collection-list": {
+ "name": "Lista de coleções",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrada"
+ },
+ "info": "Edite as coleções para adicionar imagens. [Saiba mais](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Habilitar gesto de deslizar em dispositivos móveis"
+ },
+ "show_view_all": {
+ "label": "Habilitar o botão \"Ver tudo\" se a lista incluir mais coleções que as mostradas"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "header_mobile": {
+ "content": "Layout para dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Coleção",
+ "settings": {
+ "collection": {
+ "label": "Coleção"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Lista de coleções"
+ }
+ },
+ "contact-form": {
+ "name": "Formulário de contato",
+ "presets": {
+ "name": "Formulário de contato"
+ }
+ },
+ "custom-liquid": {
+ "name": "Liquid personalizado",
+ "settings": {
+ "custom_liquid": {
+ "label": "Código Liquid",
+ "info": "Adicione snippets de app ou outros códigos do Liquid para criar personalizações avançadas. [Saiba mais](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Liquid personalizado"
+ }
+ },
+ "featured-blog": {
+ "name": "Posts do blog",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Número de posts do blog para mostrar"
+ },
+ "show_view_all": {
+ "label": "Habilitar o botão \"Ver tudo\" se o blog tiver mais posts que os mostrados"
+ },
+ "show_image": {
+ "info": "Use uma imagem com proporção 3:2 para alcançar os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "label": "Exibir imagem em destaque"
+ },
+ "show_date": {
+ "label": "Exibir data"
+ },
+ "show_author": {
+ "label": "Exibir autor"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ }
+ },
+ "presets": {
+ "name": "Posts do blog"
+ }
+ },
+ "featured-collection": {
+ "name": "Coleção em destaque",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "collection": {
+ "label": "Coleção"
+ },
+ "products_to_show": {
+ "label": "Máximo de produtos a serem mostrados"
+ },
+ "show_view_all": {
+ "label": "Habilitar a opção \"Ver tudo\" se a coleção tiver mais produtos que os mostrados"
+ },
+ "header": {
+ "content": "Cartão de produto"
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrada"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Exibir segunda imagem ao passar o cursor"
+ },
+ "show_vendor": {
+ "label": "Exibir fornecedor"
+ },
+ "show_rating": {
+ "label": "Exibir avaliações do produto",
+ "info": "Para exibir uma avaliação, adicione um app com essa funcionalidade específica. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Habilitar botão para adicionar rapidamente",
+ "info": "Ideal para o tipo de carrinho deslizante ou pop-up."
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "description": {
+ "label": "Descrição"
+ },
+ "show_description": {
+ "label": "Mostrar a descrição da coleção do admin"
+ },
+ "description_style": {
+ "label": "Estilo da descrição",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ }
+ },
+ "view_all_style": {
+ "label": "Estilo \"Ver tudo\"",
+ "options__1": {
+ "label": "Link"
+ },
+ "options__2": {
+ "label": "Botão com contorno"
+ },
+ "options__3": {
+ "label": "Botão sólido"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Habilitar carrossel no desktop"
+ },
+ "full_width": {
+ "label": "Deixar os produtos na largura total"
+ },
+ "header_mobile": {
+ "content": "Layout para dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Habilitar gesto de deslizar em dispositivos móveis"
+ }
+ },
+ "presets": {
+ "name": "Coleção em destaque"
+ }
+ },
+ "footer": {
+ "name": "Rodapé",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Mostra somente itens de menu de nível superior."
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "subtext": {
+ "label": "Subtexto"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informações da marca",
+ "settings": {
+ "paragraph": {
+ "content": "Este bloco mostrará s informações da marca. [Editar informações da marca.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Ícones de redes sociais"
+ },
+ "show_social": {
+ "label": "Exibir ícones de redes sociais",
+ "info": "Para exibir suas contas em redes sociais, crie links nas [configurações do tema](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Exibir assinante de e-mail"
+ },
+ "newsletter_heading": {
+ "label": "Título"
+ },
+ "header__1": {
+ "content": "Assinante de e-mail",
+ "info": "Assinantes adicionados automaticamente à lista de clientes que \"aceitam marketing\". [Saiba mais](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Ícones de redes sociais",
+ "info": "Para exibir suas contas em redes sociais, crie links nas [configurações do tema](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Exibir ícones de redes sociais"
+ },
+ "header__3": {
+ "content": "Seletor de país/região"
+ },
+ "header__4": {
+ "info": "Adicione um país/uma região às [configurações de mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Habilitar seletor de país/região"
+ },
+ "header__5": {
+ "content": "Seletor de idioma"
+ },
+ "header__6": {
+ "info": "Adicione um idioma em [configurações de idioma.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Habilitar seletor de idioma"
+ },
+ "header__7": {
+ "content": "Formas de pagamento"
+ },
+ "payment_enable": {
+ "label": "Exibir ícones de pagamento"
+ },
+ "margin_top": {
+ "label": "Margem superior"
+ },
+ "header__8": {
+ "content": "Links para políticas",
+ "info": "Para adicionar as políticas da loja, acesse [policy settings](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Mostrar links para políticas"
+ },
+ "header__9": {
+ "content": "Seguir no Shop",
+ "info": "Para permitir que os clientes sigam a loja no app do Shop a partir de sua vitrine, o Shop Pay precisa estar habilitado. [Saiba mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Habilitar \"Seguir no Shop\""
+ }
+ }
+ },
+ "header": {
+ "name": "Cabeçalho",
+ "settings": {
+ "logo_position": {
+ "label": "Posição do logo no desktop",
+ "options__1": {
+ "label": "Centralizado à esquerda"
+ },
+ "options__2": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__3": {
+ "label": "Centralizado na parte superior"
+ },
+ "options__4": {
+ "label": "Centralizado"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Exibir linha separadora"
+ },
+ "margin_bottom": {
+ "label": "Margem inferior"
+ },
+ "menu_type_desktop": {
+ "label": "Tipo de menu para desktop",
+ "info": "O tipo de menu é otimizado automaticamente para dispositivos móveis.",
+ "options__1": {
+ "label": "Menu suspenso"
+ },
+ "options__2": {
+ "label": "Megamenu"
+ },
+ "options__3": {
+ "label": "Deslizante"
+ }
+ },
+ "mobile_layout": {
+ "content": "Layout para dispositivo móvel"
+ },
+ "mobile_logo_position": {
+ "label": "Posição do logo em dispositivo móvel",
+ "options__1": {
+ "label": "Centro"
+ },
+ "options__2": {
+ "label": "Esquerda"
+ }
+ },
+ "logo_help": {
+ "content": "Edite seu logo nas [configurações do tema](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Cabeçalho fixo",
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Na rolagem da página para cima"
+ },
+ "options__3": {
+ "label": "Sempre"
+ },
+ "options__4": {
+ "label": "Sempre, reduzir o tamanho do logo"
+ }
+ },
+ "header__3": {
+ "content": "Seletor de país/região"
+ },
+ "header__4": {
+ "info": "Adicione um país/uma região às [configurações de mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Habilitar seletor de país/região"
+ },
+ "header__5": {
+ "content": "Seletor de idioma"
+ },
+ "header__6": {
+ "info": "Adicione um idioma às [configurações de idioma.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Habilitar seletor de idioma"
+ },
+ "header__1": {
+ "content": "Cor"
+ },
+ "menu_color_scheme": {
+ "label": "Esquema de cores do menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Banner de imagem",
+ "settings": {
+ "image": {
+ "label": "Primeira imagem"
+ },
+ "image_2": {
+ "label": "Segunda imagem"
+ },
+ "stack_images_on_mobile": {
+ "label": "Empilhar imagens em dispositivos móveis"
+ },
+ "show_text_box": {
+ "label": "Exibir contêiner no desktop"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidade de sobreposição de imagem"
+ },
+ "show_text_below": {
+ "label": "Exibir contêiner em dispositivos móveis"
+ },
+ "image_height": {
+ "label": "Altura do banner",
+ "options__1": {
+ "label": "Adaptar à primeira imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "info": "Use uma imagem com proporção 3:2 para alcançar os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__2": {
+ "label": "Centralizado na parte superior"
+ },
+ "options__3": {
+ "label": "Canto superior direito"
+ },
+ "options__4": {
+ "label": "Centralizado à esquerda"
+ },
+ "options__5": {
+ "label": "Centralizado"
+ },
+ "options__6": {
+ "label": "Centralizado à direita"
+ },
+ "options__7": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__8": {
+ "label": "Centralizado na parte inferior"
+ },
+ "options__9": {
+ "label": "Canto inferior direito"
+ },
+ "label": "Posição do conteúdo no desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo no desktop"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo em dispositivos móveis"
+ },
+ "mobile": {
+ "content": "Layout em dispositivos móveis"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Descrição"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ },
+ "label": "Estilo de texto"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botões",
+ "settings": {
+ "button_label_1": {
+ "label": "Primeira etiqueta de botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_1": {
+ "label": "Primeiro link de botão"
+ },
+ "button_style_secondary_1": {
+ "label": "Usar estilo de botão com contorno"
+ },
+ "button_label_2": {
+ "label": "Segunda etiqueta de botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_2": {
+ "label": "Segundo link de botão"
+ },
+ "button_style_secondary_2": {
+ "label": "Usar estilo de botão com contorno"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Banner de imagem"
+ }
+ },
+ "image-with-text": {
+ "name": "Imagem com texto",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "height": {
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "label": "Altura da imagem",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Imagem primeiro"
+ },
+ "options__2": {
+ "label": "Segunda imagem"
+ },
+ "label": "Posicionamento da imagem no desktop",
+ "info": "O layout padrão para dispositivos móveis coloca a imagem primeiro."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pequena"
+ },
+ "options__2": {
+ "label": "Média"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Largura da imagem no desktop",
+ "info": "A imagem é otimizada automaticamente em dispositivos móveis."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo no desktop"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Parte superior"
+ },
+ "options__2": {
+ "label": "Meio"
+ },
+ "options__3": {
+ "label": "Parte inferior"
+ },
+ "label": "Posição do conteúdo no desktop"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Sem sobreposição"
+ },
+ "options__2": {
+ "label": "Com sobreposição"
+ },
+ "label": "Layout do conteúdo"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo em dispositivos móveis"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Conteúdo"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Botão",
+ "settings": {
+ "button_label": {
+ "label": "Etiqueta de botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link": {
+ "label": "Link de botão"
+ },
+ "outline_button": {
+ "label": "Usar estilo de botão com contorno"
+ }
+ }
+ },
+ "caption": {
+ "name": "Legenda",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Legenda"
+ },
+ "options__2": {
+ "label": "Letras maiúsculas"
+ }
+ },
+ "caption_size": {
+ "label": "Tamanho do texto",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Imagem com texto"
+ }
+ },
+ "main-article": {
+ "name": "Post do blog",
+ "blocks": {
+ "featured_image": {
+ "name": "Imagem em destaque",
+ "settings": {
+ "image_height": {
+ "label": "Altura da imagem em destaque",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequena"
+ },
+ "options__3": {
+ "label": "Média"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Use uma imagem com proporção 16:9 para ter os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "title": {
+ "name": "Título",
+ "settings": {
+ "blog_show_date": {
+ "label": "Exibir data"
+ },
+ "blog_show_author": {
+ "label": "Exibir autor"
+ }
+ }
+ },
+ "content": {
+ "name": "Conteúdo"
+ },
+ "share": {
+ "name": "Compartilhar",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se você incluir um link em publicações nas redes sociais, a imagem em destaque da página será exibida como na pré-visualização. [Saiba mais](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Um título e uma descrição da loja estão incluídos na prévia da imagem. [Saiba mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Texto"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Posts do blog",
+ "settings": {
+ "header": {
+ "content": "Cartão de post do blog"
+ },
+ "show_image": {
+ "label": "Exibir imagem em destaque"
+ },
+ "paragraph": {
+ "content": "Edite os posts do blog para alterar os resumos. [Saiba mais](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Exibir data"
+ },
+ "show_author": {
+ "label": "Exibir autor"
+ },
+ "layout": {
+ "label": "Layout para desktop",
+ "options__1": {
+ "label": "Grade"
+ },
+ "options__2": {
+ "label": "Colagem"
+ },
+ "info": "As postagens aparecem empilhadas em dispositivos móveis."
+ },
+ "image_height": {
+ "label": "Altura da imagem em destaque",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequena"
+ },
+ "options__3": {
+ "label": "Média"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Use uma imagem com proporção 3:2 para alcançar os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotal",
+ "blocks": {
+ "subtotal": {
+ "name": "Preço subtotal"
+ },
+ "buttons": {
+ "name": "Botão de checkout"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Itens"
+ },
+ "main-collection-banner": {
+ "name": "Banner da coleção",
+ "settings": {
+ "paragraph": {
+ "content": "Edite a coleção para adicionar imagens ou descrições. [Saiba mais](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Exibir a descrição da coleção"
+ },
+ "show_collection_image": {
+ "label": "Exibir imagem da coleção",
+ "info": "Use uma imagem com proporção 16:9 para ter os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Grade de produtos",
+ "settings": {
+ "products_per_page": {
+ "label": "Produtos por página"
+ },
+ "enable_filtering": {
+ "label": "Habilitar filtragem",
+ "info": "Personalize os filtros com o app Search & Discovery. [Saiba mais](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Habilitar organização"
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrada"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Exibir segunda imagem ao passar o cursor"
+ },
+ "show_vendor": {
+ "label": "Exibir fornecedor"
+ },
+ "header__1": {
+ "content": "Filtragem e organização"
+ },
+ "header__3": {
+ "content": "Cartão de produto"
+ },
+ "enable_tags": {
+ "label": "Habilitar a filtragem",
+ "info": "Personalize os filtros com o app Search & Discovery. [Saiba mais](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "show_rating": {
+ "label": "Exibir avaliações do produto",
+ "info": "Para exibir uma avaliação, adicione um app com essa funcionalidade específica. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Habilitar botão para adicionar rapidamente",
+ "info": "Ideal para o tipo de carrinho deslizante ou pop-up."
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "header_mobile": {
+ "content": "Layout para dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ },
+ "filter_type": {
+ "label": "Layout de filtro para desktop",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ },
+ "options__3": {
+ "label": "Menu deslizante"
+ },
+ "info": "O menu deslizante é o layout-padrão para dispositivo móvel."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Página da lista de coleções",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "sort": {
+ "label": "Ordenar coleções por:",
+ "options__1": {
+ "label": "Ordem alfabética, A–Z"
+ },
+ "options__2": {
+ "label": "Ordem alfabética, Z–A"
+ },
+ "options__3": {
+ "label": "Data, mais recente primeiro"
+ },
+ "options__4": {
+ "label": "Data, mais antiga primeiro"
+ },
+ "options__5": {
+ "label": "Contagem de produtos, alta para baixa"
+ },
+ "options__6": {
+ "label": "Contagem de produtos, baixa para alta"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrada"
+ },
+ "info": "Edite as coleções para adicionar imagens. [Saiba mais](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "header_mobile": {
+ "content": "Layout em dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Página"
+ },
+ "main-password-footer": {
+ "name": "Rodapé de senha"
+ },
+ "main-password-header": {
+ "name": "Cabeçalho de senha",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Edite seu logo nas configurações do tema."
+ }
+ }
+ },
+ "main-product": {
+ "blocks": {
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Título"
+ },
+ "price": {
+ "name": "Preço"
+ },
+ "quantity_selector": {
+ "name": "Seletor de quantidade"
+ },
+ "variant_picker": {
+ "name": "Seletor de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Menu suspenso"
+ },
+ "options__2": {
+ "label": "Pílulas"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Botões Comprar",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Exibir botões de checkout dinâmico",
+ "info": "Cada cliente vê a forma de pagamento preferencial 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)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Mostrar formulário de informações do destinatário para cartões-presente",
+ "info": "Permita que os compradores enviem cartões-presente com uma mensagem pessoal em uma data programada. [Saiba mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Disponibilidade de retirada"
+ },
+ "description": {
+ "name": "Descrição"
+ },
+ "share": {
+ "name": "Compartilhar",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se você incluir um link em publicações nas redes sociais, a imagem em destaque da página será exibida como na pré-visualização. [Saiba mais](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Um título e uma descrição da loja estão incluídos na prévia da imagem. [Saiba mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Texto"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Linha recolhível",
+ "settings": {
+ "heading": {
+ "info": "Inclua um título que explique o conteúdo.",
+ "label": "Título"
+ },
+ "content": {
+ "label": "Conteúdo da linha"
+ },
+ "page": {
+ "label": "Conteúdo da linha de página"
+ },
+ "icon": {
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Maçã"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Garrafa"
+ },
+ "options__5": {
+ "label": "Caixa"
+ },
+ "options__6": {
+ "label": "Cenoura"
+ },
+ "options__7": {
+ "label": "Balão de chat"
+ },
+ "options__8": {
+ "label": "Marca de seleção"
+ },
+ "options__9": {
+ "label": "Prancheta"
+ },
+ "options__10": {
+ "label": "Laticínios"
+ },
+ "options__11": {
+ "label": "Sem lactose"
+ },
+ "options__12": {
+ "label": "Secador"
+ },
+ "options__13": {
+ "label": "Olho"
+ },
+ "options__14": {
+ "label": "Fogo"
+ },
+ "options__15": {
+ "label": "Sem glúten"
+ },
+ "options__16": {
+ "label": "Coração"
+ },
+ "options__17": {
+ "label": "Ferro"
+ },
+ "options__18": {
+ "label": "Folha"
+ },
+ "options__19": {
+ "label": "Couro"
+ },
+ "options__20": {
+ "label": "Relâmpago"
+ },
+ "options__21": {
+ "label": "Batom"
+ },
+ "options__22": {
+ "label": "Cadeado"
+ },
+ "options__23": {
+ "label": "Marcador de mapa"
+ },
+ "options__24": {
+ "label": "Sem nozes"
+ },
+ "label": "Ícone",
+ "options__25": {
+ "label": "Calças"
+ },
+ "options__26": {
+ "label": "Pegada de pata"
+ },
+ "options__27": {
+ "label": "Pimenta"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Avião"
+ },
+ "options__30": {
+ "label": "Planta"
+ },
+ "options__31": {
+ "label": "Etiqueta de preço"
+ },
+ "options__32": {
+ "label": "Ponto de interrogação"
+ },
+ "options__33": {
+ "label": "Reciclar"
+ },
+ "options__34": {
+ "label": "Voltar"
+ },
+ "options__35": {
+ "label": "Régua"
+ },
+ "options__36": {
+ "label": "Travessa"
+ },
+ "options__37": {
+ "label": "Camisa"
+ },
+ "options__38": {
+ "label": "Sapato"
+ },
+ "options__39": {
+ "label": "Silhueta"
+ },
+ "options__40": {
+ "label": "Floco de neve"
+ },
+ "options__41": {
+ "label": "Estrela"
+ },
+ "options__42": {
+ "label": "Cronômetro"
+ },
+ "options__43": {
+ "label": "Caminhão"
+ },
+ "options__44": {
+ "label": "Lavagem"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Pop-up",
+ "settings": {
+ "link_label": {
+ "label": "Etiqueta de link"
+ },
+ "page": {
+ "label": "Página"
+ }
+ }
+ },
+ "rating": {
+ "name": "Avaliação do produto",
+ "settings": {
+ "paragraph": {
+ "content": "Para exibir uma avaliação, adicione um app com essa funcionalidade específica. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Produtos complementares",
+ "settings": {
+ "paragraph": {
+ "content": "Para selecionar produtos complementares, adicione o app Search & Discovery. [Saiba mais](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "make_collapsible_row": {
+ "label": "Exibir como linha recolhível"
+ },
+ "icon": {
+ "info": "Visível quando a linha recolhível é exibida."
+ },
+ "product_list_limit": {
+ "label": "Máximo de produtos a serem mostrados"
+ },
+ "products_per_page": {
+ "label": "Número de produtos por página"
+ },
+ "pagination_style": {
+ "label": "Estilo de paginação",
+ "options": {
+ "option_1": "Pontos",
+ "option_2": "Contador",
+ "option_3": "Números"
+ }
+ },
+ "product_card": {
+ "heading": "Cartão de produto"
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options": {
+ "option_1": "Retrato",
+ "option_2": "Quadrado"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Habilitar botão para adicionar rapidamente"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ícone com texto",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ }
+ },
+ "content": {
+ "label": "Conteúdo",
+ "info": "Escolha um ícone ou adicione uma imagem para cada coluna ou linha."
+ },
+ "heading": {
+ "info": "Deixe o título em branco para ocultar a coluna de ícone."
+ },
+ "icon_1": {
+ "label": "Primeiro ícone"
+ },
+ "image_1": {
+ "label": "Primeira imagem"
+ },
+ "heading_1": {
+ "label": "Primeiro título"
+ },
+ "icon_2": {
+ "label": "Segundo ícone"
+ },
+ "image_2": {
+ "label": "Segunda imagem"
+ },
+ "heading_2": {
+ "label": "Segundo título"
+ },
+ "icon_3": {
+ "label": "Terceiro ícone"
+ },
+ "image_3": {
+ "label": "Terceira imagem"
+ },
+ "heading_3": {
+ "label": "Terceiro título"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Status do estoque",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Limite de estoque baixo",
+ "info": "Escolha 0 para sempre mostrar no estoque, se disponível."
+ },
+ "show_inventory_quantity": {
+ "label": "Mostrar contagem de estoque"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Mídia",
+ "info": "Saiba mais sobre [tipos de mídia.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Habilitar loop de vídeo"
+ },
+ "enable_sticky_info": {
+ "label": "Habilitar conteúdo persistente no desktop"
+ },
+ "hide_variants": {
+ "label": "Ocultar a mídia de outras variantes após selecionar uma delas"
+ },
+ "gallery_layout": {
+ "label": "Layout para desktop",
+ "options__1": {
+ "label": "Empilhado"
+ },
+ "options__2": {
+ "label": "Duas colunas"
+ },
+ "options__3": {
+ "label": "Miniaturas"
+ },
+ "options__4": {
+ "label": "Carrossel de miniaturas"
+ }
+ },
+ "media_size": {
+ "label": "Largura da mídia para desktop",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "info": "A mídia é otimizada automaticamente para dispositivos móveis."
+ },
+ "mobile_thumbnails": {
+ "label": "Layout em dispositivos móveis",
+ "options__1": {
+ "label": "Duas colunas"
+ },
+ "options__2": {
+ "label": "Exibir miniaturas"
+ },
+ "options__3": {
+ "label": "Ocultar miniaturas"
+ }
+ },
+ "media_position": {
+ "label": "Posição da mídia no desktop",
+ "info": "A posição é otimizada automaticamente para dispositivos móveis.",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Direita"
+ }
+ },
+ "image_zoom": {
+ "label": "Zoom de imagem",
+ "info": "Clique e passe o cursor para abrir a janela modal no celular.",
+ "options__1": {
+ "label": "Abrir janela modal"
+ },
+ "options__2": {
+ "label": "Clicar e passar o cursor"
+ },
+ "options__3": {
+ "label": "Sem zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Ajustar a mídia à tela"
+ },
+ "media_fit": {
+ "label": "Ajuste da mídia",
+ "options__1": {
+ "label": "Original"
+ },
+ "options__2": {
+ "label": "Preenchimento"
+ }
+ }
+ },
+ "name": "Informações do produto"
+ },
+ "main-search": {
+ "name": "Resultados da pesquisa",
+ "settings": {
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrada"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Exibir segunda imagem ao passar o cursor"
+ },
+ "show_vendor": {
+ "label": "Exibir fornecedor"
+ },
+ "header__1": {
+ "content": "Cartão de produto"
+ },
+ "header__2": {
+ "content": "Cartão de blog",
+ "info": "Os estilos de cartão do blog se aplicam também a cartões de página nos resultados de pesquisa. Para alterar esses estilos, atualize as configurações do tema."
+ },
+ "article_show_date": {
+ "label": "Exibir data"
+ },
+ "article_show_author": {
+ "label": "Exibir autor"
+ },
+ "show_rating": {
+ "label": "Exibir avaliações do produto",
+ "info": "Para exibir uma avaliação, adicione um app com essa funcionalidade específica. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "header_mobile": {
+ "content": "Layout para dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Multicoluna",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "image_width": {
+ "label": "Largura da imagem",
+ "options__1": {
+ "label": "Largura de um terço da coluna"
+ },
+ "options__2": {
+ "label": "Largura de metade da coluna"
+ },
+ "options__3": {
+ "label": "Largura total da coluna"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrada"
+ },
+ "options__4": {
+ "label": "Círculo"
+ }
+ },
+ "column_alignment": {
+ "label": "Alinhamento da coluna",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ }
+ },
+ "background_style": {
+ "label": "Fundo secundário",
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Exibir como plano de fundo da coluna"
+ }
+ },
+ "button_label": {
+ "label": "Etiqueta de botão"
+ },
+ "button_link": {
+ "label": "Link de botão"
+ },
+ "swipe_on_mobile": {
+ "label": "Habilitar gesto de deslizar em dispositivos móveis"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "header_mobile": {
+ "content": "Layout para dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Coluna",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "title": {
+ "label": "Título"
+ },
+ "text": {
+ "label": "Descrição"
+ },
+ "link_label": {
+ "label": "Etiqueta de link"
+ },
+ "link": {
+ "label": "Link"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multicoluna"
+ }
+ },
+ "newsletter": {
+ "name": "Assinante de e-mail",
+ "settings": {
+ "full_width": {
+ "label": "Definir seção com largura total"
+ },
+ "paragraph": {
+ "content": "Cada assinatura por e-mail cria uma conta de cliente. [Saiba mais](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Subtítulo",
+ "settings": {
+ "paragraph": {
+ "label": "Descrição"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulário de e-mail"
+ }
+ },
+ "presets": {
+ "name": "Assinante de e-mail"
+ }
+ },
+ "page": {
+ "name": "Página",
+ "settings": {
+ "page": {
+ "label": "Página"
+ }
+ },
+ "presets": {
+ "name": "Página"
+ }
+ },
+ "rich-text": {
+ "name": "Rich text",
+ "settings": {
+ "full_width": {
+ "label": "Definir seção com largura total"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Posição do conteúdo no desktop",
+ "info": "A posição é otimizada automaticamente para dispositivos móveis."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Descrição"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botões",
+ "settings": {
+ "button_label_1": {
+ "label": "Primeira etiqueta de botão",
+ "info": "Deixar a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_1": {
+ "label": "Primeiro link de botão"
+ },
+ "button_style_secondary_1": {
+ "label": "Usar estilo de botão com contorno"
+ },
+ "button_label_2": {
+ "label": "Segunda etiqueta de botão",
+ "info": "Deixar a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_2": {
+ "label": "Segundo link de botão"
+ },
+ "button_style_secondary_2": {
+ "label": "Usar estilo de botão com contorno"
+ }
+ }
+ },
+ "caption": {
+ "name": "Legenda",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Legenda"
+ },
+ "options__2": {
+ "label": "Letras maiúsculas"
+ }
+ },
+ "caption_size": {
+ "label": "Tamanho do texto",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich text"
+ }
+ },
+ "apps": {
+ "name": "Apps",
+ "settings": {
+ "include_margins": {
+ "label": "Deixar margens da seção iguais ao tema"
+ }
+ },
+ "presets": {
+ "name": "Apps"
+ }
+ },
+ "video": {
+ "name": "Vídeo",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "cover_image": {
+ "label": "Imagem de capa"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Usar um URL do YouTube ou do Vimeo"
+ },
+ "description": {
+ "label": "Texto alternativo do vídeo",
+ "info": "Descreva o vídeo para clientes que usam leitores de tela. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Adicionar preenchimento de imagem",
+ "info": "Selecione o preenchimento se não quiser que as imagens sejam cortadas."
+ },
+ "full_width": {
+ "label": "Definir seção com largura total"
+ },
+ "video": {
+ "label": "Vídeo"
+ },
+ "enable_video_looping": {
+ "label": "Reproduzir vídeo em loop"
+ },
+ "header__1": {
+ "content": "Vídeo hospedado na Shopify"
+ },
+ "header__2": {
+ "content": "Ou incorporar vídeo de URL"
+ },
+ "header__3": {
+ "content": "Estilo"
+ },
+ "paragraph": {
+ "content": "Mostra quando nenhum vídeo hospedado na Shopify é selecionado."
+ }
+ },
+ "presets": {
+ "name": "Vídeo"
+ }
+ },
+ "featured-product": {
+ "name": "Produto em destaque",
+ "blocks": {
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Título"
+ },
+ "price": {
+ "name": "Preço"
+ },
+ "quantity_selector": {
+ "name": "Seletor de quantidade"
+ },
+ "variant_picker": {
+ "name": "Seletor de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Menu suspenso"
+ },
+ "options__2": {
+ "label": "Pílulas"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Botões Comprar",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Exibir botões de checkout dinâmico",
+ "info": "Cada cliente vê a forma de pagamento preferencial 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)"
+ }
+ }
+ },
+ "description": {
+ "name": "Descrição"
+ },
+ "share": {
+ "name": "Compartilhar",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se você incluir um link em publicações nas redes sociais, a imagem em destaque da página será exibida como na pré-visualização. [Saiba mais](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "O título e a descrição da loja estão incluídos na prévia da imagem. [Saiba mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Texto"
+ }
+ }
+ },
+ "rating": {
+ "name": "Avaliação do produto",
+ "settings": {
+ "paragraph": {
+ "content": "Para exibir uma avaliação, adicione um app com essa funcionalidade específica. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "options__3": {
+ "label": "Letras maiúsculas"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produto"
+ },
+ "secondary_background": {
+ "label": "Exibir plano de fundo secundário"
+ },
+ "header": {
+ "content": "Mídia",
+ "info": "Saiba mais sobre os [tipos de mídia](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Habilitar loop de vídeo"
+ },
+ "hide_variants": {
+ "label": "Ocultar mídia das variantes não selecionadas na área de trabalho"
+ },
+ "media_position": {
+ "label": "Posição da mídia no desktop",
+ "info": "A posição é otimizada automaticamente para dispositivos móveis.",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Direita"
+ }
+ }
+ },
+ "presets": {
+ "name": "Produto em destaque"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner de assinante de e-mail",
+ "settings": {
+ "paragraph": {
+ "content": "Cada assinatura por e-mail cria uma conta de cliente. [Saiba mais](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Imagem de fundo"
+ },
+ "show_background_image": {
+ "label": "Exibir imagem de fundo"
+ },
+ "show_text_box": {
+ "label": "Exibir contêiner no desktop"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidade de sobreposição de imagem"
+ },
+ "show_text_below": {
+ "label": "Exibir conteúdo abaixo da imagem em dispositivos móveis",
+ "info": "Use uma imagem com proporção 16:9 para ter os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Altura do banner",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequena"
+ },
+ "options__3": {
+ "label": "Média"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Use uma imagem com proporção 16:9 para ter os melhores resultados. [Saiba mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__2": {
+ "label": "Centro da parte superior"
+ },
+ "options__3": {
+ "label": "Canto superior direito"
+ },
+ "options__4": {
+ "label": "Centro à esquerda"
+ },
+ "options__5": {
+ "label": "Centralizado"
+ },
+ "options__6": {
+ "label": "Centralizado à direita"
+ },
+ "options__7": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__8": {
+ "label": "Centralizado na parte inferior"
+ },
+ "options__9": {
+ "label": "Canto inferior direito"
+ },
+ "label": "Posição do conteúdo no desktop"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo no desktop"
+ },
+ "header": {
+ "content": "Layout para dispositivos móveis"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo em dispositivos móveis"
+ },
+ "color_scheme": {
+ "info": "Visível quando o contêiner é exibido."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Título",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Parágrafo",
+ "settings": {
+ "paragraph": {
+ "label": "Descrição"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "label": "Estilo de texto"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulário de e-mail"
+ }
+ },
+ "presets": {
+ "name": "Banner de assinante de e-mail"
+ }
+ },
+ "slideshow": {
+ "name": "Apresentação de slides",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Largura total"
+ },
+ "options__2": {
+ "label": "Grade"
+ }
+ },
+ "slide_height": {
+ "label": "Altura do slide",
+ "options__1": {
+ "label": "Adaptar à primeira imagem"
+ },
+ "options__2": {
+ "label": "Pequena"
+ },
+ "options__3": {
+ "label": "Média"
+ },
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "slider_visual": {
+ "label": "Estilo de paginação",
+ "options__1": {
+ "label": "Contador"
+ },
+ "options__2": {
+ "label": "Pontos"
+ },
+ "options__3": {
+ "label": "Números"
+ }
+ },
+ "auto_rotate": {
+ "label": "Rodar automaticamente os slides"
+ },
+ "change_slides_speed": {
+ "label": "Mudar os slides a cada"
+ },
+ "show_text_below": {
+ "label": "Exibir conteúdo abaixo das imagens em dispositivos móveis"
+ },
+ "mobile": {
+ "content": "Layout em dispositivos móveis"
+ },
+ "accessibility": {
+ "content": "Acessibilidade",
+ "label": "Descrição da apresentação de slides",
+ "info": "Descreva a apresentação de slides para clientes que usam leitores de tela."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Slide",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "subheading": {
+ "label": "Subtítulo"
+ },
+ "button_label": {
+ "label": "Etiqueta de botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "link": {
+ "label": "Link de botão"
+ },
+ "secondary_style": {
+ "label": "Usar estilo de botão com contorno"
+ },
+ "box_align": {
+ "label": "Posição do conteúdo no desktop",
+ "options__1": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__2": {
+ "label": "Centralizado na parte superior"
+ },
+ "options__3": {
+ "label": "Canto superior direito"
+ },
+ "options__4": {
+ "label": "Centralizado à esquerda"
+ },
+ "options__5": {
+ "label": "Centralizado"
+ },
+ "options__6": {
+ "label": "Centralizado à direita"
+ },
+ "options__7": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__8": {
+ "label": "Centralizado na parte inferior"
+ },
+ "options__9": {
+ "label": "Canto inferior direito"
+ },
+ "info": "A posição é otimizada automaticamente para dispositivos móveis."
+ },
+ "show_text_box": {
+ "label": "Exibir contêiner no desktop"
+ },
+ "text_alignment": {
+ "label": "Alinhamento de conteúdo no desktop",
+ "option_1": {
+ "label": "Esquerda"
+ },
+ "option_2": {
+ "label": "Centro"
+ },
+ "option_3": {
+ "label": "Direita"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidade de sobreposição de imagem"
+ },
+ "text_alignment_mobile": {
+ "label": "Alinhamento de conteúdo em dispositivos móveis",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Apresentação de slides"
+ }
+ },
+ "collapsible_content": {
+ "name": "Conteúdo recolhível",
+ "settings": {
+ "caption": {
+ "label": "Legenda"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "heading_alignment": {
+ "label": "Alinhamento do título",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ }
+ },
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Nenhum contêiner"
+ },
+ "options__2": {
+ "label": "Contêiner de linha"
+ },
+ "options__3": {
+ "label": "Contêiner de seção"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Esquema de cores do contêiner",
+ "info": "Visível quando o layout está definido para contêiner de Linha ou de Seção."
+ },
+ "open_first_collapsible_row": {
+ "label": "Abrir primeira linha recolhível"
+ },
+ "header": {
+ "content": "Layout da imagem"
+ },
+ "image": {
+ "label": "Imagem"
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ },
+ "desktop_layout": {
+ "label": "Layout para desktop",
+ "options__1": {
+ "label": "Primeira imagem"
+ },
+ "options__2": {
+ "label": "Segunda imagem"
+ },
+ "info": "A imagem sempre aparece primeiro em dispositivos móveis."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Linha recolhível",
+ "settings": {
+ "heading": {
+ "info": "Inclua um título que explique o conteúdo.",
+ "label": "Título"
+ },
+ "row_content": {
+ "label": "Conteúdo da linha"
+ },
+ "page": {
+ "label": "Conteúdo da linha de página"
+ },
+ "icon": {
+ "label": "Ícone",
+ "options__1": {
+ "label": "Nenhuma"
+ },
+ "options__2": {
+ "label": "Maçã"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Garrafa"
+ },
+ "options__5": {
+ "label": "Caixa"
+ },
+ "options__6": {
+ "label": "Cenoura"
+ },
+ "options__7": {
+ "label": "Balão de chat"
+ },
+ "options__8": {
+ "label": "Marca de seleção"
+ },
+ "options__9": {
+ "label": "Prancheta"
+ },
+ "options__10": {
+ "label": "Laticínios"
+ },
+ "options__11": {
+ "label": "Sem lactose"
+ },
+ "options__12": {
+ "label": "Secador"
+ },
+ "options__13": {
+ "label": "Olho"
+ },
+ "options__14": {
+ "label": "Fogo"
+ },
+ "options__15": {
+ "label": "Sem glúten"
+ },
+ "options__16": {
+ "label": "Coração"
+ },
+ "options__17": {
+ "label": "Ferro"
+ },
+ "options__18": {
+ "label": "Folha"
+ },
+ "options__19": {
+ "label": "Couro"
+ },
+ "options__20": {
+ "label": "Relâmpago"
+ },
+ "options__21": {
+ "label": "Batom"
+ },
+ "options__22": {
+ "label": "Cadeado"
+ },
+ "options__23": {
+ "label": "Marcador de mapa"
+ },
+ "options__24": {
+ "label": "Sem nozes"
+ },
+ "options__25": {
+ "label": "Calças"
+ },
+ "options__26": {
+ "label": "Pegada de pata"
+ },
+ "options__27": {
+ "label": "Pimenta"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Avião"
+ },
+ "options__30": {
+ "label": "Planta"
+ },
+ "options__31": {
+ "label": "Etiqueta de preço"
+ },
+ "options__32": {
+ "label": "Ponto de interrogação"
+ },
+ "options__33": {
+ "label": "Reciclar"
+ },
+ "options__34": {
+ "label": "Voltar"
+ },
+ "options__35": {
+ "label": "Régua"
+ },
+ "options__36": {
+ "label": "Travessa"
+ },
+ "options__37": {
+ "label": "Camisa"
+ },
+ "options__38": {
+ "label": "Sapato"
+ },
+ "options__39": {
+ "label": "Silhueta"
+ },
+ "options__40": {
+ "label": "Floco de neve"
+ },
+ "options__41": {
+ "label": "Estrela"
+ },
+ "options__42": {
+ "label": "Cronômetro"
+ },
+ "options__43": {
+ "label": "Caminhão"
+ },
+ "options__44": {
+ "label": "Lavagem"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Conteúdo recolhível"
+ }
+ },
+ "main-account": {
+ "name": "Conta"
+ },
+ "main-activate-account": {
+ "name": "Ativação de conta"
+ },
+ "main-addresses": {
+ "name": "Endereços"
+ },
+ "main-login": {
+ "name": "Fazer login"
+ },
+ "main-order": {
+ "name": "Pedido"
+ },
+ "main-register": {
+ "name": "Registro"
+ },
+ "main-reset-password": {
+ "name": "Redefinição de senha"
+ },
+ "related-products": {
+ "name": "Produtos relacionados",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "products_to_show": {
+ "label": "Máximo de produtos a serem mostrados"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no desktop"
+ },
+ "paragraph__1": {
+ "content": "As recomendações dinâmicas usam informações sobre pedidos e produtos para mudar e melhorar com o tempo. [Saiba mais](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Cartão de produto"
+ },
+ "image_ratio": {
+ "label": "Proporção da imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Square"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Exibir segunda imagem ao passar o cursor"
+ },
+ "show_vendor": {
+ "label": "Exibir fornecedor"
+ },
+ "show_rating": {
+ "label": "Exibir avaliações do produto",
+ "info": "Para exibir uma avaliação, adicione um app com essa funcionalidade específica. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Layout em dispositivos móveis"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivos móveis",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Várias linhas",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "label": "Altura da imagem"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Largura da imagem no desktop",
+ "info": "A imagem é otimizada automaticamente em dispositivos móveis."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Tamanho do título"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Subtítulo"
+ },
+ "label": "Estilo de texto"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Botão sólido"
+ },
+ "options__2": {
+ "label": "Botão com contorno"
+ },
+ "label": "Estilo de botão"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo no desktop"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Parte superior"
+ },
+ "options__2": {
+ "label": "Meio"
+ },
+ "options__3": {
+ "label": "Parte inferior"
+ },
+ "label": "Posição do conteúdo no desktop",
+ "info": "A posição é otimizada automaticamente para dispositivos móveis."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alternar da esquerda"
+ },
+ "options__2": {
+ "label": "Alternar da direita"
+ },
+ "options__3": {
+ "label": "Alinhado à esquerda"
+ },
+ "options__4": {
+ "label": "Alinhado à direita"
+ },
+ "label": "Posicionamento da imagem no desktop",
+ "info": "O posicionamento é otimizado automaticamente para dispositivos móveis."
+ },
+ "container_color_scheme": {
+ "label": "Esquema de cores do contêiner"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo em dispositivos móveis"
+ },
+ "header_mobile": {
+ "content": "Layout em dispositivos móveis"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Linha",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "caption": {
+ "label": "Legenda"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "text": {
+ "label": "Texto"
+ },
+ "button_label": {
+ "label": "Etiqueta de botão"
+ },
+ "button_link": {
+ "label": "Link de botão"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Várias linhas"
+ }
+ },
+ "quick-order-list": {
+ "name": "Lista de pedidos rápidos",
+ "settings": {
+ "show_image": {
+ "label": "Mostrar imagens"
+ },
+ "show_sku": {
+ "label": "Mostrar SKUs"
+ }
+ },
+ "presets": {
+ "name": "Lista de pedidos rápidos"
+ }
+ }
+ }
+}
diff --git a/locales/pt-PT.json b/locales/pt-PT.json
new file mode 100644
index 0000000..ce5a34d
--- /dev/null
+++ b/locales/pt-PT.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Entre na loja usando a palavra-passe:",
+ "login_password_button": "Entre usando a palavra-passe",
+ "login_form_password_label": "Palavra-passe",
+ "login_form_password_placeholder": "A sua palavra-passe",
+ "login_form_error": "Palavra-passe errada!",
+ "login_form_submit": "Entrar",
+ "admin_link_html": "É o proprietário da loja? Inicie a sessão aqui ",
+ "powered_by_shopify_html": "Esta loja irá contar com tecnologia {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Partilhar no Facebook",
+ "share_on_twitter": "Twittar no Twitter",
+ "share_on_pinterest": "Marcar com um pin no Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Continuar a comprar",
+ "pagination": {
+ "label": "Paginação",
+ "page": "Página {{ number }}",
+ "next": "Página seguinte",
+ "previous": "Página anterior"
+ },
+ "search": {
+ "search": "Pesquisar",
+ "reset": "Limpar termo de pesquisa"
+ },
+ "cart": {
+ "view": "Ver carrinho ({{ count }})",
+ "item_added": "Item adicionado ao seu carrinho",
+ "view_empty_cart": "Ver carrinho"
+ },
+ "share": {
+ "copy_to_clipboard": "Copiar ligação",
+ "share_url": "Ligação",
+ "success_message": "Ligação copiada para a área de transferência",
+ "close": "Fechar partilha"
+ },
+ "slider": {
+ "of": "de",
+ "next_slide": "Deslizar para a direita",
+ "previous_slide": "Deslizar para a esquerda",
+ "name": "Slider"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Obrigado pela sua subscrição",
+ "button_label": "Subscrever"
+ },
+ "accessibility": {
+ "skip_to_text": "Saltar para o conteúdo",
+ "close": "Encerrar",
+ "unit_price_separator": "por",
+ "vendor": "Fornecedor:",
+ "error": "Erro",
+ "refresh_page": "Escolher uma seleção resulta numa atualização de página completa.",
+ "link_messages": {
+ "new_window": "Abre numa nova janela.",
+ "external": "Abre website externo."
+ },
+ "loading": "A carregar...",
+ "skip_to_product_info": "Saltar para a informação do produto",
+ "total_reviews": "análises totais",
+ "star_reviews_info": "{{ rating_value }} de {{ rating_max }} estrelas",
+ "collapsible_content_title": "Conteúdo recolhível",
+ "complementary_products": "Produtos complementares"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blogue",
+ "read_more_title": "Ler mais: {{ title }}",
+ "comments": {
+ "one": "{{ count }} comentário",
+ "other": "{{ count }} comentários",
+ "many": "{{ count }} comentários"
+ },
+ "moderated": "Tenha em atenção que os comentários necessitam de ser aprovados antes de serem publicados.",
+ "comment_form_title": "Deixe um comentário",
+ "name": "Nome",
+ "email": "E-mail",
+ "message": "Comentário",
+ "post": "Publicar comentário",
+ "back_to_blog": "Voltar para o blogue",
+ "share": "Partilhar este artigo",
+ "success": "O seu comentário foi publicado com sucesso! Obrigado!",
+ "success_moderated": "O seu comentário foi publicado com sucesso. Será publicado em alguns instantes, já que o nosso blogue é moderado."
+ }
+ },
+ "onboarding": {
+ "product_title": "Exemplo de título do produto",
+ "collection_title": "O nome da sua coleção"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Adicionar ao carrinho",
+ "description": "Descrição",
+ "on_sale": "Em promoção",
+ "product_variants": "Variantes de produtos",
+ "quantity": {
+ "label": "Quantidade",
+ "input_label": "Quantidade de {{ product }}",
+ "increase": "Aumentar a quantidade de {{ product }}",
+ "decrease": "Diminuir a quantidade de {{ product }}",
+ "minimum_of": "Mínimo de {{ quantity }}",
+ "maximum_of": "Máximo de {{ quantity }}",
+ "multiples_of": "Incrementos de {{ quantity }}",
+ "in_cart_html": "{{ quantity }} no carrinho",
+ "note": "Ver regras de quantidade"
+ },
+ "price": {
+ "from_price_html": "A partir de {{ price }}",
+ "regular_price": "Preço normal",
+ "sale_price": "Preço de saldo",
+ "unit_price": "Preço unitário"
+ },
+ "share": "Partilhar este produto",
+ "sold_out": "Esgotado",
+ "unavailable": "Indisponível",
+ "vendor": "Fornecedor",
+ "video_exit_message": "{{ title }} abre um vídeo em ecrã completo na mesma janela.",
+ "xr_button": "Ver no seu espaço",
+ "xr_button_label": "Ver no seu espaço, carrega item na janela de realidade aumentada",
+ "pickup_availability": {
+ "view_store_info": "Ver informações da loja",
+ "check_other_stores": "Verificar a disponibilidade noutras lojas",
+ "pick_up_available": "Recolha disponível",
+ "pick_up_available_at_html": "Recolha disponível em {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Recolha atualmente indisponível em {{ location_name }} ",
+ "unavailable": "Não foi possível carregar a disponibilidade de recolha",
+ "refresh": "Atualizar"
+ },
+ "media": {
+ "open_media": "Abrir conteúdo multimédia {{ index }} em modal",
+ "play_model": "Ativar Visualizador 3D",
+ "play_video": "Reproduzir o vídeo",
+ "gallery_viewer": "Visualizador de Galeria",
+ "load_image": "Carregar imagem {{ index }} na vista de galeria",
+ "load_model": "Carregar Modelo 3D {{ index }} na vista de galeria",
+ "load_video": "Reproduzir vídeo {{ index }} na vista de galeria",
+ "image_available": "A imagem {{ index }} está agora disponível na vista de galeria"
+ },
+ "view_full_details": "Ver detalhes completos",
+ "include_taxes": "Imposto incluído.",
+ "shipping_policy_html": "Envio calculado na finalização da compra.",
+ "choose_options": "Escolher opções",
+ "choose_product_options": "Escolha opções para {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Indisponível",
+ "variant_sold_out_or_unavailable": "Variante esgotada ou indisponível",
+ "inventory_in_stock": "Em stock",
+ "inventory_in_stock_show_count": "{{ quantity }} em stock",
+ "inventory_low_stock": "Stock reduzido",
+ "inventory_low_stock_show_count": "Stock reduzido: {{ quantity }} restantes",
+ "inventory_out_of_stock": "Esgotado",
+ "inventory_out_of_stock_continue_selling": "Em stock",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Preços por volume",
+ "note": "Preços por volume disponível",
+ "minimum": "{{ quantity }} ou mais",
+ "price_at_each": "a {{ price }}/ea",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galeria de conteúdo multimédia"
+ },
+ "facets": {
+ "apply": "Aplicar",
+ "clear": "Limpar",
+ "clear_all": "Remover tudo",
+ "from": "De",
+ "filter_and_sort": "Filtrar e ordenar",
+ "filter_by_label": "Filtrar:",
+ "filter_button": "Filtro",
+ "filters_selected": {
+ "one": "{{ count }} selecionada",
+ "other": "{{ count }} selecionada",
+ "many": "{{ count }} selecionada"
+ },
+ "max_price": "O preço mais alto é {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} de {{ count }} produto",
+ "other": "{{ product_count }} de {{ count }} produtos",
+ "many": "{{ product_count }} de {{ count }} produtos"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produto",
+ "other": "{{ count }} produtos",
+ "many": "{{ count }} produtos"
+ },
+ "reset": "Repor",
+ "sort_button": "Ordenar",
+ "sort_by_label": "Ordenar por:",
+ "to": "Para",
+ "clear_filter": "Remover filtro",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtros selecionados)",
+ "show_more": "Mostrar mais",
+ "show_less": "Mostrar menos",
+ "filter_and_operator_subtitle": "Corresponder todos"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Não foram encontrados resultados para \"{{ terms }}\". Verifique a ortografia ou utilize uma palavra ou frase diferente.",
+ "page": "Página",
+ "results_with_count": {
+ "one": "{{ count }} resultado",
+ "other": "{{ count }} resultados",
+ "many": "{{ count }} resultados"
+ },
+ "title": "Resultados da pesquisa",
+ "products": "Produtos",
+ "search_for": "Procurar por \"{{ terms }}\"",
+ "results_with_count_and_term": {
+ "one": "{{ count }} resultado encontrado para “{{ terms }}”",
+ "other": "{{ count }} resultado encontrado para “{{ terms }}”",
+ "many": "{{ count }} resultado encontrado para “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} página",
+ "other": "{{ count }} páginas",
+ "many": "{{ count }} páginas"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} sugestão",
+ "other": "{{ count }} sugestões",
+ "many": "{{ count }} sugestões"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produto",
+ "other": "{{ count }} produtos",
+ "many": "{{ count }} produtos"
+ },
+ "suggestions": "Sugestões",
+ "pages": "Páginas"
+ },
+ "cart": {
+ "cart": "Carrinho"
+ },
+ "contact": {
+ "form": {
+ "name": "Nome",
+ "email": "E-mail",
+ "phone": "Número de telefone",
+ "comment": "Comentário",
+ "send": "Enviar",
+ "post_success": "Obrigado por entrar em contacto connosco. Responder-lhe-emos logo que possível.",
+ "error_heading": "Ajuste o seguinte:",
+ "title": "Formulário de contacto"
+ }
+ },
+ "404": {
+ "title": "Página não encontrada",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Comunicado",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} item",
+ "other": "{{ count }} itens",
+ "many": "{{ count }} itens"
+ }
+ },
+ "cart": {
+ "title": "O seu carrinho",
+ "caption": "Itens do carrinho",
+ "remove_title": "Eliminar {{ title }}",
+ "note": "Instruções especiais da encomenda",
+ "checkout": "Finalizar a compra",
+ "empty": "O seu carrinho está vazio",
+ "cart_error": "Ocorreu um erro ao atualizar o seu carrinho. Tente novamente.",
+ "cart_quantity_error_html": "É possível adicionar apenas {{ quantity }} unidade(s) deste item ao carrinho.",
+ "taxes_and_shipping_policy_at_checkout_html": "Impostos, descontos e envio calculados na finalização da compra",
+ "taxes_included_but_shipping_at_checkout": "Imposto incluído, envio e descontos calculados na finalização da compra",
+ "taxes_included_and_shipping_policy_html": "Imposto incluído. Envio e descontos calculados na finalização da compra.",
+ "taxes_and_shipping_at_checkout": "Impostos, descontos e envio calculados na finalização da compra",
+ "headings": {
+ "product": "Produto",
+ "price": "Preço",
+ "total": "Total",
+ "quantity": "Quantidade",
+ "image": "Imagem de produto"
+ },
+ "update": "Atualizar",
+ "login": {
+ "title": "Tem uma conta?",
+ "paragraph_html": "Inicie sessão para finalizar a compra mais rápido."
+ },
+ "estimated_total": "Total estimado",
+ "new_estimated_total": "Novo total estimado"
+ },
+ "footer": {
+ "payment": "Métodos de pagamento"
+ },
+ "featured_blog": {
+ "view_all": "Ver tudo",
+ "onboarding_title": "Publicação no blogue",
+ "onboarding_content": "Apresente aos clientes um resumo da publicação no blogue"
+ },
+ "featured_collection": {
+ "view_all": "Ver tudo",
+ "view_all_label": "Ver todos os produtos da coleção {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Ver tudo"
+ },
+ "collection_template": {
+ "title": "Coleção",
+ "empty": "Nenhum produto encontrado",
+ "use_fewer_filters_html": "Utilizar menos filtros ou remover tudo "
+ },
+ "video": {
+ "load_video": "Carregar vídeo: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Carregar slide",
+ "previous_slideshow": "Diapositivo anterior",
+ "next_slideshow": "Diapositivo seguinte",
+ "pause_slideshow": "Pausa na apresentação de diapositivos",
+ "play_slideshow": "Reproduzir apresentação de diapositivos",
+ "carousel": "Carrossel",
+ "slide": "Diapositivo"
+ },
+ "page": {
+ "title": "Título da página"
+ },
+ "announcements": {
+ "previous_announcement": "Comunicado anterior",
+ "next_announcement": "Comunicado seguinte",
+ "carousel": "Carrossel",
+ "announcement": "Comunicado",
+ "announcement_bar": "Barra de comunicado"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotal dos produtos",
+ "view_cart": "Ver carrinho",
+ "each": "{{ money }}/cada",
+ "product": "Produto",
+ "variant": "Variante",
+ "variant_total": "Variante total",
+ "items_added": {
+ "one": "{{ quantity }} item adicionado",
+ "other": "{{ quantity }} itens adicionados",
+ "many": "{{ quantity }} itens adicionados"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} item removido",
+ "other": "{{ quantity }} itens removidos",
+ "many": "{{ quantity }} itens removidos"
+ },
+ "product_variants": "Variantes de produtos",
+ "total_items": "Total de itens",
+ "remove_all_items_confirmation": "Remover todos os {{ quantity }} itens do seu carrinho?",
+ "remove_all": "Remover tudo",
+ "cancel": "Cancelar"
+ }
+ },
+ "localization": {
+ "country_label": "País/região",
+ "language_label": "Idioma",
+ "update_language": "Atualizar idioma",
+ "update_country": "Atualizar país/região"
+ },
+ "customer": {
+ "account": {
+ "title": "Conta",
+ "details": "Detalhes da conta",
+ "view_addresses": "Ver endereços",
+ "return": "Regressar aos detalhes da conta"
+ },
+ "account_fallback": "Conta",
+ "activate_account": {
+ "title": "Ativar conta",
+ "subtext": "Crie a sua palavra-passe para ativar a sua conta.",
+ "password": "Palavra-passe",
+ "password_confirm": "Confirmar palavra-passe",
+ "submit": "Ativar conta",
+ "cancel": "Recusar convite"
+ },
+ "addresses": {
+ "title": "Endereços",
+ "default": "Predefinição",
+ "add_new": "Adicionar um novo endereço",
+ "edit_address": "Editar endereço",
+ "first_name": "Nome próprio",
+ "last_name": "Apelido",
+ "company": "Empresa",
+ "address1": "Endereço1",
+ "address2": "Endereço 2",
+ "city": "Localidade",
+ "country": "País/região",
+ "province": "Província",
+ "zip": "Código postal",
+ "phone": "Telefone",
+ "set_default": "Selecionar como endereço predefinido",
+ "add": "Adicionar endereço",
+ "update": "Atualizar endereço",
+ "cancel": "Cancelar",
+ "edit": "Editar",
+ "delete": "Eliminar",
+ "delete_confirm": "Tem a certeza que deseja eliminar este endereço?"
+ },
+ "log_in": "Iniciar sessão",
+ "log_out": "Terminar sessão",
+ "login_page": {
+ "cancel": "Cancelar",
+ "create_account": "Criar conta",
+ "email": "E-mail",
+ "forgot_password": "Esqueceu-se da sua palavra-passe?",
+ "guest_continue": "Continuar",
+ "guest_title": "Continuar como visitante",
+ "password": "Palavra-passe",
+ "title": "Iniciar sessão",
+ "sign_in": "Iniciar sessão",
+ "submit": "Submeter"
+ },
+ "order": {
+ "title": "Encomenda {{ name }}",
+ "date_html": "Efetuado a {{ date }}",
+ "cancelled_html": "Encomenda cancelada em {{ date }}",
+ "cancelled_reason": "Motivo: {{ reason }}",
+ "billing_address": "Endereço de faturação",
+ "payment_status": "Estado do pagamento",
+ "shipping_address": "Endereço de envio",
+ "fulfillment_status": "Estado de processamento",
+ "discount": "Desconto",
+ "shipping": "Envio",
+ "tax": "Taxa",
+ "product": "Produto",
+ "sku": "SKU",
+ "price": "Preço",
+ "quantity": "Quantidade",
+ "total": "Total",
+ "fulfilled_at_html": "Concluído em {{ date }}",
+ "track_shipment": "Rastrear encomenda",
+ "tracking_url": "Ligação de rastreio",
+ "tracking_company": "Transportadora",
+ "tracking_number": "Número de rastreio",
+ "subtotal": "Subtotal",
+ "total_duties": "Encargos",
+ "total_refunded": "Reembolsado"
+ },
+ "orders": {
+ "title": "Histórico de encomendas",
+ "order_number": "Encomenda",
+ "order_number_link": "Número da encomenda {{ number }}",
+ "date": "Data",
+ "payment_status": "Estado do pagamento",
+ "fulfillment_status": "Estado de processamento",
+ "total": "Total",
+ "none": "Ainda não efetuou nenhuma encomenda."
+ },
+ "recover_password": {
+ "title": "Repor palavra-passe",
+ "subtext": "Vamos enviar-lhe um e-mail para repor a sua palavra-passe",
+ "success": "Enviámos-lhe um e-mail com uma ligação para atualizar a sua palavra-passe."
+ },
+ "register": {
+ "title": "Criar conta",
+ "first_name": "Nome próprio",
+ "last_name": "Apelido",
+ "email": "E-mail",
+ "password": "Palavra-passe",
+ "submit": "Criar"
+ },
+ "reset_password": {
+ "title": "Repor palavra-passe da conta",
+ "subtext": "Insira uma nova palavra-passe",
+ "password": "Palavra-passe",
+ "password_confirm": "Confirmar palavra-passe",
+ "submit": "Repor palavra-passe"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Aqui está o seu saldo do cartão de oferta de {{ value }} para {{ shop }}!",
+ "subtext": "O seu cartão de oferta",
+ "gift_card_code": "Código do cartão de oferta",
+ "shop_link": "Visite a loja online",
+ "add_to_apple_wallet": "Adicionar a Apple Wallet",
+ "qr_image_alt": "Código QR - digitalizar para resgatar cartão de oferta",
+ "copy_code": "Copiar código de cartão-de oferta",
+ "expired": "Expirado",
+ "copy_code_success": "Código copiado com sucesso",
+ "how_to_use_gift_card": "Utilize o código do cartão de oferta online ou o código QR na loja",
+ "expiration_date": "Expira em {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Quero enviar isto como um presente",
+ "email_label": "E-mail do destinatário",
+ "email": "E-mail",
+ "name_label": "Nome do destinatário (opcional)",
+ "name": "Nome",
+ "message_label": "Mensagem (opcional)",
+ "message": "Mensagem",
+ "max_characters": "Máximo de {{ max_chars }} caracteres",
+ "email_label_optional_for_no_js_behavior": "E-mail do destinatário (opcional)",
+ "send_on": "AAAA-MM-DD",
+ "send_on_label": "Enviar a (opcional)",
+ "expanded": "Formulário de destinatário do cartão de oferta expandido",
+ "collapsed": "Formulário de destinatário do cartão de oferta fechado"
+ }
+ }
+}
diff --git a/locales/pt-PT.schema.json b/locales/pt-PT.schema.json
new file mode 100644
index 0000000..8ef6e3f
--- /dev/null
+++ b/locales/pt-PT.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Cores",
+ "settings": {
+ "background": {
+ "label": "Fundo"
+ },
+ "background_gradient": {
+ "label": "Gradiente de fundo",
+ "info": "O gradiente de fundo substitui o fundo sempre que possível."
+ },
+ "text": {
+ "label": "Texto"
+ },
+ "button_background": {
+ "label": "Fundo do botão sólido"
+ },
+ "button_label": {
+ "label": "Etiqueta do botão sólido"
+ },
+ "secondary_button_label": {
+ "label": "Botão de contorno"
+ },
+ "shadow": {
+ "label": "Sombra"
+ }
+ }
+ },
+ "typography": {
+ "name": "Tipografia",
+ "settings": {
+ "type_header_font": {
+ "label": "Tipo de letra",
+ "info": "Selecionar um tipo de letra diferente pode afetar a velocidade da sua loja. [Saiba mais sobre tipos de letra do sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Títulos"
+ },
+ "header__2": {
+ "content": "Corpo"
+ },
+ "type_body_font": {
+ "label": "Tipo de letra",
+ "info": "Selecionar um tipo de letra diferente pode afetar a velocidade da sua loja. [Saiba mais sobre tipos de letra do sistema.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Escala de tamanho do tipo de letra"
+ },
+ "body_scale": {
+ "label": "Escala de tamanho do tipo de letra"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Redes sociais",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Contas de redes sociais"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Formato de moeda",
+ "settings": {
+ "content": "Códigos de moeda",
+ "currency_code_enabled": {
+ "label": "Mostrar códigos de moeda"
+ },
+ "paragraph": "Os preços de finalização da compra e carrinho mostram sempre os códigos de moeda. Exemplo: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Esquema",
+ "settings": {
+ "page_width": {
+ "label": "Largura da página"
+ },
+ "spacing_sections": {
+ "label": "Espaço entre as secções do modelo"
+ },
+ "header__grid": {
+ "content": "Grelha"
+ },
+ "paragraph__grid": {
+ "content": "Afeta áreas com várias colunas ou linhas."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Espaço horizontal"
+ },
+ "spacing_grid_vertical": {
+ "label": "Espaço vertical"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Comportamento de pesquisa",
+ "settings": {
+ "header": {
+ "content": "Sugestões de pesquisa"
+ },
+ "predictive_search_enabled": {
+ "label": "Ativar as sugestões de pesquisa"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Mostrar o fornecedor do produto",
+ "info": "Visível quando as sugestões de pesquisa estão ativas."
+ },
+ "predictive_search_show_price": {
+ "label": "Mostrar o preço do produto",
+ "info": "Visível quando as sugestões de pesquisa estão ativas."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Limite"
+ },
+ "header__shadow": {
+ "content": "Sombra"
+ },
+ "blur": {
+ "label": "Desfocado"
+ },
+ "corner_radius": {
+ "label": "Raio do canto"
+ },
+ "horizontal_offset": {
+ "label": "Compensação horizontal"
+ },
+ "vertical_offset": {
+ "label": "Compensação vertical"
+ },
+ "thickness": {
+ "label": "Espessura"
+ },
+ "opacity": {
+ "label": "Opacidade"
+ },
+ "image_padding": {
+ "label": "Preenchimento da imagem"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do texto"
+ }
+ }
+ },
+ "badges": {
+ "name": "Selos",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__2": {
+ "label": "Canto inferior direito"
+ },
+ "options__3": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__4": {
+ "label": "Canto superior direito"
+ },
+ "label": "Posição nos cartões"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Esquema de cor do selo de venda"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Esquema de cor do selo de esgotado"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Botões"
+ },
+ "variant_pills": {
+ "name": "Variantes com forma de comprimidos",
+ "paragraph": "As variantes com forma de comprimidos são uma forma de apresentar as variantes do seu produto. [Saber mais](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Entradas"
+ },
+ "content_containers": {
+ "name": "Contentores de conteúdo"
+ },
+ "popups": {
+ "name": "Menus pendentes e pop-ups",
+ "paragraph": "Afeta áreas como menus pendentes de navegação, pop-ups de modais e pop-ups de carrinho."
+ },
+ "media": {
+ "name": "Conteúdo multimédia"
+ },
+ "drawers": {
+ "name": "Gavetas"
+ },
+ "cart": {
+ "name": "Carrinho",
+ "settings": {
+ "cart_type": {
+ "label": "Tipo de carrinho",
+ "drawer": {
+ "label": "Gaveta"
+ },
+ "page": {
+ "label": "Página"
+ },
+ "notification": {
+ "label": "Notificação pop-up"
+ }
+ },
+ "show_vendor": {
+ "label": "Mostrar fornecedor"
+ },
+ "show_cart_note": {
+ "label": "Ativar nota do carrinho"
+ },
+ "cart_drawer": {
+ "header": "Painel deslizante do carrinho",
+ "collection": {
+ "label": "Coleção",
+ "info": "Visível quando o painel deslizante do carrinho está vazio."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Cartões de produtos",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Cartão"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Cartões de coleção",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Cartão"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Cartões de blogue",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Padrão"
+ },
+ "options__2": {
+ "label": "Cartão"
+ },
+ "label": "Estilo"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logótipo",
+ "settings": {
+ "logo_image": {
+ "label": "Logótipo"
+ },
+ "logo_width": {
+ "label": "Largura do logótipo em computador",
+ "info": "A largura do logótipo é automaticamente otimizada para dispositivos móveis."
+ },
+ "favicon": {
+ "label": "Imagem Favicon",
+ "info": "Será reduzida para 32 x 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Informação de marca",
+ "settings": {
+ "brand_headline": {
+ "label": "Cabeçalho"
+ },
+ "brand_description": {
+ "label": "Descrição"
+ },
+ "brand_image": {
+ "label": "Imagem"
+ },
+ "brand_image_width": {
+ "label": "Largura da imagem"
+ },
+ "paragraph": {
+ "content": "Adicione uma descrição da marca ao rodapé da sua loja."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animações",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Revelar secções ao percorrer a página"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Elevação vertical"
+ },
+ "label": "Efeito ao passar o rato",
+ "info": "Afeta cartões e botões.",
+ "options__3": {
+ "label": "Elevação 3D"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Secção preenchimento",
+ "padding_top": "Preenchimento superior",
+ "padding_bottom": "Preenchimento inferior"
+ },
+ "spacing": "Espaçamento",
+ "colors": {
+ "label": "Esquema de cores",
+ "has_cards_info": "Para alterar o esquema de cores do cartão, atualize as suas definições de tema."
+ },
+ "heading_size": {
+ "label": "Tamanho do título",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "options__4": {
+ "label": "Extra grande"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Predefinição"
+ },
+ "options__2": {
+ "label": "Arco"
+ },
+ "options__3": {
+ "label": "Gota"
+ },
+ "options__4": {
+ "label": "Divisa para a esquerda"
+ },
+ "options__5": {
+ "label": "Divisa para a direita"
+ },
+ "options__6": {
+ "label": "Diamante"
+ },
+ "options__7": {
+ "label": "Paralelogramo"
+ },
+ "options__8": {
+ "label": "Redonda"
+ },
+ "label": "Forma de imagem",
+ "info": "Os cartões com o estilo padrão não têm bordas quando uma forma de imagem está ativa."
+ },
+ "animation": {
+ "content": "Animações",
+ "image_behavior": {
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Movimento de ambiente"
+ },
+ "label": "Comportamento da imagem",
+ "options__3": {
+ "label": "Posição de fundo fixa"
+ },
+ "options__4": {
+ "label": "Ampliar ao rodar a roda do rato"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Barra de comunicado",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_alignment": {
+ "label": "Alinhamento do texto",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ }
+ },
+ "link": {
+ "label": "Ligação"
+ }
+ },
+ "name": "Comunicado"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Rotação automática de comunicados"
+ },
+ "change_slides_speed": {
+ "label": "Mudar a cada"
+ },
+ "header__1": {
+ "content": "Ícones de redes sociais",
+ "info": "Para apresentar as suas contas de redes sociais, associe-as nas [definições do tema](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Comunicados"
+ },
+ "show_social": {
+ "label": "Mostrar ícones no computador"
+ },
+ "header__3": {
+ "content": "Seletor de país/região",
+ "info": "Para adicionar um país/região, aceda a [definições de mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Ativar seletor de país/região"
+ },
+ "header__4": {
+ "content": "Seletor de idioma",
+ "info": "Para adicionar um idioma, aceda a [definições de idioma.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Ativar seletor de idioma"
+ }
+ },
+ "presets": {
+ "name": "Barra de comunicado"
+ }
+ },
+ "collage": {
+ "name": "Colagem",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "desktop_layout": {
+ "label": "Esquema do desktop",
+ "options__1": {
+ "label": "Bloco esquerdo grande"
+ },
+ "options__2": {
+ "label": "Bloco direito grande"
+ }
+ },
+ "mobile_layout": {
+ "label": "Esquema móvel",
+ "options__1": {
+ "label": "Colagem"
+ },
+ "options__2": {
+ "label": "Coluna"
+ }
+ },
+ "card_styles": {
+ "label": "Estilo do cartão",
+ "info": "O produto, coleção e estilos do cartão de blogue podem ser atualizados nas definições do tema.",
+ "options__1": {
+ "label": "Utilizar estilos de cartão individuais"
+ },
+ "options__2": {
+ "label": "Estilizar todos os cartões de produto"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ }
+ },
+ "name": "Imagem"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "Produto"
+ },
+ "secondary_background": {
+ "label": "Mostrar fundo secundário"
+ },
+ "second_image": {
+ "label": "Mostrar a segunda imagem ao passar o rato"
+ }
+ },
+ "name": "Produto"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "Coleção"
+ }
+ },
+ "name": "Coleção"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "Imagem de capa"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "O video será reproduzido numa janela pop-up se a secção contiver outros blocos.",
+ "placeholder": "Usar um URL de YouTube ou Vimeo"
+ },
+ "description": {
+ "label": "Texto alternativo do vídeo",
+ "info": "Descreve o vídeo para que seja acessível a clientes que usam leitores de ecrã. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "Vídeo"
+ }
+ },
+ "presets": {
+ "name": "Colagem"
+ }
+ },
+ "collection-list": {
+ "name": "Lista de coleções",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ },
+ "info": "Adicione imagens ao editar as suas coleções. [Saber mais](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Ativar leitura magnética no dispositivo móvel"
+ },
+ "show_view_all": {
+ "label": "Ative o botão \"Ver tudo\" caso a lista possua mais coleções do que as apresentadas"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "Coleção"
+ }
+ },
+ "name": "Coleção"
+ }
+ },
+ "presets": {
+ "name": "Lista de coleções"
+ }
+ },
+ "contact-form": {
+ "name": "Formulário de contacto",
+ "presets": {
+ "name": "Formulário de contacto"
+ }
+ },
+ "custom-liquid": {
+ "name": "Liquid personalizado",
+ "settings": {
+ "custom_liquid": {
+ "label": "Código Liquid",
+ "info": "Adicione fragmentos de aplicação ou outro código para criar personalizações avançadas. [Saber mais](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Liquid personalizado"
+ }
+ },
+ "featured-blog": {
+ "name": "Publicações no blogue",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "blog": {
+ "label": "Blogue"
+ },
+ "post_limit": {
+ "label": "Número de publicações no blogue a mostrar"
+ },
+ "show_view_all": {
+ "label": "Ative o botão \"Ver tudo\" caso o blogue possua mais publicações no blogue do que as apresentadas"
+ },
+ "show_image": {
+ "label": "Mostrar imagem em destaque",
+ "info": "Para obter os melhores resultados, use uma imagem com uma proporção de 3:2. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Mostrar data"
+ },
+ "show_author": {
+ "label": "Mostrar autor"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ }
+ },
+ "presets": {
+ "name": "Publicações no blogue"
+ }
+ },
+ "featured-collection": {
+ "name": "Coleção em destaque",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "collection": {
+ "label": "Coleção"
+ },
+ "products_to_show": {
+ "label": "Máximo de produtos a apresentar"
+ },
+ "show_view_all": {
+ "label": "Ative a opção \"Ver tudo\" se a coleção tiver mais produtos do que os apresentados"
+ },
+ "header": {
+ "content": "Cartão de produtos"
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar a segunda imagem ao passar o rato"
+ },
+ "show_vendor": {
+ "label": "Mostrar fornecedor"
+ },
+ "show_rating": {
+ "label": "Mostrar classificação do produto",
+ "info": "Para mostrar uma classificação, adicione uma aplicação de classificação de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Ativar botão para adicionar rapidamente",
+ "info": "Ideal para o tipo de carrinho deslizante ou pop-up."
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ },
+ "description": {
+ "label": "Descrição"
+ },
+ "show_description": {
+ "label": "Mostrar descrição da coleção do administrador"
+ },
+ "description_style": {
+ "label": "Estilo da descrição",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Ligação"
+ },
+ "options__2": {
+ "label": "Botão de contorno"
+ },
+ "options__3": {
+ "label": "Botão sólido"
+ },
+ "label": "Estilo \"ver tudo\""
+ },
+ "enable_desktop_slider": {
+ "label": "Ativar carrossel em computador"
+ },
+ "full_width": {
+ "label": "Tornar os produtos em largura total"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Ativar leitura magnética no dispositivo móvel"
+ }
+ },
+ "presets": {
+ "name": "Coleção em destaque"
+ }
+ },
+ "footer": {
+ "name": "Rodapé",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "Cabeçalho"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Apresenta apenas itens de menu de nível superior."
+ }
+ },
+ "name": "Menu"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "Cabeçalho"
+ },
+ "subtext": {
+ "label": "Subtexto"
+ }
+ },
+ "name": "Texto"
+ },
+ "brand_information": {
+ "name": "Informação de marca",
+ "settings": {
+ "paragraph": {
+ "content": "Este bloco irá apresentar a sua informação de marca. [Editar informação de marca.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Ícones de redes sociais"
+ },
+ "show_social": {
+ "label": "Mostrar ícones de redes sociais",
+ "info": "Para apresentar as suas contas de redes sociais, associe-as nas [definições do tema](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Mostrar registo de e-mail"
+ },
+ "newsletter_heading": {
+ "label": "Cabeçalho"
+ },
+ "header__1": {
+ "info": "Subscritores adicionados automaticamente à sua lista de clientes que \"aceitam marketing\". [Saber mais](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "Registo de e-mail"
+ },
+ "header__2": {
+ "content": "Ícones de redes sociais",
+ "info": "Para apresentar as suas contas de redes sociais, associe-as nas [definições do tema](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Mostrar ícones de redes sociais"
+ },
+ "header__3": {
+ "content": "Seletor de país/região"
+ },
+ "header__4": {
+ "info": "Para adicionar um país/região, vá a [definições de mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Ativar seletor de país/região"
+ },
+ "header__5": {
+ "content": "Seletor de idioma"
+ },
+ "header__6": {
+ "info": "Para adicionar um idioma, vá a [definições de idioma.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Ativar seletor de idioma"
+ },
+ "header__7": {
+ "content": "Métodos de pagamento"
+ },
+ "payment_enable": {
+ "label": "Mostrar ícones de pagamento"
+ },
+ "margin_top": {
+ "label": "Margem superior"
+ },
+ "header__8": {
+ "content": "Ligações das políticas",
+ "info": "Para adicionar políticas de loja, aceda às suas [definições de políticas](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Mostrar ligações das políticas"
+ },
+ "header__9": {
+ "content": "Seguir no Shop",
+ "info": "O Shop Pay tem de estar ativo para os clientes poderem seguir a sua loja na aplicação Shop a partir da sua frente de loja. [Saber mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Ativar Seguir no Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Cabeçalho",
+ "settings": {
+ "logo_position": {
+ "label": "Posição do logótipo de desktop",
+ "options__1": {
+ "label": "Intermédio à esquerda"
+ },
+ "options__2": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__3": {
+ "label": "Superior centro"
+ },
+ "options__4": {
+ "label": "Intermédio ao centro"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Mostrar linha do separador"
+ },
+ "margin_bottom": {
+ "label": "Margem inferior"
+ },
+ "menu_type_desktop": {
+ "label": "Tipo de menu do ambiente de trabalho",
+ "info": "O tipo de menu é automaticamente otimizado para dispositivos móveis.",
+ "options__1": {
+ "label": "Menu pendente"
+ },
+ "options__2": {
+ "label": "Mega menu"
+ },
+ "options__3": {
+ "label": "Menu deslizante"
+ }
+ },
+ "mobile_layout": {
+ "content": "Esquema móvel"
+ },
+ "mobile_logo_position": {
+ "label": "Posição móvel do logótipo",
+ "options__1": {
+ "label": "Centro"
+ },
+ "options__2": {
+ "label": "Esquerda"
+ }
+ },
+ "logo_help": {
+ "content": "Edite o seu logótipo em [definições de tema](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Cabeçalho fixo",
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Ao rodar a roda do rato"
+ },
+ "options__3": {
+ "label": "Sempre"
+ },
+ "options__4": {
+ "label": "Sempre, reduzir o tamanho do logótipo"
+ }
+ },
+ "header__3": {
+ "content": "Seletor de país/região"
+ },
+ "header__4": {
+ "info": "Para adicionar um país/região, aceda a [definições de mercado.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Ativar seletor de país/região"
+ },
+ "header__5": {
+ "content": "Seletor de idioma"
+ },
+ "header__6": {
+ "info": "Para adicionar um idioma, aceda a [definições de idioma.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Ativar seletor de idioma"
+ },
+ "header__1": {
+ "content": "Cor"
+ },
+ "menu_color_scheme": {
+ "label": "Esquema de cores do menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Faixa de imagem",
+ "settings": {
+ "image": {
+ "label": "Primeira imagem"
+ },
+ "image_2": {
+ "label": "Segunda imagem"
+ },
+ "stack_images_on_mobile": {
+ "label": "Empilhar imagens em dispositivos móveis"
+ },
+ "show_text_box": {
+ "label": "Mostrar recetores no desktop"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidade da sobreposição da imagem"
+ },
+ "show_text_below": {
+ "label": "Mostrar recetor em dispositivo móvel"
+ },
+ "image_height": {
+ "label": "Altura da faixa",
+ "options__1": {
+ "label": "Adaptar à primeira imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "info": "Para obter os melhores resultados, use uma imagem com uma proporção de 3:2. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__2": {
+ "label": "Superior centro"
+ },
+ "options__3": {
+ "label": "Canto superior direito"
+ },
+ "options__4": {
+ "label": "Intermédio à esquerda"
+ },
+ "options__5": {
+ "label": "Intermédio ao centro"
+ },
+ "options__6": {
+ "label": "Intermédio à direita"
+ },
+ "options__7": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__8": {
+ "label": "Inferior centro"
+ },
+ "options__9": {
+ "label": "Canto inferior direito"
+ },
+ "label": "Posição do conteúdo em computadores"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em computadores"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em dispositivos móveis"
+ },
+ "mobile": {
+ "content": "Esquema para dispositivo móvel"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ },
+ "name": "Cabeçalho"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Descrição"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ },
+ "label": "Estilo de texto"
+ }
+ },
+ "name": "Texto"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "Primeira etiqueta do botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_1": {
+ "label": "Primeira ligação do botão"
+ },
+ "button_style_secondary_1": {
+ "label": "Utilizar estilo de botão de contorno"
+ },
+ "button_label_2": {
+ "label": "Segunda etiqueta do botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_2": {
+ "label": "Segunda ligação do botão"
+ },
+ "button_style_secondary_2": {
+ "label": "Utilizar estilo de botão de contorno"
+ }
+ },
+ "name": "Botões"
+ }
+ },
+ "presets": {
+ "name": "Faixa de imagem"
+ }
+ },
+ "image-with-text": {
+ "name": "Imagem com texto",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "height": {
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "label": "Altura da imagem",
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Imagem primeiro"
+ },
+ "options__2": {
+ "label": "Segunda imagem"
+ },
+ "label": "Posicionamento da imagem em desktop",
+ "info": "Imagem primeiro é o esquema predefinido para dispositivos móveis."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Largura da imagem em desktop",
+ "info": "A imagem é otimizada automaticamente em dispositivos móveis."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em desktop",
+ "options__2": {
+ "label": "Ao centro"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Em cima"
+ },
+ "options__2": {
+ "label": "Meio"
+ },
+ "options__3": {
+ "label": "Em baixo"
+ },
+ "label": "Posição do conteúdo em desktop"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Sem sobreposição"
+ },
+ "options__2": {
+ "label": "Sobreposição"
+ },
+ "label": "Esquema do conteúdo"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em dispositivos móveis",
+ "options__2": {
+ "label": "Ao centro"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ },
+ "name": "Cabeçalho"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Conteúdo"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ }
+ }
+ },
+ "name": "Texto"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "Etiqueta do botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link": {
+ "label": "Ligação do botão"
+ },
+ "outline_button": {
+ "label": "Utilizar estilo de botão de contorno"
+ }
+ },
+ "name": "Botão"
+ },
+ "caption": {
+ "name": "Legenda",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Legenda"
+ },
+ "options__2": {
+ "label": "Maiúsculas"
+ }
+ },
+ "caption_size": {
+ "label": "Tamanho do texto",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Imagem com texto"
+ }
+ },
+ "main-article": {
+ "name": "Publicação no blogue",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "Altura da imagem em destaque",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "info": "Para obter os melhores resultados, utilize uma imagem com uma proporção de 16:9. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Grande"
+ }
+ }
+ },
+ "name": "Imagem em destaque"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "Mostrar data"
+ },
+ "blog_show_author": {
+ "label": "Mostrar autor"
+ }
+ },
+ "name": "Título"
+ },
+ "content": {
+ "name": "Conteúdo"
+ },
+ "share": {
+ "name": "Partilhar",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se incluir uma ligação nas publicações das redes sociais, a imagem em destaque da página será demonstrada como a imagem de pré-visualização. [Saber mais](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "É incluído um título de loja e descrição com a imagem de pré-visualização. [Saber mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Texto"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Publicações no blogue",
+ "settings": {
+ "header": {
+ "content": "Cartão de publicação no blogue"
+ },
+ "show_image": {
+ "label": "Mostrar imagem em destaque"
+ },
+ "paragraph": {
+ "content": "Altere excertos ao editar as suas publicações no blogue. [Saber mais](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Mostrar data"
+ },
+ "show_author": {
+ "label": "Mostrar autor"
+ },
+ "layout": {
+ "label": "Esquema de desktop",
+ "options__1": {
+ "label": "Grelha"
+ },
+ "options__2": {
+ "label": "Colagem"
+ },
+ "info": "Publicações empilhadas em dispositivo móvel."
+ },
+ "image_height": {
+ "label": "Altura da imagem em destaque",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Para obter os melhores resultados, use uma imagem com uma proporção de 3:2. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Subtotal",
+ "blocks": {
+ "subtotal": {
+ "name": "Subtotal"
+ },
+ "buttons": {
+ "name": "Botão de finalização da compra"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Itens"
+ },
+ "main-collection-banner": {
+ "name": "Faixa de coleção",
+ "settings": {
+ "paragraph": {
+ "content": "Adicione uma descrição ou imagem ao editar a sua coleção. [Saber mais](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Mostrar descrição da coleção"
+ },
+ "show_collection_image": {
+ "label": "Mostrar imagem da coleção",
+ "info": "Para obter os melhores resultados, utilize uma imagem com uma proporção de 16:9. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Grelha de produtos",
+ "settings": {
+ "products_per_page": {
+ "label": "Produtos por página"
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar a segunda imagem ao passar o rato"
+ },
+ "show_vendor": {
+ "label": "Mostrar fornecedor"
+ },
+ "header__1": {
+ "content": "Filtragem e ordenação"
+ },
+ "enable_tags": {
+ "label": "Ativar filtragem",
+ "info": "Personalize filtros com a aplicação Search & Discovery. [Saber mais](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Ativar filtragem",
+ "info": "Personalize filtros com a aplicação Search & Discovery. [Saber mais](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Ativar ordenação"
+ },
+ "header__3": {
+ "content": "Cartão de produtos"
+ },
+ "show_rating": {
+ "label": "Mostrar classificação do produto",
+ "info": "Para mostrar uma classificação, adicione uma aplicação de classificação de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Ativar botão para adicionar rapidamente",
+ "info": "Ideal para o tipo de carrinho deslizante ou pop-up."
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ },
+ "filter_type": {
+ "label": "Esquema de filtro para desktop",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ },
+ "options__3": {
+ "label": "Gaveta"
+ },
+ "info": "A gaveta é o esquema padrão para dispositivos móveis."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Página da lista de coleções",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "sort": {
+ "label": "Ordenar coleções por:",
+ "options__1": {
+ "label": "Alfabeticamente, A-Z"
+ },
+ "options__2": {
+ "label": "Alfabeticamente, Z-A"
+ },
+ "options__3": {
+ "label": "Data, mais recentes"
+ },
+ "options__4": {
+ "label": "Data, mais antigos"
+ },
+ "options__5": {
+ "label": "Contagem de produtos, alta para baixa"
+ },
+ "options__6": {
+ "label": "Contagem de produtos, baixa para alta"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ },
+ "info": "Adicione imagens ao editar as suas coleções. [Saber mais](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Página"
+ },
+ "main-password-footer": {
+ "name": "Rodapé de palavra-passe"
+ },
+ "main-password-header": {
+ "name": "Cabeçalho de palavra-passe",
+ "settings": {
+ "logo_header": {
+ "content": "Logótipo"
+ },
+ "logo_help": {
+ "content": "Edite o seu logótipo nas definições de tema."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Informações do produto",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ }
+ }
+ },
+ "name": "Texto"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Pendente"
+ },
+ "options__2": {
+ "label": "Comprimidos"
+ }
+ }
+ },
+ "name": "Seletor de variante"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Mostrar botões dinâmicos de finalização da compra",
+ "info": "Utilizando os métodos de pagamento disponíveis na sua loja, os clientes poderão ver a sua opção preferida, como o PayPal ou Apple Pay. [Saiba mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Apresentar o formulário de informações do destinatário para cartões de oferta",
+ "info": "Permite aos compradores enviar cartões de oferta numa data agendada juntamente com uma mensagem pessoal. [Saber mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "Botão de compra"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "Se incluir uma ligação nas publicações das redes sociais, a imagem em destaque da página será demonstrada como a imagem de pré-visualização. [Saber mais](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "É incluído um título de loja e descrição com a imagem de pré-visualização. [Saber mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Texto"
+ }
+ },
+ "name": "Partilhar"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "Inclua um título que explique o conteúdo.",
+ "label": "Título"
+ },
+ "content": {
+ "label": "Conteúdo da linha"
+ },
+ "page": {
+ "label": "Conteúdo da linha da página"
+ },
+ "icon": {
+ "label": "Ícone",
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Maçã"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Garrafa"
+ },
+ "options__5": {
+ "label": "Caixa"
+ },
+ "options__6": {
+ "label": "Cenoura"
+ },
+ "options__7": {
+ "label": "Bolha de conversa"
+ },
+ "options__8": {
+ "label": "Marca de verificação"
+ },
+ "options__9": {
+ "label": "Prancheta"
+ },
+ "options__10": {
+ "label": "Produtos lácteos"
+ },
+ "options__11": {
+ "label": "Sem produtos lácteos"
+ },
+ "options__12": {
+ "label": "Secador"
+ },
+ "options__13": {
+ "label": "Olho"
+ },
+ "options__14": {
+ "label": "Fogo"
+ },
+ "options__15": {
+ "label": "Sem glúten"
+ },
+ "options__16": {
+ "label": "Coração"
+ },
+ "options__17": {
+ "label": "Ferro"
+ },
+ "options__18": {
+ "label": "Folha"
+ },
+ "options__19": {
+ "label": "Couro"
+ },
+ "options__20": {
+ "label": "Relâmpago"
+ },
+ "options__21": {
+ "label": "Batom"
+ },
+ "options__22": {
+ "label": "Cadeado"
+ },
+ "options__23": {
+ "label": "Marcador de mapa"
+ },
+ "options__24": {
+ "label": "Sem frutos de casca rija"
+ },
+ "options__25": {
+ "label": "Calças"
+ },
+ "options__26": {
+ "label": "Marca de pata"
+ },
+ "options__27": {
+ "label": "Pimenta"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Avião"
+ },
+ "options__30": {
+ "label": "Planta"
+ },
+ "options__31": {
+ "label": "Etiqueta de preço"
+ },
+ "options__32": {
+ "label": "Ponto de interrogação"
+ },
+ "options__33": {
+ "label": "Reciclar"
+ },
+ "options__34": {
+ "label": "Devolução"
+ },
+ "options__35": {
+ "label": "Régua"
+ },
+ "options__36": {
+ "label": "Prato"
+ },
+ "options__37": {
+ "label": "Camisa"
+ },
+ "options__38": {
+ "label": "Sapato"
+ },
+ "options__39": {
+ "label": "Silhueta"
+ },
+ "options__40": {
+ "label": "Floco de neve"
+ },
+ "options__41": {
+ "label": "Estrela"
+ },
+ "options__42": {
+ "label": "Cronómetro"
+ },
+ "options__43": {
+ "label": "Camião"
+ },
+ "options__44": {
+ "label": "Lavar"
+ }
+ }
+ },
+ "name": "Linha recolhível"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "Etiqueta de ligação"
+ },
+ "page": {
+ "label": "Página"
+ }
+ },
+ "name": "Pop-up"
+ },
+ "title": {
+ "name": "Título"
+ },
+ "price": {
+ "name": "Preço"
+ },
+ "quantity_selector": {
+ "name": "Seletor de quantidade"
+ },
+ "pickup_availability": {
+ "name": "Disponibilidade de recolha"
+ },
+ "description": {
+ "name": "Descrição"
+ },
+ "rating": {
+ "name": "Classificação do produto",
+ "settings": {
+ "paragraph": {
+ "content": "Para mostrar uma classificação, adicione uma aplicação de classificação de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Produtos complementares",
+ "settings": {
+ "paragraph": {
+ "content": "Para selecionar produtos complementares, adicione a aplicação Search & Discovery. [Saber mais](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "make_collapsible_row": {
+ "label": "Mostrar como linha recolhível"
+ },
+ "icon": {
+ "info": "Visível quando é mostrada a linha recolhível."
+ },
+ "product_list_limit": {
+ "label": "Máximo de produtos a apresentar"
+ },
+ "products_per_page": {
+ "label": "Número de produtos por página"
+ },
+ "pagination_style": {
+ "label": "Estilo de paginação",
+ "options": {
+ "option_1": "Pontos",
+ "option_2": "Contador",
+ "option_3": "Números"
+ }
+ },
+ "product_card": {
+ "heading": "Cartão de produtos"
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options": {
+ "option_1": "Retrato",
+ "option_2": "Quadrado"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Ativar botão para adicionar rapidamente"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ícone com texto",
+ "settings": {
+ "layout": {
+ "label": "Esquema",
+ "options__1": {
+ "label": "Horizontal"
+ },
+ "options__2": {
+ "label": "Vertical"
+ }
+ },
+ "content": {
+ "label": "Conteúdo",
+ "info": "Escolha um ícone ou adicione uma imagem para cada coluna ou linha."
+ },
+ "heading": {
+ "info": "Deixe a etiqueta do título em branco para ocultar a coluna do ícone."
+ },
+ "icon_1": {
+ "label": "Primeiro ícone"
+ },
+ "image_1": {
+ "label": "Primeira imagem"
+ },
+ "heading_1": {
+ "label": "Primeiro título"
+ },
+ "icon_2": {
+ "label": "Segundo ícone"
+ },
+ "image_2": {
+ "label": "Segunda imagem"
+ },
+ "heading_2": {
+ "label": "Segundo título"
+ },
+ "icon_3": {
+ "label": "Terceiro ícone"
+ },
+ "image_3": {
+ "label": "Terceira imagem"
+ },
+ "heading_3": {
+ "label": "Terceiro título"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Estado do inventário",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Limite do inventário baixo",
+ "info": "Escolha 0 para mostrar sempre em stock, se disponível."
+ },
+ "show_inventory_quantity": {
+ "label": "Mostrar contagem de inventário"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Conteúdo multimédia",
+ "info": "Saiba mais sobre [tipos de média.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Ativar ciclo de vídeo"
+ },
+ "enable_sticky_info": {
+ "label": "Ativar conteúdo fixo no desktop"
+ },
+ "hide_variants": {
+ "label": "Ocultar outro conteúdo multimédia das variantes após selecionar uma variante"
+ },
+ "gallery_layout": {
+ "label": "Esquema de desktop",
+ "options__1": {
+ "label": "Empilhado"
+ },
+ "options__2": {
+ "label": "Duas colunas"
+ },
+ "options__3": {
+ "label": "Miniaturas"
+ },
+ "options__4": {
+ "label": "Carrossel de miniaturas"
+ }
+ },
+ "media_size": {
+ "label": "Largura do conteúdo multimédia para computador",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "info": "Os conteúdos multimédia são automaticamente otimizados para dispositivos móveis."
+ },
+ "mobile_thumbnails": {
+ "label": "Esquema móvel",
+ "options__1": {
+ "label": "Duas colunas"
+ },
+ "options__2": {
+ "label": "Mostrar miniaturas"
+ },
+ "options__3": {
+ "label": "Ocultar miniaturas"
+ }
+ },
+ "media_position": {
+ "label": "Posição do conteúdo multimédia no ambiente de trabalho",
+ "info": "A posição é automaticamente otimizada para dispositivos móveis.",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Direita"
+ }
+ },
+ "image_zoom": {
+ "label": "Zoom da imagem",
+ "info": "Clique e passe o cursor para abrir a janela modal (lightbox) no telemóvel.",
+ "options__1": {
+ "label": "Abrir janela modal (lightbox)"
+ },
+ "options__2": {
+ "label": "Clicar e passar o cursor"
+ },
+ "options__3": {
+ "label": "Sem zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Ajustar conteúdo multimédia ao ecrã"
+ },
+ "media_fit": {
+ "label": "Ajuste do conteúdo multimédia",
+ "options__1": {
+ "label": "Original"
+ },
+ "options__2": {
+ "label": "Preencher"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Resultados da pesquisa",
+ "settings": {
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar a segunda imagem ao passar o rato"
+ },
+ "show_vendor": {
+ "label": "Mostrar fornecedor"
+ },
+ "header__1": {
+ "content": "Cartão de produtos"
+ },
+ "header__2": {
+ "content": "Cartão de blogue",
+ "info": "Os estilos de cartões de blogue são também aplicáveis aos cartões de páginas nos resultados de pesquisa. Para alterar os estilos de cartões, atualize as suas definições do tema."
+ },
+ "article_show_date": {
+ "label": "Mostrar data"
+ },
+ "article_show_author": {
+ "label": "Mostrar autor"
+ },
+ "show_rating": {
+ "label": "Mostrar classificação do produto",
+ "info": "Para mostrar uma classificação, adicione uma aplicação de classificação de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Várias colunas",
+ "settings": {
+ "title": {
+ "label": "Título"
+ },
+ "image_width": {
+ "label": "Largura da imagem",
+ "options__1": {
+ "label": "Um terço da largura da coluna"
+ },
+ "options__2": {
+ "label": "Metade da largura da coluna"
+ },
+ "options__3": {
+ "label": "Largura total da coluna"
+ }
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ },
+ "options__4": {
+ "label": "Círculo"
+ }
+ },
+ "column_alignment": {
+ "label": "Alinhamento de colunas",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ }
+ },
+ "background_style": {
+ "label": "Fundo secundário",
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Mostrar como fundo da coluna"
+ }
+ },
+ "button_label": {
+ "label": "Etiqueta do botão"
+ },
+ "button_link": {
+ "label": "Ligação do botão"
+ },
+ "swipe_on_mobile": {
+ "label": "Ativar leitura magnética no dispositivo móvel"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no ambiente de trabalho"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "title": {
+ "label": "Título"
+ },
+ "text": {
+ "label": "Descrição"
+ },
+ "link_label": {
+ "label": "Etiqueta de ligação"
+ },
+ "link": {
+ "label": "Ligação"
+ }
+ },
+ "name": "Coluna"
+ }
+ },
+ "presets": {
+ "name": "Várias colunas"
+ }
+ },
+ "newsletter": {
+ "name": "Registo de e-mail",
+ "settings": {
+ "full_width": {
+ "label": "Tornar a secção em largura total"
+ },
+ "paragraph": {
+ "content": "Cada subscrição de e-mail cria uma conta de cliente. [Saber mais](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ },
+ "name": "Cabeçalho"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "Descrição"
+ }
+ },
+ "name": "Subtítulo"
+ },
+ "email_form": {
+ "name": "Formulário de e-mail"
+ }
+ },
+ "presets": {
+ "name": "Registo de e-mail"
+ }
+ },
+ "page": {
+ "name": "Página",
+ "settings": {
+ "page": {
+ "label": "Página"
+ }
+ },
+ "presets": {
+ "name": "Página"
+ }
+ },
+ "rich-text": {
+ "name": "Texto formatado",
+ "settings": {
+ "full_width": {
+ "label": "Tornar a secção em largura total"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Posição do conteúdo para computador",
+ "info": "A posição é automaticamente otimizada para dispositivos móveis."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento de conteúdo"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Título"
+ }
+ },
+ "name": "Cabeçalho"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Descrição"
+ }
+ },
+ "name": "Texto"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "Primeira etiqueta do botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_1": {
+ "label": "Primeira ligação do botão"
+ },
+ "button_style_secondary_1": {
+ "label": "Utilizar estilo de botão de contorno"
+ },
+ "button_label_2": {
+ "label": "Segunda etiqueta do botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "button_link_2": {
+ "label": "Segunda ligação do botão"
+ },
+ "button_style_secondary_2": {
+ "label": "Utilizar estilo de botão de contorno"
+ }
+ },
+ "name": "Botões"
+ },
+ "caption": {
+ "name": "Legenda",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Legenda"
+ },
+ "options__2": {
+ "label": "Maiúsculas"
+ }
+ },
+ "caption_size": {
+ "label": "Tamanho do texto",
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Texto formatado"
+ }
+ },
+ "apps": {
+ "name": "Aplicações",
+ "settings": {
+ "include_margins": {
+ "label": "Faça as margens de secção as mesmas que o tema"
+ }
+ },
+ "presets": {
+ "name": "Aplicações"
+ }
+ },
+ "video": {
+ "name": "Vídeo",
+ "settings": {
+ "heading": {
+ "label": "Cabeçalho"
+ },
+ "cover_image": {
+ "label": "Imagem de capa"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Usar um URL do YouTube ou Vimeo"
+ },
+ "description": {
+ "label": "Texto alternativo do vídeo",
+ "info": "Descreve o vídeo para que seja acessível a clientes que usam leitores de ecrã. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Adicionar preenchimento de imagem",
+ "info": "Selecione um preenchimento de imagem se não quer que a sua imagem de capa seja cortada."
+ },
+ "full_width": {
+ "label": "Tornar a secção em largura total"
+ },
+ "video": {
+ "label": "Vídeo"
+ },
+ "enable_video_looping": {
+ "label": "Repetir continuamente o vídeo"
+ },
+ "header__1": {
+ "content": "Vídeo hospedado na Shopify"
+ },
+ "header__2": {
+ "content": "Ou incorporar vídeo a partir de URL"
+ },
+ "header__3": {
+ "content": "Estilo"
+ },
+ "paragraph": {
+ "content": "Exibido quando nenhum vídeo hospedado na Shopify está selecionado."
+ }
+ },
+ "presets": {
+ "name": "Vídeo"
+ }
+ },
+ "featured-product": {
+ "name": "Produto em destaque",
+ "blocks": {
+ "text": {
+ "name": "Texto",
+ "settings": {
+ "text": {
+ "label": "Texto"
+ },
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Título"
+ },
+ "price": {
+ "name": "Preço"
+ },
+ "quantity_selector": {
+ "name": "Seletor de quantidade"
+ },
+ "variant_picker": {
+ "name": "Seletor de variante",
+ "settings": {
+ "picker_type": {
+ "label": "Tipo",
+ "options__1": {
+ "label": "Pendente"
+ },
+ "options__2": {
+ "label": "Forma de comprimidos"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Botão de compra",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Mostrar botões dinâmicos de finalização da compra",
+ "info": "Utilizando os métodos de pagamento disponíveis na sua loja, os clientes poderão ver a sua opção preferida, como o PayPal ou Apple Pay. [Saber mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Descrição"
+ },
+ "share": {
+ "name": "Partilhar",
+ "settings": {
+ "featured_image_info": {
+ "content": "Se incluir uma ligação nas publicações das redes sociais, a imagem em destaque da página será demonstrada como a imagem de pré-visualização. [Saber mais](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "É incluído um título de loja e descrição com a imagem de pré-visualização. [Saber mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Texto"
+ }
+ }
+ },
+ "rating": {
+ "name": "Classificação do produto",
+ "settings": {
+ "paragraph": {
+ "content": "Para mostrar uma classificação, adicione uma aplicação de classificação de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Estilo de texto",
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "options__3": {
+ "label": "Maiúsculas"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produto"
+ },
+ "secondary_background": {
+ "label": "Mostrar fundo secundário"
+ },
+ "header": {
+ "content": "Conteúdo multimédia",
+ "info": "Saiba mais sobre [tipos de conteúdo multimédia](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Ativar ciclo de vídeo"
+ },
+ "hide_variants": {
+ "label": "Ocultar conteúdo multimédia das variantes não selecionadas no desktop"
+ },
+ "media_position": {
+ "label": "Posição do conteúdo multimédia no ambiente de trabalho",
+ "info": "A posição é automaticamente otimizada para dispositivos móveis.",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Direita"
+ }
+ }
+ },
+ "presets": {
+ "name": "Produto em destaque"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Faixa de registo de e-mail",
+ "settings": {
+ "paragraph": {
+ "content": "Cada subscrição de e-mail cria uma conta de cliente. [Saber mais](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Imagem de fundo"
+ },
+ "show_background_image": {
+ "label": "Mostrar imagem de fundo"
+ },
+ "show_text_box": {
+ "label": "Mostrar recetores no desktop"
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidade da sobreposição da imagem"
+ },
+ "show_text_below": {
+ "label": "Mostrar conteúdo por baixo da imagem em dispositivos móveis",
+ "info": "Para obter os melhores resultados, utilize uma imagem com uma proporção de 16:9. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Altura da faixa",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "info": "Para obter os melhores resultados, utilize uma imagem com uma proporção de 16:9. [Saber mais](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__2": {
+ "label": "Superior centro"
+ },
+ "options__3": {
+ "label": "Canto superior direito"
+ },
+ "options__4": {
+ "label": "Intermédio à esquerda"
+ },
+ "options__5": {
+ "label": "Intermédio ao centro"
+ },
+ "options__6": {
+ "label": "Intermédio à direita"
+ },
+ "options__7": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__8": {
+ "label": "Inferior centro"
+ },
+ "options__9": {
+ "label": "Canto inferior direito"
+ },
+ "label": "Posição do conteúdo em computadores"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em desktop"
+ },
+ "header": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em dispositivos móveis"
+ },
+ "color_scheme": {
+ "info": "Visível quando o recetor é exibido."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Cabeçalho",
+ "settings": {
+ "heading": {
+ "label": "Cabeçalho"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Parágrafo",
+ "settings": {
+ "paragraph": {
+ "label": "Descrição"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "label": "Estilo de texto"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Formulário de e-mail"
+ }
+ },
+ "presets": {
+ "name": "Faixa de registo de e-mail"
+ }
+ },
+ "slideshow": {
+ "name": "Apresentação de diapositivos",
+ "settings": {
+ "layout": {
+ "label": "Esquema",
+ "options__1": {
+ "label": "Largura total"
+ },
+ "options__2": {
+ "label": "Grelha"
+ }
+ },
+ "slide_height": {
+ "label": "Altura do diapositivo",
+ "options__1": {
+ "label": "Adaptar à primeira imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "options__4": {
+ "label": "Grande"
+ }
+ },
+ "slider_visual": {
+ "label": "Estilo de paginação",
+ "options__1": {
+ "label": "Contador"
+ },
+ "options__2": {
+ "label": "Pontos"
+ },
+ "options__3": {
+ "label": "Números"
+ }
+ },
+ "auto_rotate": {
+ "label": "Rotação automática de diapositivos"
+ },
+ "change_slides_speed": {
+ "label": "Mudar diapositivos a cada"
+ },
+ "mobile": {
+ "content": "Esquema móvel"
+ },
+ "show_text_below": {
+ "label": "Mostrar conteúdo abaixo das imagens em dispositivos móveis"
+ },
+ "accessibility": {
+ "content": "Acessibilidade",
+ "label": "Descrição da apresentação de diapositivos",
+ "info": "Descreve a apresentação de diapositivos para que seja acessível a clientes que usam leitores de ecrã."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Diapositivo",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "heading": {
+ "label": "Cabeçalho"
+ },
+ "subheading": {
+ "label": "Subtítulo"
+ },
+ "button_label": {
+ "label": "Etiqueta do botão",
+ "info": "Deixe a etiqueta em branco para ocultar o botão."
+ },
+ "link": {
+ "label": "Ligação do botão"
+ },
+ "secondary_style": {
+ "label": "Utilizar estilo de botão de contorno"
+ },
+ "box_align": {
+ "label": "Posição do conteúdo em desktop",
+ "options__1": {
+ "label": "Canto superior esquerdo"
+ },
+ "options__2": {
+ "label": "Superior centro"
+ },
+ "options__3": {
+ "label": "Canto superior direito"
+ },
+ "options__4": {
+ "label": "Intermédio à esquerda"
+ },
+ "options__5": {
+ "label": "Intermédio ao centro"
+ },
+ "options__6": {
+ "label": "Intermédio à direita"
+ },
+ "options__7": {
+ "label": "Canto inferior esquerdo"
+ },
+ "options__8": {
+ "label": "Inferior centro"
+ },
+ "options__9": {
+ "label": "Canto inferior direito"
+ },
+ "info": "Posição é automaticamente otimizada para dispositivos móveis."
+ },
+ "show_text_box": {
+ "label": "Mostrar recetores no desktop"
+ },
+ "text_alignment": {
+ "label": "Alinhamento do conteúdo em desktop",
+ "option_1": {
+ "label": "Esquerda"
+ },
+ "option_2": {
+ "label": "Ao centro"
+ },
+ "option_3": {
+ "label": "Direita"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Opacidade da sobreposição da imagem"
+ },
+ "text_alignment_mobile": {
+ "label": "Alinhamento do conteúdo em dispositivos móveis",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Apresentação de diapositivos"
+ }
+ },
+ "collapsible_content": {
+ "name": "Conteúdo recolhível",
+ "settings": {
+ "caption": {
+ "label": "Legenda"
+ },
+ "heading": {
+ "label": "Cabeçalho"
+ },
+ "heading_alignment": {
+ "label": "Alinhamento do título",
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Ao centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ }
+ },
+ "layout": {
+ "label": "Esquema",
+ "options__1": {
+ "label": "Nenhum contentor"
+ },
+ "options__2": {
+ "label": "Contentor de linha"
+ },
+ "options__3": {
+ "label": "Contentor de secção"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Esquema de cores do contentor",
+ "info": "Visível quando o esquema está definido para contentor de linha ou de secção."
+ },
+ "open_first_collapsible_row": {
+ "label": "Abrir primeira linha recolhível"
+ },
+ "header": {
+ "content": "Esquema de imagem"
+ },
+ "image": {
+ "label": "Imagem"
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Grande"
+ }
+ },
+ "desktop_layout": {
+ "label": "Esquema de desktop",
+ "options__1": {
+ "label": "Primeira imagem"
+ },
+ "options__2": {
+ "label": "Segunda imagem"
+ },
+ "info": "A imagem sempre aparece sempre primeiro nos dispositivos móveis."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Linha recolhível",
+ "settings": {
+ "heading": {
+ "info": "Inclua um título que explique o conteúdo.",
+ "label": "Cabeçalho"
+ },
+ "row_content": {
+ "label": "Conteúdo da linha"
+ },
+ "page": {
+ "label": "Conteúdo da linha da página"
+ },
+ "icon": {
+ "label": "Ícone",
+ "options__1": {
+ "label": "Nenhum"
+ },
+ "options__2": {
+ "label": "Maçã"
+ },
+ "options__3": {
+ "label": "Banana"
+ },
+ "options__4": {
+ "label": "Garrafa"
+ },
+ "options__5": {
+ "label": "Caixa"
+ },
+ "options__6": {
+ "label": "Cenoura"
+ },
+ "options__7": {
+ "label": "Bolha de conversa"
+ },
+ "options__8": {
+ "label": "Marca de verificação"
+ },
+ "options__9": {
+ "label": "Prancheta"
+ },
+ "options__10": {
+ "label": "Produtos lácteos"
+ },
+ "options__11": {
+ "label": "Sem produtos lácteos"
+ },
+ "options__12": {
+ "label": "Secador"
+ },
+ "options__13": {
+ "label": "Olho"
+ },
+ "options__14": {
+ "label": "Fogo"
+ },
+ "options__15": {
+ "label": "Sem glúten"
+ },
+ "options__16": {
+ "label": "Coração"
+ },
+ "options__17": {
+ "label": "Ferro"
+ },
+ "options__18": {
+ "label": "Folha"
+ },
+ "options__19": {
+ "label": "Couro"
+ },
+ "options__20": {
+ "label": "Relâmpago"
+ },
+ "options__21": {
+ "label": "Batom"
+ },
+ "options__22": {
+ "label": "Cadeado"
+ },
+ "options__23": {
+ "label": "Marcador de mapa"
+ },
+ "options__24": {
+ "label": "Sem frutos de casca rija"
+ },
+ "options__25": {
+ "label": "Calças"
+ },
+ "options__26": {
+ "label": "Marca de pata"
+ },
+ "options__27": {
+ "label": "Pimenta"
+ },
+ "options__28": {
+ "label": "Perfume"
+ },
+ "options__29": {
+ "label": "Avião"
+ },
+ "options__30": {
+ "label": "Planta"
+ },
+ "options__31": {
+ "label": "Etiqueta de preço"
+ },
+ "options__32": {
+ "label": "Ponto de interrogação"
+ },
+ "options__33": {
+ "label": "Reciclar"
+ },
+ "options__34": {
+ "label": "Devolução"
+ },
+ "options__35": {
+ "label": "Régua"
+ },
+ "options__36": {
+ "label": "Prato"
+ },
+ "options__37": {
+ "label": "Camisa"
+ },
+ "options__38": {
+ "label": "Sapato"
+ },
+ "options__39": {
+ "label": "Silhueta"
+ },
+ "options__40": {
+ "label": "Floco de neve"
+ },
+ "options__41": {
+ "label": "Estrela"
+ },
+ "options__42": {
+ "label": "Cronómetro"
+ },
+ "options__43": {
+ "label": "Camião"
+ },
+ "options__44": {
+ "label": "Lavar"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Conteúdo recolhível"
+ }
+ },
+ "main-account": {
+ "name": "Conta"
+ },
+ "main-activate-account": {
+ "name": "Ativação de conta"
+ },
+ "main-addresses": {
+ "name": "Endereços"
+ },
+ "main-login": {
+ "name": "Iniciar sessão"
+ },
+ "main-order": {
+ "name": "Encomenda"
+ },
+ "main-register": {
+ "name": "Registo"
+ },
+ "main-reset-password": {
+ "name": "Redefinição de palavra-passe"
+ },
+ "related-products": {
+ "name": "Produtos relacionados",
+ "settings": {
+ "heading": {
+ "label": "Título"
+ },
+ "products_to_show": {
+ "label": "Máximo de produtos a apresentar"
+ },
+ "columns_desktop": {
+ "label": "Número de colunas no computador"
+ },
+ "paragraph__1": {
+ "content": "As recomendações dinâmicas utilizam informações de encomenda e de produto para mudar e melhorar ao longo do tempo. [Saber mais](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Cartão de produtos"
+ },
+ "image_ratio": {
+ "label": "Proporção de imagem",
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Retrato"
+ },
+ "options__3": {
+ "label": "Quadrado"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Mostrar a segunda imagem ao passar o rato"
+ },
+ "show_vendor": {
+ "label": "Mostrar fornecedor"
+ },
+ "show_rating": {
+ "label": "Mostrar classificação do produto",
+ "info": "Para mostrar uma classificação, adicione uma aplicação de classificação de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ },
+ "columns_mobile": {
+ "label": "Número de colunas em dispositivo móvel",
+ "options__1": {
+ "label": "1 coluna"
+ },
+ "options__2": {
+ "label": "2 colunas"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Várias linhas",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Adaptar à imagem"
+ },
+ "options__2": {
+ "label": "Pequeno"
+ },
+ "options__3": {
+ "label": "Médio"
+ },
+ "options__4": {
+ "label": "Grande"
+ },
+ "label": "Altura da imagem"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Largura da imagem em computador",
+ "info": "A imagem é otimizada automaticamente em dispositivos móveis."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Pequeno"
+ },
+ "options__2": {
+ "label": "Médio"
+ },
+ "options__3": {
+ "label": "Grande"
+ },
+ "label": "Tamanho do título"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Corpo"
+ },
+ "options__2": {
+ "label": "Legenda"
+ },
+ "label": "Estilo de texto"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Botão sólido"
+ },
+ "options__2": {
+ "label": "Botão de contorno"
+ },
+ "label": "Estilo do botão"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em computador"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Em cima"
+ },
+ "options__2": {
+ "label": "Ao meio"
+ },
+ "options__3": {
+ "label": "Em baixo"
+ },
+ "label": "Posição do conteúdo para computador",
+ "info": "A posição é automaticamente otimizada para dispositivos móveis."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alternar da esquerda"
+ },
+ "options__2": {
+ "label": "Alternar da direita"
+ },
+ "options__3": {
+ "label": "Alinhado à esquerda"
+ },
+ "options__4": {
+ "label": "Alinhado à direita"
+ },
+ "label": "Posicionamento da imagem em computador",
+ "info": "O posicionamento é otimizado automaticamente para dispositivos móveis."
+ },
+ "container_color_scheme": {
+ "label": "Esquema de cores do contentor"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Esquerda"
+ },
+ "options__2": {
+ "label": "Centro"
+ },
+ "options__3": {
+ "label": "Direita"
+ },
+ "label": "Alinhamento do conteúdo em dispositivos móveis"
+ },
+ "header_mobile": {
+ "content": "Esquema para dispositivo móvel"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Linha",
+ "settings": {
+ "image": {
+ "label": "Imagem"
+ },
+ "caption": {
+ "label": "Legenda"
+ },
+ "heading": {
+ "label": "Título"
+ },
+ "text": {
+ "label": "Texto"
+ },
+ "button_label": {
+ "label": "Etiqueta do botão"
+ },
+ "button_link": {
+ "label": "Ligação do botão"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Várias linhas"
+ }
+ },
+ "quick-order-list": {
+ "name": "Lista de encomendas rápida",
+ "settings": {
+ "show_image": {
+ "label": "Mostrar imagens"
+ },
+ "show_sku": {
+ "label": "Mostrar SKU"
+ }
+ },
+ "presets": {
+ "name": "Lista de encomendas rápida"
+ }
+ }
+ }
+}
diff --git a/locales/ro-RO.json b/locales/ro-RO.json
new file mode 100644
index 0000000..109951e
--- /dev/null
+++ b/locales/ro-RO.json
@@ -0,0 +1,524 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Accesați magazinul folosind parola:",
+ "login_password_button": "Accesați folosind parola",
+ "login_form_password_label": "Parolă",
+ "login_form_password_placeholder": "Parola dvs.",
+ "login_form_error": "Parolă incorectă!",
+ "login_form_submit": "Accesați",
+ "admin_link_html": "Sunteți proprietarul magazinului? Conectați-vă aici ",
+ "powered_by_shopify_html": "Acest magazin va fi pe platforma {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Distribuiți pe Facebook",
+ "share_on_twitter": "Dați un Tweet pe Twitter",
+ "share_on_pinterest": "Postați un Pin pe Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Continuați cumpărăturile",
+ "pagination": {
+ "label": "Paginare",
+ "page": "Pagina {{ number }}",
+ "next": "Pagina următoare",
+ "previous": "Pagina precedentă"
+ },
+ "search": {
+ "search": "Căutați",
+ "reset": "Golește termenul de căutare"
+ },
+ "cart": {
+ "view": "Vezi coșul ({{ count }})",
+ "item_added": "Articolul a fost adăugat în coș",
+ "view_empty_cart": "Vezi coșul"
+ },
+ "share": {
+ "copy_to_clipboard": "Copiați linkul",
+ "share_url": "Link",
+ "success_message": "Linkul a fost copiat în clipboard",
+ "close": "Închide partajarea"
+ },
+ "slider": {
+ "of": "din",
+ "next_slide": "Glisare la dreapta",
+ "previous_slide": "Glisare la stânga",
+ "name": "Glisor"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Vă mulțumim că v-ați abonat",
+ "button_label": "Abonați-vă"
+ },
+ "accessibility": {
+ "skip_to_text": "Salt la conținut",
+ "close": "Închideți",
+ "unit_price_separator": "pe",
+ "vendor": "Vânzător:",
+ "error": "Eroare",
+ "refresh_page": "Alegerea unei selecții are ca rezultat o reîmprospătare completă a paginii.",
+ "loading": "Se încarcă...",
+ "link_messages": {
+ "new_window": "Se deschide într-o fereastră nouă.",
+ "external": "Deschide site-ul extern."
+ },
+ "skip_to_product_info": "Salt la informațiile despre produs",
+ "total_reviews": "total recenzii",
+ "star_reviews_info": "{{ rating_value }} din {{ rating_max }} stele",
+ "collapsible_content_title": "Conținut care poate fi restrâns",
+ "complementary_products": "Produse complementare"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Aflați mai mult: {{ title }}",
+ "moderated": "Rețineți: comentariile trebuie să fie aprobate înainte de publicare.",
+ "comment_form_title": "Scrieți un comentariu",
+ "name": "Nume",
+ "email": "E-mail",
+ "message": "Comentariu",
+ "post": "Postați comentariul",
+ "back_to_blog": "Înapoi la blog",
+ "share": "Distribuiți acest articol",
+ "success": "Comentariul a fost postat cu succes! Vă mulțumim!",
+ "success_moderated": "Comentariul a fost postat cu succes. Îl vom publica peste puțin timp, deoarece blogul nostru este moderat.",
+ "comments": {
+ "one": "{{ count }} comentariu",
+ "other": "{{ count }} comentarii",
+ "few": "{{ count }} comentarii"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Exemplu de titlu de produs",
+ "collection_title": "Numele colecției"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Adăugați în coș",
+ "description": "Descriere",
+ "on_sale": "Vânzare",
+ "product_variants": "Variante de produse",
+ "share": "Distribuiți acest produs",
+ "sold_out": "Stoc epuizat",
+ "unavailable": "Indisponibil",
+ "vendor": "Vânzător",
+ "video_exit_message": "{{ title }} deschide videoclipul în ecran complet în aceeași fereastră.",
+ "xr_button": "Vizualizați în spațiul dvs.",
+ "xr_button_label": "Vizualizați în spațiul dvs., articolul se încarcă în fereastra de realitate augmentată",
+ "quantity": {
+ "label": "Cantitate",
+ "input_label": "Cantitate pentru {{ product }}",
+ "increase": "Creșteți cantitatea pentru {{ product }}",
+ "decrease": "Reduceți cantitatea pentru {{ product }}",
+ "minimum_of": "Minimum {{ quantity }}",
+ "maximum_of": "Maximum {{ quantity }}",
+ "multiples_of": "Incrementuri de {{ quantity }}",
+ "in_cart_html": "{{ quantity }} în coș",
+ "note": "Vezi regulile legate de cantitate"
+ },
+ "price": {
+ "from_price_html": "Începând cu {{ price }}",
+ "regular_price": "Preț obișnuit",
+ "sale_price": "Preț redus",
+ "unit_price": "Preț unitar"
+ },
+ "pickup_availability": {
+ "view_store_info": "Vizualizați informațiile despre magazin",
+ "check_other_stores": "Vizualizați disponibilitatea la alte magazine",
+ "pick_up_available": "Ridicare disponibilă",
+ "pick_up_available_at_html": "Ridicare disponibilă la {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Ridicare indisponibilă momentan la {{ location_name }} ",
+ "unavailable": "Nu am putut încărca disponibilitatea pentru ridicare",
+ "refresh": "Reîmprospătați"
+ },
+ "media": {
+ "open_media": "Deschide conținutul media {{ index }} într-o fereastră modală",
+ "play_model": "Redați în vizualizatorul 3D",
+ "play_video": "Redați videoclipul",
+ "gallery_viewer": "Vizualizatorul galeriei",
+ "load_image": "Încarcă imaginea {{ index }} în vizualizarea galeriei",
+ "load_model": "Încarcă modelul 3D {{ index }} în vizualizarea galeriei",
+ "load_video": "Redă videoclipul {{ index }} în vizualizarea galeriei",
+ "image_available": "Imaginea {{ index }} este disponibilă acum în vizualizarea galeriei"
+ },
+ "view_full_details": "Vedeți detaliile complete",
+ "include_taxes": "Taxe incluse.",
+ "shipping_policy_html": "Taxele de expediere sunt calculate la finalizarea comenzii.",
+ "choose_options": "Alege opțiunile",
+ "choose_product_options": "Alege opțiunile pentru {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – Indisponibil",
+ "variant_sold_out_or_unavailable": "Varianta are stocul epuizat sau este indisponibilă",
+ "inventory_in_stock": "În stoc",
+ "inventory_in_stock_show_count": "{{ quantity }} în stoc",
+ "inventory_low_stock": "Stoc redus",
+ "inventory_low_stock_show_count": "Stoc redus: doar {{ quantity }} articole rămase",
+ "inventory_out_of_stock": "Nu există în stoc",
+ "inventory_out_of_stock_continue_selling": "În stoc",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Stabilire preț per volum",
+ "note": "Stabilirea prețului per volum este disponibilă",
+ "minimum": "Peste {{ quantity }}",
+ "price_at_each": "la {{ price }}/buc.",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galerie media"
+ },
+ "facets": {
+ "apply": "Aplică",
+ "clear": "Golește",
+ "clear_all": "Elimină tot",
+ "from": "De la",
+ "filter_and_sort": "Filtrează și sortează",
+ "filter_by_label": "Filtrează:",
+ "filter_button": "Filtrează",
+ "max_price": "Cel mai mare preț este {{ price }}",
+ "reset": "Resetează",
+ "sort_button": "Sortează",
+ "sort_by_label": "Sortează după:",
+ "to": "Către",
+ "filters_selected": {
+ "one": "{{ count }} selectat",
+ "other": "{{ count }} selectate",
+ "few": "{{ count }} selectate"
+ },
+ "product_count": {
+ "one": "{{ product_count }} din {{ count }} produs",
+ "other": "{{ product_count }} din {{ count }} produse",
+ "few": "{{ product_count }} din {{ count }} produse"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produs",
+ "other": "{{ count }} produse",
+ "few": "{{ count }} produse"
+ },
+ "clear_filter": "Elimină filtrul",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtre selectate)",
+ "show_more": "Afișează mai mult",
+ "show_less": "Afișează mai puțin",
+ "filter_and_operator_subtitle": "Potrivește-le pe toate"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Nu s-au găsit rezultate pentru „{{ terms }}”. Verificați ortografia sau utilizați alt cuvânt sau altă expresie.",
+ "title": "Rezultatele căutării",
+ "results_with_count": {
+ "one": "{{ count }} rezultat",
+ "other": "{{ count }} rezultate",
+ "few": "{{ count }} rezultate"
+ },
+ "page": "Pagină",
+ "products": "Produse",
+ "search_for": "Caută „{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "S-a găsit {{ count }} rezultat pentru „{{ terms }}”",
+ "other": "S-au găsit {{ count }} rezultate pentru „{{ terms }}”",
+ "few": "S-au găsit {{ count }} rezultate pentru „{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} pagină",
+ "other": "{{ count }} pagini",
+ "few": "{{ count }} pagini"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} sugestie",
+ "other": "{{ count }} de sugestii",
+ "few": "{{ count }} de sugestii"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produs",
+ "other": "{{ count }} produse",
+ "few": "{{ count }} produse"
+ },
+ "suggestions": "Sugestii",
+ "pages": "Pagini"
+ },
+ "cart": {
+ "cart": "Coș"
+ },
+ "contact": {
+ "form": {
+ "name": "Nume",
+ "email": "E-mail",
+ "phone": "Număr de telefon",
+ "comment": "Comentariu",
+ "send": "Trimiteți",
+ "post_success": "Vă mulțumim că ne-ați contactat. Vom lua legătura cu dvs. cât mai curând posibil.",
+ "error_heading": "Vă rugăm să ajustați următoarele:",
+ "title": "Formular de contact"
+ }
+ },
+ "404": {
+ "title": "Pagina nu a fost găsită",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Anunț",
+ "menu": "Meniu",
+ "cart_count": {
+ "one": "{{ count }} articol",
+ "other": "{{ count }} articole",
+ "few": "{{ count }} articole"
+ }
+ },
+ "cart": {
+ "title": "Coșul dvs.",
+ "caption": "Articole din coș",
+ "remove_title": "Eliminați {{ title }}",
+ "note": "Instrucțiuni speciale legate de comandă",
+ "checkout": "Finalizați comanda",
+ "empty": "Coșul dvs. este gol",
+ "cart_error": "A apărut o eroare în timpul actualizării coșului. Încercați din nou.",
+ "cart_quantity_error_html": "Cantitatea maximă pe care o poți adăuga în coș din acest articol: {{ quantity }}.",
+ "taxes_and_shipping_policy_at_checkout_html": "Taxele, reducerile și transportul sunt calculate la finalizarea comenzii",
+ "taxes_included_but_shipping_at_checkout": "Taxele sunt incluse, iar transportul și reducerile sunt calculate la finalizarea comenzii",
+ "taxes_included_and_shipping_policy_html": "Taxele sunt incluse. Transportul și reducerile sunt calculate la finalizarea comenzii.",
+ "taxes_and_shipping_at_checkout": "Taxele, reducerile și transportul sunt calculate la finalizarea comenzii",
+ "update": "Actualizați",
+ "headings": {
+ "product": "Produs",
+ "price": "Preț",
+ "total": "Total",
+ "quantity": "Cantitate",
+ "image": "Imagine produs"
+ },
+ "login": {
+ "title": "Ai un cont?",
+ "paragraph_html": "Conectează-te pentru a finaliza comanda mai rapid."
+ },
+ "estimated_total": "Total estimat",
+ "new_estimated_total": "Noul total estimat"
+ },
+ "footer": {
+ "payment": "Metode de plată"
+ },
+ "featured_blog": {
+ "view_all": "Afișați tot",
+ "onboarding_title": "Postare pe blog",
+ "onboarding_content": "Oferiți-le clienților un rezumat al postării de pe blog"
+ },
+ "featured_collection": {
+ "view_all": "Afișați tot",
+ "view_all_label": "Afișați toate produsele din colecția {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Afișați tot"
+ },
+ "collection_template": {
+ "title": "Colecție",
+ "empty": "Nu s-au găsit produse",
+ "use_fewer_filters_html": "Folosește mai puține filtre sau elimină-le pe toate "
+ },
+ "video": {
+ "load_video": "Încarcă clipul video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Încarcă diapozitivul",
+ "previous_slideshow": "Diapozitivul anterior",
+ "next_slideshow": "Diapozitivul următor",
+ "pause_slideshow": "Întrerupe prezentarea de diapozitive",
+ "play_slideshow": "Redă prezentarea de diapozitive",
+ "carousel": "Carusel",
+ "slide": "Diapozitiv"
+ },
+ "page": {
+ "title": "Titlul paginii"
+ },
+ "announcements": {
+ "previous_announcement": "Anunțul anterior",
+ "next_announcement": "Anunțul următor",
+ "carousel": "Carusel",
+ "announcement": "Anunț",
+ "announcement_bar": "Bară cu anunțuri"
+ },
+ "quick_order_list": {
+ "product_total": "Subtotal produs",
+ "view_cart": "Vezi coșul",
+ "each": "{{ money }}/buc.",
+ "product": "Produs",
+ "variant": "Variantă",
+ "variant_total": "Total variantă",
+ "items_added": {
+ "one": "{{ quantity }} articol adăugat",
+ "other": "{{ quantity }} articole adăugate",
+ "few": "{{ quantity }} articole adăugate"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} articol eliminat",
+ "other": "{{ quantity }} articole eliminate",
+ "few": "{{ quantity }} articole eliminate"
+ },
+ "product_variants": "Variante de produse",
+ "total_items": "Total articole",
+ "remove_all_items_confirmation": "Elimini toate cele {{ quantity }} articole din coș?",
+ "remove_all": "Elimină tot",
+ "cancel": "Anulează"
+ }
+ },
+ "localization": {
+ "country_label": "Țară/Regiune",
+ "language_label": "Limbă",
+ "update_language": "Actualizați limba",
+ "update_country": "Actualizați țara/regiunea"
+ },
+ "customer": {
+ "account": {
+ "title": "Cont",
+ "details": "Detalii cont",
+ "view_addresses": "Afișați adresele",
+ "return": "Înapoi la detaliile contului"
+ },
+ "account_fallback": "Cont",
+ "log_in": "Conectați-vă",
+ "log_out": "Deconectați-vă",
+ "activate_account": {
+ "title": "Activați contul",
+ "subtext": "Creați o parolă pentru a vă activa contul.",
+ "password": "Parolă",
+ "password_confirm": "Confirmați parola",
+ "submit": "Activați contul",
+ "cancel": "Refuzați invitația"
+ },
+ "addresses": {
+ "title": "Adrese",
+ "default": "Implicit",
+ "add_new": "Adăugați o adresă nouă",
+ "edit_address": "Editați adresa",
+ "first_name": "Prenume",
+ "last_name": "Nume de familie",
+ "company": "Companie",
+ "address1": "Adresa 1",
+ "address2": "Adresa 2",
+ "city": "Localitate",
+ "country": "Țară/Regiune",
+ "province": "Provincie",
+ "zip": "Cod poștal",
+ "phone": "Număr de telefon",
+ "set_default": "Setați ca adresă implicită",
+ "add": "Adăugați adresa",
+ "update": "Actualizați adresa",
+ "cancel": "Anulați",
+ "edit": "Editați",
+ "delete": "Ștergeți",
+ "delete_confirm": "Sigur ștergeți această adresă?"
+ },
+ "login_page": {
+ "cancel": "Anulați",
+ "create_account": "Creați un cont",
+ "email": "E-mail",
+ "forgot_password": "Ați uitat parola?",
+ "guest_continue": "Continuați",
+ "guest_title": "Continuați ca invitat",
+ "password": "Parolă",
+ "title": "Conectați-vă",
+ "sign_in": "Conectați-vă",
+ "submit": "Trimiteți"
+ },
+ "orders": {
+ "title": "Istoric comenzi",
+ "order_number": "Comandă",
+ "order_number_link": "Numărul comenzii: {{ number }}",
+ "date": "Dată",
+ "payment_status": "Starea plății",
+ "fulfillment_status": "Starea comenzii",
+ "total": "Total",
+ "none": "Încă nu ați plasat comenzi."
+ },
+ "recover_password": {
+ "title": "Resetați parola",
+ "subtext": "Vă vom trimite un e-mail ca să vă resetați parola",
+ "success": "V-am trimis un e-mail cu un link pentru a vă actualiza parola."
+ },
+ "register": {
+ "title": "Creați un cont",
+ "first_name": "Prenume",
+ "last_name": "Nume de familie",
+ "email": "E-mail",
+ "password": "Parolă",
+ "submit": "Creați"
+ },
+ "reset_password": {
+ "title": "Resetați parola contului",
+ "subtext": "Introdu o parolă nouă",
+ "password": "Parolă",
+ "password_confirm": "Confirmați parola",
+ "submit": "Resetați parola"
+ },
+ "order": {
+ "title": "Comanda {{ name }}",
+ "date_html": "Plasată pe {{ date }}",
+ "cancelled_html": "Comandă anulată pe {{ date }}",
+ "cancelled_reason": "Motiv: {{ reason }}",
+ "billing_address": "Adresa de facturare",
+ "payment_status": "Starea plății",
+ "shipping_address": "Adresa de expediere",
+ "fulfillment_status": "Starea comenzii",
+ "discount": "Reducere",
+ "shipping": "Expediere",
+ "tax": "Taxe",
+ "product": "Produs",
+ "sku": "SKU",
+ "price": "Preț",
+ "quantity": "Cantitate",
+ "total": "Total",
+ "fulfilled_at_html": "Comandă onorată la {{ date }}",
+ "track_shipment": "Urmăriți expedierea",
+ "tracking_url": "Link de urmărire",
+ "tracking_company": "Serviciu de curierat",
+ "tracking_number": "Număr de urmărire",
+ "subtotal": "Subtotal",
+ "total_duties": "Taxe vamale",
+ "total_refunded": "Rambursată"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Iată soldul aferent cardurilor cadou, în valoare de {{ value }}, pentru {{ shop }}!",
+ "subtext": "Cardul dvs. cadou",
+ "gift_card_code": "Codul cardului cadou",
+ "shop_link": "Vizitează magazinul online",
+ "add_to_apple_wallet": "Adăugați la Apple Wallet",
+ "qr_image_alt": "Cod QR – scanați-l ca să valorificați cardul cadou",
+ "copy_code": "Copiază codul cardului cadou",
+ "expired": "Expirat",
+ "copy_code_success": "Codul a fost copiat cu succes",
+ "how_to_use_gift_card": "Folosește codul cardului cadou online sau codul QR în magazin",
+ "expiration_date": "Expiră pe {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Vreau să trimit acest lucru drept cadou",
+ "email_label": "Adresă de e-mail destinatar",
+ "email": "Adresă de e-mail",
+ "name_label": "Nume destinatar (opțional)",
+ "name": "Nume",
+ "message_label": "Mesaj (opțional)",
+ "message": "Mesaj",
+ "max_characters": "Maximum {{ max_chars }} (de) caractere",
+ "email_label_optional_for_no_js_behavior": "Adresă de e-mail destinatar (opțional)",
+ "send_on": "DD.MM.YYYY",
+ "send_on_label": "Trimite pe (opțional)",
+ "expanded": "Formularul pentru destinatarul cardului cadou este extins",
+ "collapsed": "Formularul pentru destinatarul cardului cadou este restrâns"
+ }
+ }
+}
diff --git a/locales/ru.json b/locales/ru.json
new file mode 100644
index 0000000..7693565
--- /dev/null
+++ b/locales/ru.json
@@ -0,0 +1,536 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Вход в магазин с помощью пароля:",
+ "login_password_button": "Войти с помощью пароля",
+ "login_form_password_label": "Пароль",
+ "login_form_password_placeholder": "Ваш пароль",
+ "login_form_error": "Неправильный пароль.",
+ "login_form_submit": "Ввести",
+ "admin_link_html": "Вы владелец магазина? Войдите здесь ",
+ "powered_by_shopify_html": "Этот магазин работает на платформе {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Поделиться в Facebook",
+ "share_on_twitter": "Опубликовать в Твиттере",
+ "share_on_pinterest": "Сохранить в Pinterest"
+ },
+ "links": {
+ "twitter": "Твиттер",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Продолжить покупки",
+ "pagination": {
+ "label": "Разбивка на страницы",
+ "page": "Страница {{ number }}",
+ "next": "Следующая страница",
+ "previous": "Предыдущая страница"
+ },
+ "search": {
+ "search": "Поиск",
+ "reset": "Удалить поисковый запрос"
+ },
+ "cart": {
+ "view": "Просмотреть корзину ({{ count }})",
+ "item_added": "Товар добавлен в корзину.",
+ "view_empty_cart": "Просмотреть корзину"
+ },
+ "share": {
+ "copy_to_clipboard": "Копировать ссылку",
+ "share_url": "Ссылка",
+ "success_message": "Ссылка скопирована в буфер обмена.",
+ "close": "Свернуть функцию \"Поделиться\""
+ },
+ "slider": {
+ "of": "из",
+ "next_slide": "Листать вперед",
+ "previous_slide": "Листать назад",
+ "name": "Ползунок"
+ }
+ },
+ "newsletter": {
+ "label": "Адрес электронной почты",
+ "success": "Спасибо, что подписались!",
+ "button_label": "Подписаться"
+ },
+ "accessibility": {
+ "skip_to_text": "Перейти к контенту",
+ "close": "Закрыть",
+ "unit_price_separator": "за",
+ "vendor": "Продавец:",
+ "error": "Ошибка",
+ "refresh_page": "Выбор выделенного элемента приводит к полному обновлению страницы.",
+ "loading": "Загрузка…",
+ "link_messages": {
+ "new_window": "Открывается в новом окне.",
+ "external": "Открывает внешний сайт."
+ },
+ "skip_to_product_info": "Перейти к информации о продукте",
+ "total_reviews": "всего отзывов",
+ "star_reviews_info": "{{ rating_value }} из {{ rating_max }} звезд",
+ "collapsible_content_title": "Контент, который можно свернуть",
+ "complementary_products": "Дополнительные товары"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Блог",
+ "read_more_title": "Узнать больше: {{ title }}",
+ "moderated": "Обратите внимание, что комментарии проходят одобрение перед публикацией.",
+ "comment_form_title": "Комментировать",
+ "name": "Имя",
+ "email": "Адрес электронной почты",
+ "message": "Комментарий",
+ "post": "Добавить комментарий",
+ "back_to_blog": "Вернуться к блогу",
+ "share": "Поделиться статьей",
+ "success": "Ваш комментарий отправлен. Спасибо!",
+ "success_moderated": "Ваш комментарий отправлен. Мы опубликуем его через некоторое время, так как наш блог модерируется.",
+ "comments": {
+ "one": "Комментарии: {{ count }}",
+ "other": "Комментариев: {{ count }}",
+ "few": "Комментариев: {{ count }}",
+ "many": "Комментариев: {{ count }}"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Пример названия товара",
+ "collection_title": "Название коллекции"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Добавить в корзину",
+ "description": "Описание",
+ "on_sale": "Распродажа",
+ "share": "Поделиться этим продуктом",
+ "sold_out": "Продано",
+ "unavailable": "Недоступно",
+ "vendor": "Продавец",
+ "video_exit_message": "{{ title }} – в том же окне открывается полноэкранное видео.",
+ "xr_button": "Просматривайте в реальных условиях",
+ "xr_button_label": "При просмотре в реальных условиях элемент загружается в окне дополненной реальности",
+ "quantity": {
+ "label": "Количество",
+ "input_label": "Количество: {{ product }}",
+ "increase": "Увеличить количество {{ product }}",
+ "decrease": "Уменьшить количество {{ product }}",
+ "minimum_of": "Минимум {{ quantity }}",
+ "maximum_of": "Максимум {{ quantity }}",
+ "multiples_of": "Прирост: {{ quantity }}",
+ "in_cart_html": "В корзине: {{ quantity }} ",
+ "note": "Просмотреть правила количества позиций"
+ },
+ "price": {
+ "from_price_html": "От {{ price }}",
+ "regular_price": "Обычная цена",
+ "sale_price": "Цена со скидкой",
+ "unit_price": "Цена за единицу"
+ },
+ "pickup_availability": {
+ "view_store_info": "Сведения о магазине",
+ "check_other_stores": "Проверить наличие в других магазинах",
+ "pick_up_available": "Самовывоз доступен",
+ "pick_up_available_at_html": "Самовывоз доступен: {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Самовывоз сейчас недоступен: {{ location_name }} ",
+ "unavailable": "Не удалось загрузить сведения о доступности самовывоза",
+ "refresh": "Обновить"
+ },
+ "media": {
+ "open_media": "Открыть медиа-файлы {{ index }} в модальном окне",
+ "play_model": "Открыть объемную модель",
+ "play_video": "Воспроизвести видео",
+ "gallery_viewer": "Средство просмотра галереи",
+ "load_image": "Загрузить изображение {{ index }} в средство просмотра галереи",
+ "load_model": "Загрузить трехмерную модель {{ index }} в средство просмотра галереи",
+ "load_video": "Загрузить видео {{ index }} в средство просмотра галереи",
+ "image_available": "Изображение {{ index }} доступно в средстве просмотра галереи"
+ },
+ "view_full_details": "Просмотреть всю информацию",
+ "include_taxes": "Сумма налога включена.",
+ "shipping_policy_html": "Стоимость доставки рассчитывается при оформлении заказа.",
+ "choose_options": "Выберите варианты",
+ "choose_product_options": "Выберите варианты для {{ product_name }}",
+ "value_unavailable": "{{ option_value }} — Недоступно",
+ "variant_sold_out_or_unavailable": "Вариант распродан или недоступен",
+ "inventory_in_stock": "В наличии",
+ "inventory_in_stock_show_count": "В наличии: {{ quantity }}",
+ "inventory_low_stock": "Заканчивается",
+ "inventory_low_stock_show_count": "Заканчивается. Осталось: {{ quantity }}",
+ "inventory_out_of_stock": "Нет в наличии",
+ "inventory_out_of_stock_continue_selling": "В наличии",
+ "sku": "Артикул",
+ "volume_pricing": {
+ "title": "Оптовая цена",
+ "note": "Доступны оптовые цены",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/кажд.",
+ "price_range": "{{ minimum }} — {{ maximum }}"
+ },
+ "product_variants": "Варианты товара"
+ },
+ "modal": {
+ "label": "Галерея мультимедиа"
+ },
+ "facets": {
+ "apply": "Добавить",
+ "clear": "Удалить",
+ "clear_all": "Удалить все",
+ "from": "От",
+ "filter_and_sort": "Фильтр и сортировка",
+ "filter_by_label": "Фильтр:",
+ "filter_button": "Фильтровать",
+ "max_price": "Максимальная цена: {{ price }}",
+ "reset": "Сбросить",
+ "sort_button": "Сортировка",
+ "sort_by_label": "Сортировка:",
+ "to": "Для",
+ "filters_selected": {
+ "one": "Выбрано: {{ count }}",
+ "other": "Выбрано: {{ count }}",
+ "few": "Выбрано: {{ count }}",
+ "many": "Выбрано: {{ count }}"
+ },
+ "product_count": {
+ "one": "{{ product_count }} из {{ count }} прод.",
+ "other": "{{ product_count }} из {{ count }} прод.",
+ "few": "{{ product_count }} из {{ count }} прод.",
+ "many": "{{ product_count }} из {{ count }} прод."
+ },
+ "product_count_simple": {
+ "one": "{{ count }} прод.",
+ "other": "Продуктов: {{ count }}",
+ "few": "Продуктов: {{ count }}",
+ "many": "Продуктов: {{ count }}"
+ },
+ "clear_filter": "Снять фильтр",
+ "filter_selected_accessibility": "{{ type }} (установлены фильтры: {{ count }})",
+ "show_more": "Показать больше",
+ "show_less": "Показать меньше",
+ "filter_and_operator_subtitle": "Выбрать все"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "По запросу «{{ terms }}» ничего не найдено. Проверьте правописание или выберите другие слова либо фразу.",
+ "title": "Результаты поиска",
+ "results_with_count": {
+ "one": "Результаты: {{ count }}",
+ "other": "Результаты: {{ count }}",
+ "few": "Результаты: {{ count }}",
+ "many": "Результаты: {{ count }}"
+ },
+ "page": "Страница",
+ "products": "Товары",
+ "search_for": "Поиск \"{{ terms }}\"",
+ "results_with_count_and_term": {
+ "one": "{{ count }} рез. по запросу «{{ terms }}»",
+ "other": "{{ count }} рез. по запросу «{{ terms }}»",
+ "few": "{{ count }} рез. по запросу «{{ terms }}»",
+ "many": "{{ count }} рез. по запросу «{{ terms }}»"
+ },
+ "results_pages_with_count": {
+ "one": "Количество страниц: {{ count }}",
+ "other": "Количество страниц: {{ count }}",
+ "few": "Количество страниц: {{ count }}",
+ "many": "Количество страниц: {{ count }}"
+ },
+ "results_suggestions_with_count": {
+ "one": "Рекомендации: {{ count }}",
+ "other": "Рекомендации: {{ count }}",
+ "few": "Рекомендации: {{ count }}",
+ "many": "Рекомендации: {{ count }}"
+ },
+ "results_products_with_count": {
+ "one": "Продукты: {{ count }}",
+ "other": "Продукты: {{ count }}",
+ "few": "Продукты: {{ count }}",
+ "many": "Продукты: {{ count }}"
+ },
+ "suggestions": "Рекомендации",
+ "pages": "Страницы"
+ },
+ "cart": {
+ "cart": "Корзина"
+ },
+ "contact": {
+ "form": {
+ "name": "Имя",
+ "email": "Адрес электронной почты",
+ "phone": "Номер телефона",
+ "comment": "Комментарий",
+ "send": "Отправить",
+ "post_success": "Спасибо за обращение. Мы свяжемся с вами как можно скорее.",
+ "error_heading": "Измените следующие элементы:",
+ "title": "Форма для связи"
+ }
+ },
+ "404": {
+ "title": "Страница не найдена",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Объявление",
+ "menu": "Меню",
+ "cart_count": {
+ "one": "Элементы: {{ count }}",
+ "other": "Элементов: {{ count }}",
+ "few": "Элементов: {{ count }}",
+ "many": "Элементов: {{ count }}"
+ }
+ },
+ "cart": {
+ "title": "Корзина",
+ "caption": "Товары в корзине",
+ "remove_title": "Удалить «{{ title }}»",
+ "note": "Получить специальные инструкции",
+ "checkout": "Оформить заказ",
+ "empty": "Корзина пуста.",
+ "cart_error": "Не удалось обновить корзину. Повторите попытку.",
+ "cart_quantity_error_html": "Максимально допустимое количество единиц этого товара в корзине: {{ quantity }}.",
+ "taxes_and_shipping_policy_at_checkout_html": "Налоги, скидки и стоимость доставки , рассчитанные при оформлении заказа",
+ "taxes_included_but_shipping_at_checkout": "Сумма налога, скидки и стоимость доставки, рассчитанные при оформлении заказа",
+ "taxes_included_and_shipping_policy_html": "Налоги включены. Стоимость доставки и скидки рассчитываются при оформлении заказа.",
+ "taxes_and_shipping_at_checkout": "Налоги, скидки и стоимость доставки, рассчитанные при оформлении заказа",
+ "update": "Обновить",
+ "headings": {
+ "product": "Товар",
+ "price": "Цена",
+ "total": "Всего",
+ "quantity": "Количество",
+ "image": "Изображение продукта"
+ },
+ "login": {
+ "title": "Уже есть учетная запись?",
+ "paragraph_html": "Войти , чтобы оформить заказ быстрее."
+ },
+ "estimated_total": "Ориентировочная общая сумма",
+ "new_estimated_total": "Новая ориентировочная общая сумма"
+ },
+ "footer": {
+ "payment": "Способы оплаты"
+ },
+ "featured_blog": {
+ "view_all": "Посмотреть все",
+ "onboarding_title": "Статья в блоге",
+ "onboarding_content": "Напишите краткое содержание вашего статьи в блоге."
+ },
+ "featured_collection": {
+ "view_all": "Посмотреть все",
+ "view_all_label": "Посмотреть все продукты в коллекции \"{{ collection_name }}\""
+ },
+ "collection_list": {
+ "view_all": "Посмотреть все"
+ },
+ "collection_template": {
+ "title": "Коллекция",
+ "empty": "Продукты не найдены",
+ "use_fewer_filters_html": "Используйте меньше фильтров или удалите все "
+ },
+ "video": {
+ "load_video": "Загрузить видео: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Загрузить слайд",
+ "previous_slideshow": "Предыдущий слайд",
+ "next_slideshow": "Следующий слайд",
+ "pause_slideshow": "Приостановить показ слайд-шоу",
+ "play_slideshow": "Воспроизвести слайд-шоу",
+ "carousel": "Карусель",
+ "slide": "Слайд"
+ },
+ "page": {
+ "title": "Название страницы"
+ },
+ "announcements": {
+ "previous_announcement": "Предыдущее объявление",
+ "next_announcement": "Следующее объявление",
+ "carousel": "Карусель",
+ "announcement": "Объявление",
+ "announcement_bar": "Строка объявления"
+ },
+ "quick_order_list": {
+ "product_total": "Промежуточный итог по товару",
+ "view_cart": "Просмотреть корзину",
+ "each": "{{ money }}/кажд.",
+ "product": "Товар",
+ "variant": "Вариант",
+ "variant_total": "Всего вариантов",
+ "items_added": {
+ "one": "Добавлен товар: {{ quantity }}",
+ "other": "Добавлены товары: {{ quantity }}",
+ "few": "Добавлены товары: {{ quantity }}",
+ "many": "Добавлены товары: {{ quantity }}"
+ },
+ "items_removed": {
+ "one": "Удален товар: {{ quantity }}",
+ "other": "Удалены товары: {{ quantity }}",
+ "few": "Удалены товары: {{ quantity }}",
+ "many": "Удалены товары: {{ quantity }}"
+ },
+ "product_variants": "Варианты товара",
+ "total_items": "Общее количество товаров",
+ "remove_all_items_confirmation": "Удалить все товары ({{ quantity }}) из корзины?",
+ "remove_all": "Удалить все",
+ "cancel": "Отменить"
+ }
+ },
+ "localization": {
+ "country_label": "Страна/регион",
+ "language_label": "Язык",
+ "update_language": "Изменить язык",
+ "update_country": "Изменить данные о стране/регионе"
+ },
+ "customer": {
+ "account": {
+ "title": "Учетная запись",
+ "details": "Сведения учетной записи",
+ "view_addresses": "Посмотреть адреса",
+ "return": "Вернуться к сведениям учетной записи"
+ },
+ "account_fallback": "Учетная запись",
+ "log_in": "Войти",
+ "log_out": "Выйти",
+ "activate_account": {
+ "title": "Активировать учетную запись",
+ "subtext": "Создайте пароль для активации учетной записи.",
+ "password": "Пароль",
+ "password_confirm": "Подтвердить пароль",
+ "submit": "Активировать учетную запись",
+ "cancel": "Отклонить приглашение"
+ },
+ "addresses": {
+ "title": "Адреса",
+ "default": "По умолчанию",
+ "add_new": "Добавить новый адрес",
+ "edit_address": "Изменить адрес",
+ "first_name": "Имя",
+ "last_name": "Фамилия",
+ "company": "Компания",
+ "address1": "Адрес 1",
+ "address2": "Адрес 2",
+ "city": "Город",
+ "country": "Страна/регион",
+ "province": "Область",
+ "zip": "Почтовый индекс",
+ "phone": "Телефон",
+ "set_default": "Задать в качестве адреса по умолчанию",
+ "add": "Добавить адрес",
+ "update": "Обновить адрес",
+ "cancel": "Отменить",
+ "edit": "Редактировать",
+ "delete": "Удалить",
+ "delete_confirm": "Удалить этот адрес?"
+ },
+ "login_page": {
+ "cancel": "Отменить",
+ "create_account": "Создать учетную запись",
+ "email": "Адрес электронной почты",
+ "forgot_password": "Забыли пароль?",
+ "guest_continue": "Продолжить",
+ "guest_title": "Продолжите в качестве гостя",
+ "password": "Пароль",
+ "title": "Вход",
+ "sign_in": "Войти в систему",
+ "submit": "Отправить"
+ },
+ "orders": {
+ "title": "История заказов",
+ "order_number": "Заказ",
+ "order_number_link": "Номер заказа: {{ number }}",
+ "date": "Дата",
+ "payment_status": "Статус оплаты",
+ "fulfillment_status": "Статус выполнения",
+ "total": "Всего",
+ "none": "У вас еще нет заказов."
+ },
+ "recover_password": {
+ "title": "Сбросьте пароль",
+ "subtext": "Мы отправим вам письмо со ссылкой для сброса пароля.",
+ "success": "Мы отправили вам письмо со ссылкой для обновления пароля."
+ },
+ "register": {
+ "title": "Создать учетную запись",
+ "first_name": "Имя",
+ "last_name": "Фамилия",
+ "email": "Адрес электронной почты",
+ "password": "Пароль",
+ "submit": "Создать"
+ },
+ "reset_password": {
+ "title": "Сбросьте пароль учетной записи",
+ "subtext": "Введите новый пароль",
+ "password": "Пароль",
+ "password_confirm": "Подтвердить пароль",
+ "submit": "Сбросить пароль"
+ },
+ "order": {
+ "title": "Заказ: {{ name }}",
+ "date_html": "Размещен: {{ date }}",
+ "cancelled_html": "Заказ отменен: {{ date }}",
+ "cancelled_reason": "Причина: {{ reason }}",
+ "billing_address": "Адрес выставления счета",
+ "payment_status": "Статус оплаты",
+ "shipping_address": "Адрес доставки",
+ "fulfillment_status": "Статус выполнения",
+ "discount": "Скидка",
+ "shipping": "Доставка",
+ "tax": "Налог",
+ "product": "Товар",
+ "sku": "Артикул",
+ "price": "Цена",
+ "quantity": "Количество",
+ "total": "Всего",
+ "fulfilled_at_html": "Выполнен: {{ date }}",
+ "track_shipment": "Отследить доставку",
+ "tracking_url": "Ссылка для отслеживания",
+ "tracking_company": "Перевозчик",
+ "tracking_number": "Номер для отслеживания",
+ "subtotal": "Промежуточный итог",
+ "total_duties": "Пошлины",
+ "total_refunded": "Средства возвращены"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Вот ваша подарочная карта с номиналом {{ value }} для магазина {{ shop }}!",
+ "subtext": "Ваша подарочная карта",
+ "gift_card_code": "Код подарочной карты",
+ "shop_link": "Посетить онлайн-магазин",
+ "add_to_apple_wallet": "Добавить в Apple Wallet",
+ "qr_image_alt": "Отсканируйте QR-код, чтобы использовать подарочную карту",
+ "copy_code": "Скопировать код подарочной карты",
+ "expired": "Срок действия истек",
+ "copy_code_success": "Код скопирован",
+ "how_to_use_gift_card": "Используйте код подарочной карты онлайн или отсканируйте QR-код в магазине",
+ "expiration_date": "Срок действия истекает {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Я хочу отправить это в качестве подарка",
+ "email_label": "Электронный адрес получателя",
+ "email": "Электронный адрес",
+ "name_label": "Имя получателя (необязательно)",
+ "name": "Имя",
+ "message_label": "Сообщение (необязательно)",
+ "message": "Сообщение",
+ "max_characters": "Не больше {{ max_chars }} симв.",
+ "email_label_optional_for_no_js_behavior": "Электронный адрес получателя (необязательно)",
+ "send_on": "ГГГГ-ММ-ДД",
+ "send_on_label": "Дата отправки (необязательно)",
+ "expanded": "Форма с данными получателя подарочной карты развернута",
+ "collapsed": "Форма с данными получателя подарочной карты свернута"
+ }
+ }
+}
diff --git a/locales/sk-SK.json b/locales/sk-SK.json
new file mode 100644
index 0000000..4598c45
--- /dev/null
+++ b/locales/sk-SK.json
@@ -0,0 +1,536 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Prejdite do obchodu s použitím hesla:",
+ "login_password_button": "Prejsť s použitím hesla",
+ "login_form_password_label": "Heslo",
+ "login_form_password_placeholder": "Vaše heslo",
+ "login_form_error": "Nesprávne heslo!",
+ "login_form_submit": "Prejsť",
+ "admin_link_html": "Ste vlastníkom obchodu? Prihláste sa tu ",
+ "powered_by_shopify_html": "Tento obchod bude používať technológiu {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Zdielať na Facebooku",
+ "share_on_twitter": "Tweetovať na Twitteri",
+ "share_on_pinterest": "Pripnúť na Pintereste"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Pokračovať v nákupe",
+ "pagination": {
+ "label": "Stránkovanie",
+ "page": "Stránka {{ number }}",
+ "next": "Nasledujúca stránka",
+ "previous": "Predchádzajúca stránka"
+ },
+ "search": {
+ "search": "Vyhľadať",
+ "reset": "Vymazať hľadaný výraz"
+ },
+ "cart": {
+ "view": "Zobraziť košík ({{ count }})",
+ "item_added": "Položka sa pridala do vášho košíka",
+ "view_empty_cart": "Zobraziť košík"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopírovať prepojenie",
+ "share_url": "Prepojenie",
+ "success_message": "Prepojenie sa skopírovalo do schránky",
+ "close": "Ukončiť zdieľanie"
+ },
+ "slider": {
+ "of": "z",
+ "next_slide": "Posunúť doprava",
+ "previous_slide": "Posunúť doľava",
+ "name": "Jazdec"
+ }
+ },
+ "newsletter": {
+ "label": "E-mail",
+ "success": "Ďakujeme, že ste sa prihlásili na odber správ",
+ "button_label": "Prihlásiť sa na odber"
+ },
+ "accessibility": {
+ "skip_to_text": "Prejsť na obsah",
+ "close": "Zavrieť",
+ "unit_price_separator": "za",
+ "vendor": "Dodávateľ:",
+ "error": "Chyba",
+ "refresh_page": "Výber bude mať za následok obnovenie celej stránky.",
+ "loading": "Načítava sa...",
+ "link_messages": {
+ "new_window": "Otvorí sa v novom okne.",
+ "external": "Otvorí externú webovú lokalitu."
+ },
+ "skip_to_product_info": "Prejsť na informácie o produkte",
+ "total_reviews": "celkový počet recenzií",
+ "star_reviews_info": "Počet hviezdičiek: {{ rating_value }}/{{ rating_max }}",
+ "collapsible_content_title": "Obsah s možnosťou zbalenia",
+ "complementary_products": "Doplnkové produkty"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Prečítajte si viac: {{ title }}",
+ "moderated": "Upozorňujeme, že komentáre musia byť pred publikovaním schválené.",
+ "comment_form_title": "Pridať komentár",
+ "name": "Meno",
+ "email": "E-mail",
+ "message": "Komentár",
+ "post": "Uverejniť komentár",
+ "back_to_blog": "Späť na blog",
+ "share": "Zdieľať tento článok",
+ "success": "Váš komentár sa úspešne uverejnil. Ďakujeme.",
+ "success_moderated": "Váš komentár sa úspešne uverejnil. Publikujeme ho o chvíľu, keďže náš blog je moderovaný.",
+ "comments": {
+ "one": "{{ count }} komentár",
+ "other": "Počet komentárov: {{ count }}",
+ "few": "Počet komentárov: {{ count }}",
+ "many": "Počet komentárov: {{ count }}"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Vzorový názov produktu",
+ "collection_title": "Názov vašej kolekcie"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Pridať do košíka",
+ "description": "Popis",
+ "on_sale": "Zľava",
+ "product_variants": "Varianty produktu",
+ "share": "Zdieľať tento produkt",
+ "sold_out": "Vypredané",
+ "unavailable": "Nedostupné",
+ "vendor": "Predajca",
+ "video_exit_message": "{{ title }} otvorí video na celú obrazovku v rovnakom okne.",
+ "xr_button": "Zobraziť vo vašom priestore",
+ "xr_button_label": "Zobraziť vo vašom priestore, položka sa načíta do okna rozšírenej reality",
+ "quantity": {
+ "label": "Množstvo",
+ "input_label": "Množstvo pre {{ product }}",
+ "increase": "Zvýšiť množstvo pre {{ product }}",
+ "decrease": "Znížiť množstvo pre {{ product }}",
+ "minimum_of": "Minimálne {{ quantity }} ks",
+ "maximum_of": "Maximálne {{ quantity }} ks",
+ "multiples_of": "Prírastky po {{ quantity }}",
+ "in_cart_html": "{{ quantity }} ks v košíku",
+ "note": "Zobrazenie pravidiel týkajúcich sa množstva"
+ },
+ "price": {
+ "from_price_html": "Od {{ price }}",
+ "regular_price": "Normálna cena",
+ "sale_price": "Cena po zľave",
+ "unit_price": "Jednotková cena"
+ },
+ "pickup_availability": {
+ "view_store_info": "Zobraziť informácie o obchode",
+ "check_other_stores": "Skontrolovať dostupnosť v iných obchodoch",
+ "pick_up_available": "K dispozícii na vyzdvihnutie",
+ "pick_up_available_at_html": "K dispozícii na vyzdvihnutie na adrese {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Aktuálne nedostupné na vyzdvihnutie na adrese {{ location_name }} ",
+ "unavailable": "Nepodarilo sa načítať dostupnosť na vyzdvihnutie",
+ "refresh": "Obnoviť"
+ },
+ "media": {
+ "open_media": "Otvoriť médium {{ index }} v modálnom okne",
+ "play_model": "Prehrať 3D zobrazovač",
+ "play_video": "Prehrať video",
+ "gallery_viewer": "Zobrazovač galérie",
+ "load_image": "Načítať obrázok {{ index }} v zobrazení galérie",
+ "load_model": "Načítať 3D model {{ index }} v zobrazení galérie",
+ "load_video": "Prehrať video {{ index }} v zobrazení galérie",
+ "image_available": "Obrázok {{ index }} je teraz dostupný v zobrazení galérie"
+ },
+ "view_full_details": "Zobraziť všetky podrobnosti",
+ "include_taxes": "Vrátane dane.",
+ "shipping_policy_html": "Doprava sa vypočíta pri platbe.",
+ "choose_options": "Vybrať možnosti",
+ "choose_product_options": "Vyberte možnosti pre: {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – nedostupné",
+ "variant_sold_out_or_unavailable": "Variant je vypredaný alebo nedostupný",
+ "inventory_in_stock": "Skladom",
+ "inventory_in_stock_show_count": "{{ quantity }} skladom",
+ "inventory_low_stock": "Nízky stav zásob",
+ "inventory_low_stock_show_count": "Nízky stav zásob: zostáva {{ quantity }}",
+ "inventory_out_of_stock": "Vypredané",
+ "inventory_out_of_stock_continue_selling": "Skladom",
+ "sku": "Jednotka SKU",
+ "volume_pricing": {
+ "title": "Objemové ceny",
+ "note": "Dostupné objemové ceny",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/kus",
+ "price_range": "{{ minimum }} – {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galéria médií"
+ },
+ "facets": {
+ "apply": "Použiť",
+ "clear": "Vymazať",
+ "clear_all": "Odstrániť všetky",
+ "from": "Od",
+ "filter_and_sort": "Filtrovať a zoradiť",
+ "filter_by_label": "Filtrovať:",
+ "filter_button": "Filtrovať",
+ "max_price": "Najvyššia cena je {{ price }}",
+ "reset": "Resetovať",
+ "sort_button": "Zoradiť",
+ "sort_by_label": "Zoradiť podľa:",
+ "to": "Do",
+ "filters_selected": {
+ "one": "Vybrané: {{ count }}",
+ "other": "Vybrané: {{ count }}",
+ "few": "Vybrané: {{ count }}",
+ "many": "Vybrané: {{ count }}"
+ },
+ "product_count": {
+ "one": "Produkt {{ product_count }} z {{ count }}",
+ "other": "Produkty {{ product_count }} z {{ count }}",
+ "few": "Produkty {{ product_count }} z {{ count }}",
+ "many": "Produkty {{ product_count }} z {{ count }}"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produkt",
+ "other": "Počet produktov: {{ count }}",
+ "few": "Počet produktov: {{ count }}",
+ "many": "Počet produktov: {{ count }}"
+ },
+ "clear_filter": "Odstrániť filter",
+ "filter_selected_accessibility": "{{ type }} (vybrané filtre: {{ count }})",
+ "show_more": "Zobraziť viac",
+ "show_less": "Zobraziť menej",
+ "filter_and_operator_subtitle": "Spĺňať všetko"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Pre výraz „{{ terms }}“ sa nenašli žiadne výsledky. Skontrolujte pravopis alebo použite iné slovo či slovné spojenie.",
+ "title": "Výsledky vyhľadávania",
+ "results_with_count": {
+ "one": "{{ count }} výsledok",
+ "other": "Počet výsledkov: {{ count }}",
+ "few": "Počet výsledkov: {{ count }}",
+ "many": "Počet výsledkov: {{ count }}"
+ },
+ "page": "Strana",
+ "products": "Produkty",
+ "search_for": "Vyhľadať výraz „{{ terms }}“",
+ "results_with_count_and_term": {
+ "one": "Pre výraz „{{ terms }}“ sa našiel {{ count }} výsledok",
+ "other": "Pre výraz „{{ terms }}“ sa našiel tento počet výsledkov: {{ count }}",
+ "few": "Pre výraz „{{ terms }}“ sa našiel tento počet výsledkov: {{ count }}",
+ "many": "Pre výraz „{{ terms }}“ sa našiel tento počet výsledkov: {{ count }}"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} stránka",
+ "other": "Počet stránok: {{ count }}",
+ "few": "Počet stránok: {{ count }}",
+ "many": "Počet stránok: {{ count }}"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produkt",
+ "other": "Počet produktov: {{ count }}",
+ "few": "Počet produktov: {{ count }}",
+ "many": "Počet produktov: {{ count }}"
+ },
+ "suggestions": "Návrhy",
+ "pages": "Stránky",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} návrh",
+ "other": "Počet návrhov: {{ count }}",
+ "few": "Počet návrhov: {{ count }}",
+ "many": "Počet návrhov: {{ count }}"
+ }
+ },
+ "cart": {
+ "cart": "Košík"
+ },
+ "contact": {
+ "form": {
+ "name": "Meno",
+ "email": "E-mail",
+ "phone": "Telefónne číslo",
+ "comment": "Komentár",
+ "send": "Odoslať",
+ "post_success": "Ďakujeme, že ste nás kontaktovali. Budeme sa vám venovať čo najskôr.",
+ "error_heading": "Upravte tieto údaje:",
+ "title": "Kontaktný formulár"
+ }
+ },
+ "404": {
+ "title": "Stránka sa nenašla",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Oznámenie",
+ "menu": "Ponuka",
+ "cart_count": {
+ "one": "{{ count }} položka",
+ "other": "Počet položiek: {{ count }}",
+ "few": "Počet položiek: {{ count }}",
+ "many": "Počet položiek: {{ count }}"
+ }
+ },
+ "cart": {
+ "title": "Váš košík",
+ "caption": "Položky v košíku",
+ "remove_title": "Odstrániť {{ title }}",
+ "note": "Špeciálne pokyny k objednávke",
+ "checkout": "Platba",
+ "empty": "Váš košík je prázdny",
+ "cart_error": "Pri aktualizácii košíka sa vyskytla chyba. Skúste to znova.",
+ "cart_quantity_error_html": "Do košíka môžete túto položku pridať len v počte {{ quantity }}.",
+ "taxes_and_shipping_policy_at_checkout_html": "Dane, zľavy a doprava sa vypočítajú pri platbe",
+ "taxes_included_but_shipping_at_checkout": "Dane sa zahrnú a doprava a zľavy sa vypočítajú pri platbe",
+ "taxes_included_and_shipping_policy_html": "Vrátane dane. Doprava a zľavy sa vypočítajú pri platbe.",
+ "taxes_and_shipping_at_checkout": "Dane, zľavy a doprava sa vypočítajú pri platbe",
+ "update": "Aktualizovať",
+ "headings": {
+ "product": "Produkt",
+ "price": "Cena",
+ "total": "Celkove",
+ "quantity": "Množstvo",
+ "image": "Obrázok produktu"
+ },
+ "login": {
+ "title": "Máte konto?",
+ "paragraph_html": "Prihláste sa a prejdite pokladňou rýchlejšie."
+ },
+ "estimated_total": "Odhadovaná celková suma",
+ "new_estimated_total": "Nová odhadovaná celková suma"
+ },
+ "footer": {
+ "payment": "Spôsoby platby"
+ },
+ "featured_blog": {
+ "view_all": "Zobraziť všetko",
+ "onboarding_title": "Blogový príspevok",
+ "onboarding_content": "Poskytnite svojim zákazníkom súhrn blogového príspevku"
+ },
+ "featured_collection": {
+ "view_all": "Zobraziť všetko",
+ "view_all_label": "Pozrite si všetky produkty z kolekcie {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Zobraziť všetko"
+ },
+ "collection_template": {
+ "title": "Kolekcia",
+ "empty": "Nenašli sa žiadne produkty",
+ "use_fewer_filters_html": "Použite menej filtrov alebo všetky odstráňte "
+ },
+ "video": {
+ "load_video": "Načítať video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Načítať snímku",
+ "previous_slideshow": "Predchádzajúca snímka",
+ "next_slideshow": "Nasledujúca snímka",
+ "pause_slideshow": "Pozastaviť prezentáciu",
+ "play_slideshow": "Prehrať prezentáciu",
+ "carousel": "Karusel",
+ "slide": "Snímka"
+ },
+ "page": {
+ "title": "Názov stránky"
+ },
+ "announcements": {
+ "previous_announcement": "Predchádzajúce oznámenie",
+ "next_announcement": "Nasledujúce oznámenie",
+ "carousel": "Karusel",
+ "announcement": "Oznámenie",
+ "announcement_bar": "Panel s oznámeniami"
+ },
+ "quick_order_list": {
+ "product_total": "Medzisúčet produktov",
+ "view_cart": "Zobraziť košík",
+ "each": "{{ money }}/kus",
+ "product": "Produkt",
+ "variant": "Variant",
+ "variant_total": "Celková suma variantov",
+ "items_added": {
+ "one": "Pridala sa {{ quantity }} položka",
+ "other": "Pridané položky: {{ quantity }}",
+ "few": "Pridané položky: {{ quantity }}",
+ "many": "Pridané položky: {{ quantity }}"
+ },
+ "items_removed": {
+ "one": "Odobrala sa {{ quantity }} položka",
+ "other": "Odobrané položky: {{ quantity }}",
+ "few": "Odobrané položky: {{ quantity }}",
+ "many": "Odobrané položky: {{ quantity }}"
+ },
+ "product_variants": "Varianty produktu",
+ "total_items": "Celkový počet položiek",
+ "remove_all_items_confirmation": "Chcete z košíka odobrať všetky položky ({{ quantity }})?",
+ "remove_all": "Odobrať všetky",
+ "cancel": "Zrušiť"
+ }
+ },
+ "localization": {
+ "country_label": "Krajina/oblasť",
+ "language_label": "Jazyk",
+ "update_language": "Aktualizovať jazyk",
+ "update_country": "Aktualizovať krajinu/oblasť"
+ },
+ "customer": {
+ "account": {
+ "title": "Konto",
+ "details": "Podrobnosti o konte",
+ "view_addresses": "Zobraziť adresy",
+ "return": "Späť na podrobnosti o konte"
+ },
+ "account_fallback": "Konto",
+ "log_in": "Prihlásiť sa",
+ "log_out": "Odhlásiť sa",
+ "activate_account": {
+ "title": "Aktivovať konto",
+ "subtext": "Vytvorte si heslo a aktivujte si konto.",
+ "password": "Heslo",
+ "password_confirm": "Potvrďte heslo",
+ "submit": "Aktivovať konto",
+ "cancel": "Odmietnuť pozvanie"
+ },
+ "addresses": {
+ "title": "Adresy",
+ "default": "Predvolené",
+ "add_new": "Pridať novú adresu",
+ "edit_address": "Upraviť adresu",
+ "first_name": "Meno",
+ "last_name": "Priezvisko",
+ "company": "Spoločnosť",
+ "address1": "Adresa 1",
+ "address2": "Adresa 2",
+ "city": "Mesto",
+ "country": "Krajina/oblasť",
+ "province": "Provincia",
+ "zip": "Poštové smerovacie číslo",
+ "phone": "Telefón",
+ "set_default": "Nastaviť ako predvolenú adresu",
+ "add": "Pridať adresu",
+ "update": "Aktualizovať adresu",
+ "cancel": "Zrušiť",
+ "edit": "Upraviť",
+ "delete": "Odstrániť",
+ "delete_confirm": "Naozaj chcete túto adresu odstrániť?"
+ },
+ "login_page": {
+ "cancel": "Zrušiť",
+ "create_account": "Vytvoriť konto",
+ "email": "E-mail",
+ "forgot_password": "Zabudli ste heslo?",
+ "guest_continue": "Pokračovať",
+ "guest_title": "Pokračovať ako hosť",
+ "password": "Heslo",
+ "title": "Prihlásiť sa",
+ "sign_in": "Prihlásiť sa",
+ "submit": "Odoslať"
+ },
+ "orders": {
+ "title": "História objednávok",
+ "order_number": "Objednávka",
+ "order_number_link": "Číslo objednávky {{ number }}",
+ "date": "Dátum",
+ "payment_status": "Stav platby",
+ "fulfillment_status": "Stav vybavenia",
+ "total": "Celkove",
+ "none": "Zatiaľ ste nezadali žiadne objednávky."
+ },
+ "recover_password": {
+ "title": "Resetovať heslo",
+ "subtext": "Odošleme vám e-mail, aby ste si mohli resetovať heslo",
+ "success": "Odoslali sme vám e-mail s prepojením, aby ste si mohli aktualizovať heslo."
+ },
+ "register": {
+ "title": "Vytvoriť konto",
+ "first_name": "Meno",
+ "last_name": "Priezvisko",
+ "email": "E-mail",
+ "password": "Heslo",
+ "submit": "Vytvoriť"
+ },
+ "reset_password": {
+ "title": "Resetovať heslo konta",
+ "subtext": "Zadajte nové heslo",
+ "password": "Heslo",
+ "password_confirm": "Potvrďte heslo",
+ "submit": "Resetovať heslo"
+ },
+ "order": {
+ "title": "Objednávka {{ name }}",
+ "date_html": "Zadaná {{ date }}",
+ "cancelled_html": "Objednávka bola zrušená {{ date }}",
+ "cancelled_reason": "Dôvod: {{ reason }}",
+ "billing_address": "Fakturačná adresa",
+ "payment_status": "Stav platby",
+ "shipping_address": "Dodacia adresa",
+ "fulfillment_status": "Stav vybavenia",
+ "discount": "Zľava",
+ "shipping": "Doprava",
+ "tax": "Daň",
+ "product": "Produkt",
+ "sku": "Jednotka SKU",
+ "price": "Cena",
+ "quantity": "Množstvo",
+ "total": "Celkove",
+ "fulfilled_at_html": "Vybavená {{ date }}",
+ "track_shipment": "Sledovať zásielku",
+ "tracking_url": "Prepojenie na sledovanie",
+ "tracking_company": "Dopravca",
+ "tracking_number": "Sledovacie číslo",
+ "subtotal": "Medzisúčet",
+ "total_duties": "Clá",
+ "total_refunded": "Refundovaná suma"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Váš darčekový poukaz v hodnote {{ value }} do obchodu {{ shop }}!",
+ "subtext": "Váš darčekový poukaz",
+ "gift_card_code": "Kód darčekového poukazu",
+ "shop_link": "Navštíviť online obchod",
+ "add_to_apple_wallet": "Pridať do aplikácie Apple Wallet",
+ "qr_image_alt": "QR kód – naskenujte ho a uplatnite si darčekový poukaz",
+ "copy_code": "Kopírovať kód darčekového poukazu",
+ "expired": "Platnosť uplynula",
+ "copy_code_success": "Kód sa úspešne skopíroval",
+ "how_to_use_gift_card": "Použite online kód darčekového poukazu alebo QR kód v obchode",
+ "expiration_date": "Platnosť skončí {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Chcem to poslať ako darček",
+ "email_label": "E-mail príjemcu",
+ "email": "E-mail",
+ "name_label": "Meno príjemcu (voliteľné)",
+ "name": "Meno",
+ "message_label": "Správa (voliteľné)",
+ "message": "Správa",
+ "max_characters": "Maximálny počet znakov: {{ max_chars }}",
+ "email_label_optional_for_no_js_behavior": "E-mail príjemcu (voliteľné)",
+ "send_on": "RRRR-MM-DD",
+ "send_on_label": "Dátum odoslania (voliteľné)",
+ "expanded": "Rozbalený formulár pre príjemcu darčekového poukazu",
+ "collapsed": "Zbalený formulár pre príjemcu darčekového poukazu"
+ }
+ }
+}
diff --git a/locales/sl-SI.json b/locales/sl-SI.json
new file mode 100644
index 0000000..e695adb
--- /dev/null
+++ b/locales/sl-SI.json
@@ -0,0 +1,536 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Vstopite v trgovino z geslom:",
+ "login_password_button": "Vstop z geslom",
+ "login_form_password_label": "Geslo",
+ "login_form_password_placeholder": "Vaše geslo",
+ "login_form_error": "Geslo ni pravilno!",
+ "login_form_submit": "Vstop",
+ "admin_link_html": "Ali ste lastnik te trgovine? Prijavite se tukaj ",
+ "powered_by_shopify_html": "To trgovino bo omogočala platforma {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Delite v Facebooku",
+ "share_on_twitter": "Tvitnite v Twitterju",
+ "share_on_pinterest": "Pripnite v Pinterestu"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Nadaljuj nakup",
+ "pagination": {
+ "label": "Oštevilčevanje strani",
+ "page": "Stran {{ number }}",
+ "next": "Naslednja stran",
+ "previous": "Prejšnja stran"
+ },
+ "search": {
+ "search": "Iskanje",
+ "reset": "Počisti iskalni izraz"
+ },
+ "cart": {
+ "view": "Prikaži košarico ({{ count }})",
+ "item_added": "Artikel je dodan v košarico",
+ "view_empty_cart": "Prikaži košarico"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopiraj povezavo",
+ "share_url": "Povezava",
+ "success_message": "Povezava je kopirana v odložišče",
+ "close": "Zapri skupno rabo"
+ },
+ "slider": {
+ "of": "od",
+ "next_slide": "Podrsajte desno",
+ "previous_slide": "Podrsajte levo",
+ "name": "Drsnik"
+ }
+ },
+ "newsletter": {
+ "label": "E-poštni naslov",
+ "success": "Hvala, ker ste se naročili",
+ "button_label": "Naroči"
+ },
+ "accessibility": {
+ "skip_to_text": "Preskoči na vsebino",
+ "close": "Zapri",
+ "unit_price_separator": "na",
+ "vendor": "Ponudnik:",
+ "error": "Napaka",
+ "refresh_page": "Ko izberete elemente, se celotna stran osveži.",
+ "loading": "Nalaganje ...",
+ "link_messages": {
+ "new_window": "Odpre se v novem oknu.",
+ "external": "Odpre zunanje spletno mesto."
+ },
+ "skip_to_product_info": "Preskoči na informacije o izdelku",
+ "total_reviews": "skupno število pregledov",
+ "star_reviews_info": "{{ rating_value }} od {{ rating_max }} zvezdic",
+ "collapsible_content_title": "Vsebina, ki jo je mogoče strniti",
+ "complementary_products": "Dopolnilni izdelki"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Spletni dnevnik",
+ "read_more_title": "Več o tem: {{ title }}",
+ "moderated": "Upoštevajte, da morajo biti komentarji pred objavo odobreni.",
+ "comment_form_title": "Napišite komentar",
+ "name": "Ime",
+ "email": "E-poštni naslov",
+ "message": "Komentar",
+ "post": "Objavi komentar",
+ "back_to_blog": "Nazaj na spletni dnevnik",
+ "share": "Deli članek",
+ "success": "Vaš komentar je bil uspešno objavljen. Hvala!",
+ "success_moderated": "Vaš komentar je bil uspešno objavljen. Objavljen bo čez nekaj časa, saj je naš spletni dnevnik moderiran.",
+ "comments": {
+ "one": "{{ count }} komentar",
+ "other": "Št. komentarjev: {{ count }}",
+ "few": "Št. komentarjev: {{ count }}",
+ "two": "Št. komentarjev: {{ count }}"
+ }
+ }
+ },
+ "onboarding": {
+ "product_title": "Primer naslova izdelka",
+ "collection_title": "Ime vaše zbirke"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Dodaj v košarico",
+ "description": "Opis",
+ "on_sale": "Znižanje",
+ "product_variants": "Različice izdelka",
+ "share": "Deli ta izdelek",
+ "sold_out": "Razprodano",
+ "unavailable": "Ni na voljo",
+ "vendor": "Prodajalec",
+ "video_exit_message": "{{ title }} odpre celozaslonski videoposnetek v istem oknu.",
+ "xr_button": "Prikaži v prostoru",
+ "xr_button_label": "Prikaz v prostoru naloži element v oknu z razširjeno resničnostjo",
+ "quantity": {
+ "label": "Količina",
+ "input_label": "Količina za izdelek {{ product }}",
+ "increase": "Povečaj količino za izdelek {{ product }}",
+ "decrease": "Pomanjšaš količino za izdelek {{ product }}",
+ "minimum_of": "Najmanj od {{ quantity }}",
+ "maximum_of": "Največ od {{ quantity }}",
+ "multiples_of": "V korakih po {{ quantity }}",
+ "in_cart_html": "{{ quantity }} v košarici",
+ "note": "Prikaži pravila glede količine"
+ },
+ "price": {
+ "from_price_html": "Od {{ price }}",
+ "regular_price": "Redna cena",
+ "sale_price": "Znižana cena",
+ "unit_price": "Cena na enoto"
+ },
+ "pickup_availability": {
+ "view_store_info": "Prikaži podatke o trgovini",
+ "check_other_stores": "Preveri razpoložljivost v drugih trgovinah",
+ "pick_up_available": "Na voljo je osebni prevzem",
+ "pick_up_available_at_html": "Prevzem je mogoč na prevzemnem mestu {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Na prevzemnem mestu {{ location_name }} osebni prevzem trenutno ni mogoč",
+ "unavailable": "Podatka o razpoložljivosti osebnega prevzema ni mogoče naložiti",
+ "refresh": "Osveži"
+ },
+ "media": {
+ "open_media": "Predstavnostne vsebine {{ index }} odprite v modalnem načinu",
+ "play_model": "Predvajaj 3D-pregledovalnik",
+ "play_video": "Predvajaj videoposnetek",
+ "gallery_viewer": "Pregledovalnik galerije",
+ "load_image": "Naložite sliko {{ index }} v pogledu galerije",
+ "load_model": "Naložite 3D-model {{ index }} v pogledu galerije",
+ "load_video": "Predvajajte videoposnetek {{ index }} v pogledu galerije",
+ "image_available": "Slika {{ index }} je zdaj na voljo v pogledu galerije"
+ },
+ "view_full_details": "Prikaži vse podrobnosti",
+ "include_taxes": "Vključno z davkom.",
+ "shipping_policy_html": "Dostava se obračuna ob zaključku nakupa.",
+ "choose_options": "Izberite možnosti",
+ "choose_product_options": "Izberite možnosti za izdelek {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – ni na voljo",
+ "variant_sold_out_or_unavailable": "Različica je razprodana ali ni na voljo",
+ "inventory_in_stock": "Na zalogi",
+ "inventory_in_stock_show_count": "Na zalogi: {{ quantity }}",
+ "inventory_low_stock": "Majhna zaloga",
+ "inventory_low_stock_show_count": "Majhna zaloga, preostalo še: {{ quantity }}",
+ "inventory_out_of_stock": "Ni na zalogi",
+ "inventory_out_of_stock_continue_selling": "Na zalogi",
+ "sku": "Inventarna številka",
+ "volume_pricing": {
+ "title": "Količinski popust",
+ "note": "Na voljo je količinski popust",
+ "minimum": "{{ quantity }} in več",
+ "price_at_each": "po ceni {{ price }}/kos",
+ "price_range": "{{ minimum }}–{{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Galerija predstavnostnih vsebin"
+ },
+ "facets": {
+ "apply": "Uporabi",
+ "clear": "Počisti",
+ "clear_all": "Odstrani vse",
+ "from": "Od",
+ "filter_and_sort": "Filtriranje in razvrščanje",
+ "filter_by_label": "Filtriraj:",
+ "filter_button": "Filtriraj",
+ "max_price": "Najvišja cena je {{ price }}",
+ "reset": "Ponastavi",
+ "sort_button": "Razvrsti",
+ "sort_by_label": "Razvrsti po:",
+ "to": "Za",
+ "filters_selected": {
+ "one": "Št. izbranih: {{ count }}",
+ "other": "Št. izbranih: {{ count }}",
+ "few": "Št. izbranih: {{ count }}",
+ "two": "Št. izbranih: {{ count }}"
+ },
+ "product_count": {
+ "one": "{{ product_count }} od {{ count }} izdelka",
+ "other": "{{ product_count }} od toliko izdelkov: {{ count }}",
+ "few": "{{ product_count }} od toliko izdelkov: {{ count }}",
+ "two": "{{ product_count }} od toliko izdelkov: {{ count }}"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} izdelek",
+ "other": "Št. izdelkov: {{ count }}",
+ "few": "Št. izdelkov: {{ count }}",
+ "two": "Št. izdelkov: {{ count }}"
+ },
+ "clear_filter": "Odstrani filter",
+ "filter_selected_accessibility": "{{ type }} (št. izbranih filtrov: {{ count }})",
+ "show_more": "Prikaži več",
+ "show_less": "Prikaži manj",
+ "filter_and_operator_subtitle": "Ustreza vsem"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Za »{{ terms }}« ni bil najden noben rezultat. Preverite črkovanje ali uporabite drugo besedo ali frazo.",
+ "page": "Stran",
+ "title": "Rezultati iskanja",
+ "results_with_count": {
+ "one": "{{ count }} rezultat",
+ "other": "Št. rezultatov: {{ count }}",
+ "few": "Št. rezultatov: {{ count }}",
+ "two": "Št. rezultatov: {{ count }}"
+ },
+ "products": "Izdelki",
+ "search_for": "Poiščite »{{ terms }}«",
+ "results_with_count_and_term": {
+ "one": "Št. najdenih rezultatov za »{{ terms }}«: {{ count }}",
+ "other": "Št. najdenih rezultatov za »{{ terms }}«: {{ count }}",
+ "few": "Št. najdenih rezultatov za »{{ terms }}«: {{ count }}",
+ "two": "Št. najdenih rezultatov za »{{ terms }}«: {{ count }}"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} stran",
+ "other": "Št. strani: {{ count }}",
+ "few": "Št. strani: {{ count }}",
+ "two": "Št. strani: {{ count }}"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} predlog",
+ "other": "Št. predlogov: {{ count }}",
+ "few": "Št. predlogov: {{ count }}",
+ "two": "Št. predlogov: {{ count }}"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} izdelek",
+ "other": "Št. izdelkov: {{ count }}",
+ "few": "Št. izdelkov: {{ count }}",
+ "two": "Št. izdelkov: {{ count }}"
+ },
+ "suggestions": "Predlogi",
+ "pages": "Strani"
+ },
+ "cart": {
+ "cart": "Košarica"
+ },
+ "contact": {
+ "form": {
+ "name": "Ime",
+ "email": "E-poštni naslov",
+ "phone": "Telefonska številka",
+ "comment": "Komentar",
+ "send": "Pošlji",
+ "post_success": "Hvala za vaše sporočilo. Z vami bomo v stiku takoj, ko bo mogoče.",
+ "error_heading": "Prilagodite naslednje:",
+ "title": "Obrazec za stik"
+ }
+ },
+ "404": {
+ "title": "Strani ni mogoče najti",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Obvestilo",
+ "menu": "Meni",
+ "cart_count": {
+ "one": "{{ count }} element",
+ "other": "Št. elementov: {{ count }}",
+ "few": "Št. elementov: {{ count }}",
+ "two": "Št. elementov: {{ count }}"
+ }
+ },
+ "cart": {
+ "title": "Vaša košarica",
+ "caption": "Izdelki v košarici",
+ "remove_title": "Odstrani izdelek {{ title }}",
+ "note": "Posebna navodila za naročilo",
+ "checkout": "Zaključi nakup",
+ "empty": "Vaša košarica je prazna",
+ "cart_error": "Pri posodabljanju vaše košarice je prišlo do napake. Poskusite znova.",
+ "cart_quantity_error_html": "V košarico lahko dodate največ toliko tovrstnih izdelkov: {{ quantity }}.",
+ "taxes_and_shipping_policy_at_checkout_html": "Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa",
+ "taxes_included_but_shipping_at_checkout": "Vključeni davek ter strošek dostave in popusti se obračunajo ob zaključku nakupa",
+ "taxes_included_and_shipping_policy_html": "Davek vključen. Strošek dostave in popusti se obračunajo ob zaključku nakupa.",
+ "taxes_and_shipping_at_checkout": "Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa",
+ "update": "Posodobitev",
+ "headings": {
+ "product": "Izdelek",
+ "price": "Cena",
+ "total": "Skupaj",
+ "quantity": "Količina",
+ "image": "Slika izdelka"
+ },
+ "login": {
+ "title": "Ali imate račun?",
+ "paragraph_html": "Za hitrejši zaključek nakupa se prijavite ."
+ },
+ "estimated_total": "Predvideni skupni znesek",
+ "new_estimated_total": "Nov predvideni skupni znesek"
+ },
+ "footer": {
+ "payment": "Načini plačila"
+ },
+ "featured_blog": {
+ "view_all": "Prikaži vse",
+ "onboarding_title": "Objava v spletnem dnevniku",
+ "onboarding_content": "Strankam zagotovite povzetek objave v spletnem dnevniku"
+ },
+ "featured_collection": {
+ "view_all": "Prikaži vse",
+ "view_all_label": "Prikaži vse izdelke v zbirki {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Prikaži vse"
+ },
+ "collection_template": {
+ "title": "Zbirka",
+ "empty": "Ni najdenih izdelkov",
+ "use_fewer_filters_html": "Uporabite manj filtrov ali odstranite vse "
+ },
+ "video": {
+ "load_video": "Naloži videoposnetek: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Naloži diapozitiv",
+ "previous_slideshow": "Prejšnji diapozitiv",
+ "next_slideshow": "Naslednji diapozitiv",
+ "pause_slideshow": "Zaustavi diaprojekcijo",
+ "play_slideshow": "Predvajaj diaprojekcijo",
+ "carousel": "Vrtiljak",
+ "slide": "Diapozitiv"
+ },
+ "page": {
+ "title": "Naslov strani"
+ },
+ "announcements": {
+ "previous_announcement": "Prejšnje obvestilo",
+ "next_announcement": "Naslednje obvestilo",
+ "carousel": "Vrtiljak",
+ "announcement": "Obvestilo",
+ "announcement_bar": "Vrstica za obvestila"
+ },
+ "quick_order_list": {
+ "product_total": "Vmesna vsota",
+ "view_cart": "Prikaži košarico",
+ "each": "{{ money }}/kos",
+ "product": "Izdelek",
+ "variant": "Različica",
+ "variant_total": "Skupaj različice",
+ "items_added": {
+ "one": "Dodan je {{ quantity }} artikel",
+ "other": "Dodani so artikli: {{ quantity }}",
+ "few": "Dodani so artikli: {{ quantity }}",
+ "two": "Dodani so artikli: {{ quantity }}"
+ },
+ "items_removed": {
+ "one": "Odstranjen je {{ quantity }} artikel",
+ "other": "Odstranjeni so artikli: {{ quantity }}",
+ "few": "Odstranjeni so artikli: {{ quantity }}",
+ "two": "Odstranjeni so artikli: {{ quantity }}"
+ },
+ "product_variants": "Različice izdelka",
+ "total_items": "Skupno število izdelkov",
+ "remove_all_items_confirmation": "Ali želite iz košarice odstraniti vse izdelke ({{ quantity }})?",
+ "remove_all": "Odstrani vse",
+ "cancel": "Prekliči"
+ }
+ },
+ "localization": {
+ "country_label": "Država/regija",
+ "language_label": "Jezik",
+ "update_language": "Posodobi jezik",
+ "update_country": "Posodobi državo/regijo"
+ },
+ "customer": {
+ "account": {
+ "title": "Račun",
+ "details": "Podatki o računu",
+ "view_addresses": "Prikaži naslove",
+ "return": "Nazaj na podatke o računu"
+ },
+ "account_fallback": "Račun",
+ "log_in": "Prijava",
+ "log_out": "Odjava",
+ "activate_account": {
+ "title": "Aktiviraj račun",
+ "subtext": "Za aktivacijo računa morate ustvariti geslo.",
+ "password": "Geslo",
+ "password_confirm": "Potrdite geslo",
+ "submit": "Aktiviraj račun",
+ "cancel": "Zavrni povabilo"
+ },
+ "addresses": {
+ "title": "Naslovi",
+ "default": "Privzeto",
+ "add_new": "Dodaj nov naslov",
+ "edit_address": "Uredi naslov",
+ "first_name": "Ime",
+ "last_name": "Priimek",
+ "company": "Podjetje",
+ "address1": "Naslov 1",
+ "address2": "Naslov 2",
+ "city": "Kraj",
+ "country": "Država/regija",
+ "province": "Provinca",
+ "zip": "Poštna številka",
+ "phone": "Telefonska številka",
+ "set_default": "Nastavi kot privzeti naslov",
+ "add": "Dodaj naslov",
+ "update": "Posodobi naslov",
+ "cancel": "Prekliči",
+ "edit": "Uredi",
+ "delete": "Izbriši",
+ "delete_confirm": "Ali ste prepričani, da želite izbrisati ta naslov?"
+ },
+ "login_page": {
+ "cancel": "Prekliči",
+ "create_account": "Ustvari račun",
+ "email": "E-poštni naslov",
+ "forgot_password": "Ali ste pozabili geslo?",
+ "guest_continue": "Nadaljuj",
+ "guest_title": "Želim nadaljevati kot gost",
+ "password": "Geslo",
+ "title": "Prijava",
+ "sign_in": "Vpis",
+ "submit": "Pošlji"
+ },
+ "order": {
+ "title": "Naročilo {{ name }}",
+ "date_html": "Izvedeno dne {{ date }}",
+ "cancelled_html": "Naročilo je bilo preklicano dne {{ date }}",
+ "cancelled_reason": "Razlog: {{ reason }}",
+ "billing_address": "Naslov plačnika računa",
+ "payment_status": "Stanje plačila",
+ "shipping_address": "Naslov za dostavo",
+ "fulfillment_status": "Stanje naročila",
+ "discount": "Popust",
+ "shipping": "Dostava",
+ "tax": "Davek",
+ "product": "Izdelek",
+ "sku": "Inventarna številka",
+ "price": "Cena",
+ "quantity": "Količina",
+ "total": "Skupaj",
+ "fulfilled_at_html": "Izpolnjeno dne {{ date }}",
+ "track_shipment": "Sledenje pošiljki",
+ "tracking_url": "Povezava za sledenje",
+ "tracking_company": "Dostavno podjetje",
+ "tracking_number": "Številka za sledenje",
+ "subtotal": "Vmesna vsota",
+ "total_duties": "Carinske dajatve",
+ "total_refunded": "Povrnjeno"
+ },
+ "orders": {
+ "title": "Zgodovina naročil",
+ "order_number": "Naročilo",
+ "order_number_link": "Številka naročila {{ number }}",
+ "date": "Datum",
+ "payment_status": "Stanje plačila",
+ "fulfillment_status": "Stanje naročila",
+ "total": "Skupaj",
+ "none": "Izvedli niste še nobenega naročila."
+ },
+ "recover_password": {
+ "title": "Ponastavite svoje geslo",
+ "subtext": "Poslali vam bomo e-poštno sporočilo za ponastavitev gesla",
+ "success": "Poslali smo vam e-poštno sporočilo s povezavo za posodobitev gesla."
+ },
+ "register": {
+ "title": "Ustvari račun",
+ "first_name": "Ime",
+ "last_name": "Priimek",
+ "email": "E-poštni naslov",
+ "password": "Geslo",
+ "submit": "Ustvari"
+ },
+ "reset_password": {
+ "title": "Ponastavitev gesla za račun",
+ "subtext": "Vnesite novo geslo",
+ "password": "Geslo",
+ "password_confirm": "Potrdite geslo",
+ "submit": "Ponastavi geslo"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "To je darilni bon v vrednosti {{ value }} za trgovino {{ shop }}!",
+ "subtext": "Vaš darilni bon",
+ "gift_card_code": "Koda darilnega bona",
+ "shop_link": "Obišči spletno trgovino",
+ "add_to_apple_wallet": "Dodaj v Apple Wallet",
+ "qr_image_alt": "Koda QR – optično jo preberite za unovčenje darilnega bona",
+ "copy_code": "Kopiraj kodo darilnega bona",
+ "expired": "Poteklo",
+ "copy_code_success": "Koda je uspešno kopirana",
+ "how_to_use_gift_card": "Uporabite kodo darilnega bona v spletu ali kodo QR v trgovini",
+ "expiration_date": "Poteče {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Želim poslati kot darilo",
+ "email_label": "E-poštni naslov prejemnika",
+ "email": "E-poštni naslov",
+ "name_label": "Ime prejemnika (izbirno)",
+ "name": "Ime",
+ "message_label": "Sporočilo (izbirno)",
+ "message": "Sporočilo",
+ "max_characters": "Največje št. znakov: {{ max_chars }}",
+ "email_label_optional_for_no_js_behavior": "E-poštni naslov prejemnika (izbirno)",
+ "send_on": "LLLL-MM-DD",
+ "send_on_label": "Pošlji na datum (izbirno)",
+ "expanded": "Razširjen obrazec prejemnika darilnega bona",
+ "collapsed": "Strnjen obrazec prejemnika darilnega bona"
+ }
+ }
+}
diff --git a/locales/sv.json b/locales/sv.json
new file mode 100644
index 0000000..2424c7f
--- /dev/null
+++ b/locales/sv.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Ange lösenord för att komma i butiken:",
+ "login_password_button": "Ange lösenord för att komma in",
+ "login_form_password_label": "Lösenord",
+ "login_form_password_placeholder": "Ditt lösenord",
+ "login_form_error": "Fel lösenord!",
+ "login_form_submit": "Ange",
+ "admin_link_html": "Är du butiksägare? Logga in här ",
+ "powered_by_shopify_html": "Denna butik kommer drivas av {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Dela på Facebook",
+ "share_on_twitter": "Tweet på Twitter",
+ "share_on_pinterest": "Spara en pin på Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Fortsätt shoppa",
+ "pagination": {
+ "label": "Paginering",
+ "page": "Sida {{ number }}",
+ "next": "Nästa sida",
+ "previous": "Föregående sida"
+ },
+ "search": {
+ "search": "Sök",
+ "reset": "Rensa sökord"
+ },
+ "cart": {
+ "view": "Visa varukorg ({{ count }})",
+ "item_added": "Artikeln har lagts till i varukorgen",
+ "view_empty_cart": "Visa varukorg"
+ },
+ "share": {
+ "copy_to_clipboard": "Kopiera länk",
+ "share_url": "Länk",
+ "success_message": "Länken kopierades till urklipp",
+ "close": "Stäng dela"
+ },
+ "slider": {
+ "of": "av",
+ "next_slide": "Bild till höger",
+ "previous_slide": "Bild till vänster",
+ "name": "Bild"
+ }
+ },
+ "newsletter": {
+ "label": "E-post",
+ "success": "Tack för att du prenumererar",
+ "button_label": "Prenumerera"
+ },
+ "accessibility": {
+ "skip_to_text": "Gå vidare till innehåll",
+ "close": "Stäng",
+ "unit_price_separator": "per",
+ "vendor": "Säljare:",
+ "error": "Fel",
+ "refresh_page": "När du gör ett urval uppdateras sidan.",
+ "link_messages": {
+ "new_window": "Öppnas i ett nytt fönster.",
+ "external": "Öppnar extern webbplats."
+ },
+ "loading": "Laddar ...",
+ "skip_to_product_info": "Gå vidare till produktinformation",
+ "total_reviews": "totalt antal recensioner",
+ "star_reviews_info": "{{ rating_value }} av {{ rating_max }} stjärnor",
+ "collapsible_content_title": "Innehåll som kan döljas",
+ "complementary_products": "Kompletterande produkter"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blogg",
+ "read_more_title": "Läs mer: {{ title }}",
+ "comments": {
+ "one": "{{ count }} kommentar",
+ "other": "{{ count }} kommentarer"
+ },
+ "moderated": "Notera att kommentarer behöver godkännas innan de publiceras.",
+ "comment_form_title": "Lämna en kommentar",
+ "name": "Namn",
+ "email": "Email",
+ "message": "Kommentar",
+ "post": "Lägg upp kommentar",
+ "back_to_blog": "Tillbaka till blogg",
+ "share": "Dela denna artikel",
+ "success": "Din kommentar har lagts upp! Tack!",
+ "success_moderated": "Din kommentar har lagts upp. Vi kommer publicera den lite senare, eftersom att bloggen är modererad."
+ }
+ },
+ "onboarding": {
+ "product_title": "Exempel på produktnamn",
+ "collection_title": "Namn på produktserien"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Lägg i varukorgen",
+ "description": "Beskrivning",
+ "on_sale": "Rea",
+ "quantity": {
+ "label": "Kvantitet",
+ "input_label": "Kvantitet för {{ product }}",
+ "increase": "Öka kvantitet för {{ product }}",
+ "decrease": "Minska kvantitet för {{ product }}",
+ "minimum_of": "Minimum på {{ quantity }}",
+ "maximum_of": "Maximum på {{ quantity }}",
+ "multiples_of": "Ökningar i steg om {{ quantity }}",
+ "in_cart_html": "{{ quantity }} i varukorg",
+ "note": "Visa kvantitetsregler"
+ },
+ "price": {
+ "from_price_html": "Från {{ price }}",
+ "regular_price": "Ordinarie pris",
+ "sale_price": "Försäljningspris",
+ "unit_price": "Enhetspris"
+ },
+ "share": "Dela den här produkten",
+ "sold_out": "Slutsåld",
+ "unavailable": "Ej tillgänglig",
+ "vendor": "Säljare",
+ "video_exit_message": "{{ title }} öppnar helskärmsvideo i samma fönster.",
+ "xr_button": "Visa i ditt utrymme",
+ "xr_button_label": "Visa i ditt utrymme, laddar artiklar i fönster med förstärkt verklighet",
+ "pickup_availability": {
+ "view_store_info": "Visa butiksinformation",
+ "check_other_stores": "Kontrollerar tillgänglighet i andra butiker",
+ "pick_up_available": "Hämtning tillgänglig",
+ "pick_up_available_at_html": "Hämtning tillgänglig på {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Det går för närvarande inte att få hämtning på {{ location_name }} ",
+ "unavailable": "Det gick inte att ladda hämtningstillgänglighet",
+ "refresh": "Uppdatera"
+ },
+ "media": {
+ "open_media": "Öppna mediet {{ index }} i modalfönster",
+ "play_model": "Spela 3D-visaren",
+ "play_video": "Spela video",
+ "gallery_viewer": "Gallerivisning",
+ "load_image": "Ladda bilden {{ index }} i gallerivisning",
+ "load_model": "Ladda 3D-modellen {{ index }} i gallerivisning",
+ "load_video": "Spela videon {{ index }} i gallerivisning",
+ "image_available": "Bilden {{ index }} är nu tillgänglig i gallerivisning"
+ },
+ "view_full_details": "Visa alla uppgifter",
+ "include_taxes": "Skatt ingår.",
+ "shipping_policy_html": "Frakt beräknas i kassan.",
+ "choose_options": "Välj alternativ",
+ "choose_product_options": "Välj alternativ för {{ product_name }}",
+ "value_unavailable": "{{ option_value }} – inte tillgängligt",
+ "variant_sold_out_or_unavailable": "Varianten är slutsåld eller inte tillgänglig",
+ "inventory_in_stock": "I lager",
+ "inventory_in_stock_show_count": "{{ quantity }} i lager",
+ "inventory_low_stock": "Låg lagernivå",
+ "inventory_low_stock_show_count": "Låg lagernivå: {{ quantity }} kvar",
+ "inventory_out_of_stock": "Slut i lager",
+ "inventory_out_of_stock_continue_selling": "I lager",
+ "sku": "Lagerhållningsenhet",
+ "volume_pricing": {
+ "title": "Volymprissättning",
+ "note": "Volymprissättning är tillgängligt",
+ "minimum": "Fler än {{ quantity }}",
+ "price_at_each": "för {{ price }}/styck",
+ "price_range": "{{ minimum }}–{{ maximum }}"
+ },
+ "product_variants": "Produktvarianter"
+ },
+ "modal": {
+ "label": "Mediagalleri"
+ },
+ "facets": {
+ "apply": "Tillämpa",
+ "clear": "Rensa",
+ "clear_all": "Ta bort alla",
+ "from": "Från",
+ "filter_and_sort": "Filtrera och sortera",
+ "filter_by_label": "Filter:",
+ "filter_button": "Filter",
+ "filters_selected": {
+ "one": "{{ count }} har valts",
+ "other": "{{ count }} har valts"
+ },
+ "max_price": "Det högsta priset är {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} av {{ count }} produkt",
+ "other": "{{ product_count }} av {{ count }} produkter"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkter"
+ },
+ "reset": "Återställ",
+ "sort_button": "Sortera",
+ "sort_by_label": "Sortera efter:",
+ "to": "Till",
+ "clear_filter": "Ta bort filter",
+ "filter_selected_accessibility": "{{ type }} ({{ count }}) filter valda",
+ "show_more": "Visa mer",
+ "show_less": "Visa mindre",
+ "filter_and_operator_subtitle": "Matcha alla"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Inga resultat hittades för \"{{ terms }}\". Kontrollera stavningen eller använd ett annat ord eller fras.",
+ "results_with_count": {
+ "one": "{{ count }} resultat",
+ "other": "{{ count }} resultat"
+ },
+ "title": "Sökresultat",
+ "page": "Sida",
+ "products": "Produkter",
+ "search_for": "Sök efter \"{{ terms }}\"",
+ "results_with_count_and_term": {
+ "one": "hittat {{ count }} resultat för \"{{ terms }}\"",
+ "other": "hittat {{ count }} resultat för \"{{ terms }}\""
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }}-sida",
+ "other": "{{ count }} sidor"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} produkt",
+ "other": "{{ count }} produkter"
+ },
+ "suggestions": "Förslag",
+ "pages": "Sidor",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} förslag",
+ "other": "{{ count }} förslag"
+ }
+ },
+ "cart": {
+ "cart": "Varukorg"
+ },
+ "contact": {
+ "form": {
+ "name": "Namn",
+ "email": "E-postadress",
+ "phone": "Telefonnummer",
+ "comment": "Kommentar",
+ "send": "Skicka",
+ "post_success": "Tack för att du kontaktar oss. Vi återkommer till dig så snart som möjligt.",
+ "error_heading": "Justera följande:",
+ "title": "Kontaktformulär"
+ }
+ },
+ "404": {
+ "title": "Sidan hittades inte",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Meddelande",
+ "menu": "Meny",
+ "cart_count": {
+ "one": "{{ count }} artikel",
+ "other": "{{ count }} artiklar"
+ }
+ },
+ "cart": {
+ "title": "Din varukorg",
+ "caption": "Varukorgsartiklar",
+ "remove_title": "Ta bort {{ title }}",
+ "note": "Beställ särskilda instruktioner",
+ "checkout": "Gå till kassan",
+ "empty": "Din varukorg är tom",
+ "cart_error": "Ett fel uppstod när du uppdaterade din varukorg. Försök igen.",
+ "cart_quantity_error_html": "Du kan endast lägga till {{ quantity }} av denna artikel i din varukorg.",
+ "taxes_and_shipping_policy_at_checkout_html": "Skatter, rabatter och leverans beräknas i kassan",
+ "taxes_included_but_shipping_at_checkout": "Skatt ingår och leverans och rabatter beräknas i kassan",
+ "taxes_included_and_shipping_policy_html": "Skatt ingår. Leverans och rabatter beräknas i kassan.",
+ "taxes_and_shipping_at_checkout": "Skatter, rabatter och leverans beräknas i kassan",
+ "headings": {
+ "product": "Produkt",
+ "price": "Pris",
+ "total": "Totalt",
+ "quantity": "Kvantitet",
+ "image": "Produktbild"
+ },
+ "update": "Uppdatera",
+ "login": {
+ "title": "Har du ett konto?",
+ "paragraph_html": "Logga in för att gå till kassan snabbare."
+ },
+ "estimated_total": "Beräknad totalsumma",
+ "new_estimated_total": "Nytt beräknat totalbelopp"
+ },
+ "footer": {
+ "payment": "Betalningsmetoder"
+ },
+ "featured_blog": {
+ "view_all": "Visa alla",
+ "onboarding_title": "Blogginlägg",
+ "onboarding_content": "Ge en sammanfattning av dina bloggposter till dina kunder"
+ },
+ "featured_collection": {
+ "view_all": "Visa alla",
+ "view_all_label": "Visa alla produkter i produktserien {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Visa alla"
+ },
+ "collection_template": {
+ "title": "Produktserie",
+ "empty": "Inga produkter hittades",
+ "use_fewer_filters_html": "Använd färre filter eller ta bort alla "
+ },
+ "video": {
+ "load_video": "Ladda video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Ladda bild",
+ "previous_slideshow": "Föregående bild",
+ "next_slideshow": "Nästa bild",
+ "pause_slideshow": "Pausa bildspelet",
+ "play_slideshow": "Spela bildspel",
+ "carousel": "Karusell",
+ "slide": "Bild"
+ },
+ "page": {
+ "title": "Sidrubrik"
+ },
+ "announcements": {
+ "previous_announcement": "Tidigare meddelande",
+ "next_announcement": "Kommande meddelande",
+ "carousel": "Karusell",
+ "announcement": "Meddelande",
+ "announcement_bar": "Meddelandefält"
+ },
+ "quick_order_list": {
+ "product_total": "Delsumma för produkt",
+ "view_cart": "Visa varukorg",
+ "each": "{{ money }}/st.",
+ "product": "Produkt",
+ "variant": "Variant",
+ "variant_total": "Totalbelopp för variant",
+ "items_added": {
+ "one": "{{ quantity }} artikel lades till",
+ "other": "{{ quantity }} artiklar lades till"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} artikel togs bort",
+ "other": "{{ quantity }} artiklar togs bort"
+ },
+ "product_variants": "Produktvarianter",
+ "total_items": "Totalt antal artiklar",
+ "remove_all_items_confirmation": "Ta bort alla {{ quantity }} artiklar från din varukorg?",
+ "remove_all": "Ta bort alla",
+ "cancel": "Avbryt"
+ }
+ },
+ "localization": {
+ "country_label": "Land/Region",
+ "language_label": "Språk",
+ "update_language": "Uppdatera språk",
+ "update_country": "Uppdatera land/region"
+ },
+ "customer": {
+ "account": {
+ "title": "Konto",
+ "details": "Kontouppgifter",
+ "view_addresses": "Visa adresser",
+ "return": "Återgå till kontouppgifter"
+ },
+ "account_fallback": "Konto",
+ "activate_account": {
+ "title": "Aktivera konto",
+ "subtext": "Skapa ditt lösenord för att aktivera ditt konto.",
+ "password": "Lösenord",
+ "password_confirm": "Bekräfta lösenordet",
+ "submit": "Aktivera konto",
+ "cancel": "Avvisa inbjudan"
+ },
+ "addresses": {
+ "title": "Adresser",
+ "default": "Standard",
+ "add_new": "Lägg till en ny adress",
+ "edit_address": "Redigera adress",
+ "first_name": "Förnamn",
+ "last_name": "Efternamn",
+ "company": "Företag",
+ "address1": "Adress 1",
+ "address2": "Adress 2",
+ "city": "Stad",
+ "country": "Land/Region",
+ "province": "Provins",
+ "zip": "Postnummer",
+ "phone": "Telefon",
+ "set_default": "Ange som standardadress",
+ "add": "Lägg till adress",
+ "update": "Uppdatera adress",
+ "cancel": "Avbryt",
+ "edit": "Redigera",
+ "delete": "Radera",
+ "delete_confirm": "Är du säker på att du vill radera den här adressen?"
+ },
+ "log_in": "Logga in",
+ "log_out": "Logga ut",
+ "login_page": {
+ "cancel": "Avbryt",
+ "create_account": "Skapa konto",
+ "email": "E-postadress",
+ "forgot_password": "Har du glömt ditt lösenord?",
+ "guest_continue": "Fortsätt",
+ "guest_title": "Fortsätt som gäst",
+ "password": "Lösenord",
+ "title": "Inloggning",
+ "sign_in": "Logga in",
+ "submit": "Skicka"
+ },
+ "orders": {
+ "title": "Orderhistorik",
+ "order_number": "Order",
+ "order_number_link": "Ordernummer {{ number }}",
+ "date": "Datum",
+ "payment_status": "Betalningsstatus",
+ "fulfillment_status": "Distributionsstatus",
+ "total": "Totalt",
+ "none": "Du har ännu inte lagt någon order."
+ },
+ "recover_password": {
+ "title": "Återställ ditt lösenord",
+ "subtext": "Vi skickar dig ett e-postmeddelande så att du kan återställa ditt lösenord",
+ "success": "Vi har skickat dig ett e-postmeddelande med en länk för att uppdatera ditt lösenord."
+ },
+ "register": {
+ "title": "Skapa konto",
+ "first_name": "Förnamn",
+ "last_name": "Efternamn",
+ "email": "E-postadress",
+ "password": "Lösenord",
+ "submit": "Skapa"
+ },
+ "reset_password": {
+ "title": "Återställ kontolösenord",
+ "subtext": "Ange ett nytt lösenord",
+ "password": "Lösenord",
+ "password_confirm": "Bekräfta lösenordet",
+ "submit": "Återställ lösenord"
+ },
+ "order": {
+ "title": "Order {{ name }}",
+ "date_html": "Beställd den {{ date }}",
+ "cancelled_html": "Ordern avbröts den {{ date }}",
+ "cancelled_reason": "Anledning: {{ reason }}",
+ "billing_address": "Faktureringsadress",
+ "payment_status": "Betalningsstatus",
+ "shipping_address": "Leveransadress",
+ "fulfillment_status": "Distributionsstatus",
+ "discount": "Rabatt",
+ "shipping": "Frakt",
+ "tax": "Skatt",
+ "product": "Produkt",
+ "sku": "SKU",
+ "price": "Pris",
+ "quantity": "Kvantitet",
+ "total": "Totalt",
+ "fulfilled_at_html": "Distribuerad {{ date }}",
+ "track_shipment": "Spåra försändelse",
+ "tracking_url": "Spårningslänk",
+ "tracking_company": "Transportör",
+ "tracking_number": "Spårningsnummer",
+ "subtotal": "Delsumma",
+ "total_duties": "Tullavgifter",
+ "total_refunded": "Återbetald"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Här är ditt presentkort värt {{ value }} för {{ shop }}!",
+ "subtext": "Ditt presentkort",
+ "gift_card_code": "Presentkortskod",
+ "shop_link": "Besök webbshop",
+ "add_to_apple_wallet": "Lägg till i Apple Wallet",
+ "qr_image_alt": "QR-kod – skanna för att lösa in presentkort",
+ "copy_code": "Kopiera presentkortskod",
+ "expired": "Har gått ut",
+ "copy_code_success": "Koden kopierades",
+ "how_to_use_gift_card": "Använd presentkortskoden online eller QR-koden i butik",
+ "expiration_date": "Går ut {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Jag vill skicka detta som en gåva",
+ "email_label": "Mottagarens e-postadress",
+ "email": "E-postadress",
+ "name_label": "Mottagarens namn (valfritt)",
+ "name": "Namn",
+ "message_label": "Meddelande (valfritt)",
+ "message": "Meddelande",
+ "max_characters": "Max. {{ max_chars }} tecken",
+ "email_label_optional_for_no_js_behavior": "Mottagarens e-postadress (valfritt)",
+ "send_on": "ÅÅÅÅ-MM-DD",
+ "send_on_label": "Skicka den (valfritt)",
+ "expanded": "Mottagarformulär för presentkort öppnat",
+ "collapsed": "Mottagarformulär för presentkort stängt"
+ }
+ }
+}
diff --git a/locales/sv.schema.json b/locales/sv.schema.json
new file mode 100644
index 0000000..431530d
--- /dev/null
+++ b/locales/sv.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Färger",
+ "settings": {
+ "background": {
+ "label": "Bakgrund"
+ },
+ "background_gradient": {
+ "label": "Tonad bakgrund",
+ "info": "Tonad bakgrund ersätter om möjligt bakgrund."
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_background": {
+ "label": "Enfärgad knappbakgrund"
+ },
+ "button_label": {
+ "label": "Enfärgad knappetikett"
+ },
+ "secondary_button_label": {
+ "label": "Knappkontur"
+ },
+ "shadow": {
+ "label": "Skugga"
+ }
+ }
+ },
+ "typography": {
+ "name": "Typografi",
+ "settings": {
+ "type_header_font": {
+ "label": "Typsnitt",
+ "info": "Om du väljer ett annat typsnitt kan det påverka butikshastigheten. [Lär dig mer om typsnitt i system.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Rubriker"
+ },
+ "header__2": {
+ "content": "Brödtext"
+ },
+ "type_body_font": {
+ "label": "Typsnitt",
+ "info": "Om du väljer ett annat typsnitt kan det påverka butikshastigheten. [Lär dig mer om typsnitt i system.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Skala för teckenstorlek"
+ },
+ "body_scale": {
+ "label": "Skala för teckenstorlek"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Sociala medier",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "https://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/user/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Sociala konton"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Valutaformat",
+ "settings": {
+ "content": "Valutakoder",
+ "currency_code_enabled": {
+ "label": "Visa valutakoder"
+ },
+ "paragraph": "Priser i varukorgen och kassan visar alltid valutakoder. T.ex. 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Layout",
+ "settings": {
+ "page_width": {
+ "label": "Sidbredd"
+ },
+ "spacing_sections": {
+ "label": "Mellanrum mellan mallavsnitt"
+ },
+ "header__grid": {
+ "content": "Rutnät"
+ },
+ "paragraph__grid": {
+ "content": "Påverkar områden med flera kolumner eller rader."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Horisontellt utrymme"
+ },
+ "spacing_grid_vertical": {
+ "label": "Vertikalt utrymme"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Sökbeteende",
+ "settings": {
+ "header": {
+ "content": "Sökförslag"
+ },
+ "predictive_search_enabled": {
+ "label": "Aktivera sökförslag"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Visa produktsäljare",
+ "info": "Synlig när sökförslag är aktiverat."
+ },
+ "predictive_search_show_price": {
+ "label": "Visa produktpris",
+ "info": "Synlig när sökförslag är aktiverat."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Kant"
+ },
+ "header__shadow": {
+ "content": "Skugga"
+ },
+ "blur": {
+ "label": "Suddighet"
+ },
+ "corner_radius": {
+ "label": "Hörnradie"
+ },
+ "horizontal_offset": {
+ "label": "Horisontell kompensation"
+ },
+ "vertical_offset": {
+ "label": "Vertikal kompensation"
+ },
+ "thickness": {
+ "label": "Tjocklek"
+ },
+ "opacity": {
+ "label": "Opacitet"
+ },
+ "image_padding": {
+ "label": "Bild-padding"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Textjustering"
+ }
+ }
+ },
+ "badges": {
+ "name": "Brickor",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Nere till vänster"
+ },
+ "options__2": {
+ "label": "Nere till höger"
+ },
+ "options__3": {
+ "label": "Överst till vänster"
+ },
+ "options__4": {
+ "label": "Överst till höger"
+ },
+ "label": "Position på kort"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Färgschema för försäljningsbricka"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Utsålt färgschema för bricka"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Knappar"
+ },
+ "variant_pills": {
+ "name": "Variantkapslar",
+ "paragraph": "Variantpiller är ett sätt att visa produktvarianter på. [Mer information](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Inmatningar"
+ },
+ "content_containers": {
+ "name": "Innehållsbehållare"
+ },
+ "popups": {
+ "name": "Rullgardinsmenyer och popup-rutor",
+ "paragraph": "Påverkar områden såsom rullgardinsmenyer för navigering, popup-modalfönster och popup-rutor för varukorg."
+ },
+ "media": {
+ "name": "Media"
+ },
+ "drawers": {
+ "name": "Lådor"
+ },
+ "cart": {
+ "name": "Varukorg",
+ "settings": {
+ "cart_type": {
+ "label": "Varukorgstyp",
+ "drawer": {
+ "label": "Låda"
+ },
+ "page": {
+ "label": "Sida"
+ },
+ "notification": {
+ "label": "Popup-avisering"
+ }
+ },
+ "show_vendor": {
+ "label": "Visa säljare"
+ },
+ "show_cart_note": {
+ "label": "Aktivera varukorgsanteckning"
+ },
+ "cart_drawer": {
+ "header": "Varukorgspanel",
+ "collection": {
+ "label": "Produktserie",
+ "info": "Synlig när varukorgspanelen är tom."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Produktkort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Kategorikort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Bloggkort",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Kort"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logotyp",
+ "settings": {
+ "logo_image": {
+ "label": "Logotyp"
+ },
+ "logo_width": {
+ "label": "Logotypbredd för dator",
+ "info": "Logotypbredd optimeras automatiskt för mobilen."
+ },
+ "favicon": {
+ "label": "Favicon-bild",
+ "info": "Kommer skalas ned till 32 x 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Varumärkesinformation",
+ "settings": {
+ "brand_headline": {
+ "label": "Rubrik"
+ },
+ "brand_description": {
+ "label": "Beskrivning"
+ },
+ "brand_image": {
+ "label": "Bild"
+ },
+ "brand_image_width": {
+ "label": "Bildbredd"
+ },
+ "paragraph": {
+ "content": "Lägg till en varumärkesbeskrivning i din butiks sidfot."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animeringar",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Visa avsnitt under bläddring"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Inga"
+ },
+ "options__2": {
+ "label": "Vertikalt lyft"
+ },
+ "label": "Hovringseffekt",
+ "info": "Påverkar kort och knappar.",
+ "options__3": {
+ "label": "3D-lyft"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Padding för avsnitt",
+ "padding_top": "Övre padding",
+ "padding_bottom": "Nedre padding"
+ },
+ "spacing": "Radavstånd",
+ "colors": {
+ "label": "Färgschema",
+ "has_cards_info": "Uppdatera dina temainställningar för att ändra kortets färgsättning."
+ },
+ "heading_size": {
+ "label": "Rubrikstorlek",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "options__4": {
+ "label": "Extra stor"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Standard"
+ },
+ "options__2": {
+ "label": "Välvd"
+ },
+ "options__3": {
+ "label": "Droppe"
+ },
+ "options__4": {
+ "label": "Sparre vänster"
+ },
+ "options__5": {
+ "label": "Sparre höger"
+ },
+ "options__6": {
+ "label": "Diamant"
+ },
+ "options__7": {
+ "label": "Parallelogram"
+ },
+ "options__8": {
+ "label": "Rund"
+ },
+ "label": "Bildform",
+ "info": "Kort i standardstil har inga ramar om en bildform är aktiv."
+ },
+ "animation": {
+ "content": "Animeringar",
+ "image_behavior": {
+ "options__1": {
+ "label": "Inga"
+ },
+ "options__2": {
+ "label": "Omgivande rörelse"
+ },
+ "label": "Bildbeteende",
+ "options__3": {
+ "label": "Fast bakgrundsplacering"
+ },
+ "options__4": {
+ "label": "Zooma in vid skrollning"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Meddelandefält",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_alignment": {
+ "label": "Textjustering",
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ }
+ },
+ "link": {
+ "label": "Länk"
+ }
+ },
+ "name": "Meddelande"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Rotera meddelanden automatiskt"
+ },
+ "change_slides_speed": {
+ "label": "Byt varje"
+ },
+ "header__1": {
+ "content": "Sociala medier-ikoner",
+ "info": "Visa dina sociala medier-konton genom att länka dem i dina [tema-inställningar](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Meddelanden"
+ },
+ "show_social": {
+ "label": "Visa ikoner på skrivbordet"
+ },
+ "header__3": {
+ "content": "Land-/regionväljare",
+ "info": "Om du vill lägga till land/region så går du till [marknadsinställningar.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Aktivera land/regionväljare"
+ },
+ "header__4": {
+ "content": "Språkväljare",
+ "info": "Om du vill lägga till ett språk så går du till [språkinställningar.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Aktivera språkväljare"
+ }
+ },
+ "presets": {
+ "name": "Meddelandefält"
+ }
+ },
+ "collage": {
+ "name": "Kollage",
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ },
+ "desktop_layout": {
+ "label": "Layout för dator",
+ "options__1": {
+ "label": "Stort block till vänster"
+ },
+ "options__2": {
+ "label": "Stort block till höger"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobil layout",
+ "options__1": {
+ "label": "Kollage"
+ },
+ "options__2": {
+ "label": "Kolumn"
+ }
+ },
+ "card_styles": {
+ "label": "Kortstil",
+ "info": "Du kan uppdatera kortstilar för produkter, kategorier och bloggen i temainställningarna.",
+ "options__1": {
+ "label": "Använd individuella kortstilar"
+ },
+ "options__2": {
+ "label": "Styla alla som produktkort"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "Bild"
+ }
+ },
+ "name": "Bild"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Visa sekundär bakgrund"
+ },
+ "second_image": {
+ "label": "Visa andra bild på hovring"
+ }
+ },
+ "name": "Produkt"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "Produktserie"
+ }
+ },
+ "name": "Produktserie"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "Omslagsbild"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Video spelas i en pop-up om avsnittet innehåller andra block.",
+ "placeholder": "Använd en YouTube- eller en Vimeo-URL"
+ },
+ "description": {
+ "label": "Alternativtext för video",
+ "info": "Beskriv videon för kunder som använder skärmläsare. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "Video"
+ }
+ },
+ "presets": {
+ "name": "Kollage"
+ }
+ },
+ "collection-list": {
+ "name": "Kollektionslista",
+ "settings": {
+ "title": {
+ "label": "Rubrik"
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ },
+ "info": "Lägg till bilder genom att redigera dina produktserier. [Mer information](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Aktivera swipe på mobilen"
+ },
+ "show_view_all": {
+ "label": "Aktivera \"Visa alla\"-knappen om listan innehåller fler produktserier än vad som visas"
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "Produktserie"
+ }
+ },
+ "name": "Produktserie"
+ }
+ },
+ "presets": {
+ "name": "Kollektionslista"
+ }
+ },
+ "contact-form": {
+ "name": "Kontaktformulär",
+ "presets": {
+ "name": "Kontaktformulär"
+ }
+ },
+ "custom-liquid": {
+ "name": "Anpassa Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid-kod",
+ "info": "Lägg till appfragment eller annan kod för att skapa avancerade anpassningar. [Mer information](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Anpassa Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blogginlägg",
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ },
+ "blog": {
+ "label": "Blogg"
+ },
+ "post_limit": {
+ "label": "Antalet blogginlägg att visa"
+ },
+ "show_view_all": {
+ "label": "Aktivera \"Visa alla\"-knappen om bloggen innehåller fler blogginlägg än vad som visas"
+ },
+ "show_image": {
+ "label": "Visa framhävd bild",
+ "info": "Använd en bild med bildformat 3:2, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Visa datum"
+ },
+ "show_author": {
+ "label": "Visa författare"
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ }
+ },
+ "presets": {
+ "name": "Blogginlägg"
+ }
+ },
+ "featured-collection": {
+ "name": "Utvald produktserie",
+ "settings": {
+ "title": {
+ "label": "Rubrik"
+ },
+ "collection": {
+ "label": "Produktserie"
+ },
+ "products_to_show": {
+ "label": "Maximalt antal produkter att visa"
+ },
+ "show_view_all": {
+ "label": "Aktivera \"Visa alla\" om produktserien innehåller fler produkter än vad som visas"
+ },
+ "header": {
+ "content": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Visa andra bild på hovring"
+ },
+ "show_vendor": {
+ "label": "Visa säljare"
+ },
+ "show_rating": {
+ "label": "Visa produktbetyg",
+ "info": "Lägg till en produktbedömningsapp för att visa ett betyg. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Aktivera knapp för snabb tilläggning",
+ "info": "Optimal med varukorg av popup- eller lådtyp."
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "description": {
+ "label": "Beskrivning"
+ },
+ "show_description": {
+ "label": "Visa produktseriebeskrivning från Shopify-admin"
+ },
+ "description_style": {
+ "label": "Beskrivningsstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "options__3": {
+ "label": "Stora bokstäver"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "Länk"
+ },
+ "options__2": {
+ "label": "Knappkontur"
+ },
+ "options__3": {
+ "label": "Tydlig knapp"
+ },
+ "label": "\"Visa alla\"-stil"
+ },
+ "enable_desktop_slider": {
+ "label": "Aktivera karusell på dator"
+ },
+ "full_width": {
+ "label": "Ge produkterna full bredd"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Aktivera swipe på mobilen"
+ }
+ },
+ "presets": {
+ "name": "Utvald produktserie"
+ }
+ },
+ "footer": {
+ "name": "Sidfot",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ },
+ "menu": {
+ "label": "Meny",
+ "info": "Visa endast menyobjekt på toppnivå."
+ }
+ },
+ "name": "Meny"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ },
+ "subtext": {
+ "label": "Undertext"
+ }
+ },
+ "name": "Text"
+ },
+ "brand_information": {
+ "name": "Varumärkesinformation",
+ "settings": {
+ "paragraph": {
+ "content": "Detta block kommer visa din varumärkesinformation. [Redigera varumärkesinformation.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Sociala medier-ikoner"
+ },
+ "show_social": {
+ "label": "Visa sociala medier-ikoner",
+ "info": "För att visa dina sociala medier-konton, länka dem i dina [tema-inställningar](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Visa e-postregistrering"
+ },
+ "newsletter_heading": {
+ "label": "Rubrik"
+ },
+ "header__1": {
+ "info": "Prenumeranter som lagts till automatiskt till listan med ”accepterar marknadsföring”. [Mer information](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "E-postregistrering"
+ },
+ "header__2": {
+ "content": "Sociala medier-ikoner",
+ "info": "För att visa dina sociala medier-konton, länka dem i dina [tema-inställningar](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Visa sociala medier-ikoner"
+ },
+ "header__3": {
+ "content": "Land/region-väljare"
+ },
+ "header__4": {
+ "info": "Om du vill lägga till land/region går du till dina [marknadsinställningar.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Aktivera land/region-väljare"
+ },
+ "header__5": {
+ "content": "Språkväljare"
+ },
+ "header__6": {
+ "info": "Om du vill lägga till ett språk går du till dina [språkinställningar.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Aktivera språkväljare"
+ },
+ "header__7": {
+ "content": "Betalningsmetoder"
+ },
+ "payment_enable": {
+ "label": "Visa betalningsikoner"
+ },
+ "margin_top": {
+ "label": "Övre marginal"
+ },
+ "header__8": {
+ "content": "Policylänkar",
+ "info": "Gå till dina [policyinställningar ](/admin/settings/legal) för att lägga till butikspolicyer."
+ },
+ "show_policy": {
+ "label": "Visa policylänkar"
+ },
+ "header__9": {
+ "content": "Följ på Shop",
+ "info": "Shop Pay måste aktiveras för att kunder ska kunna följa din butik i Shop-appen från ditt skyltfönster. [Mer information](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Aktivera Följ på Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Rubrik",
+ "settings": {
+ "logo_position": {
+ "label": "Desktoplogotypens position",
+ "options__1": {
+ "label": "Mitten till vänster"
+ },
+ "options__2": {
+ "label": "Överst till vänster"
+ },
+ "options__3": {
+ "label": "Längst upp i mitten"
+ },
+ "options__4": {
+ "label": "Mitten centrerat"
+ }
+ },
+ "menu": {
+ "label": "Meny"
+ },
+ "show_line_separator": {
+ "label": "Visa avskiljande linje"
+ },
+ "margin_bottom": {
+ "label": "Nedre marginal"
+ },
+ "menu_type_desktop": {
+ "label": "Typ av skrivbordsmeny",
+ "info": "Menytyp optimeras automatiskt för mobila enheter.",
+ "options__1": {
+ "label": "Rullgardinsmeny"
+ },
+ "options__2": {
+ "label": "Megameny"
+ },
+ "options__3": {
+ "label": "Låda"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobil layout"
+ },
+ "mobile_logo_position": {
+ "label": "Placering av logotyp på mobil",
+ "options__1": {
+ "label": "Centrera"
+ },
+ "options__2": {
+ "label": "Vänster"
+ }
+ },
+ "logo_help": {
+ "content": "Redigera din logotyp i [temainställningarna](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Fast sidhuvud",
+ "options__1": {
+ "label": "Inga"
+ },
+ "options__2": {
+ "label": "Vid bläddring uppåt"
+ },
+ "options__3": {
+ "label": "Alltid"
+ },
+ "options__4": {
+ "label": "Alltid, minska logotypstorlek"
+ }
+ },
+ "header__3": {
+ "content": "Land/region-väljare"
+ },
+ "header__4": {
+ "info": "Om du vill lägga till land/region går du till dina [marknadsinställningar.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Aktivera land/region-väljare"
+ },
+ "header__5": {
+ "content": "Språkväljare"
+ },
+ "header__6": {
+ "info": "Om du vill lägga till ett språk går du till dina [språkinställningar.](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "Aktivera språkväljare"
+ },
+ "header__1": {
+ "content": "Färg"
+ },
+ "menu_color_scheme": {
+ "label": "Färgschema för meny"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Bildbanner",
+ "settings": {
+ "image": {
+ "label": "Första bild"
+ },
+ "image_2": {
+ "label": "Andra bild"
+ },
+ "stack_images_on_mobile": {
+ "label": "Stapla bilder på mobil"
+ },
+ "show_text_box": {
+ "label": "Visa ruta på skrivbord"
+ },
+ "image_overlay_opacity": {
+ "label": "Bildens opacitet för överlagring"
+ },
+ "show_text_below": {
+ "label": "Visa ruta på mobil"
+ },
+ "image_height": {
+ "label": "Banner-höjd",
+ "options__1": {
+ "label": "Anpassa efter första bilden"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "info": "Använd en bild med bildformat 3:2, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Längst upp till vänster"
+ },
+ "options__2": {
+ "label": "Längst upp i mitten"
+ },
+ "options__3": {
+ "label": "Längst upp till höger"
+ },
+ "options__4": {
+ "label": "Mitten till vänster"
+ },
+ "options__5": {
+ "label": "Mitten centrerat"
+ },
+ "options__6": {
+ "label": "Mitten till höger"
+ },
+ "options__7": {
+ "label": "Längst ner till vänster"
+ },
+ "options__8": {
+ "label": "Längst ner i mitten"
+ },
+ "options__9": {
+ "label": "Längst ner till höger"
+ },
+ "label": "Innehållsposition på dator"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Linjering av innehåll på dator"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Linjering av innehåll på mobil"
+ },
+ "mobile": {
+ "content": "Mobil layout"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ }
+ },
+ "name": "Rubrik"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Beskrivning"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "options__3": {
+ "label": "Stora bokstäver"
+ },
+ "label": "Textstil"
+ }
+ },
+ "name": "Text"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "Första knappetikett",
+ "info": "Lämna etiketten tom eller dölj knappen."
+ },
+ "button_link_1": {
+ "label": "Första knapplänk"
+ },
+ "button_style_secondary_1": {
+ "label": "Använd stil för knappkontur"
+ },
+ "button_label_2": {
+ "label": "Andra knappetikett",
+ "info": "Lämna etiketten tom eller dölj knappen."
+ },
+ "button_link_2": {
+ "label": "Andra knapplänk"
+ },
+ "button_style_secondary_2": {
+ "label": "Använd stil för knappkontur"
+ }
+ },
+ "name": "Knappar"
+ }
+ },
+ "presets": {
+ "name": "Bildbanner"
+ }
+ },
+ "image-with-text": {
+ "name": "Bild med text",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "height": {
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "label": "Bildhöjd",
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Bild först"
+ },
+ "options__2": {
+ "label": "Andra bild"
+ },
+ "label": "Placering av datorbild",
+ "info": "Bild först är standard-layout för mobil."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Bildbredd för dator",
+ "info": "Bilden optimeras automatiskt för mobilen."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Justering av innehåll på skrivbord",
+ "options__2": {
+ "label": "Centrera"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Högst upp"
+ },
+ "options__2": {
+ "label": "Mitten"
+ },
+ "options__3": {
+ "label": "Längst ner"
+ },
+ "label": "Innehållsposition på dator"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Ingen överlappning"
+ },
+ "options__2": {
+ "label": "Överlappande"
+ },
+ "label": "Innehållslayout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Linjering av innehåll på mobil",
+ "options__2": {
+ "label": "Centrera"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ }
+ },
+ "name": "Rubrik"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Innehåll"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ }
+ }
+ },
+ "name": "Text"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "Knappetikett",
+ "info": "Lämna etiketten tom eller dölj knappen."
+ },
+ "button_link": {
+ "label": "Knapplänk"
+ },
+ "outline_button": {
+ "label": "Använd knappkontursstil"
+ }
+ },
+ "name": "Knapp"
+ },
+ "caption": {
+ "name": "Rubrik",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Underrubrik"
+ },
+ "options__2": {
+ "label": "Stora bokstäver"
+ }
+ },
+ "caption_size": {
+ "label": "Textstorlek",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bild med text"
+ }
+ },
+ "main-article": {
+ "name": "Blogginlägg",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "Bildhöjd på utvald bild",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "info": "Använd en bild med bildformat 16:9, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Stor"
+ }
+ }
+ },
+ "name": "Utvald bild"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "Visa datum"
+ },
+ "blog_show_author": {
+ "label": "Visa författare"
+ }
+ },
+ "name": "Titel"
+ },
+ "content": {
+ "name": "Innehåll"
+ },
+ "share": {
+ "name": "Dela",
+ "settings": {
+ "featured_image_info": {
+ "content": "Om du inkluderar en länk i inlägg på sociala medier kommer sidans utvalda bild att visas som förhandsgranskningsbild. [Läs mer](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Ett butiksnamn och en beskrivning inkluderas med förhandsgranskningsbilden. [Läs mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blogginlägg",
+ "settings": {
+ "header": {
+ "content": "Kort för blogginlägg"
+ },
+ "show_image": {
+ "label": "Visa framhävd bild"
+ },
+ "paragraph": {
+ "content": "Ändra utdrag genom att redigera dina blogginlägg. [Mer information](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Visa datum"
+ },
+ "show_author": {
+ "label": "Visa författare"
+ },
+ "layout": {
+ "label": "Desktoplayout",
+ "options__1": {
+ "label": "Rutnät"
+ },
+ "options__2": {
+ "label": "Kollage"
+ },
+ "info": "Inläggen staplas på mobilen."
+ },
+ "image_height": {
+ "label": "Bildhöjd på utvald bild",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "info": "Använd en bild med bildformat 3:2, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Delsumma",
+ "blocks": {
+ "subtotal": {
+ "name": "Delsumma"
+ },
+ "buttons": {
+ "name": "Knapp för att betala i kassan"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Artiklar"
+ },
+ "main-collection-banner": {
+ "name": "Banner för produktserie",
+ "settings": {
+ "paragraph": {
+ "content": "Lägg till en beskrivning eller en bild genom att redigera din produktserie. [Mer information](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Visa produktseriebeskrivning"
+ },
+ "show_collection_image": {
+ "label": "Visa produktseriebild",
+ "info": "Använd en bild med bildformat 16:9, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Produktrutnät",
+ "settings": {
+ "products_per_page": {
+ "label": "Produkter per rad"
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Visa andra bild på hovring"
+ },
+ "show_vendor": {
+ "label": "Visa säljare"
+ },
+ "header__1": {
+ "content": "Filtrering och sortering"
+ },
+ "enable_tags": {
+ "label": "Aktivera filtrering",
+ "info": "Anpassa filter med Search & Discovery-appen. [Mer information](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Aktivera filtrering",
+ "info": "Anpassa filter med Search & Discovery-appen. [Mer information](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Aktivera sortering"
+ },
+ "header__3": {
+ "content": "Produktkort"
+ },
+ "show_rating": {
+ "label": "Visa produktbetyg",
+ "info": "Lägg till en produktbedömningsapp för att visa ett betyg. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Aktivera knapp för snabb tilläggning",
+ "info": "Optimal med varukorg av popup- eller lådtyp."
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ },
+ "filter_type": {
+ "label": "Filterlayout för dator",
+ "options__1": {
+ "label": "Liggande"
+ },
+ "options__2": {
+ "label": "Stående"
+ },
+ "options__3": {
+ "label": "Låda"
+ },
+ "info": "Låda är standardlayouten för mobil."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Kollektionslistsida",
+ "settings": {
+ "title": {
+ "label": "Rubrik"
+ },
+ "sort": {
+ "label": "Sortera kollektioner efter:",
+ "options__1": {
+ "label": "Alfabetiskt, A–Ö"
+ },
+ "options__2": {
+ "label": "Alfabetiskt, Ö–A"
+ },
+ "options__3": {
+ "label": "Datum, nytt till gammalt"
+ },
+ "options__4": {
+ "label": "Datum, gammalt till nytt"
+ },
+ "options__5": {
+ "label": "Produktantal, högt till lågt"
+ },
+ "options__6": {
+ "label": "Produktantal, lågt till högt"
+ }
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ },
+ "info": "Lägg till bilder genom att redigera dina produktserier. [Mer information](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Sida"
+ },
+ "main-password-footer": {
+ "name": "Lösenord sidfot"
+ },
+ "main-password-header": {
+ "name": "Lösenord sidhuvud",
+ "settings": {
+ "logo_header": {
+ "content": "Logotyp"
+ },
+ "logo_help": {
+ "content": "Redigera din logotyp i temainställningarna."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Produktinformation",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Textning"
+ },
+ "options__3": {
+ "label": "Stor bokstav"
+ }
+ }
+ },
+ "name": "Text"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "Typ",
+ "options__1": {
+ "label": "Rullgardinsmeny"
+ },
+ "options__2": {
+ "label": "Kapslar"
+ }
+ }
+ },
+ "name": "Variantväljare"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Visa dynamiska utcheckningsknappar",
+ "info": "Genom att använda tillgängliga betalningsmetoder i butiken kan kunder se valt alternativ, till exempel PayPal eller Apple Pay. [Läs mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Visa mottagarformulär för presentkort",
+ "info": "Låter köpare skicka presentkort och ett personligt meddelande på ett planerat datum. [Mer information](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "Köpknappar"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "Om du inkluderar en länk i inlägg på sociala medier kommer sidans utvalda bild att visas som förhandsgranskningsbild. [Läs mer](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Ett butiksnamn och en beskrivning inkluderas med förhandsgranskningsbilden. [Läs mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Text"
+ }
+ },
+ "name": "Dela"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "Inkludera en rubrik som beskriver innehållet.",
+ "label": "Rubrik"
+ },
+ "content": {
+ "label": "Radinnehåll"
+ },
+ "page": {
+ "label": "Radinnehåll från sida"
+ },
+ "icon": {
+ "label": "Ikon",
+ "options__1": {
+ "label": "Inga"
+ },
+ "options__2": {
+ "label": "Äpple"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Flaska"
+ },
+ "options__5": {
+ "label": "Låda"
+ },
+ "options__6": {
+ "label": "Morot"
+ },
+ "options__7": {
+ "label": "Chattbubbla"
+ },
+ "options__8": {
+ "label": "Bock"
+ },
+ "options__9": {
+ "label": "Urklipp"
+ },
+ "options__10": {
+ "label": "Mejeriprodukt"
+ },
+ "options__11": {
+ "label": "Fri från mejeriprodukter"
+ },
+ "options__12": {
+ "label": "Torkare"
+ },
+ "options__13": {
+ "label": "Öga"
+ },
+ "options__14": {
+ "label": "Eld"
+ },
+ "options__15": {
+ "label": "Glutenfri"
+ },
+ "options__16": {
+ "label": "Hjärta"
+ },
+ "options__17": {
+ "label": "Strykjärn"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Läder"
+ },
+ "options__20": {
+ "label": "Blixt"
+ },
+ "options__21": {
+ "label": "Läppstift"
+ },
+ "options__22": {
+ "label": "Lås"
+ },
+ "options__23": {
+ "label": "Kartnål"
+ },
+ "options__24": {
+ "label": "Utan nötter"
+ },
+ "options__25": {
+ "label": "Byxor"
+ },
+ "options__26": {
+ "label": "Tassavtryck"
+ },
+ "options__27": {
+ "label": "Peppar"
+ },
+ "options__28": {
+ "label": "Parfym"
+ },
+ "options__29": {
+ "label": "Flygplan"
+ },
+ "options__30": {
+ "label": "Växt"
+ },
+ "options__31": {
+ "label": "Prislapp"
+ },
+ "options__32": {
+ "label": "Frågetecken"
+ },
+ "options__33": {
+ "label": "Återvinn"
+ },
+ "options__34": {
+ "label": "Gå tillbaka"
+ },
+ "options__35": {
+ "label": "Linjal"
+ },
+ "options__36": {
+ "label": "Serveringsfat"
+ },
+ "options__37": {
+ "label": "Skjorta"
+ },
+ "options__38": {
+ "label": "Sko"
+ },
+ "options__39": {
+ "label": "Siluett"
+ },
+ "options__40": {
+ "label": "Snöflinga"
+ },
+ "options__41": {
+ "label": "Stjärna"
+ },
+ "options__42": {
+ "label": "Stoppur"
+ },
+ "options__43": {
+ "label": "Lastbil"
+ },
+ "options__44": {
+ "label": "Tvätt"
+ }
+ }
+ },
+ "name": "Rad som kan döljas"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "Länketikett"
+ },
+ "page": {
+ "label": "Sida"
+ }
+ },
+ "name": "Pop-up"
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Pris"
+ },
+ "quantity_selector": {
+ "name": "Kvantitetsväljare"
+ },
+ "pickup_availability": {
+ "name": "Hämtningsmöjligheter"
+ },
+ "description": {
+ "name": "Beskrivning"
+ },
+ "rating": {
+ "name": "Produktbetyg",
+ "settings": {
+ "paragraph": {
+ "content": "Lägg till en produktbedömningsapp för att visa ett betyg. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Kompletterande produkter",
+ "settings": {
+ "paragraph": {
+ "content": "Lägg till appen Search & Discovery för att välja tilläggsprodukter. [Mer information](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Rubrik"
+ },
+ "make_collapsible_row": {
+ "label": "Visa som komprimerbar rad"
+ },
+ "icon": {
+ "info": "Synlig när komprimerbar rad visas."
+ },
+ "product_list_limit": {
+ "label": "Maximalt antal produkter att visa"
+ },
+ "products_per_page": {
+ "label": "Antal produkter per sida"
+ },
+ "pagination_style": {
+ "label": "Pagineringsstil",
+ "options": {
+ "option_1": "Prickar",
+ "option_2": "Räknare",
+ "option_3": "Siffror"
+ }
+ },
+ "product_card": {
+ "heading": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options": {
+ "option_1": "Porträtt",
+ "option_2": "Fyrkantig"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Aktivera knapp för snabb tilläggning"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Ikon med text",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Liggande"
+ },
+ "options__2": {
+ "label": "Stående"
+ }
+ },
+ "content": {
+ "label": "Innehåll",
+ "info": "Välj en ikon eller lägg till en bild för varje kolumn eller rad."
+ },
+ "heading": {
+ "info": "Lämna rubriketiketten tom för att dölja ikonkolumnen."
+ },
+ "icon_1": {
+ "label": "Första ikon"
+ },
+ "image_1": {
+ "label": "Första bild"
+ },
+ "heading_1": {
+ "label": "Första rubrik"
+ },
+ "icon_2": {
+ "label": "Andra ikon"
+ },
+ "image_2": {
+ "label": "Andra bild"
+ },
+ "heading_2": {
+ "label": "Andra rubrik"
+ },
+ "icon_3": {
+ "label": "Tredje ikon"
+ },
+ "image_3": {
+ "label": "Tredje bild"
+ },
+ "heading_3": {
+ "label": "Tredje rubrik"
+ }
+ }
+ },
+ "sku": {
+ "name": "Lagerhållningsenhet",
+ "settings": {
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "options__3": {
+ "label": "Stora bokstäver"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Lagerstatus",
+ "settings": {
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "options__3": {
+ "label": "Stora bokstäver"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Tröskel för låg lagernivå",
+ "info": "Välj 0 för att alltid visa i lager om tillgängligt."
+ },
+ "show_inventory_quantity": {
+ "label": "Visa inventering"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Media",
+ "info": "Mer information om [mediatyper.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Aktivera video-loopning"
+ },
+ "enable_sticky_info": {
+ "label": "Aktivera fast innehåll på desktop"
+ },
+ "hide_variants": {
+ "label": "Dölj andra varianters media efter att du valt en variant"
+ },
+ "gallery_layout": {
+ "label": "Desktoplayout",
+ "options__1": {
+ "label": "Staplade"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ },
+ "options__3": {
+ "label": "Miniatyrbilder"
+ },
+ "options__4": {
+ "label": "Miniatyrbildskarusell"
+ }
+ },
+ "media_size": {
+ "label": "Mediabredd för dator",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "info": "Media optimeras automatiskt för mobilen."
+ },
+ "mobile_thumbnails": {
+ "label": "Mobil layout",
+ "options__1": {
+ "label": "2 kolumner"
+ },
+ "options__2": {
+ "label": "Visa miniatyrbilder"
+ },
+ "options__3": {
+ "label": "Dölj miniatyrbilder"
+ }
+ },
+ "media_position": {
+ "label": "Datorns media-position",
+ "info": "Positionen optimeras automatiskt för mobilen.",
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Höger"
+ }
+ },
+ "image_zoom": {
+ "label": "Bildzoom",
+ "info": "Klicka och svep över för att öppna lightbox på mobilen.",
+ "options__1": {
+ "label": "Öppna lightbox"
+ },
+ "options__2": {
+ "label": "Klicka och svep över"
+ },
+ "options__3": {
+ "label": "Ingen zoom"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Begränsa media till skärmhöjd"
+ },
+ "media_fit": {
+ "label": "Mediaanpassning",
+ "options__1": {
+ "label": "Original"
+ },
+ "options__2": {
+ "label": "Fyll"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Sökresultat",
+ "settings": {
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Visa andra bild på hovring"
+ },
+ "show_vendor": {
+ "label": "Visa säljare"
+ },
+ "header__1": {
+ "content": "Produktkort"
+ },
+ "header__2": {
+ "content": "Bloggkort",
+ "info": "Bloggkortsstilar tillämpas även för sidkort i sökresultat. Uppdatera dina temainställningar för att ändra kortstilar."
+ },
+ "article_show_date": {
+ "label": "Visa datum"
+ },
+ "article_show_author": {
+ "label": "Visa författare"
+ },
+ "show_rating": {
+ "label": "Visa produktbetyg",
+ "info": "Lägg till en produktbedömningsapp för att visa ett betyg. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Multikolumn",
+ "settings": {
+ "title": {
+ "label": "Rubrik"
+ },
+ "image_width": {
+ "label": "Bildbredd",
+ "options__1": {
+ "label": "En tredjedels bredd av kolumn"
+ },
+ "options__2": {
+ "label": "Halva kolumnens bredd"
+ },
+ "options__3": {
+ "label": "Hela kolumnens bredd"
+ }
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ },
+ "options__4": {
+ "label": "Cirkel"
+ }
+ },
+ "column_alignment": {
+ "label": "Kolumnjustering",
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ }
+ },
+ "background_style": {
+ "label": "Sekundär bakgrund",
+ "options__1": {
+ "label": "Inga"
+ },
+ "options__2": {
+ "label": "Visa som kolumnbakgrund"
+ }
+ },
+ "button_label": {
+ "label": "Knappetikett"
+ },
+ "button_link": {
+ "label": "Knapplänk"
+ },
+ "swipe_on_mobile": {
+ "label": "Aktivera swipe på mobilen"
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "title": {
+ "label": "Rubrik"
+ },
+ "text": {
+ "label": "Beskrivning"
+ },
+ "link_label": {
+ "label": "Länketikett"
+ },
+ "link": {
+ "label": "Länk"
+ }
+ },
+ "name": "Kolumn"
+ }
+ },
+ "presets": {
+ "name": "Multikolumn"
+ }
+ },
+ "newsletter": {
+ "name": "E-postregistrering",
+ "settings": {
+ "full_width": {
+ "label": "Ge avsnittet full bredd"
+ },
+ "paragraph": {
+ "content": "Varje e-postprenumeration skapar ett kundkonto. [Mer information](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ }
+ },
+ "name": "Rubrik"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "Beskrivning"
+ }
+ },
+ "name": "Underrubrik"
+ },
+ "email_form": {
+ "name": "E-postformulär"
+ }
+ },
+ "presets": {
+ "name": "E-postregistrering"
+ }
+ },
+ "page": {
+ "name": "Sida",
+ "settings": {
+ "page": {
+ "label": "Sida"
+ }
+ },
+ "presets": {
+ "name": "Sida"
+ }
+ },
+ "rich-text": {
+ "name": "Rich text",
+ "settings": {
+ "full_width": {
+ "label": "Ge avsnittet full bredd"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Innehållsposition på skrivbord",
+ "info": "Positionen optimeras automatiskt för mobilen."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Innehållsjustering"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ }
+ },
+ "name": "Rubrik"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "Beskrivning"
+ }
+ },
+ "name": "Text"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "Första knappetikett",
+ "info": "Lämna etiketten tom eller dölj knappen."
+ },
+ "button_link_1": {
+ "label": "Första knapplänk"
+ },
+ "button_style_secondary_1": {
+ "label": "Använd stil för knappkontur"
+ },
+ "button_label_2": {
+ "label": "Andra knappetikett",
+ "info": "Lämna etiketten tom eller dölj knappen."
+ },
+ "button_link_2": {
+ "label": "Andra knapplänk"
+ },
+ "button_style_secondary_2": {
+ "label": "Använd stil för knappkontur"
+ }
+ },
+ "name": "Knappar"
+ },
+ "caption": {
+ "name": "Rubrik",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Underrubrik"
+ },
+ "options__2": {
+ "label": "Stora bokstäver"
+ }
+ },
+ "caption_size": {
+ "label": "Textstorlek",
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich text"
+ }
+ },
+ "apps": {
+ "name": "Appar",
+ "settings": {
+ "include_margins": {
+ "label": "Gör avsnittsmarginaler likadana som temat"
+ }
+ },
+ "presets": {
+ "name": "Appar"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ },
+ "cover_image": {
+ "label": "Omslagsbild"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Använd en YouTube- eller en Vimeo-URL"
+ },
+ "description": {
+ "label": "Alternativtext för video",
+ "info": "Beskriv videon för kunder som använder skärmläsare. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Lägg till bild-padding",
+ "info": "Välj bild-padding om du inte vill att din omslagsbild ska beskäras."
+ },
+ "full_width": {
+ "label": "Ge avsnittet full bredd"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Spela video i en slinga"
+ },
+ "header__1": {
+ "content": "Video på Shopify"
+ },
+ "header__2": {
+ "content": "Eller bädda in video från URL"
+ },
+ "header__3": {
+ "content": "Stil"
+ },
+ "paragraph": {
+ "content": "Visas när ingen video på Shopify har valts."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Utvald produkt",
+ "blocks": {
+ "text": {
+ "name": "Text",
+ "settings": {
+ "text": {
+ "label": "Text"
+ },
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Textning"
+ },
+ "options__3": {
+ "label": "Stora bokstäver"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Titel"
+ },
+ "price": {
+ "name": "Pris"
+ },
+ "quantity_selector": {
+ "name": "Kvantitetsväljare"
+ },
+ "variant_picker": {
+ "name": "Variantväljare",
+ "settings": {
+ "picker_type": {
+ "label": "Typ",
+ "options__1": {
+ "label": "Rullgardinsmeny"
+ },
+ "options__2": {
+ "label": "Kapslar"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Köpknappar",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Visa dynamiska kassaknappar",
+ "info": "Genom att använda de betalningsmetoder som finns tillgängliga i din butik kan kunder se det alternativ de föredrar, som PayPal eller Apple Pay. [Mer information](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Beskrivning"
+ },
+ "share": {
+ "name": "Dela",
+ "settings": {
+ "featured_image_info": {
+ "content": "Om du inkluderar en länk i inlägg på sociala medier kommer sidans utvalda bild att visas som förhandsgranskningsbild. [Mer information](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Ett butiksnamn och en beskrivning inkluderas med förhandsgranskningsbilden. [Mer information](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Text"
+ }
+ }
+ },
+ "rating": {
+ "name": "Produktbetyg",
+ "settings": {
+ "paragraph": {
+ "content": "Lägg till en produktbedömningsapp för att visa ett betyg. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "Lagerhållningsenhet",
+ "settings": {
+ "text_style": {
+ "label": "Textstil",
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "options__3": {
+ "label": "Stora bokstäver"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Produkt"
+ },
+ "secondary_background": {
+ "label": "Visa sekundär bakgrund"
+ },
+ "header": {
+ "content": "Media",
+ "info": "Läs mer om [mediatyper](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Aktivera videoslingor"
+ },
+ "hide_variants": {
+ "label": "Dölj media för varianter som inte har valts på datorn"
+ },
+ "media_position": {
+ "label": "Datorns media-position",
+ "info": "Positionen optimeras automatiskt för mobilen.",
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Höger"
+ }
+ }
+ },
+ "presets": {
+ "name": "Utvald produkt"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Banner för e-postregistrering",
+ "settings": {
+ "paragraph": {
+ "content": "Varje e-postprenumeration skapar ett kundkonto. [Mer information](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Bakgrundsbild"
+ },
+ "show_background_image": {
+ "label": "Visa bakgrundsbild"
+ },
+ "show_text_box": {
+ "label": "Visa ruta på skrivbord"
+ },
+ "image_overlay_opacity": {
+ "label": "Bildens opacitet för överlagring"
+ },
+ "show_text_below": {
+ "label": "Visa innehåll under bild på mobil",
+ "info": "Använd en bild med bildformat 16:9, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Banner-höjd",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "info": "Använd en bild med bildformat 16:9, för bästa resultat. [Mer information](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "Mitten till vänster"
+ },
+ "options__5": {
+ "label": "Mitten centrerat"
+ },
+ "options__6": {
+ "label": "Mitten till höger"
+ },
+ "options__7": {
+ "label": "Längst ner till vänster"
+ },
+ "options__8": {
+ "label": "Längst ner i mitten"
+ },
+ "options__9": {
+ "label": "Längst ner till höger"
+ },
+ "options__1": {
+ "label": "Längst upp till vänster"
+ },
+ "options__2": {
+ "label": "Längst upp i mitten"
+ },
+ "options__3": {
+ "label": "Längst upp till höger"
+ },
+ "label": "Innehållsposition på dator"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Justering av innehåll på skrivbord"
+ },
+ "header": {
+ "content": "Mobil layout"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Linjering av innehåll på mobil"
+ },
+ "color_scheme": {
+ "info": "Synlig när ruta visas."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Rubrik",
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Stycke",
+ "settings": {
+ "paragraph": {
+ "label": "Beskrivning"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "label": "Textstil"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-postformulär"
+ }
+ },
+ "presets": {
+ "name": "Banner för e-postregistrering"
+ }
+ },
+ "slideshow": {
+ "name": "Bildspel",
+ "settings": {
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Full bredd"
+ },
+ "options__2": {
+ "label": "Rutnät"
+ }
+ },
+ "slide_height": {
+ "label": "Bildhöjd",
+ "options__1": {
+ "label": "Anpassa efter första bilden"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "options__4": {
+ "label": "Stor"
+ }
+ },
+ "slider_visual": {
+ "label": "Pagineringsstil",
+ "options__1": {
+ "label": "Räknare"
+ },
+ "options__2": {
+ "label": "Prickar"
+ },
+ "options__3": {
+ "label": "Siffror"
+ }
+ },
+ "auto_rotate": {
+ "label": "Auto-rotera bilder"
+ },
+ "change_slides_speed": {
+ "label": "Byt bilder varje"
+ },
+ "mobile": {
+ "content": "Mobil layout"
+ },
+ "show_text_below": {
+ "label": "Visa innehåll under bilder på mobil"
+ },
+ "accessibility": {
+ "content": "Tillgänglighet",
+ "label": "Beskrivning bildspel",
+ "info": "Beskriv bildspelet för kunder som använder skärmläsare."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Bild",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "heading": {
+ "label": "Rubrik"
+ },
+ "subheading": {
+ "label": "Underrubrik"
+ },
+ "button_label": {
+ "label": "Knappetikett",
+ "info": "Lämna etiketten tom eller dölj knappen."
+ },
+ "link": {
+ "label": "Knapplänk"
+ },
+ "secondary_style": {
+ "label": "Använd stil för knappkontur"
+ },
+ "box_align": {
+ "label": "Innehållsposition på dator",
+ "options__1": {
+ "label": "Överst till vänster"
+ },
+ "options__2": {
+ "label": "Längst upp i mitten"
+ },
+ "options__3": {
+ "label": "Överst till höger"
+ },
+ "options__4": {
+ "label": "Mitten till vänster"
+ },
+ "options__5": {
+ "label": "Mitten centrerat"
+ },
+ "options__6": {
+ "label": "Mitten till höger"
+ },
+ "options__7": {
+ "label": "Nere till vänster"
+ },
+ "options__8": {
+ "label": "Längst ner i mitten"
+ },
+ "options__9": {
+ "label": "Nere till höger"
+ },
+ "info": "Positionen optimeras automatiskt för mobilen."
+ },
+ "show_text_box": {
+ "label": "Visa ruta på skrivbord"
+ },
+ "text_alignment": {
+ "label": "Justering av innehåll på skrivbord",
+ "option_1": {
+ "label": "Vänster"
+ },
+ "option_2": {
+ "label": "Centrera"
+ },
+ "option_3": {
+ "label": "Höger"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Bildens opacitet för överlagring"
+ },
+ "text_alignment_mobile": {
+ "label": "Linjering av innehåll på mobil",
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bildspel"
+ }
+ },
+ "collapsible_content": {
+ "name": "Innehåll som kan döljas",
+ "settings": {
+ "caption": {
+ "label": "Rubrik"
+ },
+ "heading": {
+ "label": "Rubrik"
+ },
+ "heading_alignment": {
+ "label": "Rubriklinjering",
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ }
+ },
+ "layout": {
+ "label": "Layout",
+ "options__1": {
+ "label": "Ingen behållare"
+ },
+ "options__2": {
+ "label": "Radhållare"
+ },
+ "options__3": {
+ "label": "Avsnittshållare"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Öppna den första raden som kan döljas"
+ },
+ "header": {
+ "content": "Bildlayout"
+ },
+ "image": {
+ "label": "Bild"
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Stor"
+ }
+ },
+ "desktop_layout": {
+ "label": "Layout för dator",
+ "options__1": {
+ "label": "Bild först"
+ },
+ "options__2": {
+ "label": "Andra bild"
+ },
+ "info": "Bild visas alltid först på mobil."
+ },
+ "container_color_scheme": {
+ "label": "Färgschema för container",
+ "info": "Synligt när layouten är inställd på rad- eller avsnittscontainer."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Rad som kan döljas",
+ "settings": {
+ "heading": {
+ "info": "Inkludera en rubrik som beskriver innehållet.",
+ "label": "Rubrik"
+ },
+ "row_content": {
+ "label": "Radinnehåll"
+ },
+ "page": {
+ "label": "Radinnehåll från sida"
+ },
+ "icon": {
+ "label": "Ikon",
+ "options__1": {
+ "label": "Inga"
+ },
+ "options__2": {
+ "label": "Äpple"
+ },
+ "options__3": {
+ "label": "Banan"
+ },
+ "options__4": {
+ "label": "Flaska"
+ },
+ "options__5": {
+ "label": "Låda"
+ },
+ "options__6": {
+ "label": "Morot"
+ },
+ "options__7": {
+ "label": "Chattbubbla"
+ },
+ "options__8": {
+ "label": "Bock"
+ },
+ "options__9": {
+ "label": "Urklipp"
+ },
+ "options__10": {
+ "label": "Mejeriprodukt"
+ },
+ "options__11": {
+ "label": "Fri från mejeriprodukter"
+ },
+ "options__12": {
+ "label": "Torkare"
+ },
+ "options__13": {
+ "label": "Öga"
+ },
+ "options__14": {
+ "label": "Eld"
+ },
+ "options__15": {
+ "label": "Glutenfri"
+ },
+ "options__16": {
+ "label": "Hjärta"
+ },
+ "options__17": {
+ "label": "Strykjärn"
+ },
+ "options__18": {
+ "label": "Blad"
+ },
+ "options__19": {
+ "label": "Läder"
+ },
+ "options__20": {
+ "label": "Blixt"
+ },
+ "options__21": {
+ "label": "Läppstift"
+ },
+ "options__22": {
+ "label": "Lås"
+ },
+ "options__23": {
+ "label": "Kartnål"
+ },
+ "options__24": {
+ "label": "Utan nötter"
+ },
+ "options__25": {
+ "label": "Byxor"
+ },
+ "options__26": {
+ "label": "Tassavtryck"
+ },
+ "options__27": {
+ "label": "Peppar"
+ },
+ "options__28": {
+ "label": "Parfym"
+ },
+ "options__29": {
+ "label": "Flygplan"
+ },
+ "options__30": {
+ "label": "Växt"
+ },
+ "options__31": {
+ "label": "Prislapp"
+ },
+ "options__32": {
+ "label": "Frågetecken"
+ },
+ "options__33": {
+ "label": "Återvinn"
+ },
+ "options__34": {
+ "label": "Gå tillbaka"
+ },
+ "options__35": {
+ "label": "Linjal"
+ },
+ "options__36": {
+ "label": "Serveringsfat"
+ },
+ "options__37": {
+ "label": "Skjorta"
+ },
+ "options__38": {
+ "label": "Sko"
+ },
+ "options__39": {
+ "label": "Siluett"
+ },
+ "options__40": {
+ "label": "Snöflinga"
+ },
+ "options__41": {
+ "label": "Stjärna"
+ },
+ "options__42": {
+ "label": "Stoppur"
+ },
+ "options__43": {
+ "label": "Lastbil"
+ },
+ "options__44": {
+ "label": "Tvätt"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Innehåll som kan döljas"
+ }
+ },
+ "main-account": {
+ "name": "Konto"
+ },
+ "main-activate-account": {
+ "name": "Kontoaktivering"
+ },
+ "main-addresses": {
+ "name": "Adresser"
+ },
+ "main-login": {
+ "name": "Inloggning"
+ },
+ "main-order": {
+ "name": "Order"
+ },
+ "main-register": {
+ "name": "Registrering"
+ },
+ "main-reset-password": {
+ "name": "Lösenordsåterställning"
+ },
+ "related-products": {
+ "name": "Relaterade produkter",
+ "settings": {
+ "heading": {
+ "label": "Rubrik"
+ },
+ "products_to_show": {
+ "label": "Maximalt antal produkter att visa"
+ },
+ "columns_desktop": {
+ "label": "Antalet kolumner på skrivbordet"
+ },
+ "paragraph__1": {
+ "content": "Dynamiska rekommendationer använder order- och produktinformation för att ändras och förbättras över tid. [Mer information](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Produktkort"
+ },
+ "image_ratio": {
+ "label": "Bildförhållande",
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Porträtt"
+ },
+ "options__3": {
+ "label": "Fyrkantig"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Visa andra bild på hovring"
+ },
+ "show_vendor": {
+ "label": "Visa säljare"
+ },
+ "show_rating": {
+ "label": "Visa produktbetyg",
+ "info": "Lägg till en produktbedömningsapp för att visa ett betyg. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ },
+ "columns_mobile": {
+ "label": "Antal kolumner på mobil",
+ "options__1": {
+ "label": "1 kolumn"
+ },
+ "options__2": {
+ "label": "2 kolumner"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Flera rader",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Anpassa till bild"
+ },
+ "options__2": {
+ "label": "Liten"
+ },
+ "options__3": {
+ "label": "Medel"
+ },
+ "options__4": {
+ "label": "Stor"
+ },
+ "label": "Bildhöjd"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Bildbredd för dator",
+ "info": "Bilden optimeras automatiskt för mobilen."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Liten"
+ },
+ "options__2": {
+ "label": "Medel"
+ },
+ "options__3": {
+ "label": "Stor"
+ },
+ "label": "Rubrikstorlek"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Brödtext"
+ },
+ "options__2": {
+ "label": "Underrubrik"
+ },
+ "label": "Textstil"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Tydlig knapp"
+ },
+ "options__2": {
+ "label": "Knappkontur"
+ },
+ "label": "Knappstil"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Justering av innehåll på skrivbord"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Högst upp"
+ },
+ "options__2": {
+ "label": "Mitten"
+ },
+ "options__3": {
+ "label": "Längst ner"
+ },
+ "label": "Innehållsposition på skrivbord",
+ "info": "Positionen optimeras automatiskt för mobilen."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alternera från vänster"
+ },
+ "options__2": {
+ "label": "Alternera från höger"
+ },
+ "options__3": {
+ "label": "Vänsterjusterad"
+ },
+ "options__4": {
+ "label": "Högerjusterad"
+ },
+ "label": "Placering av datorbild",
+ "info": "Placeringen optimeras automatiskt för mobilen."
+ },
+ "container_color_scheme": {
+ "label": "Färgschema för container"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Vänster"
+ },
+ "options__2": {
+ "label": "Centrera"
+ },
+ "options__3": {
+ "label": "Höger"
+ },
+ "label": "Linjering av innehåll på mobil"
+ },
+ "header_mobile": {
+ "content": "Mobil layout"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Rad",
+ "settings": {
+ "image": {
+ "label": "Bild"
+ },
+ "caption": {
+ "label": "Rubrik"
+ },
+ "heading": {
+ "label": "Rubrik"
+ },
+ "text": {
+ "label": "Text"
+ },
+ "button_label": {
+ "label": "Knappetikett"
+ },
+ "button_link": {
+ "label": "Knapplänk"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Flera rader"
+ }
+ },
+ "quick-order-list": {
+ "name": "Snabb orderlista",
+ "settings": {
+ "show_image": {
+ "label": "Visa bilder"
+ },
+ "show_sku": {
+ "label": "Visa lagerhållningsenheter"
+ }
+ },
+ "presets": {
+ "name": "Snabb orderlista"
+ }
+ }
+ }
+}
diff --git a/locales/th.json b/locales/th.json
new file mode 100644
index 0000000..64b09cd
--- /dev/null
+++ b/locales/th.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "เข้าสู่ร้านค้าโดยใช้รหัสผ่าน:",
+ "login_password_button": "เข้าโดยใช้รหัสผ่าน",
+ "login_form_password_label": "รหัสผ่าน",
+ "login_form_password_placeholder": "รหัสผ่านของคุณ",
+ "login_form_error": "รหัสผ่านผิดพลาด!",
+ "login_form_submit": "ป้อน",
+ "admin_link_html": "คุณเป็นเจ้าของร้านใช่ไหม เข้าสู่ระบบที่นี่ ",
+ "powered_by_shopify_html": "ร้านค้านี้จะได้รับการสนับสนุนจาก {{ shopify }}"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "แชร์ใน Facebook",
+ "share_on_twitter": "ทวีตใน Twitter",
+ "share_on_pinterest": "ปักหมุดบน Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "เลือกซื้อต่อ",
+ "pagination": {
+ "label": "การแบ่งหน้า",
+ "page": "หน้า {{ number }}",
+ "next": "หน้าถัดไป",
+ "previous": "หน้าก่อนหน้านี้"
+ },
+ "search": {
+ "search": "ค้นหา",
+ "reset": "ล้างคำที่ใช้ค้นหา"
+ },
+ "cart": {
+ "view": "ดูตะกร้าสินค้า ({{ count }})",
+ "item_added": "รายการที่เพิ่มในตะกร้าสินค้าของคุณ",
+ "view_empty_cart": "ดูตะกร้าสินค้า"
+ },
+ "share": {
+ "copy_to_clipboard": "คัดลอกลิงก์",
+ "share_url": "ลิงก์",
+ "success_message": "คัดลอกลิงก์ไปยังคลิปบอร์ดแล้ว",
+ "close": "ปิดแชร์"
+ },
+ "slider": {
+ "of": "จาก",
+ "next_slide": "ไปสไลด์ขวา",
+ "previous_slide": "ไปสไลด์ซ้าย",
+ "name": "แถบเลื่อน"
+ }
+ },
+ "newsletter": {
+ "label": "อีเมล",
+ "success": "ขอขอบคุณที่สมัครรับข้อมูล",
+ "button_label": "สมัครรับข้อมูล"
+ },
+ "accessibility": {
+ "skip_to_text": "ข้ามไปยังเนื้อหา",
+ "close": "ปิด",
+ "unit_price_separator": "ต่อ",
+ "vendor": "เวนเดอร์:",
+ "error": "ผิดพลาด",
+ "refresh_page": "การเลือกตัวเลือกจะส่งผลให้มีการรีเฟรชทั้งหน้า",
+ "link_messages": {
+ "new_window": "เปิดในหน้าต่างใหม่",
+ "external": "เปิดเว็บไซต์ภายนอก"
+ },
+ "loading": "กำลังโหลด...",
+ "skip_to_product_info": "ข้ามไปยังข้อมูลสินค้า",
+ "total_reviews": "รีวิวทั้งหมด",
+ "star_reviews_info": "{{ rating_value }} จาก {{ rating_max }} ดาว",
+ "collapsible_content_title": "เนื้อหาที่ย่อได้",
+ "complementary_products": "สินค้าเสริม"
+ },
+ "blogs": {
+ "article": {
+ "blog": "บล็อก",
+ "read_more_title": "อ่านเพิ่มเติม: {{ title }}",
+ "comments": {
+ "one": "{{ count }} ความคิดเห็น",
+ "other": "{{ count }} ความคิดเห็น"
+ },
+ "moderated": "โปรดทราบว่าความคิดเห็นจะต้องได้รับการอนุมัติก่อนที่จะได้รับการเผยแพร่",
+ "comment_form_title": "แสดงความคิดเห็น",
+ "name": "ชื่อ",
+ "email": "อีเมล",
+ "message": "ความคิดเห็น",
+ "post": "โพสต์ความคิดเห็น",
+ "back_to_blog": "กลับไปยังบล็อก",
+ "share": "แชร์บทความนี้",
+ "success": "โพสต์ความคิดเห็นของคุณเรียบร้อยแล้ว! ขอบคุณ!",
+ "success_moderated": "โพสต์ความคิดเห็นของคุณเรียบร้อยแล้ว เนื่องจากบล็อกของเราอยู่ในระหว่างการตรวจสอบ เราจะเผยแพร่ความคิดเห็นของคุณในอีกสักครู่"
+ }
+ },
+ "onboarding": {
+ "product_title": "ตัวอย่างชื่อสินค้า",
+ "collection_title": "ชื่อคอลเลกชันของคุณ"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "เพิ่มลงในตะกร้าสินค้า",
+ "description": "คำอธิบาย",
+ "on_sale": "ลดราคา",
+ "quantity": {
+ "label": "ปริมาณ",
+ "input_label": "ปริมาณสำหรับ {{ product }}",
+ "increase": "เพิ่มปริมาณสำหรับ {{ product }}",
+ "decrease": "ลดปริมาณสำหรับ {{ product }}",
+ "minimum_of": "จำนวนต่ำสุดของ {{ quantity }}",
+ "maximum_of": "จำนวนสูงสุดของ {{ quantity }}",
+ "multiples_of": "เพิ่มขึ้นได้ทีละ {{ quantity }}",
+ "in_cart_html": "จำนวน {{ quantity }} ในตะกร้าสินค้า",
+ "note": "ดูกฎเกี่ยวกับจำนวน"
+ },
+ "price": {
+ "from_price_html": "จาก {{ price }}",
+ "regular_price": "ราคาปกติ",
+ "sale_price": "ราคาโปรโมชัน",
+ "unit_price": "ราคาต่อหน่วย"
+ },
+ "share": "แชร์สินค้ารายการนี้",
+ "sold_out": "ขายหมดแล้ว",
+ "unavailable": "ไม่พร้อมใช้งาน",
+ "vendor": "เวนเดอร์",
+ "video_exit_message": "{{ title }} เปิดวิดีโอแบบเต็มหน้าจอในหน้าต่างเดียวกัน",
+ "xr_button": "ดูในพื้นที่ของคุณ",
+ "xr_button_label": "ดูในพื้นที่ของคุณ โหลดรายการในหน้าต่างความเป็นจริงเสริม",
+ "pickup_availability": {
+ "view_store_info": "ดูข้อมูลร้านค้า",
+ "check_other_stores": "ตรวจสอบความพร้อมที่ร้านค้าอื่นๆ",
+ "pick_up_available": "การรับสินค้าด้วยตนเองพร้อมให้บริการ",
+ "pick_up_available_at_html": "รับสินค้าด้วยตนเองได้ที่ {{ location_name }} ",
+ "pick_up_unavailable_at_html": "การรับสินค้าด้วยตนเองที่ {{ location_name }} ยังไม่พร้อมให้บริการในขณะนี้",
+ "unavailable": "ไม่สามารถโหลดความพร้อมในการรับสินค้าด้วยตนเองได้",
+ "refresh": "รีเฟรช"
+ },
+ "media": {
+ "open_media": "เปิดสื่อ {{ index }} ในโมดอล",
+ "play_model": "เล่นตัวแสดง 3 มิติ",
+ "play_video": "เล่นวิดีโอ",
+ "gallery_viewer": "เครื่องมือดูภาพของแกลเลอรี",
+ "load_image": "โหลดรูปภาพ {{ index }} ในมุมมองแกลเลอรี",
+ "load_model": "โหลดโมเดล 3 มิติ {{ index }} ในมุมมองแกลเลอรี",
+ "load_video": "เล่นวิดีโอ {{ index }} ในมุมมองแกลเลอรี",
+ "image_available": "รูปภาพ {{ index }} พร้อมใช้งานในมุมมองแกลเลอรี"
+ },
+ "view_full_details": "ดูรายละเอียดทั้งหมด",
+ "include_taxes": "รวมภาษี",
+ "shipping_policy_html": "ค่าจัดส่ง ที่คำนวณในขั้นตอนการชำระเงิน",
+ "choose_options": "เลือกตัวเลือก",
+ "choose_product_options": "เลือกตัวเลือกสำหรับ {{ product_name }}",
+ "value_unavailable": "{{ option_value }} ไม่พร้อมจำหน่าย",
+ "variant_sold_out_or_unavailable": "ตัวเลือกสินค้าขายหมดแล้วหรือไม่พร้อมจำหน่าย",
+ "inventory_in_stock": "มีในสต็อก",
+ "inventory_in_stock_show_count": "มี {{ quantity }} รายการในสต็อกสินค้า",
+ "inventory_low_stock": "สต็อกสินค้าเหลือน้อย",
+ "inventory_low_stock_show_count": "สต็อกสินค้าเหลือน้อย: เหลือ {{ quantity }} ชิ้น",
+ "inventory_out_of_stock": "หมดสต็อก",
+ "sku": "SKU",
+ "inventory_out_of_stock_continue_selling": "มีในสต็อก",
+ "volume_pricing": {
+ "title": "การกำหนดราคาตามปริมาณ",
+ "note": "การกำหนดราคาตามปริมาณพร้อมใช้งาน",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "ที่ {{ price }}/หน่วย",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "ตัวเลือกสินค้า"
+ },
+ "modal": {
+ "label": "แกลเลอรีสื่อ"
+ },
+ "facets": {
+ "apply": "นำไปใช้",
+ "clear": "ล้าง",
+ "clear_all": "ลบออกทั้งหมด",
+ "from": "จาก",
+ "filter_and_sort": "กรองและจัดเรียง",
+ "filter_by_label": "ตัวกรอง:",
+ "filter_button": "ตัวกรอง",
+ "filters_selected": {
+ "one": "เลือกแล้ว {{ count }} รายการ",
+ "other": "เลือกแล้ว {{ count }} รายการ"
+ },
+ "max_price": "ราคาสูงสุดคือ {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }} จากสินค้า {{ count }} รายการ",
+ "other": "{{ product_count }} จากสินค้า {{ count }} รายการ"
+ },
+ "product_count_simple": {
+ "one": "สินค้า {{ count }} รายการ",
+ "other": "สินค้า {{ count }} รายการ"
+ },
+ "reset": "รีเซ็ต",
+ "sort_button": "จัดเรียง",
+ "sort_by_label": "เรียงตาม:",
+ "to": "ไปยัง",
+ "clear_filter": "ลบตัวกรองออก",
+ "filter_selected_accessibility": "{{ type }} (เลือกตัวกรองแล้ว {{ count }} รายการ)",
+ "show_more": "แสดงมากขึ้น",
+ "show_less": "แสดงน้อยลง",
+ "filter_and_operator_subtitle": "ที่ตรงกันทั้งหมด"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "ไม่พบผลลัพธ์สำหรับ “{{ terms }}” ตรวจสอบการสะกดคำหรือลองค้นหาคำอื่น",
+ "results_with_count": {
+ "one": "ผลลัพธ์ {{ count }} รายการ",
+ "other": "ผลลัพธ์ {{ count }} รายการ"
+ },
+ "title": "ผลลัพธ์การค้นหา",
+ "page": "หน้า",
+ "products": "สินค้า",
+ "search_for": "ค้นหา “{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "พบผลลัพธ์ {{ count }} รายการสำหรับ “{{ terms }}”",
+ "other": "พบผลลัพธ์ {{ count }} รายการสำหรับ “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} หน้า",
+ "other": "{{ count }} หน้า"
+ },
+ "results_suggestions_with_count": {
+ "one": "คำแนะนำ {{ count }} รายการ",
+ "other": "{{ count }} คำแนะนำ"
+ },
+ "results_products_with_count": {
+ "one": "สินค้า {{ count }} รายการ",
+ "other": "สินค้า {{ count }} รายการ"
+ },
+ "suggestions": "คำแนะนำ",
+ "pages": "หน้า"
+ },
+ "cart": {
+ "cart": "ตะกร้าสินค้า"
+ },
+ "contact": {
+ "form": {
+ "name": "ชื่อ",
+ "email": "อีเมล",
+ "phone": "หมายเลขโทรศัพท์",
+ "comment": "ความคิดเห็น",
+ "send": "ส่ง",
+ "post_success": "ขอขอบคุณที่ติดต่อเรา เราจะติดต่อกลับไปหาคุณโดยเร็วที่สุด",
+ "error_heading": "โปรดแก้ไขข้อมูลดังต่อไปนี้:",
+ "title": "แบบฟอร์มการติดต่อ"
+ }
+ },
+ "404": {
+ "title": "ไม่พบหน้า",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "การประกาศ",
+ "menu": "เมนู",
+ "cart_count": {
+ "one": "{{ count }} รายการ",
+ "other": "{{ count }} รายการ"
+ }
+ },
+ "cart": {
+ "title": "ตะกร้าสินค้าของคุณ",
+ "caption": "รายการสินค้าในตะกร้า",
+ "remove_title": "ลบ {{ title }}",
+ "note": "คำแนะนำพิเศษสำหรับคำสั่งซื้อ",
+ "checkout": "ชำระเงิน",
+ "empty": "ตะกร้าสินค้าของคุณว่างอยู่",
+ "cart_error": "เกิดข้อผิดพลาดระหว่างการอัปเดตตะกร้าสินค้าของคุณ โปรดลองอีกครั้ง",
+ "cart_quantity_error_html": "คุณสามารถเพิ่มรายการนี้ {{ quantity }} รายการลงในตะกร้าสินค้าของคุณเท่านั้น",
+ "taxes_and_shipping_policy_at_checkout_html": "ระบบจะคำนวณภาษี ส่วนลด และค่าจัดส่ง ในขั้นตอนการชำระเงิน",
+ "taxes_included_but_shipping_at_checkout": "ภาษีที่ใส่และค่าจัดส่งและส่วนลดที่คำนวณไว้ในขั้นตอนการชำระเงิน",
+ "taxes_included_and_shipping_policy_html": "รวมภาษีแล้ว ระบบจะคำนวณค่าจัดส่ง และส่วนลดในขั้นตอนการชำระเงิน",
+ "taxes_and_shipping_at_checkout": "ระบบจะคำนวณภาษีและค่าจัดส่งในขั้นตอนการชำระเงิน",
+ "headings": {
+ "product": "สินค้า",
+ "price": "ราคา",
+ "total": "ยอดรวม",
+ "quantity": "ปริมาณ",
+ "image": "รูปภาพสินค้า"
+ },
+ "update": "อัปเดต",
+ "login": {
+ "title": "มีบัญชีผู้ใช้อยู่แล้วใช่หรือไม่",
+ "paragraph_html": "เข้าสู่ระบบ เพื่อชำระเงินให้รวดเร็วยิ่งขึ้น"
+ },
+ "estimated_total": "ยอดทั้งหมดโดยประมาณ",
+ "new_estimated_total": "ยอดรวมโดยประมาณใหม่"
+ },
+ "footer": {
+ "payment": "วิธีการชำระเงิน"
+ },
+ "featured_blog": {
+ "view_all": "ดูทั้งหมด",
+ "onboarding_title": "บล็อกโพสต์",
+ "onboarding_content": "ให้ข้อมูลสรุปเกี่ยวกับโพสต์บล็อกของคุณแก่ลูกค้าของคุณ"
+ },
+ "featured_collection": {
+ "view_all": "ดูทั้งหมด",
+ "view_all_label": "ดูสินค้าทั้งหมดในคอลเลกชัน {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "ดูทั้งหมด"
+ },
+ "collection_template": {
+ "title": "คอลเลกชัน",
+ "empty": "ไม่พบสินค้า",
+ "use_fewer_filters_html": "ใช้ตัวกรองให้น้อยลง หรือลบทั้งหมด "
+ },
+ "video": {
+ "load_video": "โหลดวิดีโอ: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "โหลดสไลด์",
+ "previous_slideshow": "สไลด์ก่อนหน้า",
+ "next_slideshow": "สไลด์ถัดไป",
+ "pause_slideshow": "หยุดสไลด์โชว์ชั่วคราว",
+ "play_slideshow": "เล่นสไลด์โชว์",
+ "carousel": "ภาพสไลด์",
+ "slide": "สไลด์"
+ },
+ "page": {
+ "title": "ชื่อหน้า"
+ },
+ "announcements": {
+ "previous_announcement": "การประกาศก่อนหน้า",
+ "next_announcement": "การประกาศถัดไป",
+ "carousel": "ภาพสไลด์",
+ "announcement": "การประกาศ",
+ "announcement_bar": "แถบประกาศ"
+ },
+ "quick_order_list": {
+ "product_total": "ยอดรวมสินค้า",
+ "view_cart": "ดูตะกร้าสินค้า",
+ "each": "{{ money }}/หน่วย",
+ "product": "สินค้า",
+ "variant": "ตัวเลือกสินค้า",
+ "variant_total": "ยอดรวมของตัวเลือกสินค้า",
+ "items_added": {
+ "one": "เพิ่มสินค้า {{ quantity }} รายการแล้ว",
+ "other": "เพิ่มสินค้า {{ quantity }} รายการแล้ว"
+ },
+ "items_removed": {
+ "one": "ลบสินค้า {{ quantity }} รายการออกแล้ว",
+ "other": "ลบสินค้า {{ quantity }} รายการออกแล้ว"
+ },
+ "product_variants": "ตัวเลือกสินค้า",
+ "total_items": "รายการสินค้าทั้งหมด",
+ "remove_all_items_confirmation": "ต้องการลบสินค้าทั้งหมด {{ quantity }} รายการออกจากตะกร้าสินค้าหรือไม่",
+ "remove_all": "ลบออกทั้งหมด",
+ "cancel": "ยกเลิก"
+ }
+ },
+ "localization": {
+ "country_label": "ประเทศ/ภูมิภาค",
+ "language_label": "ภาษา",
+ "update_language": "อัปเดตภาษา",
+ "update_country": "อัปเดตประเทศ/ภูมิภาค"
+ },
+ "customer": {
+ "account": {
+ "title": "บัญชีผู้ใช้",
+ "details": "รายละเอียดบัญชีผู้ใช้",
+ "view_addresses": "ดูที่อยู่",
+ "return": "กลับไปที่รายละเอียดบัญชีผู้ใช้"
+ },
+ "account_fallback": "บัญชี",
+ "activate_account": {
+ "title": "เปิดใช้งานบัญชีผู้ใช้",
+ "subtext": "สร้างรหัสผ่านเพื่อเปิดใช้งานบัญชีของคุณ",
+ "password": "รหัสผ่าน",
+ "password_confirm": "ยืนยันรหัสผ่าน",
+ "submit": "เปิดใช้งานบัญชีผู้ใช้",
+ "cancel": "ปฏิเสธคำเชิญ"
+ },
+ "addresses": {
+ "title": "ที่อยู่",
+ "default": "ค่าเริ่มต้น",
+ "add_new": "เพิ่มที่อยู่ใหม่",
+ "edit_address": "แก้ไขที่อยู่",
+ "first_name": "ชื่อ",
+ "last_name": "นามสกุล",
+ "company": "บริษัท",
+ "address1": "ที่อยู่ 1",
+ "address2": "ที่อยู่ 2",
+ "city": "เมือง",
+ "country": "ประเทศ/ภูมิภาค",
+ "province": "จังหวัด",
+ "zip": "รหัสไปรษณีย์/ZIP",
+ "phone": "โทรศัพท์",
+ "set_default": "ตั้งเป็นที่อยู่เริ่มต้น",
+ "add": "เพิ่มที่อยู่",
+ "update": "อัปเดตที่อยู่",
+ "cancel": "ยกเลิก",
+ "edit": "แก้ไข",
+ "delete": "ลบ",
+ "delete_confirm": "คุณแน่ใจหรือไม่ว่าต้องการลบที่อยู่นี้"
+ },
+ "log_in": "เข้าสู่ระบบ",
+ "log_out": "ออกจากระบบ",
+ "login_page": {
+ "cancel": "ยกเลิก",
+ "create_account": "สร้างบัญชีผู้ใช้",
+ "email": "อีเมล",
+ "forgot_password": "ลืมรหัสผ่านหรือไม่",
+ "guest_continue": "ทำต่อ",
+ "guest_title": "ทำต่อในนามผู้มาเยือน",
+ "password": "รหัสผ่าน",
+ "title": "การเข้าสู่ระบบ",
+ "sign_in": "ลงชื่อเข้าใช้",
+ "submit": "ส่ง"
+ },
+ "orders": {
+ "title": "ประวัติคำสั่งซื้อ",
+ "order_number": "คำสั่งซื้อ",
+ "order_number_link": "คำสั่งซื้อหมายเลข {{ number }}",
+ "date": "วันที่",
+ "payment_status": "สถานะการชำระเงิน",
+ "fulfillment_status": "สถานะการจัดการ",
+ "total": "ยอดรวม",
+ "none": "คุณยังไม่ได้ดำเนินการสั่งซื้อใดๆ เลย"
+ },
+ "recover_password": {
+ "title": "รีเซ็ตรหัสผ่านของคุณ",
+ "subtext": "เราจะส่งอีเมลสำหรับใช้รีเซ็ตรหัสผ่านให้แก่คุณ",
+ "success": "เราได้ส่งอีเมลพร้อมลิงก์สำหรับใช้อัปเดตรหัสผ่านให้คุณแล้ว"
+ },
+ "register": {
+ "title": "สร้างบัญชีผู้ใช้",
+ "first_name": "ชื่อ",
+ "last_name": "นามสกุล",
+ "email": "อีเมล",
+ "password": "รหัสผ่าน",
+ "submit": "สร้าง"
+ },
+ "reset_password": {
+ "title": "รีเซ็ตรหัสผ่านของบัญชีผู้ใช้",
+ "subtext": "ป้อนรหัสผ่านใหม่",
+ "password": "รหัสผ่าน",
+ "password_confirm": "ยืนยันรหัสผ่าน",
+ "submit": "รีเซ็ตรหัสผ่าน"
+ },
+ "order": {
+ "title": "คำสั่งซื้อ {{ name }}",
+ "date_html": "สั่งซื้อเมื่อ {{ date }}",
+ "cancelled_html": "ยกเลิกคำสั่งซื้อเมื่อ {{ date }}",
+ "cancelled_reason": "เหตุผล: {{ reason }}",
+ "billing_address": "ที่อยู่สำหรับเรียกเก็บเงิน",
+ "payment_status": "สถานะการชำระเงิน",
+ "shipping_address": "ที่อยู่ที่จัดส่ง",
+ "fulfillment_status": "สถานะการจัดการ",
+ "discount": "ส่วนลด",
+ "shipping": "การจัดส่ง",
+ "tax": "ภาษี",
+ "product": "สินค้า",
+ "sku": "SKU",
+ "price": "ราคา",
+ "quantity": "จำนวน",
+ "total": "ยอดรวม",
+ "fulfilled_at_html": "จัดการเมื่อ {{ date }}",
+ "track_shipment": "ติดตามการจัดส่ง",
+ "tracking_url": "ลิงก์ติดตาม",
+ "tracking_company": "ผู้ให้บริการขนส่ง",
+ "tracking_number": "หมายเลขติดตามพัสดุ",
+ "subtotal": "ยอดรวม",
+ "total_duties": "อากร",
+ "total_refunded": "คืนเงินแล้ว"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "นี่คือยอดคงเหลือในบัตรของขวัญมูลค่า {{ value }} สำหรับใช้ที่ {{ shop }}!",
+ "subtext": "บัตรของขวัญของคุณ",
+ "gift_card_code": "รหัสบัตรของขวัญ",
+ "shop_link": "เยี่ยมชมร้านค้าออนไลน์",
+ "add_to_apple_wallet": "เพิ่มลงใน Apple Wallet",
+ "qr_image_alt": "คิวอาร์โค้ด — สแกนเพื่อแลกใช้บัตรของขวัญ",
+ "copy_code": "คัดลอกรหัสบัตรของขวัญ",
+ "expired": "หมดอายุแล้ว",
+ "copy_code_success": "คัดลอกรหัสสำเร็จ",
+ "how_to_use_gift_card": "ใช้รหัสบัตรของขวัญทางออนไลน์หรือใช้คิวอาร์โค้ดในร้านค้า",
+ "expiration_date": "หมดอายุเมื่อ {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "ฉันต้องการส่งสิ่งนี้เป็นของขวัญ",
+ "email_label": "อีเมลผู้รับ",
+ "email": "อีเมล",
+ "name_label": "ชื่อผู้รับ (ระบุหรือไม่ก็ได้)",
+ "name": "ชื่อ",
+ "message_label": "ข้อความ (ระบุหรือไม่ก็ได้)",
+ "message": "ข้อความ",
+ "max_characters": "สูงสุด {{ max_chars }} อักขระ",
+ "email_label_optional_for_no_js_behavior": "อีเมลผู้รับ (ระบุหรือไม่ก็ได้)",
+ "send_on": "ปปปป-ดด-วว",
+ "send_on_label": "ส่งเมื่อ (ไม่บังคับ)",
+ "expanded": "ขยายแบบฟอร์มผู้รับบัตรของขวัญแล้ว",
+ "collapsed": "ย่อแบบฟอร์มผู้รับบัตรของขวัญแล้ว"
+ }
+ }
+}
diff --git a/locales/th.schema.json b/locales/th.schema.json
new file mode 100644
index 0000000..2bc0f83
--- /dev/null
+++ b/locales/th.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "สี",
+ "settings": {
+ "background": {
+ "label": "พื้นหลัง"
+ },
+ "background_gradient": {
+ "label": "พื้นหลังแบบไล่ระดับสี",
+ "info": "พื้นหลังแบบไล่ระดับสีจะแทนที่พื้นหลังเมื่อเป็นไปได้"
+ },
+ "text": {
+ "label": "ข้อความ"
+ },
+ "button_background": {
+ "label": "พื้นหลังปุ่มแบบทึบ"
+ },
+ "button_label": {
+ "label": "ป้ายกำกับปุ่มแบบทึบ"
+ },
+ "secondary_button_label": {
+ "label": "ปุ่มแบบเค้าโครง"
+ },
+ "shadow": {
+ "label": "เงา"
+ }
+ }
+ },
+ "typography": {
+ "name": "ตัวพิมพ์",
+ "settings": {
+ "type_header_font": {
+ "label": "แบบอักษร",
+ "info": "การเลือกแบบอักษรอื่นอาจส่งผลต่อความเร็วของร้านค้าได้ [ดูข้อมูลเพิ่มเติมเกี่ยวกับแบบอักษรของระบบ](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "หัวเรื่อง"
+ },
+ "header__2": {
+ "content": "เนื้อหา"
+ },
+ "type_body_font": {
+ "label": "แบบอักษร",
+ "info": "การเลือกแบบอักษรอื่นอาจส่งผลต่อความเร็วของร้านค้าได้ [ดูข้อมูลเพิ่มเติมเกี่ยวกับแบบอักษรของระบบ](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "ขนาดแบบอักษร"
+ },
+ "body_scale": {
+ "label": "ขนาดแบบอักษร"
+ }
+ }
+ },
+ "social-media": {
+ "name": "โซเชียลมีเดีย",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "http://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "บัญชีผู้ใช้โซเชียลมีเดีย"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "รูปแบบสกุลเงิน",
+ "settings": {
+ "content": "รหัสสกุลเงิน",
+ "paragraph": "ราคาในตะกร้าสินค้าและการชำระเงินจะแสดงรหัสสกุลเงินเสมอ ตัวอย่าง: $1.00 USD",
+ "currency_code_enabled": {
+ "label": "แสดงรหัสสกุลเงิน"
+ }
+ }
+ },
+ "layout": {
+ "name": "เลย์เอาต์",
+ "settings": {
+ "page_width": {
+ "label": "ความกว้างของหน้า"
+ },
+ "spacing_sections": {
+ "label": "ช่องว่างระหว่างส่วนเทมเพลต"
+ },
+ "header__grid": {
+ "content": "กริด"
+ },
+ "paragraph__grid": {
+ "content": "ส่งผลต่อพื้นที่ที่มีหลายคอลัมน์หรือหลายแถว"
+ },
+ "spacing_grid_horizontal": {
+ "label": "ช่องว่างแนวนอน"
+ },
+ "spacing_grid_vertical": {
+ "label": "ช่องว่างแนวตั้ง"
+ }
+ }
+ },
+ "search_input": {
+ "name": "พฤติกรรมการค้นหา",
+ "settings": {
+ "header": {
+ "content": "คำแนะนำการค้นหา"
+ },
+ "predictive_search_enabled": {
+ "label": "เปิดใช้งานคำแนะนำการค้นหา"
+ },
+ "predictive_search_show_vendor": {
+ "label": "แสดงเวนเดอร์สินค้า",
+ "info": "จะปรากฏให้เห็นเมื่อเปิดใช้คำแนะการค้นหา"
+ },
+ "predictive_search_show_price": {
+ "label": "แสดงราคาสินค้า",
+ "info": "จะปรากฏให้เห็นเมื่อเปิดใช้คำแนะการค้นหา"
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "ขอบ"
+ },
+ "header__shadow": {
+ "content": "เงา"
+ },
+ "blur": {
+ "label": "เบลอ"
+ },
+ "corner_radius": {
+ "label": "รัศมีมุม"
+ },
+ "horizontal_offset": {
+ "label": "ออฟเซตแนวนอน"
+ },
+ "vertical_offset": {
+ "label": "ออฟเซตแนวตั้ง"
+ },
+ "thickness": {
+ "label": "ความหนา"
+ },
+ "opacity": {
+ "label": "ความทึบ"
+ },
+ "image_padding": {
+ "label": "พื้นที่ว่างของรูปภาพ"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางข้อความ"
+ }
+ }
+ },
+ "cards": {
+ "name": "บัตรสินค้า",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "แบบมาตรฐาน"
+ },
+ "options__2": {
+ "label": "บัตร"
+ },
+ "label": "รูปแบบ"
+ }
+ }
+ },
+ "badges": {
+ "name": "เครื่องหมาย",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "ซ้ายล่าง"
+ },
+ "options__2": {
+ "label": "ขวาล่าง"
+ },
+ "options__3": {
+ "label": "ซ้ายบน"
+ },
+ "options__4": {
+ "label": "ขวาบน"
+ },
+ "label": "ตำแหน่งบนบัตร"
+ },
+ "sale_badge_color_scheme": {
+ "label": "รูปแบบสีของเครื่องหมายลดราคา"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "รูปแบบสีของเครื่องหมายสินค้าที่ขายหมด"
+ }
+ }
+ },
+ "buttons": {
+ "name": "ปุ่ม"
+ },
+ "variant_pills": {
+ "name": "ตัวเลือกสินค้าทรงเม็ดยา",
+ "paragraph": "แคปซูลตัวเลือกสินค้าเป็นวิธีหนึ่งในการแสดงตัวเลือกสินค้าของคุณ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "อินพุต"
+ },
+ "content_containers": {
+ "name": "ส่วนที่บรรจุเนื้อความ"
+ },
+ "popups": {
+ "name": "ดรอปดาวน์และป๊อปอัป",
+ "paragraph": "ส่งผลต่อพื้นที่อย่างเมนูดรอปดาวน์สำหรับการนำทาง โมดอลแบบป๊อปอัป และป๊อปอัปตะกร้าสินค้า"
+ },
+ "media": {
+ "name": "สื่อ"
+ },
+ "drawers": {
+ "name": "ลิ้นชัก"
+ },
+ "cart": {
+ "name": "ตะกร้าสินค้า",
+ "settings": {
+ "cart_type": {
+ "label": "ประเภทตะกร้าสินค้า",
+ "drawer": {
+ "label": "ลิ้นชัก"
+ },
+ "page": {
+ "label": "หน้า"
+ },
+ "notification": {
+ "label": "การแจ้งเตือนแบบป๊อปอัป"
+ }
+ },
+ "show_vendor": {
+ "label": "แสดงเวนเดอร์"
+ },
+ "show_cart_note": {
+ "label": "เปิดใช้หมายเหตุสำหรับตะกร้าสินค้า"
+ },
+ "cart_drawer": {
+ "header": "ตะกร้าสินค้าแบบเลื่อนด้านข้าง",
+ "collection": {
+ "label": "คอลเลกชัน",
+ "info": "ปรากฏขึ้นเมื่อตะกร้าสินค้าแบบเลื่อนด้านข้างว่างเปล่า"
+ }
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "บัตรคอลเลกชัน",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "มาตรฐาน"
+ },
+ "options__2": {
+ "label": "บัตร"
+ },
+ "label": "รูปแบบ"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "บัตรบล็อก",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "มาตรฐาน"
+ },
+ "options__2": {
+ "label": "บัตร"
+ },
+ "label": "รูปแบบ"
+ }
+ }
+ },
+ "logo": {
+ "name": "โลโก้",
+ "settings": {
+ "logo_image": {
+ "label": "โลโก้"
+ },
+ "logo_width": {
+ "label": "ความกว้างของโลโก้บนเดสก์ท็อป",
+ "info": "ระบบจะปรับความกว้างของโลโก้ให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "favicon": {
+ "label": "รูปภาพ Favicon",
+ "info": "จะถูกลดขนาดลงเป็น 32 x 32 พิกเซล"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "ข้อมูลแบรนด์",
+ "settings": {
+ "brand_headline": {
+ "label": "หัวเรื่อง"
+ },
+ "brand_description": {
+ "label": "คำอธิบาย"
+ },
+ "brand_image": {
+ "label": "รูปภาพ"
+ },
+ "brand_image_width": {
+ "label": "ความกว้างของรูปภาพ"
+ },
+ "paragraph": {
+ "content": "เพิ่มคำอธิบายแบรนด์ไปยังส่วนท้ายของหน้าร้านคุณ"
+ }
+ }
+ },
+ "animations": {
+ "name": "ภาพเคลื่อนไหว",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "แสดงส่วนเมื่อเลื่อนหน้าจอ"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "ไม่มี"
+ },
+ "options__2": {
+ "label": "การยกนูนในแนวตั้ง"
+ },
+ "label": "เอฟเฟ็กต์การวางเมาส์",
+ "info": "ส่งผลต่อการ์ดและปุ่ม",
+ "options__3": {
+ "label": "การยกนูน 3 มิติ"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "พื้นที่ว่างของส่วน",
+ "padding_top": "พื้นที่ว่างด้านบน",
+ "padding_bottom": "พื้นที่ว่างด้านล่าง"
+ },
+ "spacing": "การเว้นระยะห่าง",
+ "colors": {
+ "label": "รูปแบบสี",
+ "has_cards_info": "หากต้องการเปลี่ยนรูปแบบสีของบัตร ให้อัปเดตการตั้งค่าธีมของคุณ"
+ },
+ "heading_size": {
+ "label": "ขนาดของส่วนหัว",
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ },
+ "options__4": {
+ "label": "ขนาดใหญ่พิเศษ"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "ค่าเริ่มต้น"
+ },
+ "options__2": {
+ "label": "รูปโค้ง"
+ },
+ "options__3": {
+ "label": "หยดน้ำ"
+ },
+ "options__4": {
+ "label": "บั้งชี้ไปทางซ้าย"
+ },
+ "options__5": {
+ "label": "บั้งชี้ไปทางขวา"
+ },
+ "options__6": {
+ "label": "เพชร"
+ },
+ "options__7": {
+ "label": "สี่เหลี่ยมด้านขนาน"
+ },
+ "options__8": {
+ "label": "โค้งมน"
+ },
+ "label": "รูปทรงภาพ",
+ "info": "บัตรรูปแบบมาตรฐานจะไม่มีขอบเมื่อเปิดใช้รูปทรงภาพ"
+ },
+ "animation": {
+ "content": "ภาพเคลื่อนไหว",
+ "image_behavior": {
+ "options__1": {
+ "label": "ไม่มี"
+ },
+ "options__2": {
+ "label": "การเคลื่อนไหวแวดล้อม"
+ },
+ "label": "พฤติกรรมภาพ",
+ "options__3": {
+ "label": "ตำแหน่งพื้นหลังได้รับการแก้ไข"
+ },
+ "options__4": {
+ "label": "ซูมเข้าเมื่อเลื่อนเมาส์"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "แถบประกาศ",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "ข้อความ"
+ },
+ "text_alignment": {
+ "label": "การจัดวางข้อความ",
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ }
+ },
+ "link": {
+ "label": "ลิงก์"
+ }
+ },
+ "name": "การประกาศ"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "เปลี่ยนประกาศอัตโนมัติ"
+ },
+ "change_slides_speed": {
+ "label": "เปลี่ยนทุก"
+ },
+ "header__1": {
+ "content": "ไอคอนโซเชียลมีเดีย",
+ "info": "หากต้องการแสดงบัญชีผู้ใช้โซเชียลมีเดียของคุณ ให้ลิงก์บัญชีไว้ใน[การตั้งค่าธีม](/editor?context=theme&category=social%20media)"
+ },
+ "header__2": {
+ "content": "ประกาศ"
+ },
+ "show_social": {
+ "label": "แสดงไอคอนบนเดสก์ท็อป"
+ },
+ "header__3": {
+ "content": "ตัวเลือกประเทศ/ภูมิภาค",
+ "info": "หากต้องการเพิ่มประเทศ/ภูมิภาค ให้ไปที่ [การตั้งค่าตลาด](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "เปิดใช้ตัวเลือกประเทศ/ภูมิภาค"
+ },
+ "header__4": {
+ "content": "ตัวเลือกภาษา",
+ "info": "หากต้องการเพิ่มภาษา ให้ไปที่ [การตั้งค่าภาษา](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "เปิดใช้ตัวเลือกภาษา"
+ }
+ },
+ "presets": {
+ "name": "แถบประกาศ"
+ }
+ },
+ "collage": {
+ "name": "คอลลาจ",
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "desktop_layout": {
+ "label": "เลย์เอาต์ของเดสก์ท็อป",
+ "options__1": {
+ "label": "บล็อกใหญ่ทางซ้าย"
+ },
+ "options__2": {
+ "label": "บล็อกใหญ่ทางขวา"
+ }
+ },
+ "mobile_layout": {
+ "label": "เลย์เอาต์ของมือถือ",
+ "options__1": {
+ "label": "คอลลาจ"
+ },
+ "options__2": {
+ "label": "คอลัมน์"
+ }
+ },
+ "card_styles": {
+ "label": "รูปแบบของการ์ด",
+ "info": "คุณสามารถอัปเดตรูปแบบของการ์ดแสดงสินค้า คอลเลกชัน และบล็อกได้ในการตั้งค่าธีม",
+ "options__1": {
+ "label": "ใช้รูปแบบของการ์ดแบบแยกต่างหาก"
+ },
+ "options__2": {
+ "label": "ปรับรูปแบบทั้งหมดเป็นการ์ดแสดงสินค้า"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "รูปภาพ"
+ }
+ },
+ "name": "รูปภาพ"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "สินค้า"
+ },
+ "secondary_background": {
+ "label": "แสดงพื้นหลังรอง"
+ },
+ "second_image": {
+ "label": "แสดงรูปภาพที่สองเมื่อนำเมาส์ไปวาง"
+ }
+ },
+ "name": "สินค้า"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "คอลเลกชัน"
+ }
+ },
+ "name": "คอลเลกชัน"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "รูปภาพหน้าปก"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "วิดีโอจะเล่นในป๊อปอัปหากส่วนนี้มีบล็อกอื่นๆ",
+ "placeholder": "ใช้ URL ของ YouTube หรือ Vimeo"
+ },
+ "description": {
+ "label": "ข้อความแสดงแทนวิดีโอ",
+ "info": "อธิบายวิดีโอให้กับลูกค้าที่ใช้ตัวอ่านออกเสียงหน้าจอ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "วิดีโอ"
+ }
+ },
+ "presets": {
+ "name": "คอลลาจ"
+ }
+ },
+ "collection-list": {
+ "name": "รายการคอลเลกชัน",
+ "settings": {
+ "title": {
+ "label": "หัวเรื่อง"
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ },
+ "info": "เพิ่มรูปภาพโดยการแก้ไขคอลเลกชันของคุณ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "เปิดใช้งานการรูดบนมือถือ"
+ },
+ "show_view_all": {
+ "label": "เปิดใช้งานปุ่ม “ดูทั้งหมด” หากในรายการมีคอลเลกชันมากกว่าที่แสดงไว้"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "คอลเลกชัน"
+ }
+ },
+ "name": "คอลเลกชัน"
+ }
+ },
+ "presets": {
+ "name": "รายการคอลเลกชัน"
+ }
+ },
+ "contact-form": {
+ "name": "แบบฟอร์มการติดต่อ",
+ "presets": {
+ "name": "แบบฟอร์มการติดต่อ"
+ }
+ },
+ "custom-liquid": {
+ "name": "ปรับแต่ง Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "โค้ด Liquid",
+ "info": "เพิ่มส่วนย่อยของแอปหรือโค้ดอื่นๆ เพื่อสร้างการปรับแต่งขั้นสูง [ดูข้อมูลเพิ่มเติม](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "ปรับแต่ง Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "บล็อกโพสต์",
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "blog": {
+ "label": "บล็อก"
+ },
+ "post_limit": {
+ "label": "จำนวนบล็อกโพสต์ที่จะแสดง"
+ },
+ "show_view_all": {
+ "label": "เพิ่มใช้งานปุ่ม “ดูทั้งหมด” หากบล็อกมีบล็อกโพสต์มากกว่าที่แสดงไว้"
+ },
+ "show_image": {
+ "label": "แสดงรูปภาพที่แสดง",
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 3:2 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "แสดงวันที่"
+ },
+ "show_author": {
+ "label": "แสดงผู้เขียน"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ }
+ },
+ "presets": {
+ "name": "บล็อกโพสต์"
+ }
+ },
+ "featured-collection": {
+ "name": "คอลเลกชันเด่น",
+ "settings": {
+ "title": {
+ "label": "หัวเรื่อง"
+ },
+ "collection": {
+ "label": "คอลเลกชัน"
+ },
+ "products_to_show": {
+ "label": "จำนวนสินค้าสูงสุดที่จะแสดง"
+ },
+ "show_view_all": {
+ "label": "เปิดใช้งาน “ดูทั้งหมด” หากคอลเลกชันมีสินค้ามากกว่าที่แสดงไว้"
+ },
+ "header": {
+ "content": "บัตรสินค้า"
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ }
+ },
+ "show_secondary_image": {
+ "label": "แสดงรูปภาพที่สองเมื่อนำเมาส์ไปวาง"
+ },
+ "show_vendor": {
+ "label": "แสดงเวนเดอร์"
+ },
+ "show_rating": {
+ "label": "แสดงคะแนนของสินค้า",
+ "info": "หากต้องการแสดงคะแนน ให้เพิ่มแอปการให้คะแนนสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "เปิดใช้งานปุ่มซื้อด่วน",
+ "info": "ปรับให้มีประสิทธิภาพสูงสุดด้วยประเภทตะกร้าสินค้าแบบป๊อปอัปหรือแบบลิ้นชัก"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ },
+ "description": {
+ "label": "คำอธิบาย"
+ },
+ "show_description": {
+ "label": "แสดงคำอธิบายคอลเลกชันจากส่วน admin"
+ },
+ "description_style": {
+ "label": "รูปแบบคำอธิบาย",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "คำบรรยาย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "ลิงก์"
+ },
+ "options__2": {
+ "label": "ปุ่มแบบเค้าโครง"
+ },
+ "options__3": {
+ "label": "ปุ่มทึบ"
+ },
+ "label": "รูปแบบ “ดูทั้งหมด”"
+ },
+ "enable_desktop_slider": {
+ "label": "เปิดใช้ภาพสไลด์บนเดสก์ท็อป"
+ },
+ "full_width": {
+ "label": "ทำให้สินค้าเต็มความกว้าง"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "เปิดใช้งานการรูดบนมือถือ"
+ }
+ },
+ "presets": {
+ "name": "คอลเลกชันเด่น"
+ }
+ },
+ "footer": {
+ "name": "ส่วนท้าย",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "menu": {
+ "label": "เมนู",
+ "info": "แสดงเฉพาะรายการเมนูระดับสูง"
+ }
+ },
+ "name": "เมนู"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "subtext": {
+ "label": "ข้อความรอง"
+ }
+ },
+ "name": "ข้อความ"
+ },
+ "brand_information": {
+ "name": "ข้อมูลแบรนด์",
+ "settings": {
+ "paragraph": {
+ "content": "บล็อกนี้จะแสดงข้อมูลแบรนด์ของคุณ [แก้ไขข้อมูลแบรนด์](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "ไอคอนโซเชียลมีเดีย"
+ },
+ "show_social": {
+ "label": "แสดงไอคอนโซเชียลมีเดีย",
+ "info": "หากต้องการแสดงบัญชีผู้ใช้โซเชียลมีเดียของคุณ ให้ลิงก์บัญชีไว้ใน [การตั้งค่าธีม](/editor?context=theme&category=social%20media) ของคุณ"
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "แสดงการลงทะเบียนอีเมล"
+ },
+ "newsletter_heading": {
+ "label": "หัวเรื่อง"
+ },
+ "header__1": {
+ "info": "เพิ่มผู้สมัครรับข้อมูลไปยังรายการลูกค้า “ยอมรับการทำการตลาด” ของคุณโดยอัตโนมัติแล้ว [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "การลงทะเบียนอีเมล"
+ },
+ "header__2": {
+ "content": "ไอคอนโซเชียลมีเดีย",
+ "info": "หากต้องการแสดงบัญชีผู้ใช้โซเชียลมีเดียของคุณ ให้ลิงก์บัญชีไว้ใน [การตั้งค่าธีม](/editor?context=theme&category=social%20media) ของคุณ"
+ },
+ "show_social": {
+ "label": "แสดงไอคอนโซเชียลมีเดีย"
+ },
+ "header__3": {
+ "content": "ตัวเลือกประเทศ/ภูมิภาค"
+ },
+ "header__4": {
+ "info": "หากต้องการเพิ่มประเทศ/ภูมิภาค ให้ไปที่ [การตั้งค่าตลาด](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "เปิดใช้งานตัวเลือกประเทศ/ภูมิภาค"
+ },
+ "header__5": {
+ "content": "ตัวเลือกภาษา"
+ },
+ "header__6": {
+ "info": "หากต้องการเพิ่มภาษา ให้ไปที่ [การตั้งค่าภาษา](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "เปิดใช้งานตัวเลือกภาษา"
+ },
+ "header__7": {
+ "content": "วิธีการชำระเงิน"
+ },
+ "payment_enable": {
+ "label": "แสดงไอคอนการชำระเงิน"
+ },
+ "margin_top": {
+ "label": "ย่อหน้าบน"
+ },
+ "header__8": {
+ "content": "ลิงก์นโยบาย",
+ "info": "หากต้องการเพิ่มนโยบายร้านค้า ให้ไปที่การตั้งค่านโยบาย](/admin/settings/legal)"
+ },
+ "show_policy": {
+ "label": "แสดงลิงก์นโยบาย"
+ },
+ "header__9": {
+ "content": "ติดตามบน Shop",
+ "info": "คุณต้องเปิดใช้งาน Shop Pay เพื่อให้ลูกค้าสามารถติดตามร้านค้าของคุณในแอป Shop ได้จากหน้าร้าน [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "เปิดใช้งานการติดตามบน Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "ส่วนหัว",
+ "settings": {
+ "logo_position": {
+ "label": "ตำแหน่งโลโก้บนเดสก์ท็อป",
+ "options__1": {
+ "label": "ซ้ายกลาง"
+ },
+ "options__2": {
+ "label": "ซ้ายบน"
+ },
+ "options__3": {
+ "label": "กึ่งกลางด้านบน"
+ },
+ "options__4": {
+ "label": "กึ่งกลาง"
+ }
+ },
+ "menu": {
+ "label": "เมนู"
+ },
+ "show_line_separator": {
+ "label": "แสดงเส้นของตัวแบ่ง"
+ },
+ "margin_bottom": {
+ "label": "ย่อหน้าล่าง"
+ },
+ "menu_type_desktop": {
+ "label": "ประเภทเมนูสำหรับเดสก์ท็อป",
+ "info": "ระบบจะปรับประเภทเมนูให้เหมาะสมกับมือถือโดยอัตโนมัติ",
+ "options__1": {
+ "label": "ดรอปดาวน์"
+ },
+ "options__2": {
+ "label": "เมกะเมนู"
+ },
+ "options__3": {
+ "label": "แถบตัวเลือกแบบซ่อนได้"
+ }
+ },
+ "mobile_layout": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "mobile_logo_position": {
+ "label": "ตำแหน่งโลโก้บนมือถือ",
+ "options__1": {
+ "label": "กึ่งกลาง"
+ },
+ "options__2": {
+ "label": "ซ้าย"
+ }
+ },
+ "logo_help": {
+ "content": "แก้ไขโลโก้ของคุณใน [การตั้งค่าธีม ](/editor?context=theme&category=logo)"
+ },
+ "sticky_header_type": {
+ "label": "ส่วนหัวแบบยึดตำแหน่ง",
+ "options__1": {
+ "label": "ไม่มี"
+ },
+ "options__2": {
+ "label": "เมื่อเลื่อนขึ้น"
+ },
+ "options__3": {
+ "label": "เสมอ"
+ },
+ "options__4": {
+ "label": "เสมอ, ลดขนาดโลโก้"
+ }
+ },
+ "header__3": {
+ "content": "ตัวเลือกประเทศ/ภูมิภาค"
+ },
+ "header__4": {
+ "info": "หากต้องการเพิ่มประเทศ/ภูมิภาค ให้ไปที่ [การตั้งค่าตลาด](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "เปิดใช้งานตัวเลือกประเทศ/ภูมิภาค"
+ },
+ "header__5": {
+ "content": "ตัวเลือกภาษา"
+ },
+ "header__6": {
+ "info": "หากต้องการเพิ่มภาษา ให้ไปที่ [การตั้งค่าภาษา](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "เปิดใช้งานตัวเลือกภาษา"
+ },
+ "header__1": {
+ "content": "สี"
+ },
+ "menu_color_scheme": {
+ "label": "รูปแบบสีเมนู"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "แบนเนอร์รูปภาพ",
+ "settings": {
+ "image": {
+ "label": "รูปภาพแรก"
+ },
+ "image_2": {
+ "label": "รูปภาพที่สอง"
+ },
+ "stack_images_on_mobile": {
+ "label": "การรวมภาพบนมือถือ"
+ },
+ "show_text_box": {
+ "label": "แสดงคอนเทนเนอร์บนเดสก์ท็อป"
+ },
+ "image_overlay_opacity": {
+ "label": "ความทึบของการวางซ้อนรูปภาพ"
+ },
+ "show_text_below": {
+ "label": "แสดงคอนเทนเนอร์บนมือถือ"
+ },
+ "image_height": {
+ "label": "ความสูงของแบนเนอร์",
+ "options__1": {
+ "label": "ปรับให้เข้ากับรูปภาพแรก"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 3:2 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "ใหญ่"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "ซ้ายบน"
+ },
+ "options__2": {
+ "label": "กึ่งกลางด้านบน"
+ },
+ "options__3": {
+ "label": "ขวาบน"
+ },
+ "options__4": {
+ "label": "ตรงกลางด้านซ้าย"
+ },
+ "options__5": {
+ "label": "กึ่งกลางตรงกลาง"
+ },
+ "options__6": {
+ "label": "ตรงกลางด้านขวา"
+ },
+ "options__7": {
+ "label": "ซ้ายล่าง"
+ },
+ "options__8": {
+ "label": "กึ่งกลางด้านล่าง"
+ },
+ "options__9": {
+ "label": "ขวาล่าง"
+ },
+ "label": "ตำแหน่งเนื้อหาบนเดสก์ท็อป"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนเดสก์ท็อป"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนมือถือ"
+ },
+ "mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ }
+ },
+ "name": "หัวเรื่อง"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "คำอธิบาย"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "คำบรรยาย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ },
+ "label": "รูปแบบข้อความ"
+ }
+ },
+ "name": "ข้อความ"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "ป้ายกำกับปุ่มแรก",
+ "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม"
+ },
+ "button_link_1": {
+ "label": "ลิงก์ปุ่มแรก"
+ },
+ "button_style_secondary_1": {
+ "label": "ใช้รูปแบบปุ่มแบบเค้าโครง"
+ },
+ "button_label_2": {
+ "label": "ป้ายกำกับปุ่มที่สอง",
+ "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม"
+ },
+ "button_link_2": {
+ "label": "ลิงก์ปุ่มที่สอง"
+ },
+ "button_style_secondary_2": {
+ "label": "ใช้รูปแบบปุ่มแบบเค้าโครง"
+ }
+ },
+ "name": "ปุ่ม"
+ }
+ },
+ "presets": {
+ "name": "แบนเนอร์รูปภาพ"
+ }
+ },
+ "image-with-text": {
+ "name": "รูปภาพพร้อมข้อความ",
+ "settings": {
+ "image": {
+ "label": "รูปภาพ"
+ },
+ "height": {
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "label": "ความสูงของรูปภาพ",
+ "options__4": {
+ "label": "ใหญ่"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "รูปภาพก่อน"
+ },
+ "options__2": {
+ "label": "รูปภาพไว้ลำดับที่สอง"
+ },
+ "label": "การวางตำแหน่งรูปภาพบนเดสก์ท็อป",
+ "info": "รูปภาพก่อนเป็นเลย์เอาต์มือถือแบบตั้งต้น"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ },
+ "label": "ความกว้างของรูปภาพบนเดสก์ท็อป",
+ "info": "ระบบจะปรับรูปภาพให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนเดสก์ท็อป",
+ "options__2": {
+ "label": "กึ่งกลาง"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "บน"
+ },
+ "options__2": {
+ "label": "ตรงกลาง"
+ },
+ "options__3": {
+ "label": "ล่าง"
+ },
+ "label": "ตำแหน่งเนื้อหาบนเดสก์ท็อป"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "ไม่มีการทับซ้อน"
+ },
+ "options__2": {
+ "label": "ทับซ้อน"
+ },
+ "label": "เลย์เอาต์เนื้อหา"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนมือถือ",
+ "options__2": {
+ "label": "กึ่งกลาง"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ }
+ },
+ "name": "หัวเรื่อง"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "เนื้อหา"
+ },
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "คำบรรยาย"
+ }
+ }
+ },
+ "name": "ข้อความ"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "ป้ายกำกับปุ่ม",
+ "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม"
+ },
+ "button_link": {
+ "label": "ลิงก์ปุ่ม"
+ },
+ "outline_button": {
+ "label": "ใช้รูปแบบปุ่มแบบเค้าโครง"
+ }
+ },
+ "name": "ปุ่ม"
+ },
+ "caption": {
+ "name": "คำบรรยาย",
+ "settings": {
+ "text": {
+ "label": "ข้อความ"
+ },
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "คำบรรยาย"
+ },
+ "options__2": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ },
+ "caption_size": {
+ "label": "ขนาดตัวอักษร",
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "รูปภาพพร้อมข้อความ"
+ }
+ },
+ "main-article": {
+ "name": "บล็อกโพสต์",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "ความสูงของรูปภาพที่แสดง",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 16:9 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "ใหญ่"
+ }
+ }
+ },
+ "name": "รูปภาพที่แสดง"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "แสดงวันที่"
+ },
+ "blog_show_author": {
+ "label": "แสดงผู้เขียน"
+ }
+ },
+ "name": "ชื่อ"
+ },
+ "content": {
+ "name": "เนื้อหา"
+ },
+ "share": {
+ "name": "แชร์",
+ "settings": {
+ "featured_image_info": {
+ "content": "หากคุณใส่ลิงก์ในโพสต์บนโซเชียลมีเดีย รูปภาพที่แสดงของหน้านั้นจะแสดงเป็นรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "ชื่อร้านค้าและคำอธิบายจะรวมอยู่ในรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "ข้อความ"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "บล็อกโพสต์",
+ "settings": {
+ "header": {
+ "content": "บัตรบล็อกโพสต์"
+ },
+ "show_image": {
+ "label": "แสดงรูปภาพที่แสดง"
+ },
+ "paragraph": {
+ "content": "เปลี่ยนแปลงเนื้อหาบางส่วนโดยการแก้ไขบล็อกโพสต์ของคุณ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "แสดงวันที่"
+ },
+ "show_author": {
+ "label": "แสดงผู้เขียน"
+ },
+ "layout": {
+ "label": "เลย์เอาต์ของเดสก์ท็อป",
+ "options__1": {
+ "label": "กริด"
+ },
+ "options__2": {
+ "label": "คอลลาจ"
+ },
+ "info": "โพสต์จะทับซ้อนกันบนมือถือ"
+ },
+ "image_height": {
+ "label": "ความสูงของรูปภาพที่แสดง",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "options__4": {
+ "label": "ใหญ่"
+ },
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 3:2 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "ยอดรวม",
+ "blocks": {
+ "subtotal": {
+ "name": "ราคารวมย่อย"
+ },
+ "buttons": {
+ "name": "ปุ่มชำระเงิน"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "รายการ"
+ },
+ "main-collection-banner": {
+ "name": "แบนเนอร์คอลเลกชัน",
+ "settings": {
+ "paragraph": {
+ "content": "เพิ่มคำอธิบายหรือรูปภาพโดยแก้ไขคอลเลกชันของคุณ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "แสดงคำอธิบายคอลเลกชัน"
+ },
+ "show_collection_image": {
+ "label": "แสดงรูปภาพคอลเลกชัน",
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 16:9 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "กริดสินค้า",
+ "settings": {
+ "products_per_page": {
+ "label": "สินค้าต่อหน้า"
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ }
+ },
+ "show_secondary_image": {
+ "label": "แสดงรูปภาพที่สองเมื่อนำเมาส์ไปวาง"
+ },
+ "show_vendor": {
+ "label": "แสดงเวนเดอร์"
+ },
+ "header__1": {
+ "content": "การกรองและการจัดเรียง"
+ },
+ "enable_tags": {
+ "label": "เปิดใช้งานการกรอง",
+ "info": "ปรับแต่งตัวกรองในร้านค้าของคุณด้วยแอป Search & Discovery [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "เปิดใช้การกรอง",
+ "info": "ปรับแต่งตัวกรองในร้านค้าของคุณด้วยแอป Search & Discovery [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "เปิดใช้การจัดเรียง"
+ },
+ "header__3": {
+ "content": "บัตรสินค้า"
+ },
+ "show_rating": {
+ "label": "แสดงคะแนนของสินค้า",
+ "info": "หากต้องการแสดงคะแนน ให้เพิ่มแอปการให้คะแนนสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "เปิดใช้งานปุ่มซื้อด่วน",
+ "info": "ปรับให้มีประสิทธิภาพสูงสุดด้วยประเภทตะกร้าสินค้าแบบป๊อปอัปหรือแบบลิ้นชัก"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ },
+ "filter_type": {
+ "label": "เลย์เอาต์ตัวกรองสำหรับเดสก์ท็อป",
+ "options__1": {
+ "label": "แนวนอน"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "แถบตัวเลือกแบบซ่อนได้"
+ },
+ "info": "แถบตัวเลือกแบบซ่อนได้เป็นเลย์เอาต์เริ่มต้นสำหรับมือถือ"
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "หน้ารายการคอลเลกชัน",
+ "settings": {
+ "title": {
+ "label": "หัวเรื่อง"
+ },
+ "sort": {
+ "label": "จัดเรียงคอลเลกชันตาม:",
+ "options__1": {
+ "label": "เรียงตามตัวอักษร A-Z"
+ },
+ "options__2": {
+ "label": "เรียงตามตัวอักษร Z-A"
+ },
+ "options__3": {
+ "label": "วันที่ จากใหม่ไปเก่า"
+ },
+ "options__4": {
+ "label": "วันที่ จากเก่าไปใหม่"
+ },
+ "options__5": {
+ "label": "จำนวนสินค้า จากสูงไปต่ำ"
+ },
+ "options__6": {
+ "label": "รูปแบบรูปภาพ จากต่ำไปสูง"
+ }
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ },
+ "info": "เพิ่มรูปภาพโดยการแก้ไขคอลเลกชันของคุณ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "หน้า"
+ },
+ "main-password-footer": {
+ "name": "ส่วนท้ายของรหัสผ่าน"
+ },
+ "main-password-header": {
+ "name": "ส่วนหัวของรหัสผ่าน",
+ "settings": {
+ "logo_header": {
+ "content": "โลโก้"
+ },
+ "logo_help": {
+ "content": "แก้ไขโลโก้ของคุณในการตั้งค่าธีม"
+ }
+ }
+ },
+ "main-product": {
+ "name": "ข้อมูลสินค้า",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "ข้อความ"
+ },
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "คำบรรยาย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ }
+ },
+ "name": "ข้อความ"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "ประเภท",
+ "options__1": {
+ "label": "ดรอปดาวน์"
+ },
+ "options__2": {
+ "label": "ทรงเม็ดยา"
+ }
+ }
+ },
+ "name": "รายการตัวเลือกสินค้า"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "แสดงปุ่มชำระเงินแบบไดนามิก",
+ "info": "วิธีการชำระเงินที่พร้อมใช้งานบนร้านค้าของคุณ จะช่วยให้ลูกค้าเห็นตัวเลือกที่พวกเขาต้องการ เช่น PayPal หรือ Apple Pay [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "แสดงแบบฟอร์มข้อมูลผู้รับสำหรับบัตรของขวัญ",
+ "info": "อนุญาตให้ผู้ซื้อส่งบัตรของขวัญพร้อมข้อความของตนเองในวันที่กำหนดเวลาไว้ได้ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "ปุ่มซื้อ"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "หากคุณใส่ลิงก์ในโพสต์บนโซเชียลมีเดีย รูปภาพที่แสดงของหน้านั้นจะแสดงเป็นรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "ชื่อร้านและคำอธิบายจะรวมอยู่ในรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "ข้อความ"
+ }
+ },
+ "name": "แชร์"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "เพิ่มหัวเรื่องที่ช่วยอธิบายเนื้อหา",
+ "label": "หัวเรื่อง"
+ },
+ "content": {
+ "label": "เนื้อหาในแถว"
+ },
+ "page": {
+ "label": "เนื้อหาในแถวจากหน้า"
+ },
+ "icon": {
+ "label": "ไอคอน",
+ "options__1": {
+ "label": "ไม่มี"
+ },
+ "options__2": {
+ "label": "แอปเปิ้ล"
+ },
+ "options__3": {
+ "label": "กล้วย"
+ },
+ "options__4": {
+ "label": "ขวด"
+ },
+ "options__5": {
+ "label": "กล่อง"
+ },
+ "options__6": {
+ "label": "แครอท"
+ },
+ "options__7": {
+ "label": "แชทบับเบิล"
+ },
+ "options__8": {
+ "label": "เครื่องหมายถูก"
+ },
+ "options__9": {
+ "label": "คลิปบอร์ด"
+ },
+ "options__10": {
+ "label": "ผลิตภัณฑ์นม"
+ },
+ "options__11": {
+ "label": "ปราศจากผลิตภัณฑ์นม"
+ },
+ "options__12": {
+ "label": "เครื่องเป่า"
+ },
+ "options__13": {
+ "label": "ดวงตา"
+ },
+ "options__14": {
+ "label": "ไฟ"
+ },
+ "options__15": {
+ "label": "ปราศจากกลูเตน"
+ },
+ "options__16": {
+ "label": "หัวใจ"
+ },
+ "options__17": {
+ "label": "เหล็ก"
+ },
+ "options__18": {
+ "label": "ใบไม้"
+ },
+ "options__19": {
+ "label": "หนัง"
+ },
+ "options__20": {
+ "label": "สายฟ้า"
+ },
+ "options__21": {
+ "label": "ลิปสติก"
+ },
+ "options__22": {
+ "label": "ล็อก"
+ },
+ "options__23": {
+ "label": "หมุดแผนที่"
+ },
+ "options__24": {
+ "label": "ปราศจากถั่ว"
+ },
+ "options__25": {
+ "label": "กางเกง"
+ },
+ "options__26": {
+ "label": "รอยเท้าสัตว์"
+ },
+ "options__27": {
+ "label": "พริกไทย"
+ },
+ "options__28": {
+ "label": "น้ำหอม"
+ },
+ "options__29": {
+ "label": "เครื่องบิน"
+ },
+ "options__30": {
+ "label": "ต้นไม้"
+ },
+ "options__31": {
+ "label": "ป้ายราคา"
+ },
+ "options__32": {
+ "label": "เครื่องหมายคำถาม"
+ },
+ "options__33": {
+ "label": "รีไซเคิล"
+ },
+ "options__34": {
+ "label": "ย้อนกลับ"
+ },
+ "options__35": {
+ "label": "ไม้บรรทัด"
+ },
+ "options__36": {
+ "label": "จานเสิร์ฟ"
+ },
+ "options__37": {
+ "label": "เสื้อเชิ้ต"
+ },
+ "options__38": {
+ "label": "รองเท้า"
+ },
+ "options__39": {
+ "label": "ภาพเงา"
+ },
+ "options__40": {
+ "label": "เกล็ดหิมะ"
+ },
+ "options__41": {
+ "label": "ดาว"
+ },
+ "options__42": {
+ "label": "นาฬิกาจับเวลา"
+ },
+ "options__43": {
+ "label": "รถบรรทุก"
+ },
+ "options__44": {
+ "label": "การล้าง"
+ }
+ }
+ },
+ "name": "แถวที่ย่อได้"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "ป้ายกำกับลิงก์"
+ },
+ "page": {
+ "label": "หน้า"
+ }
+ },
+ "name": "ป๊อปอัป"
+ },
+ "title": {
+ "name": "ชื่อ"
+ },
+ "price": {
+ "name": "ราคา"
+ },
+ "quantity_selector": {
+ "name": "ตัวเลือกจำนวน"
+ },
+ "pickup_availability": {
+ "name": "ความพร้อมในการรับสินค้า"
+ },
+ "description": {
+ "name": "คำอธิบาย"
+ },
+ "rating": {
+ "name": "คะแนนของสินค้า",
+ "settings": {
+ "paragraph": {
+ "content": "หากต้องการแสดงคะแนน ให้เพิ่มแอปการให้คะแนนสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "สินค้าเสริม",
+ "settings": {
+ "paragraph": {
+ "content": "หากต้องการเลือกสินค้าเสริม ให้เพิ่มแอปค้นหาและการค้นพบ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "make_collapsible_row": {
+ "label": "แสดงเป็นแถวที่ย่อได้"
+ },
+ "icon": {
+ "info": "มองเห็นได้เมื่อแสดงแถวที่ย่อได้"
+ },
+ "product_list_limit": {
+ "label": "จำนวนสินค้าสูงสุดที่จะแสดง"
+ },
+ "products_per_page": {
+ "label": "จำนวนสินค้าต่อหน้า"
+ },
+ "pagination_style": {
+ "label": "รูปแบบการแบ่งหน้า",
+ "options": {
+ "option_1": "จุด",
+ "option_2": "ตัวนับ",
+ "option_3": "ตัวเลข"
+ }
+ },
+ "product_card": {
+ "heading": "บัตรสินค้า"
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options": {
+ "option_1": "แนวตั้ง",
+ "option_2": "สี่เหลี่ยมจัตุรัส"
+ }
+ },
+ "enable_quick_add": {
+ "label": "เปิดใช้งานปุ่มซื้อด่วน"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "ไอคอนที่มีข้อความ",
+ "settings": {
+ "layout": {
+ "label": "เลย์เอาต์",
+ "options__1": {
+ "label": "แนวนอน"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ }
+ },
+ "content": {
+ "label": "เนื้อหา",
+ "info": "เลือกไอคอนหรือเพิ่มรูปภาพให้แต่ละคอลัมน์หรือแต่ละแถว"
+ },
+ "heading": {
+ "info": "เว้นว่างป้ายส่วนหัวไว้เพื่อซ่อนคอลัมน์ไอคอน"
+ },
+ "icon_1": {
+ "label": "ไอคอนแรก"
+ },
+ "image_1": {
+ "label": "รูปภาพแรก"
+ },
+ "heading_1": {
+ "label": "ส่วนหัวแรก"
+ },
+ "icon_2": {
+ "label": "ไอคอนที่สอง"
+ },
+ "image_2": {
+ "label": "รูปภาพที่สอง"
+ },
+ "heading_2": {
+ "label": "ส่วนหัวที่สอง"
+ },
+ "icon_3": {
+ "label": "ไอคอนที่สาม"
+ },
+ "image_3": {
+ "label": "รูปภาพที่สาม"
+ },
+ "heading_3": {
+ "label": "ส่วนหัวที่สาม"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "หัวเรื่องย่อย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "สถานะสินค้าคงคลัง",
+ "settings": {
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "หัวเรื่องย่อย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ },
+ "inventory_threshold": {
+ "label": "เกณฑ์สินค้าคงคลังต่ำ",
+ "info": "เลือกเป็น 0 เพื่อแสดงว่ามีสินค้าตลอดเวลา หากมีสินค้า"
+ },
+ "show_inventory_quantity": {
+ "label": "แสดงจำนวนสินค้าคงคลัง"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "สื่อ",
+ "info": "ดูข้อมูลเพิ่มเติมเกี่ยวกับ [ประเภทของสื่อ](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "เปิดใช้งานการวนซ้ำวิดีโอ"
+ },
+ "enable_sticky_info": {
+ "label": "เปิดใช้เนื้อหาแบบติดบนเดสก์ท็อป"
+ },
+ "hide_variants": {
+ "label": "ซ่อนสื่อของตัวเลือกสินค้าอื่นๆ หลังจากเลือกตัวเลือกสินค้า"
+ },
+ "gallery_layout": {
+ "label": "เลย์เอาต์ของเดสก์ท็อป",
+ "options__1": {
+ "label": "ซ้อนกัน"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ },
+ "options__3": {
+ "label": "รูปภาพขนาดย่อ"
+ },
+ "options__4": {
+ "label": "ภาพสไลด์ขนาดย่อ"
+ }
+ },
+ "media_size": {
+ "label": "ความกว้างของสื่อบนเดสก์ท็อป",
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ },
+ "info": "ระบบจะปรับสื่อให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "mobile_thumbnails": {
+ "label": "เลย์เอาต์สำหรับมือถือ",
+ "options__1": {
+ "label": "2 คอลัมน์"
+ },
+ "options__2": {
+ "label": "แสดงรูปภาพขนาดย่อ"
+ },
+ "options__3": {
+ "label": "ซ่อนรูปภาพขนาดย่อ"
+ }
+ },
+ "media_position": {
+ "label": "ตำแหน่งสื่อบนเดสก์ท็อป",
+ "info": "ระบบจะปรับตำแหน่งให้เหมาะสมกับมือถือโดยอัตโนมัติ",
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "ขวา"
+ }
+ },
+ "image_zoom": {
+ "label": "การซูมรูปภาพ",
+ "info": "ตัวเลือก “คลิกและเลื่อนเมาส์” จะเปิด Lightbox บนอุปกรณ์เคลื่อนที่โดยค่าเริ่มต้น",
+ "options__1": {
+ "label": "เปิด Lightbox"
+ },
+ "options__2": {
+ "label": "คลิกและเลื่อนเมาส์"
+ },
+ "options__3": {
+ "label": "ไม่มีการซูม"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "จำกัดสื่อไว้ที่ความสูงของหน้าจอ"
+ },
+ "media_fit": {
+ "label": "สื่อแบบพอดี",
+ "options__1": {
+ "label": "ต้นฉบับ"
+ },
+ "options__2": {
+ "label": "การเติมสี"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "ผลลัพธ์การค้นหา",
+ "settings": {
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ }
+ },
+ "show_secondary_image": {
+ "label": "แสดงรูปภาพที่สองเมื่อนำเมาส์ไปวาง"
+ },
+ "show_vendor": {
+ "label": "แสดงเวนเดอร์"
+ },
+ "header__1": {
+ "content": "บัตรสินค้า"
+ },
+ "header__2": {
+ "content": "บัตรบล็อก",
+ "info": "ระบบจะนำรูปแบบของการ์ดแสดงข้อมูลในบล็อกไปใช้กับการ์ดแสดงข้อมูลต่างๆ ในหน้าผลลัพธ์การค้นหาด้วย หากต้องการเปลี่ยนรูปแบบของการ์ดแสดงข้อมูล ให้อัปเดตที่การตั้งค่าธีมของคุณ"
+ },
+ "article_show_date": {
+ "label": "แสดงวันที่"
+ },
+ "article_show_author": {
+ "label": "แสดงผู้เขียน"
+ },
+ "show_rating": {
+ "label": "แสดงคะแนนของสินค้า",
+ "info": "หากต้องการแสดงคะแนน ให้เพิ่มแอปการให้คะแนนสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "หลายคอลัมน์",
+ "settings": {
+ "title": {
+ "label": "หัวเรื่อง"
+ },
+ "image_width": {
+ "label": "ความกว้างของรูปภาพ",
+ "options__1": {
+ "label": "ความกว้างหนึ่งในสามของคอลัมน์"
+ },
+ "options__2": {
+ "label": "ความกว้างครึ่งหนึ่งของคอลัมน์"
+ },
+ "options__3": {
+ "label": "ความกว้างเต็มขนาดของคอลัมน์"
+ }
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ },
+ "options__4": {
+ "label": "วงกลม"
+ }
+ },
+ "column_alignment": {
+ "label": "การจัดวางคอลัมน์",
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ }
+ },
+ "background_style": {
+ "label": "พื้นหลังรอง",
+ "options__1": {
+ "label": "ไม่มี"
+ },
+ "options__2": {
+ "label": "แสดงเป็นพื้นหลังคอลัมน์"
+ }
+ },
+ "button_label": {
+ "label": "ป้ายกำกับปุ่ม"
+ },
+ "button_link": {
+ "label": "ลิงก์ปุ่ม"
+ },
+ "swipe_on_mobile": {
+ "label": "เปิดใช้งานการรูดบนมือถือ"
+ },
+ "columns_desktop": {
+ "label": "จำนวนของคอลัมน์บนเดสก์ท็อป"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "รูปภาพ"
+ },
+ "title": {
+ "label": "หัวเรื่อง"
+ },
+ "text": {
+ "label": "คำอธิบาย"
+ },
+ "link_label": {
+ "label": "ป้ายกำกับลิงก์"
+ },
+ "link": {
+ "label": "ลิงก์"
+ }
+ },
+ "name": "คอลัมน์"
+ }
+ },
+ "presets": {
+ "name": "หลายคอลัมน์"
+ }
+ },
+ "newsletter": {
+ "name": "การลงทะเบียนอีเมล",
+ "settings": {
+ "full_width": {
+ "label": "ทำส่วนให้เต็มความกว้าง"
+ },
+ "paragraph": {
+ "content": "ระบบจะสร้างบัญชีผู้ใช้ของลูกค้าต่อการสมัครรับอีเมลแต่ละครั้ง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ }
+ },
+ "name": "หัวเรื่อง"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "คำอธิบาย"
+ }
+ },
+ "name": "หัวเรื่องย่อย"
+ },
+ "email_form": {
+ "name": "รูปแบบอีเมล"
+ }
+ },
+ "presets": {
+ "name": "การลงทะเบียนอีเมล"
+ }
+ },
+ "page": {
+ "name": "หน้า",
+ "settings": {
+ "page": {
+ "label": "หน้า"
+ }
+ },
+ "presets": {
+ "name": "หน้า"
+ }
+ },
+ "rich-text": {
+ "name": "Rich Text",
+ "settings": {
+ "full_width": {
+ "label": "ทำส่วนให้เต็มความกว้าง"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "ตำแหน่งเนื้อหาบนเดสก์ท็อป",
+ "info": "ระบบจะปรับตำแหน่งให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหา"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ }
+ },
+ "name": "หัวเรื่อง"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "คำอธิบาย"
+ }
+ },
+ "name": "ข้อความ"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "ป้ายกำกับปุ่มแรก",
+ "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม"
+ },
+ "button_link_1": {
+ "label": "ลิงก์ปุ่มแรก"
+ },
+ "button_style_secondary_1": {
+ "label": "ใช้รูปแบบปุ่มแบบเค้าโครง"
+ },
+ "button_label_2": {
+ "label": "ป้ายกำกับปุ่มที่สอง",
+ "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม"
+ },
+ "button_link_2": {
+ "label": "ลิงก์ปุ่มที่สอง"
+ },
+ "button_style_secondary_2": {
+ "label": "ใช้รูปแบบปุ่มแบบเค้าโครง"
+ }
+ },
+ "name": "ปุ่ม"
+ },
+ "caption": {
+ "name": "คำบรรยาย",
+ "settings": {
+ "text": {
+ "label": "ข้อความ"
+ },
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "หัวเรื่องย่อย"
+ },
+ "options__2": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ },
+ "caption_size": {
+ "label": "ขนาดตัวอักษร",
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Rich Text"
+ }
+ },
+ "apps": {
+ "name": "แอป",
+ "settings": {
+ "include_margins": {
+ "label": "ทำให้ระยะขอบของส่วนเหมือนกันกับธีม"
+ }
+ },
+ "presets": {
+ "name": "แอป"
+ }
+ },
+ "video": {
+ "name": "วิดีโอ",
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "cover_image": {
+ "label": "รูปภาพหน้าปก"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "ใช้ URL ของ YouTube หรือ Vimeo"
+ },
+ "description": {
+ "label": "ข้อความกำกับวิดีโอ",
+ "info": "อธิบายวิดีโอให้กับลูกค้าที่ใช้ตัวอ่านออกเสียงหน้าจอ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "เพิ่มพื้นที่ว่างให้รูปภาพ",
+ "info": "เลือกเพิ่มพื้นที่ว่างให้รูปภาพหากไม่ต้องการให้รูปภาพหน้าปกถูกครอบตัด"
+ },
+ "full_width": {
+ "label": "ทำให้ส่วนเต็มความกว้าง"
+ },
+ "video": {
+ "label": "วิดีโอ"
+ },
+ "enable_video_looping": {
+ "label": "เล่นวิดีโอแบบวนซ้ำ"
+ },
+ "header__1": {
+ "content": "วิดีโอโฮสต์โดย Shopify"
+ },
+ "header__2": {
+ "content": "หรือวิดีโอที่ติดตั้งภายในจาก URL"
+ },
+ "header__3": {
+ "content": "สไตล์"
+ },
+ "paragraph": {
+ "content": "แสดงเมื่อไม่มีวิดีโอโฮสต์โดย Shopify ที่ถูกเลือก"
+ }
+ },
+ "presets": {
+ "name": "วิดีโอ"
+ }
+ },
+ "featured-product": {
+ "name": "สินค้าแนะนำ",
+ "blocks": {
+ "text": {
+ "name": "ข้อความ",
+ "settings": {
+ "text": {
+ "label": "ข้อความ"
+ },
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "คำบรรยาย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "ชื่อเรื่อง"
+ },
+ "price": {
+ "name": "ราคา"
+ },
+ "quantity_selector": {
+ "name": "ตัวเลือกจำนวน"
+ },
+ "variant_picker": {
+ "name": "รายการตัวเลือกสินค้า",
+ "settings": {
+ "picker_type": {
+ "label": "ประเภท",
+ "options__1": {
+ "label": "ดรอปดาวน์"
+ },
+ "options__2": {
+ "label": "ทรงเม็ดยา"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "ปุ่มซื้อ",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "แสดงปุ่มชำระเงินแบบไดนามิก",
+ "info": "วิธีการชำระเงินที่พร้อมใช้งานบนร้านค้าของคุณจะช่วยให้ลูกค้าเห็นตัวเลือกที่พวกเขาต้องการ เช่น PayPal หรือ Apple Pay [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "คำอธิบาย"
+ },
+ "share": {
+ "name": "แชร์",
+ "settings": {
+ "featured_image_info": {
+ "content": "หากคุณใส่ลิงก์ในโพสต์บนโซเชียลมีเดีย รูปภาพที่แสดงของหน้านั้นจะแสดงเป็นรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "ชื่อร้านค้าและคำอธิบายจะรวมอยู่ในรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "ข้อความ"
+ }
+ }
+ },
+ "rating": {
+ "name": "คะแนนของสินค้า",
+ "settings": {
+ "paragraph": {
+ "content": "หากต้องการแสดงคะแนน ให้เพิ่มแอปการให้คะแนนสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "รูปแบบข้อความ",
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "หัวเรื่องย่อย"
+ },
+ "options__3": {
+ "label": "ตัวพิมพ์ใหญ่"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "สินค้า"
+ },
+ "secondary_background": {
+ "label": "แสดงพื้นหลังรอง"
+ },
+ "header": {
+ "content": "สื่อ",
+ "info": "ดูข้อมูลเพิ่มเติมเกี่ยวกับ [ประเภทของสื่อ](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "เปิดใช้งานการวนซ้ำวิดีโอ"
+ },
+ "hide_variants": {
+ "label": "ซ่อนสื่อของตัวเลือกสินค้าที่ไม่ได้เลือกบนเดสก์ท็อป"
+ },
+ "media_position": {
+ "label": "ตำแหน่งสื่อบนเดสก์ท็อป",
+ "info": "ระบบจะปรับตำแหน่งให้เหมาะสมกับมือถือโดยอัตโนมัติ",
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "ขวา"
+ }
+ }
+ },
+ "presets": {
+ "name": "สินค้าแนะนำ"
+ }
+ },
+ "email-signup-banner": {
+ "name": "แบนเนอร์การลงทะเบียนอีเมล",
+ "settings": {
+ "paragraph": {
+ "content": "ระบบจะสร้างบัญชีผู้ใช้ของลูกค้าต่อการสมัครรับอีเมลแต่ละครั้ง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "รูปภาพพื้นหลัง"
+ },
+ "show_background_image": {
+ "label": "แสดงรูปภาพพื้นหลัง"
+ },
+ "show_text_box": {
+ "label": "แสดงคอนเทนเนอร์บนเดสก์ท็อป"
+ },
+ "image_overlay_opacity": {
+ "label": "ความทึบของการวางซ้อนรูปภาพ"
+ },
+ "show_text_below": {
+ "label": "แสดงเนื้อหาที่ด้านล่างของรูปภาพบนมือถือ",
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 16:9 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "ความสูงของแบนเนอร์",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "options__4": {
+ "label": "ใหญ่"
+ },
+ "info": "ใช้รูปภาพที่มีอัตราส่วนภาพ 16:9 เพื่อผลลัพธ์ที่ดีที่สุด [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "ตรงกลางด้านซ้าย"
+ },
+ "options__5": {
+ "label": "กึ่งกลางตรงกลาง"
+ },
+ "options__6": {
+ "label": "ตรงกลางด้านขวา"
+ },
+ "options__7": {
+ "label": "ซ้ายล่าง"
+ },
+ "options__8": {
+ "label": "กึ่งกลางด้านล่าง"
+ },
+ "options__9": {
+ "label": "ขวาล่าง"
+ },
+ "options__1": {
+ "label": "ซ้ายบน"
+ },
+ "options__2": {
+ "label": "กึ่งกลางด้านบน"
+ },
+ "options__3": {
+ "label": "ขวาบน"
+ },
+ "label": "ตำแหน่งเนื้อหาบนเดสก์ท็อป"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนเดสก์ท็อป"
+ },
+ "header": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนมือถือ"
+ },
+ "color_scheme": {
+ "info": "ปรากฏให้เห็นเมื่อแสดงกรอบเนื้อหา"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "หัวเรื่อง",
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "ย่อหน้า",
+ "settings": {
+ "paragraph": {
+ "label": "คำอธิบาย"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "คำบรรยาย"
+ },
+ "label": "รูปแบบข้อความ"
+ }
+ }
+ },
+ "email_form": {
+ "name": "รูปแบบอีเมล"
+ }
+ },
+ "presets": {
+ "name": "แบนเนอร์การลงทะเบียนอีเมล"
+ }
+ },
+ "slideshow": {
+ "name": "สไลด์โชว์",
+ "settings": {
+ "layout": {
+ "label": "เลย์เอาต์",
+ "options__1": {
+ "label": "เต็มความกว้าง"
+ },
+ "options__2": {
+ "label": "กริด"
+ }
+ },
+ "slide_height": {
+ "label": "ความสูงของสไลด์",
+ "options__1": {
+ "label": "ปรับให้เข้ากับรูปภาพแรก"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "options__4": {
+ "label": "ใหญ่"
+ }
+ },
+ "slider_visual": {
+ "label": "รูปแบบการแบ่งหน้า",
+ "options__1": {
+ "label": "ตัวนับ"
+ },
+ "options__2": {
+ "label": "จุด"
+ },
+ "options__3": {
+ "label": "ตัวเลข"
+ }
+ },
+ "auto_rotate": {
+ "label": "หมุนสไลด์อัตโนมัติ"
+ },
+ "change_slides_speed": {
+ "label": "เปลี่ยนสไลด์ทุก"
+ },
+ "mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "show_text_below": {
+ "label": "แสดงเนื้อหาที่ด้านล่างของรูปภาพบนมือถือ"
+ },
+ "accessibility": {
+ "content": "การเข้าถึง",
+ "label": "คำอธิบายสไลด์โชว์",
+ "info": "อธิบายสไลด์โชว์ให้กับลูกค้าที่ใช้เครื่องอ่านหน้าจอ"
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "สไลด์",
+ "settings": {
+ "image": {
+ "label": "รูปภาพ"
+ },
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "subheading": {
+ "label": "หัวเรื่องย่อย"
+ },
+ "button_label": {
+ "label": "ป้ายกำกับปุ่ม",
+ "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม"
+ },
+ "link": {
+ "label": "ลิงก์ปุ่ม"
+ },
+ "secondary_style": {
+ "label": "ใช้รูปแบบปุ่มแบบเค้าโครง"
+ },
+ "box_align": {
+ "label": "ตำแหน่งเนื้อหาบนเดสก์ท็อป",
+ "options__1": {
+ "label": "ซ้ายบน"
+ },
+ "options__2": {
+ "label": "กึ่งกลางด้านบน"
+ },
+ "options__3": {
+ "label": "ขวาบน"
+ },
+ "options__4": {
+ "label": "ตรงกลางด้านซ้าย"
+ },
+ "options__5": {
+ "label": "กึ่งกลาง"
+ },
+ "options__6": {
+ "label": "ตรงกลางด้านขวา"
+ },
+ "options__7": {
+ "label": "ซ้ายล่าง"
+ },
+ "options__8": {
+ "label": "กึ่งกลางด้านล่าง"
+ },
+ "options__9": {
+ "label": "ขวาล่าง"
+ },
+ "info": "ระบบจะปรับตำแหน่งให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "show_text_box": {
+ "label": "แสดงกรอบเนื้อหาบนเดสก์ท็อป"
+ },
+ "text_alignment": {
+ "label": "การจัดวางเนื้อหาบนเดสก์ท็อป",
+ "option_1": {
+ "label": "ซ้าย"
+ },
+ "option_2": {
+ "label": "กึ่งกลาง"
+ },
+ "option_3": {
+ "label": "ขวา"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "ความทึบของการวางซ้อนรูปภาพ"
+ },
+ "text_alignment_mobile": {
+ "label": "การจัดวางเนื้อหาบนมือถือ",
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "สไลด์โชว์"
+ }
+ },
+ "collapsible_content": {
+ "name": "เนื้อหาที่ย่อได้",
+ "settings": {
+ "caption": {
+ "label": "คำบรรยาย"
+ },
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "heading_alignment": {
+ "label": "การจัดวางหัวเรื่อง",
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ }
+ },
+ "layout": {
+ "label": "เลย์เอาต์",
+ "options__1": {
+ "label": "ไม่มีคอนเทนเนอร์"
+ },
+ "options__2": {
+ "label": "คอนเทนเนอร์แถว"
+ },
+ "options__3": {
+ "label": "คอนเทนเนอร์ส่วน"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "เปิดแถวที่ย่อได้แถวแรก"
+ },
+ "header": {
+ "content": "เลย์เอาต์รูปภาพ"
+ },
+ "image": {
+ "label": "รูปภาพ"
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ }
+ },
+ "desktop_layout": {
+ "label": "เลย์เอาต์ของเดสก์ท็อป",
+ "options__1": {
+ "label": "รูปภาพก่อน"
+ },
+ "options__2": {
+ "label": "รูปภาพไว้ลำดับที่สอง"
+ },
+ "info": "รูปภาพจะปรากฏก่อนเสมอบนอุปกรณ์มือถือ"
+ },
+ "container_color_scheme": {
+ "label": "รูปแบบสีของคอนเทนเนอร์",
+ "info": "ปรากฏให้เห็นเมื่อตั้งค่าเลย์เอาต์เป็นคอนเทนเนอร์แถวหรือส่วน"
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "แถวที่ย่อได้",
+ "settings": {
+ "heading": {
+ "info": "รวมหัวเรื่องที่ช่วยอธิบายเนื้อหาเอาไว้",
+ "label": "หัวเรื่อง"
+ },
+ "row_content": {
+ "label": "เนื้อหาในแถว"
+ },
+ "page": {
+ "label": "เนื้อหาในแถวจากหน้า"
+ },
+ "icon": {
+ "label": "ไอคอน",
+ "options__1": {
+ "label": "ไม่มี"
+ },
+ "options__2": {
+ "label": "แอปเปิ้ล"
+ },
+ "options__3": {
+ "label": "กล้วย"
+ },
+ "options__4": {
+ "label": "ขวด"
+ },
+ "options__5": {
+ "label": "กล่อง"
+ },
+ "options__6": {
+ "label": "แครอท"
+ },
+ "options__7": {
+ "label": "แชทบับเบิล"
+ },
+ "options__8": {
+ "label": "เครื่องหมายถูก"
+ },
+ "options__9": {
+ "label": "คลิปบอร์ด"
+ },
+ "options__10": {
+ "label": "ผลิตภัณฑ์นม"
+ },
+ "options__11": {
+ "label": "ปราศจากผลิตภัณฑ์นม"
+ },
+ "options__12": {
+ "label": "เครื่องเป่า"
+ },
+ "options__13": {
+ "label": "ดวงตา"
+ },
+ "options__14": {
+ "label": "ไฟ"
+ },
+ "options__15": {
+ "label": "ปราศจากกลูเตน"
+ },
+ "options__16": {
+ "label": "หัวใจ"
+ },
+ "options__17": {
+ "label": "เหล็ก"
+ },
+ "options__18": {
+ "label": "ใบไม้"
+ },
+ "options__19": {
+ "label": "หนัง"
+ },
+ "options__20": {
+ "label": "สายฟ้า"
+ },
+ "options__21": {
+ "label": "ลิปสติก"
+ },
+ "options__22": {
+ "label": "ล็อก"
+ },
+ "options__23": {
+ "label": "หมุดแผนที่"
+ },
+ "options__24": {
+ "label": "ปราศจากถั่ว"
+ },
+ "options__25": {
+ "label": "กางเกง"
+ },
+ "options__26": {
+ "label": "รอยเท้าสัตว์"
+ },
+ "options__27": {
+ "label": "พริกไทย"
+ },
+ "options__28": {
+ "label": "น้ำหอม"
+ },
+ "options__29": {
+ "label": "เครื่องบิน"
+ },
+ "options__30": {
+ "label": "ต้นไม้"
+ },
+ "options__31": {
+ "label": "ป้ายราคา"
+ },
+ "options__32": {
+ "label": "เครื่องหมายคำถาม"
+ },
+ "options__33": {
+ "label": "รีไซเคิล"
+ },
+ "options__34": {
+ "label": "ย้อนกลับ"
+ },
+ "options__35": {
+ "label": "ไม้บรรทัด"
+ },
+ "options__36": {
+ "label": "จานเสิร์ฟ"
+ },
+ "options__37": {
+ "label": "เสื้อเชิ้ต"
+ },
+ "options__38": {
+ "label": "รองเท้า"
+ },
+ "options__39": {
+ "label": "ภาพเงา"
+ },
+ "options__40": {
+ "label": "เกล็ดหิมะ"
+ },
+ "options__41": {
+ "label": "ดาว"
+ },
+ "options__42": {
+ "label": "นาฬิกาจับเวลา"
+ },
+ "options__43": {
+ "label": "รถบรรทุก"
+ },
+ "options__44": {
+ "label": "การล้าง"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "เนื้อหาที่ย่อได้"
+ }
+ },
+ "main-account": {
+ "name": "บัญชีผู้ใช้"
+ },
+ "main-activate-account": {
+ "name": "การเปิดใช้งานบัญชีผู้ใช้"
+ },
+ "main-addresses": {
+ "name": "ที่อยู่"
+ },
+ "main-login": {
+ "name": "เข้าสู่ระบบ"
+ },
+ "main-order": {
+ "name": "คำสั่งซื้อ"
+ },
+ "main-register": {
+ "name": "การลงทะเบียน"
+ },
+ "main-reset-password": {
+ "name": "รีเซ็ตรหัสผ่านแล้ว"
+ },
+ "related-products": {
+ "name": "สินค้าที่เกี่ยวข้อง",
+ "settings": {
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "products_to_show": {
+ "label": "จำนวนสินค้าสูงสุดที่จะแสดง"
+ },
+ "columns_desktop": {
+ "label": "จำนวนคอลัมน์บนเดสก์ท็อป"
+ },
+ "paragraph__1": {
+ "content": "คำแนะนำแบบไดนามิกต้องใช้ข้อมูลคำสั่งซื้อและข้อมูลสินค้าในการปรับปรุงและเปลี่ยนแปลงตลอดระยะเวลา [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "บัตรสินค้า"
+ },
+ "image_ratio": {
+ "label": "อัตราส่วนรูปภาพ",
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "แนวตั้ง"
+ },
+ "options__3": {
+ "label": "สี่เหลี่ยมจัตุรัส"
+ }
+ },
+ "show_secondary_image": {
+ "label": "แสดงรูปภาพที่สองเมื่อนำเมาส์ไปวาง"
+ },
+ "show_vendor": {
+ "label": "แสดงเวนเดอร์"
+ },
+ "show_rating": {
+ "label": "แสดงคะแนนของสินค้า",
+ "info": "หากต้องการแสดงคะแนน ให้เพิ่มแอปการให้คะแนนสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ },
+ "columns_mobile": {
+ "label": "จำนวนคอลัมน์บนมือถือ",
+ "options__1": {
+ "label": "1 คอลัมน์"
+ },
+ "options__2": {
+ "label": "2 คอลัมน์"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "หลายแถว",
+ "settings": {
+ "image": {
+ "label": "รูปภาพ"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "ปรับตามรูปภาพ"
+ },
+ "options__2": {
+ "label": "เล็ก"
+ },
+ "options__3": {
+ "label": "ปานกลาง"
+ },
+ "options__4": {
+ "label": "ใหญ่"
+ },
+ "label": "ความสูงของรูปภาพ"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ },
+ "label": "ความกว้างของรูปภาพบนเดสก์ท็อป",
+ "info": "ระบบจะปรับรูปภาพให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "เล็ก"
+ },
+ "options__2": {
+ "label": "ปานกลาง"
+ },
+ "options__3": {
+ "label": "ใหญ่"
+ },
+ "label": "ขนาดของส่วนหัว"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "เนื้อหา"
+ },
+ "options__2": {
+ "label": "หัวเรื่องย่อย"
+ },
+ "label": "รูปแบบข้อความ"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "ปุ่มทึบ"
+ },
+ "options__2": {
+ "label": "ปุ่มแบบเค้าโครง"
+ },
+ "label": "รูปแบบปุ่ม"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนเดสก์ท็อป"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "บน"
+ },
+ "options__2": {
+ "label": "ตรงกลาง"
+ },
+ "options__3": {
+ "label": "ล่าง"
+ },
+ "label": "ตำแหน่งเนื้อหาบนเดสก์ท็อป",
+ "info": "ระบบจะปรับตำแหน่งให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "สลับจากด้านซ้าย"
+ },
+ "options__2": {
+ "label": "สลับจากด้านขวา"
+ },
+ "options__3": {
+ "label": "จัดให้ชิดซ้าย"
+ },
+ "options__4": {
+ "label": "จัดให้ชิดขวา"
+ },
+ "label": "การวางตำแหน่งรูปภาพบนเดสก์ท็อป",
+ "info": "ระบบจะปรับการวางตำแหน่งให้เหมาะสมกับมือถือโดยอัตโนมัติ"
+ },
+ "container_color_scheme": {
+ "label": "รูปแบบสีของกรอบ"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "ซ้าย"
+ },
+ "options__2": {
+ "label": "กึ่งกลาง"
+ },
+ "options__3": {
+ "label": "ขวา"
+ },
+ "label": "การจัดวางเนื้อหาบนมือถือ"
+ },
+ "header_mobile": {
+ "content": "เลย์เอาต์สำหรับมือถือ"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "แถว",
+ "settings": {
+ "image": {
+ "label": "รูปภาพ"
+ },
+ "caption": {
+ "label": "คำบรรยาย"
+ },
+ "heading": {
+ "label": "หัวเรื่อง"
+ },
+ "text": {
+ "label": "ข้อความ"
+ },
+ "button_label": {
+ "label": "ป้ายกำกับปุ่ม"
+ },
+ "button_link": {
+ "label": "ลิงก์ปุ่ม"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "หลายแถว"
+ }
+ },
+ "quick-order-list": {
+ "name": "รายการคำสั่งซื้อแบบด่วน",
+ "settings": {
+ "show_image": {
+ "label": "แสดงรูปภาพ"
+ },
+ "show_sku": {
+ "label": "แสดง SKU"
+ }
+ },
+ "presets": {
+ "name": "รายการคำสั่งซื้อแบบด่วน"
+ }
+ }
+ }
+}
diff --git a/locales/tr.json b/locales/tr.json
new file mode 100644
index 0000000..b218cc5
--- /dev/null
+++ b/locales/tr.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Parolayı kullanarak mağazaya girin:",
+ "login_password_button": "Parola kullanarak gir",
+ "login_form_password_label": "Parola",
+ "login_form_password_placeholder": "Parolanız",
+ "login_form_error": "Yanlış parola!",
+ "login_form_submit": "Gir",
+ "admin_link_html": "Mağaza sahibi misiniz? Buradan oturum açın ",
+ "powered_by_shopify_html": "Bu mağaza {{ shopify }} tarafından desteklenir"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Facebook'ta paylaş",
+ "share_on_twitter": "Twitter'da tweet'le",
+ "share_on_pinterest": "Pinterest'te pin ekle"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Alışverişe devam et",
+ "pagination": {
+ "label": "Sayfalara ayırma",
+ "page": "Sayfa {{ number }}",
+ "next": "Sonraki sayfa",
+ "previous": "Önceki sayfa"
+ },
+ "search": {
+ "search": "Ara",
+ "reset": "Arama terimini temizle"
+ },
+ "cart": {
+ "view": "Sepeti görüntüle ({{ count }})",
+ "item_added": "Ürün sepetinize eklendi",
+ "view_empty_cart": "Sepeti görüntüle"
+ },
+ "share": {
+ "copy_to_clipboard": "Bağlantıyı kopyala",
+ "share_url": "Bağlantı",
+ "success_message": "Bağlantı panoya kopyalandı",
+ "close": "Paylaşımı kapat"
+ },
+ "slider": {
+ "of": "/",
+ "next_slide": "Sağa kaydır",
+ "previous_slide": "Sola kaydır",
+ "name": "Kaydırıcı"
+ }
+ },
+ "newsletter": {
+ "label": "E-posta",
+ "success": "Abone olduğunuz için teşekkür ederiz",
+ "button_label": "Abone ol"
+ },
+ "accessibility": {
+ "skip_to_text": "İçeriğe atla",
+ "close": "Kapat",
+ "unit_price_separator": "/",
+ "vendor": "Satıcı:",
+ "error": "Hata",
+ "refresh_page": "Bir seçim yapmanız sayfanın tamamının yenilenmesine neden olur.",
+ "link_messages": {
+ "new_window": "Yeni bir pencerede açılır.",
+ "external": "Harici web sitesini açar."
+ },
+ "loading": "Yükleniyor...",
+ "skip_to_product_info": "Ürün bilgisine atla",
+ "total_reviews": "toplam değerlendirme",
+ "star_reviews_info": "{{ rating_value }}/{{ rating_max }} yıldız",
+ "collapsible_content_title": "Daraltılabilir içerik",
+ "complementary_products": "Tamamlayıcı ürünler"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Devamını okuyun: {{ title }}",
+ "comments": {
+ "one": "{{ count }} yorum",
+ "other": "{{ count }} yorum"
+ },
+ "moderated": "Yorumların yayınlanabilmesi için onaylanması gerektiğini lütfen unutmayın.",
+ "comment_form_title": "Yorum yapın",
+ "name": "Ad",
+ "email": "E-posta",
+ "message": "Yorum",
+ "post": "Yorumu paylaş",
+ "back_to_blog": "Bloga dön",
+ "share": "Bu makaleyi paylaş",
+ "success": "Yorumunuz başarıyla paylaşıldı! Teşekkür ederiz.",
+ "success_moderated": "Yorumunuz başarıyla paylaşıldı. Blogumuz denetlendiğinden yorumunuzu kısa bir süre sonra yayınlayacağız."
+ }
+ },
+ "onboarding": {
+ "product_title": "Örnek ürün başlığı",
+ "collection_title": "Koleksiyonunuzun adı"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Sepete ekle",
+ "description": "Açıklama",
+ "on_sale": "İndirim",
+ "quantity": {
+ "label": "Adet",
+ "input_label": "{{ product }} için adet",
+ "increase": "{{ product }} için adedi artırın",
+ "decrease": "{{ product }} için adedi azaltın",
+ "minimum_of": "Minimum: {{ quantity }}",
+ "maximum_of": "Maksimum: {{ quantity }}",
+ "multiples_of": "Artış değeri: {{ quantity }}",
+ "in_cart_html": "Sepette: {{ quantity }} ",
+ "note": "Adet kurallarını görüntüle"
+ },
+ "price": {
+ "from_price_html": "Başlangıç fiyatı: {{ price }}",
+ "regular_price": "Normal fiyat",
+ "sale_price": "İndirimli fiyat",
+ "unit_price": "Birim fiyat"
+ },
+ "share": "Bu ürünü paylaş",
+ "sold_out": "Tükendi",
+ "unavailable": "Kullanım dışı",
+ "vendor": "Satıcı",
+ "video_exit_message": "{{ title }} aynı pencerede tam ekran video açar.",
+ "xr_button": "Kendi alanınızda görüntüleyin",
+ "xr_button_label": "Alanınızda görüntüleyin; ürün, artırılmış gerçeklik penceresinde yüklenir",
+ "pickup_availability": {
+ "view_store_info": "Mağaza bilgilerini görüntüleyin",
+ "check_other_stores": "Diğer mağazalardaki stok durumunu kontrol edin",
+ "pick_up_available": "Teslim alım kullanılabilir",
+ "pick_up_available_at_html": "Teslim alım {{ location_name }} konumunda kullanılabilir",
+ "pick_up_unavailable_at_html": "Teslim alım {{ location_name }} konumunda şu anda kullanılamıyor",
+ "unavailable": "Teslim alım stok durumu yüklenemedi",
+ "refresh": "Yenile"
+ },
+ "media": {
+ "open_media": "Medya {{ index }} modda oynatın",
+ "play_model": "3B Görüntüleyici'yi Oynat",
+ "play_video": "Videoyu oynat",
+ "gallery_viewer": "Galeri Görüntüleyici",
+ "load_image": "Görsel {{ index }} galeri görüntüleyicide yükleyin",
+ "load_model": "3B Model {{ index }} galeri görüntüleyicide yükleyin",
+ "load_video": "Video {{ index }} galeri görüntüleyicide oynatın",
+ "image_available": "Görsel {{ index }} artık galeri görüntüleyicide kullanılabilir"
+ },
+ "view_full_details": "Tüm ayrıntıları görüntüle",
+ "include_taxes": "Vergi dahildir.",
+ "shipping_policy_html": "Kargo , ödeme sayfasında hesaplanır.",
+ "choose_options": "Seçenekleri belirle",
+ "choose_product_options": "{{ product_name }} için seçenekleri belirle",
+ "value_unavailable": "{{ option_value }} - Kullanılamıyor",
+ "variant_sold_out_or_unavailable": "Varyasyon tükendi veya kullanılamıyor",
+ "inventory_in_stock": "Stokta",
+ "inventory_in_stock_show_count": "Stokta {{ quantity }} adet mevcut",
+ "inventory_low_stock": "Stok düzeyi düşük",
+ "inventory_low_stock_show_count": "Stok düzeyi düşük: {{ quantity }} adet kaldı",
+ "inventory_out_of_stock": "Stokta yok",
+ "inventory_out_of_stock_continue_selling": "Stokta",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Toplu Alım Bazlı Fiyatlandırma",
+ "note": "Toplu alım bazlı fiyatlandırma kullanılabilir",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/adet",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ },
+ "product_variants": "Ürün varyasyonları"
+ },
+ "modal": {
+ "label": "Medya galerisi"
+ },
+ "facets": {
+ "apply": "Uygula",
+ "clear": "Temizle",
+ "clear_all": "Tümünü kaldır",
+ "from": "En düşük",
+ "filter_and_sort": "Filtrele ve sırala",
+ "filter_by_label": "Filtre:",
+ "filter_button": "Filtrele",
+ "filters_selected": {
+ "one": "{{ count }} seçildi",
+ "other": "{{ count }} seçildi"
+ },
+ "max_price": "En yüksek fiyat: {{ price }}",
+ "product_count": {
+ "one": "{{ count }}/{{ product_count }} ürün",
+ "other": "{{ count }}/{{ product_count }} ürün"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} ürün",
+ "other": "{{ count }} ürün"
+ },
+ "reset": "Sıfırla",
+ "sort_button": "Sırala",
+ "sort_by_label": "Sıralama ölçütü:",
+ "to": "En yüksek",
+ "clear_filter": "Filtreyi kaldır",
+ "filter_selected_accessibility": "{{ type }} ({{ count }} filtre seçildi)",
+ "show_more": "Daha fazla göster",
+ "show_less": "Daha az göster",
+ "filter_and_operator_subtitle": "Tümünü eşleştir"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "\"{{ terms }}\" için sonuç bulunamadı. Yazım hatası olmadığını doğrulayın veya farklı bir kelime ya da ifade kullanın.",
+ "results_with_count": {
+ "one": "{{ count }} sonuç",
+ "other": "{{ count }} sonuç"
+ },
+ "title": "Arama sonuçları",
+ "page": "Sayfa",
+ "products": "Ürünler",
+ "search_for": "\"{{ terms }}\" için arama yap",
+ "results_with_count_and_term": {
+ "one": "\"{{ terms }}\" için {{ count }} sonuç bulundu",
+ "other": "\"{{ terms }}\" için {{ count }} sonuç bulundu"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} sayfa",
+ "other": "{{ count }} sayfa"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} ürün",
+ "other": "{{ count }} ürün"
+ },
+ "suggestions": "Öneriler",
+ "pages": "Sayfalar",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} öneri",
+ "other": "{{ count }} öneri"
+ }
+ },
+ "cart": {
+ "cart": "Sepet"
+ },
+ "contact": {
+ "form": {
+ "name": "Ad",
+ "email": "E-posta",
+ "phone": "Telefon numarası",
+ "comment": "Yorum",
+ "send": "Gönder",
+ "post_success": "Bizimle iletişime geçtiğiniz için teşekkür ederiz. Mümkün olan en kısa sürede size dönüş yapacağız.",
+ "error_heading": "Lütfen aşağıdakileri düzenleyin:",
+ "title": "İletişim formu"
+ }
+ },
+ "404": {
+ "title": "Sayfa bulunamadı",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Duyuru",
+ "menu": "Menü",
+ "cart_count": {
+ "one": "{{ count }} ürün",
+ "other": "{{ count }} ürün"
+ }
+ },
+ "cart": {
+ "title": "Sepetiniz",
+ "caption": "Sepet ürünleri",
+ "remove_title": "{{ title }} kanalını kaldır",
+ "note": "Siparişe özel talimatlar",
+ "checkout": "Ödeme",
+ "empty": "Sepetiniz boş",
+ "cart_error": "Sepetiniz güncellenirken bir hata oluştu. Lütfen tekrar deneyin.",
+ "cart_quantity_error_html": "Sepetinize bu üründen yalnızca {{ quantity }} adet ekleyebilirsiniz.",
+ "taxes_and_shipping_policy_at_checkout_html": "Vergiler, indirimler ve kargo , ödeme sayfasında hesaplanır",
+ "taxes_included_but_shipping_at_checkout": "Vergi dahildir ve kargo ile indirimler, ödeme sayfasında hesaplanır",
+ "taxes_included_and_shipping_policy_html": "Vergi dahildir. Kargo ve indirimler, ödeme sayfasında hesaplanır.",
+ "taxes_and_shipping_at_checkout": "Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır",
+ "headings": {
+ "product": "Ürün",
+ "price": "Fiyat",
+ "total": "Toplam",
+ "quantity": "Adet",
+ "image": "Ürün görseli"
+ },
+ "update": "Güncelle",
+ "login": {
+ "title": "Hesabınız var mı?",
+ "paragraph_html": "Daha hızlı ödeme yapmak için oturum açın ."
+ },
+ "estimated_total": "Tahmini toplam",
+ "new_estimated_total": "Yeni tahmini toplam"
+ },
+ "footer": {
+ "payment": "Ödeme yöntemleri"
+ },
+ "featured_blog": {
+ "view_all": "Tümünü görüntüle",
+ "onboarding_title": "Blog gönderisi",
+ "onboarding_content": "Müşterilerinize blog gönderinizin özetini gösterin"
+ },
+ "featured_collection": {
+ "view_all": "Tümünü görüntüle",
+ "view_all_label": "{{ collection_name }} koleksiyonundaki tüm ürünleri görüntüle"
+ },
+ "collection_list": {
+ "view_all": "Tümünü görüntüle"
+ },
+ "collection_template": {
+ "title": "Koleksiyon",
+ "empty": "Ürün bulunamadı",
+ "use_fewer_filters_html": "Daha az filtre kullan veya tümünü kaldır "
+ },
+ "video": {
+ "load_video": "Videoyu yükle: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Slaytı yükle",
+ "previous_slideshow": "Önceki slayt",
+ "next_slideshow": "Sonraki slayt",
+ "pause_slideshow": "Slayt gösterisini duraklat",
+ "play_slideshow": "Slayt gösterisini oynat",
+ "carousel": "Döngü",
+ "slide": "Slayt"
+ },
+ "page": {
+ "title": "Sayfa başlığı"
+ },
+ "announcements": {
+ "previous_announcement": "Önceki duyuru",
+ "next_announcement": "Sonraki duyuru",
+ "carousel": "Carousel",
+ "announcement": "Duyuru",
+ "announcement_bar": "Duyuru çubuğu"
+ },
+ "quick_order_list": {
+ "product_total": "Ürün alt toplamı",
+ "view_cart": "Sepeti görüntüle",
+ "each": "{{ money }}/adet",
+ "product": "Ürün",
+ "variant": "Varyasyon",
+ "variant_total": "Varyasyon toplamı",
+ "items_added": {
+ "one": "{{ quantity }} ürün eklendi",
+ "other": "{{ quantity }} ürün eklendi"
+ },
+ "items_removed": {
+ "one": "{{ quantity }} ürün kaldırıldı",
+ "other": "{{ quantity }} ürün kaldırıldı"
+ },
+ "product_variants": "Ürün varyasyonları",
+ "total_items": "Toplam ürün sayısı",
+ "remove_all_items_confirmation": "{{ quantity }} ürünün tamamı sepetten kaldırılsın mı?",
+ "remove_all": "Tümünü kaldır",
+ "cancel": "İptal"
+ }
+ },
+ "localization": {
+ "country_label": "Ülke/bölge",
+ "language_label": "Dil",
+ "update_language": "Dili güncelle",
+ "update_country": "Ülke/bölge bilgisini güncelle"
+ },
+ "customer": {
+ "account": {
+ "title": "Hesap",
+ "details": "Hesap bilgileri",
+ "view_addresses": "Adresi görüntüle",
+ "return": "Hesap bilgilerine geri dön"
+ },
+ "account_fallback": "Hesap",
+ "activate_account": {
+ "title": "Hesabı etkinleştirin",
+ "subtext": "Hesabınızı etkinleştirmek için parolanızı oluşturun.",
+ "password": "Parola",
+ "password_confirm": "Parolayı doğrula",
+ "submit": "Hesabı etkinleştir",
+ "cancel": "Daveti reddet"
+ },
+ "addresses": {
+ "title": "Adresler",
+ "default": "Varsayılan",
+ "add_new": "Yeni adres ekle",
+ "edit_address": "Adresi düzenle",
+ "first_name": "Ad",
+ "last_name": "Soyadı",
+ "company": "Şirket",
+ "address1": "Adres 1",
+ "address2": "Adres 2",
+ "city": "Şehir",
+ "country": "Ülke/bölge",
+ "province": "İl",
+ "zip": "Posta kodu",
+ "phone": "Telefon",
+ "set_default": "Varsayılan adres olarak ayarla",
+ "add": "Adres ekle",
+ "update": "Adresi güncelle",
+ "cancel": "İptal Et",
+ "edit": "Düzenleyin",
+ "delete": "Sil",
+ "delete_confirm": "Bu adresi silmek istediğinizden emin misiniz?"
+ },
+ "log_in": "Oturum aç",
+ "log_out": "Oturumu kapat",
+ "login_page": {
+ "cancel": "İptal Et",
+ "create_account": "Hesap oluştur",
+ "email": "E-posta",
+ "forgot_password": "Parolanızı mı unuttunuz?",
+ "guest_continue": "Devam",
+ "guest_title": "Misafir olarak devam edin",
+ "password": "Parola",
+ "title": "Oturum aç",
+ "sign_in": "Giriş yapın",
+ "submit": "Gönder"
+ },
+ "orders": {
+ "title": "Sipariş geçmişi",
+ "order_number": "Sipariş",
+ "order_number_link": "Sipariş numarası {{ number }}",
+ "date": "Tarih",
+ "payment_status": "Ödeme durumu",
+ "fulfillment_status": "Gönderim durumu",
+ "total": "Toplam",
+ "none": "Henüz sipariş vermediniz."
+ },
+ "recover_password": {
+ "title": "Parolanızı sıfırlayın",
+ "subtext": "Parolanızı sıfırlamanız için size bir e-posta göndereceğiz",
+ "success": "Size parolanızı güncelleme bağlantısının bulunduğu bir e-posta gönderdik."
+ },
+ "register": {
+ "title": "Hesap oluşturun",
+ "first_name": "Ad",
+ "last_name": "Soyadı",
+ "email": "E-posta",
+ "password": "Parola",
+ "submit": "Oluştur"
+ },
+ "reset_password": {
+ "title": "Hesap parolasını sıfırlayın",
+ "subtext": "Yeni bir parola girin",
+ "password": "Parola",
+ "password_confirm": "Parolayı doğrula",
+ "submit": "Parolayı sıfırla"
+ },
+ "order": {
+ "title": "{{ name }} siparişi",
+ "date_html": "Verilme Tarihi: {{ date }}",
+ "cancelled_html": "Siparişin İptal Edilme Tarihi: {{ date }}",
+ "cancelled_reason": "Neden: {{ reason }}",
+ "billing_address": "Fatura Adresi",
+ "payment_status": "Ödeme Durumu",
+ "shipping_address": "Kargo Adresi",
+ "fulfillment_status": "Gönderim Durumu",
+ "discount": "İndirim",
+ "shipping": "Kargo",
+ "tax": "Vergi",
+ "product": "Ürün",
+ "sku": "SKU",
+ "price": "Fiyat",
+ "quantity": "Adet",
+ "total": "Toplam",
+ "fulfilled_at_html": "Gönderildi: {{ date }}",
+ "track_shipment": "Kargoyu takip et",
+ "tracking_url": "Takip bağlantısı",
+ "tracking_company": "Kargo Şirketi",
+ "tracking_number": "Takip numarası",
+ "subtotal": "Alt toplam",
+ "total_duties": "Gümrük vergileri",
+ "total_refunded": "Para iadesi yapıldı"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "İşte {{ shop }} için {{ value }} tutarındaki hediye kartı bakiyeniz!",
+ "subtext": "Hediye kartınız",
+ "gift_card_code": "Hediye kartı kodu",
+ "shop_link": "Online mağazayı ziyaret edin",
+ "add_to_apple_wallet": "Apple Wallet'a ekle",
+ "qr_image_alt": "QR kodu: Hediye kartını kullanmak için tarayın",
+ "copy_code": "Hediye kartı kodunu kopyala",
+ "expired": "Süresi sona erdi",
+ "copy_code_success": "Kod başarıyla kopyalandı",
+ "how_to_use_gift_card": "Hediye kartı kodunu online olarak veya QR kodunu mağazada kullanın",
+ "expiration_date": "Sona erme tarihi: {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Bunu hediye olarak göndermek istiyorum",
+ "email_label": "Alıcı e-postası",
+ "email": "E-posta",
+ "name_label": "Alıcı adı (isteğe bağlı)",
+ "name": "Ad",
+ "message_label": "Mesaj (isteğe bağlı)",
+ "message": "Mesaj",
+ "max_characters": "Maksimum {{ max_chars }} karakter",
+ "email_label_optional_for_no_js_behavior": "Alıcı e-postası (isteğe bağlı)",
+ "send_on": "YYYY-AA-GG",
+ "send_on_label": "Şu tarihte gönder (isteğe bağlı)",
+ "expanded": "Hediye kartı alıcısı formu genişletildi",
+ "collapsed": "Hediye kartı alıcısı formu daraltıldı"
+ }
+ }
+}
diff --git a/locales/tr.schema.json b/locales/tr.schema.json
new file mode 100644
index 0000000..55a129a
--- /dev/null
+++ b/locales/tr.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Renkler",
+ "settings": {
+ "background": {
+ "label": "Arka plan"
+ },
+ "background_gradient": {
+ "label": "Arka plan gradyanı",
+ "info": "Arka plan gradyanı, mümkün olduğunda arka planın yerine geçer."
+ },
+ "text": {
+ "label": "Metin"
+ },
+ "button_background": {
+ "label": "Sabit düğme arka planı"
+ },
+ "button_label": {
+ "label": "Sabit düğme etiketi"
+ },
+ "secondary_button_label": {
+ "label": "Dış çizgi düğmesi"
+ },
+ "shadow": {
+ "label": "Gölge"
+ }
+ }
+ },
+ "typography": {
+ "name": "Tipografi",
+ "settings": {
+ "type_header_font": {
+ "label": "Yazı tipi",
+ "info": "Farklı bir yazı tipi seçmeniz mağazanızın hızını etkileyebilir. [Sistem yazı tipleri hakkında daha fazla bilgi edinin.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Başlıklar"
+ },
+ "header__2": {
+ "content": "Gövde"
+ },
+ "type_body_font": {
+ "label": "Yazı tipi",
+ "info": "Farklı bir yazı tipi seçmeniz mağazanızın hızını etkileyebilir. [Sistem yazı tipleri hakkında daha fazla bilgi edinin.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Yazı boyutu ölçeği"
+ },
+ "body_scale": {
+ "label": "Yazı boyutu ölçeği"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Sosyal medya",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Sosyal medya hesapları"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Para birimi biçimi",
+ "settings": {
+ "content": "Para birimi kodları",
+ "currency_code_enabled": {
+ "label": "Para birimi kodlarını göster"
+ },
+ "paragraph": "Sepet ve ödeme ücretleri her zaman para birimi kodlarını gösterir. Örnek: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Düzen",
+ "settings": {
+ "page_width": {
+ "label": "Sayfa genişliği"
+ },
+ "spacing_sections": {
+ "label": "Şablon bölümleri arasındaki alan"
+ },
+ "header__grid": {
+ "content": "Izgara"
+ },
+ "paragraph__grid": {
+ "content": "Birden fazla sütun veya satır içeren alanları etkiler."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Yatay boşluk"
+ },
+ "spacing_grid_vertical": {
+ "label": "Dikey boşluk"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Arama davranışı",
+ "settings": {
+ "header": {
+ "content": "Arama önerileri"
+ },
+ "predictive_search_enabled": {
+ "label": "Arama önerilerini etkinleştir"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Ürün satıcısını göster",
+ "info": "Arama önerileri etkinleştirildiğinde görünür."
+ },
+ "predictive_search_show_price": {
+ "label": "Ürün fiyatını göster",
+ "info": "Arama önerileri etkinleştirildiğinde görünür."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Kenarlık"
+ },
+ "header__shadow": {
+ "content": "Gölge"
+ },
+ "blur": {
+ "label": "Bulanıklık"
+ },
+ "corner_radius": {
+ "label": "Köşe yarıçapı"
+ },
+ "horizontal_offset": {
+ "label": "Yatay dengeleme"
+ },
+ "vertical_offset": {
+ "label": "Dikey dengeleme"
+ },
+ "thickness": {
+ "label": "Kalınlık"
+ },
+ "opacity": {
+ "label": "Opaklık"
+ },
+ "image_padding": {
+ "label": "Görsel dolgusu"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Metin hizalaması"
+ }
+ }
+ },
+ "badges": {
+ "name": "Rozetler",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Alt sol"
+ },
+ "options__2": {
+ "label": "Alt sağ"
+ },
+ "options__3": {
+ "label": "Üst sol"
+ },
+ "options__4": {
+ "label": "Üst sağ"
+ },
+ "label": "Kartlardaki konum"
+ },
+ "sale_badge_color_scheme": {
+ "label": "İndirim rozeti renk şeması"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Tükendi rozeti renk şeması"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Düğmeler"
+ },
+ "variant_pills": {
+ "name": "Varyasyon seçenekleri",
+ "paragraph": "Varyasyon seçenekleri, ürün varyasyonlarınızı göstermenin bir yoludur. [Daha fazla bilgi edinin](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Girdiler"
+ },
+ "content_containers": {
+ "name": "İçerik kapsayıcıları"
+ },
+ "popups": {
+ "name": "Açılır menüler ve pencereler",
+ "paragraph": "Gezinme açılır menüleri, açılır pencere modları ve sepet açılır pencereleri gibi alanları etkiler."
+ },
+ "media": {
+ "name": "Medya"
+ },
+ "drawers": {
+ "name": "Çekmeceler"
+ },
+ "cart": {
+ "name": "Sepet",
+ "settings": {
+ "cart_type": {
+ "label": "Sepet türü",
+ "drawer": {
+ "label": "Çekmece"
+ },
+ "page": {
+ "label": "Sayfa"
+ },
+ "notification": {
+ "label": "Açılır pencere bildirimi"
+ }
+ },
+ "show_vendor": {
+ "label": "Satıcıyı göster"
+ },
+ "show_cart_note": {
+ "label": "Sepet notunu etkinleştir"
+ },
+ "cart_drawer": {
+ "header": "Sepet çekmecesi",
+ "collection": {
+ "label": "Koleksiyon",
+ "info": "Sepet çekmecesi boşken görünür."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Ürün kartları",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standart"
+ },
+ "options__2": {
+ "label": "Kart"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Koleksiyon kartları",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standart"
+ },
+ "options__2": {
+ "label": "Kart"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Blog kartları",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Standart"
+ },
+ "options__2": {
+ "label": "Kart"
+ },
+ "label": "Stil"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Masaüstü logo genişliği",
+ "info": "Logo genişliği, mobil için otomatik olarak optimize edilir."
+ },
+ "favicon": {
+ "label": "Favicon görseli",
+ "info": "Ölçeği 32 x 32 piksele düşürülür"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Marka bilgileri",
+ "settings": {
+ "brand_headline": {
+ "label": "Başlık"
+ },
+ "brand_description": {
+ "label": "Açıklama"
+ },
+ "brand_image": {
+ "label": "Görsel"
+ },
+ "brand_image_width": {
+ "label": "Görsel genişliği"
+ },
+ "paragraph": {
+ "content": "Mağazanızın altbilgisine bir marka açıklaması ekleyin."
+ }
+ }
+ },
+ "animations": {
+ "name": "Animasyonlar",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Kaydırırken bölümleri göster"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Yok"
+ },
+ "options__2": {
+ "label": "Dikey lift"
+ },
+ "label": "Üzerine gelme efekti",
+ "info": "Kartları ve düğmeleri etkiler.",
+ "options__3": {
+ "label": "3D lift"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Bölüm dolgusu",
+ "padding_top": "Üst dolgu",
+ "padding_bottom": "Alt dolgu"
+ },
+ "spacing": "Boşluk",
+ "colors": {
+ "label": "Renk şeması",
+ "has_cards_info": "Kart renk şemasını değiştirmek için tema ayarlarınızı güncelleyin."
+ },
+ "heading_size": {
+ "label": "Başlık boyutu",
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ },
+ "options__4": {
+ "label": "Çok büyük"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Varsayılan"
+ },
+ "options__2": {
+ "label": "Kemer"
+ },
+ "options__3": {
+ "label": "Leke"
+ },
+ "options__4": {
+ "label": "Sola ok"
+ },
+ "options__5": {
+ "label": "Sağa ok"
+ },
+ "options__6": {
+ "label": "Baklava"
+ },
+ "options__7": {
+ "label": "Paralelkenar"
+ },
+ "options__8": {
+ "label": "Yuvarlak"
+ },
+ "label": "Görsel şekli",
+ "info": "Bir görsel şeklinin etkin olduğu standart stile sahip kartlarda sınır bulunmaz"
+ },
+ "animation": {
+ "content": "Animasyonlar",
+ "image_behavior": {
+ "options__1": {
+ "label": "Yok"
+ },
+ "options__2": {
+ "label": "Ortam içinde hareket"
+ },
+ "label": "Görsel davranışı",
+ "options__3": {
+ "label": "Sabit arka plan konumu"
+ },
+ "options__4": {
+ "label": "Kaydırarak yakınlaştır"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Duyuru çubuğu",
+ "blocks": {
+ "announcement": {
+ "name": "Duyuru",
+ "settings": {
+ "text": {
+ "label": "Metin"
+ },
+ "text_alignment": {
+ "label": "Metin hizalaması",
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ }
+ },
+ "link": {
+ "label": "Bağlantı"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Duyuruları otomatik olarak döndür"
+ },
+ "change_slides_speed": {
+ "label": "Şu zaman aralığında değiştir:"
+ },
+ "header__1": {
+ "content": "Sosyal medya simgeleri",
+ "info": "Sosyal medya hesaplarınızın görüntülenmesi için bu hesapları [tema ayarlarınızda](/editor?context=theme&category=social%20media) bağlayın."
+ },
+ "header__2": {
+ "content": "Duyurular"
+ },
+ "show_social": {
+ "label": "Simgeleri masaüstünde göster"
+ },
+ "header__3": {
+ "content": "Ülke/bölge seçici",
+ "info": "Ülke/bölge eklemek için [pazar ayarlarınıza](/admin/settings/markets) gidin."
+ },
+ "enable_country_selector": {
+ "label": "Ülke/bölge seçiciyi etkinleştir"
+ },
+ "header__4": {
+ "content": "Dil seçici",
+ "info": "Dil eklemek için [dil ayarlarınıza](/admin/settings/languages) gidin."
+ },
+ "enable_language_selector": {
+ "label": "Dil seçiciyi etkinleştir"
+ }
+ },
+ "presets": {
+ "name": "Duyuru çubuğu"
+ }
+ },
+ "collage": {
+ "name": "Kolaj",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ },
+ "desktop_layout": {
+ "label": "Masaüstü düzeni",
+ "options__1": {
+ "label": "Sol geniş blok"
+ },
+ "options__2": {
+ "label": "Sağ geniş blok"
+ }
+ },
+ "mobile_layout": {
+ "label": "Mobil düzen",
+ "options__1": {
+ "label": "Kolaj"
+ },
+ "options__2": {
+ "label": "Sütun"
+ }
+ },
+ "card_styles": {
+ "label": "Kart stili",
+ "info": "Ürün, koleksiyon ve blog kartı stilleri tema ayarlarınızdan güncellenebilir.",
+ "options__1": {
+ "label": "Bireysel kart stilleri kullanın"
+ },
+ "options__2": {
+ "label": "Hepsinin stilini ürün kartı şeklinde ayarla"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Image",
+ "settings": {
+ "image": {
+ "label": "Görsel"
+ }
+ }
+ },
+ "product": {
+ "name": "Ürün",
+ "settings": {
+ "product": {
+ "label": "Ürün"
+ },
+ "secondary_background": {
+ "label": "İkincil arka planı göster"
+ },
+ "second_image": {
+ "label": "Üstüne gelindiğinde ikinci görseli göster"
+ }
+ }
+ },
+ "collection": {
+ "name": "Koleksiyon",
+ "settings": {
+ "collection": {
+ "label": "Koleksiyon"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Kapak görseli"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Bölümde başka bloklar varsa video açılır pencerede oynatılır.",
+ "placeholder": "YouTube veya Vimeo URL'si kullanın"
+ },
+ "description": {
+ "label": "Video alternatif metni",
+ "info": "Ekran okuyucu kullanan müşteriler için videoyu açıklayın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Kolaj"
+ }
+ },
+ "collection-list": {
+ "name": "Koleksiyon listesi",
+ "settings": {
+ "title": {
+ "label": "Başlık"
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ },
+ "info": "Koleksiyonlarınızı düzenleyerek görsel ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Mobil cihazda kaydırmayı etkinleştir"
+ },
+ "show_view_all": {
+ "label": "Liste gösterilenden daha fazla koleksiyon içeriyorsa \"Tümünü görüntüle\" düğmesini etkinleştir"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Koleksiyon",
+ "settings": {
+ "collection": {
+ "label": "Koleksiyon"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Koleksiyon listesi"
+ }
+ },
+ "contact-form": {
+ "name": "İletişim Formu",
+ "presets": {
+ "name": "İletişim formu"
+ }
+ },
+ "custom-liquid": {
+ "name": "Özel Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid kodu",
+ "info": "Gelişmiş özelleştirmeler oluşturmak için uygulama parçacıkları veya başka bir kod ekleyin. [Daha fazla bilgi edinin](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Özel Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "Blog gönderileri",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Gösterilecek blog gönderisi sayısı"
+ },
+ "show_view_all": {
+ "label": "Blog gösterilenden daha fazla blog gönderisi içeriyorsa \"Tümünü görüntüle\" düğmesini etkinleştir"
+ },
+ "show_image": {
+ "label": "Öne çıkan görseli göster",
+ "info": "En iyi sonuçlar için 3:2 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Tarihi göster"
+ },
+ "show_author": {
+ "label": "Yazarı göster"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ }
+ },
+ "presets": {
+ "name": "Blog gönderileri"
+ }
+ },
+ "featured-collection": {
+ "name": "Öne çıkan koleksiyon",
+ "settings": {
+ "title": {
+ "label": "Başlık"
+ },
+ "collection": {
+ "label": "Koleksiyon"
+ },
+ "products_to_show": {
+ "label": "Gösterilecek maksimum ürün sayısı"
+ },
+ "show_view_all": {
+ "label": "Koleksiyon gösterilenden daha fazla ürün içeriyorsa \"Tümünü görüntüle\"yi etkinleştirin"
+ },
+ "header": {
+ "content": "Ürün kartı"
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Üstüne gelindiğinde ikinci görseli göster"
+ },
+ "show_vendor": {
+ "label": "Satıcıyı göster"
+ },
+ "show_rating": {
+ "label": "Ürün puanlarını göster",
+ "info": "Puan göstermek için bir ürün puanlandırma uygulaması ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "description": {
+ "label": "Açıklama"
+ },
+ "show_description": {
+ "label": "Yöneticiden koleksiyon açıklamasını göster"
+ },
+ "description_style": {
+ "label": "Açıklama stili",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ }
+ },
+ "view_all_style": {
+ "label": "\"Tümünü görüntüle\" stili",
+ "options__1": {
+ "label": "Bağlantı"
+ },
+ "options__2": {
+ "label": "Dış çizgi düğmesi"
+ },
+ "options__3": {
+ "label": "Sabit düğme"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Carousel'i masa üstünde etkinleştir"
+ },
+ "full_width": {
+ "label": "Ürünleri tam genişlikli yap"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Mobil cihazda kaydırmayı etkinleştir"
+ },
+ "enable_quick_buy": {
+ "label": "Hızlı ekleme düğmesini etkinleştir",
+ "info": "Açılır pencere ve çekmece sepet türü için optimumdur."
+ }
+ },
+ "presets": {
+ "name": "Öne çıkan koleksiyon"
+ }
+ },
+ "footer": {
+ "name": "Altbilgi",
+ "blocks": {
+ "link_list": {
+ "name": "Menü",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ },
+ "menu": {
+ "label": "Menü",
+ "info": "Yalnızca üst taraftaki menü öğeleri gösterilir."
+ }
+ }
+ },
+ "text": {
+ "name": "Metin rengi",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ },
+ "subtext": {
+ "label": "Alt metin"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Marka bilgileri",
+ "settings": {
+ "paragraph": {
+ "content": "Marka bilgileriniz bu blokta görünür. [Marka bilgilerini düzenleyin.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Sosyal medya simgeleri"
+ },
+ "show_social": {
+ "label": "Sosyal medya simgelerini göster",
+ "info": "Sosyal medya hesaplarınızın görüntülenmesi için bu hesapları [tema ayarlarınızda](/editor?context=theme&category=social%20media) bağlayın."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "E-posta kaydını göster"
+ },
+ "newsletter_heading": {
+ "label": "Başlık"
+ },
+ "header__1": {
+ "content": "E-posta Kaydı",
+ "info": "\"Kabul edilen pazarlama\" müşteri listenize otomatik olarak eklenen aboneler. [Daha fazla bilgi edinin](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Sosyal medya simgeleri",
+ "info": "Sosyal medya hesaplarınızın görüntülenmesi için bu hesapları [tema ayarlarınızda](/editor?context=theme&category=social%20media) bağlayın."
+ },
+ "show_social": {
+ "label": "Sosyal medya simgelerini göster"
+ },
+ "header__3": {
+ "content": "Ülke/bölge seçici"
+ },
+ "header__4": {
+ "info": "Ülke/bölge eklemek için [pazar ayarlarınıza ](/admin/settings/markets) gidin."
+ },
+ "enable_country_selector": {
+ "label": "Ülke/bölge seçiciyi etkinleştir"
+ },
+ "header__5": {
+ "content": "Dil seçici"
+ },
+ "header__6": {
+ "info": "Dil eklemek için [dil ayarlarınıza](/admin/settings/languages) gidin."
+ },
+ "enable_language_selector": {
+ "label": "Dil seçiciyi etkinleştir"
+ },
+ "header__7": {
+ "content": "Ödeme yöntemleri"
+ },
+ "payment_enable": {
+ "label": "Ödeme simgelerini göster"
+ },
+ "margin_top": {
+ "label": "Üst kenar boşluğu"
+ },
+ "header__8": {
+ "content": "Politika bağlantıları",
+ "info": "Mağaza politikası eklemek için [politika ayarlarınıza](/admin/settings/legal) gidin."
+ },
+ "show_policy": {
+ "label": "Politika bağlantılarını göster"
+ },
+ "header__9": {
+ "content": "Follow on Shop",
+ "info": "Müşterilerin, Shop uygulamasındaki mağazanızı vitrininizden takip edebilmesi için Shop Pay'i etkinleştirmeniz gerekir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Follow on Shop'u etkinleştir"
+ }
+ }
+ },
+ "header": {
+ "name": "Üstbilgi",
+ "settings": {
+ "logo_position": {
+ "label": "Masaüstü logo konumu",
+ "options__1": {
+ "label": "Orta sol"
+ },
+ "options__2": {
+ "label": "Üst sol"
+ },
+ "options__3": {
+ "label": "Üst orta"
+ },
+ "options__4": {
+ "label": "Orta kısmın ortası"
+ }
+ },
+ "menu": {
+ "label": "Menü"
+ },
+ "show_line_separator": {
+ "label": "Ayırıcı satırı göster"
+ },
+ "margin_bottom": {
+ "label": "Alt kenar boşluğu"
+ },
+ "menu_type_desktop": {
+ "label": "Masaüstü menü türü",
+ "info": "Menü türü, mobil cihazlar için otomatik olarak optimize edilir.",
+ "options__1": {
+ "label": "Açılır menü"
+ },
+ "options__2": {
+ "label": "Mega menü"
+ },
+ "options__3": {
+ "label": "Çekmece"
+ }
+ },
+ "mobile_layout": {
+ "content": "Mobil düzen"
+ },
+ "mobile_logo_position": {
+ "label": "Mobil logo konumu",
+ "options__1": {
+ "label": "Orta"
+ },
+ "options__2": {
+ "label": "Sol"
+ }
+ },
+ "logo_help": {
+ "content": "Logonuzu şurada düzenleyin: [tema ayarları](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Sabit üstbilgi",
+ "options__1": {
+ "label": "Yok"
+ },
+ "options__2": {
+ "label": "Yukarı kaydırıldığında"
+ },
+ "options__3": {
+ "label": "Her zaman"
+ },
+ "options__4": {
+ "label": "Her zaman, logo boyutunu küçült"
+ }
+ },
+ "header__3": {
+ "content": "Ülke/bölge seçici"
+ },
+ "header__4": {
+ "info": "Ülke/bölge eklemek için [pazar ayarlarınıza](/admin/settings/markets) gidin."
+ },
+ "enable_country_selector": {
+ "label": "Ülke/bölge seçiciyi etkinleştirin"
+ },
+ "header__5": {
+ "content": "Dil seçici"
+ },
+ "header__6": {
+ "info": "Dil eklemek için [dil ayarlarınıza](/admin/settings/languages) gidin."
+ },
+ "enable_language_selector": {
+ "label": "Dil seçiciyi etkinleştir"
+ },
+ "header__1": {
+ "content": "Renk"
+ },
+ "menu_color_scheme": {
+ "label": "Menü renk şeması"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Görsel banner'ı",
+ "settings": {
+ "image": {
+ "label": "İlk görsel"
+ },
+ "image_2": {
+ "label": "İkinci görsel"
+ },
+ "stack_images_on_mobile": {
+ "label": "Mobilde görselleri üst üste ekle"
+ },
+ "show_text_box": {
+ "label": "Masaüstünde kapsayıcıyı göster"
+ },
+ "image_overlay_opacity": {
+ "label": "Görsel yer paylaşımı opaklığı"
+ },
+ "show_text_below": {
+ "label": "Mobil cihaz üzerinde kapsayıcıyı göster"
+ },
+ "image_height": {
+ "label": "Banner yüksekliği",
+ "options__1": {
+ "label": "İlk görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "info": "En iyi sonuçlar için 3:2 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Büyük"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Üst Sol"
+ },
+ "options__2": {
+ "label": "Üst Orta"
+ },
+ "options__3": {
+ "label": "Üst Sağ"
+ },
+ "options__4": {
+ "label": "Orta Sol"
+ },
+ "options__5": {
+ "label": "Orta Kısmın Ortası"
+ },
+ "options__6": {
+ "label": "Orta Sağ"
+ },
+ "options__7": {
+ "label": "Alt Sol"
+ },
+ "options__8": {
+ "label": "Alt Orta"
+ },
+ "options__9": {
+ "label": "Alt Sağ"
+ },
+ "label": "Masaüstü içerik konumu"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Masaüstü içerik hizalaması"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Mobil içerik hizalaması"
+ },
+ "mobile": {
+ "content": "Mobil Düzen"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Başlık",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ }
+ }
+ },
+ "text": {
+ "name": "Metin rengi",
+ "settings": {
+ "text": {
+ "label": "Açıklama"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ },
+ "label": "Metin stili"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Düğmeler",
+ "settings": {
+ "button_label_1": {
+ "label": "İlk düğme etiketi",
+ "info": "Düğmeyi gizlemek için etiketi boş bırakın."
+ },
+ "button_link_1": {
+ "label": "İlk düğme bağlantısı"
+ },
+ "button_style_secondary_1": {
+ "label": "Dış çizgi düğme stilini kullan"
+ },
+ "button_label_2": {
+ "label": "İkinci düğme etiketi",
+ "info": "Düğmeyi gizlemek için etiketi boş bırakın."
+ },
+ "button_link_2": {
+ "label": "İkinci düğme bağlantısı"
+ },
+ "button_style_secondary_2": {
+ "label": "Dış çizgi düğme stilini kullan"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Görsel banner'ı"
+ }
+ },
+ "image-with-text": {
+ "name": "Metin içeren görsel",
+ "settings": {
+ "image": {
+ "label": "Görsel"
+ },
+ "height": {
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "label": "Görsel yüksekliği",
+ "options__4": {
+ "label": "Büyük"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Önce görsel"
+ },
+ "options__2": {
+ "label": "Görsel 2"
+ },
+ "label": "Masaüstü görsel yerleşimi",
+ "info": "Önce görsel, varsayılan mobil düzendir."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ },
+ "label": "Masaüstü görsel genişliği",
+ "info": "Görsel, mobil cihazlar için otomatik olarak optimize edilir."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Masaüstü içerik hizalaması"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Üst"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Alt"
+ },
+ "label": "Masaüstü içerik konumu"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Çakışma yok"
+ },
+ "options__2": {
+ "label": "Çakışma"
+ },
+ "label": "İçerik düzeni"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Mobil içerik hizalaması"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Başlık",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ }
+ }
+ },
+ "text": {
+ "name": "Metin rengi",
+ "settings": {
+ "text": {
+ "label": "İçerik"
+ },
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Düğme",
+ "settings": {
+ "button_label": {
+ "label": "Düğme etiketi",
+ "info": "Düğmeyi gizlemek için etiketi boş bırakın."
+ },
+ "button_link": {
+ "label": "Düğme bağlantısı"
+ },
+ "outline_button": {
+ "label": "Dış çizgi düğme stilini kullan"
+ }
+ }
+ },
+ "caption": {
+ "name": "Alt yazı",
+ "settings": {
+ "text": {
+ "label": "Metin"
+ },
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Alt yazı"
+ },
+ "options__2": {
+ "label": "Büyük harf"
+ }
+ },
+ "caption_size": {
+ "label": "Metin boyutu",
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Metin içeren görsel"
+ }
+ },
+ "main-article": {
+ "name": "Blog gönderisi",
+ "blocks": {
+ "featured_image": {
+ "name": "Öne çıkan görsel",
+ "settings": {
+ "image_height": {
+ "label": "Öne çıkan görsel yüksekliği",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "info": "En iyi sonuçlar için 16:9 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Büyük"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Başlık",
+ "settings": {
+ "blog_show_date": {
+ "label": "Tarihi göster"
+ },
+ "blog_show_author": {
+ "label": "Yazarı göster"
+ }
+ }
+ },
+ "content": {
+ "name": "İçerik"
+ },
+ "share": {
+ "name": "Paylaş",
+ "settings": {
+ "featured_image_info": {
+ "content": "Sosyal medya gönderilerine bağlantı eklerseniz sayfanın öne çıkan görseli, önizleme görseli olarak gösterilir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Mağaza başlığı ve açıklaması, önizleme görseline dahildir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Metin"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Blog gönderileri",
+ "settings": {
+ "header": {
+ "content": "Blog gönderisi kartı"
+ },
+ "show_image": {
+ "label": "Öne çıkan görseli göster"
+ },
+ "paragraph": {
+ "content": "Blog gönderilerinizi düzenleyerek alıntılarınızı değiştirin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Tarihi göster"
+ },
+ "show_author": {
+ "label": "Yazarı göster"
+ },
+ "layout": {
+ "label": "Masaüstü düzeni",
+ "options__1": {
+ "label": "Izgara"
+ },
+ "options__2": {
+ "label": "Kolaj"
+ },
+ "info": "Gönderiler, mobil cihazda üst üste eklenir."
+ },
+ "image_height": {
+ "label": "Öne çıkan görsel yüksekliği",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "options__4": {
+ "label": "Büyük"
+ },
+ "info": "En iyi sonuçlar için 3:2 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Alt toplam",
+ "blocks": {
+ "subtotal": {
+ "name": "Alt toplam fiyatı"
+ },
+ "buttons": {
+ "name": "Ödeme düğmesi"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Ürünler"
+ },
+ "main-collection-banner": {
+ "name": "Koleksiyon banner'ı",
+ "settings": {
+ "paragraph": {
+ "content": "Koleksiyonunuzu düzenleyerek açıklama veya görsel ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Koleksiyon açıklamasını görüntüle"
+ },
+ "show_collection_image": {
+ "label": "Koleksiyon görselini görüntüle",
+ "info": "En iyi sonuçlar için 16:9 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Ürün ızgarası",
+ "settings": {
+ "products_per_page": {
+ "label": "Sayfa başına ürün"
+ },
+ "enable_filtering": {
+ "label": "Filtrelemeyi etkinleştir",
+ "info": "Search & Discovery uygulamasıyla filtreleri özelleştirin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Sıralamayı etkinleştir"
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Üstüne gelindiğinde ikinci görseli göster"
+ },
+ "show_vendor": {
+ "label": "Satıcıyı göster"
+ },
+ "header__1": {
+ "content": "Filtreleme ve sıralama"
+ },
+ "header__3": {
+ "content": "Ürün kartı"
+ },
+ "enable_tags": {
+ "label": "Filtrelemeyi etkinleştir",
+ "info": "Search & Discovery uygulamasıyla filtreleri özelleştirin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "show_rating": {
+ "label": "Ürün puanlarını göster",
+ "info": "Puan göstermek için bir ürün puanlandırma uygulaması ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ },
+ "enable_quick_buy": {
+ "label": "Hızlı ekleme düğmesini etkinleştir",
+ "info": "Açılır pencere ve çekmece sepet türü için optimumdur."
+ },
+ "filter_type": {
+ "label": "Masaüstü filtre düzeni",
+ "options__1": {
+ "label": "Yatay"
+ },
+ "options__2": {
+ "label": "Dikey"
+ },
+ "options__3": {
+ "label": "Çekmece"
+ },
+ "info": "Çekmece, varsayılan mobil düzendir."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Koleksiyonlar listesi sayfası",
+ "settings": {
+ "title": {
+ "label": "Başlık"
+ },
+ "sort": {
+ "label": "Koleksiyonları sıralama ölçütü:",
+ "options__1": {
+ "label": "Alfabetik olarak, A-Z"
+ },
+ "options__2": {
+ "label": "Alfabetik olarak, Z-A"
+ },
+ "options__3": {
+ "label": "Tarih, yeniden eskiye"
+ },
+ "options__4": {
+ "label": "Tarih, eskiden yeniye"
+ },
+ "options__5": {
+ "label": "Ürün sayısı, yüksekten düşüğe"
+ },
+ "options__6": {
+ "label": "Ürün sayısı, düşükten yükseğe"
+ }
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ },
+ "info": "Koleksiyonlarınızı düzenleyerek görsel ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Sayfa"
+ },
+ "main-password-footer": {
+ "name": "Parola altbilgisi"
+ },
+ "main-password-header": {
+ "name": "Parola üstbilgisi",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Logonuzu tema ayarlarında düzenleyin."
+ }
+ }
+ },
+ "main-product": {
+ "blocks": {
+ "text": {
+ "name": "Metin rengi",
+ "settings": {
+ "text": {
+ "label": "Metin"
+ },
+ "text_style": {
+ "label": "Text style",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Başlık"
+ },
+ "price": {
+ "name": "Fiyat"
+ },
+ "quantity_selector": {
+ "name": "Adet seçici"
+ },
+ "variant_picker": {
+ "name": "Varyasyon seçici",
+ "settings": {
+ "picker_type": {
+ "label": "Tür",
+ "options__1": {
+ "label": "Açılır liste"
+ },
+ "options__2": {
+ "label": "Seçenekler"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Satın al düğmeleri",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Dinamik ödeme düğmelerini göster",
+ "info": "Müşteriler, mağazanızda bulunan ödeme yöntemlerini kullanarak PayPal veya Apple Pay gibi tercih ettikleri seçeneği görür. [Daha fazla bilgi edinin](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Hediye kartları için alıcı bilgi formunu göster",
+ "info": "Alıcıların, planlanmış bir tarihte kişisel bir mesajla birlikte hediye kartları göndermesine olanak sağlar. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Teslim alım stok durumu"
+ },
+ "description": {
+ "name": "Açıklama"
+ },
+ "share": {
+ "name": "Paylaş",
+ "settings": {
+ "featured_image_info": {
+ "content": "Sosyal medya gönderilerine bağlantı eklerseniz sayfanın öne çıkan görseli, önizleme görseli olarak gösterilir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Mağaza başlığı ve açıklaması, önizleme görseline dahildir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Metin"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Daraltılabilir satır",
+ "settings": {
+ "heading": {
+ "info": "İçeriği açıklayan bir başlık ekleyin.",
+ "label": "Başlık"
+ },
+ "content": {
+ "label": "Satır içeriği"
+ },
+ "page": {
+ "label": "Sayfadan alınan satır içeriği"
+ },
+ "icon": {
+ "options__1": {
+ "label": "Hiçbiri"
+ },
+ "options__2": {
+ "label": "Elma"
+ },
+ "options__3": {
+ "label": "Muz"
+ },
+ "options__4": {
+ "label": "Şişe"
+ },
+ "options__5": {
+ "label": "Kutu"
+ },
+ "options__6": {
+ "label": "Havuç"
+ },
+ "options__7": {
+ "label": "Sohbet balonu"
+ },
+ "options__8": {
+ "label": "Onay işareti"
+ },
+ "options__9": {
+ "label": "Pano"
+ },
+ "options__10": {
+ "label": "Süt ürünü"
+ },
+ "options__11": {
+ "label": "Süt ürünü içermez"
+ },
+ "options__12": {
+ "label": "Kurutucu"
+ },
+ "options__13": {
+ "label": "Göz"
+ },
+ "options__14": {
+ "label": "Ateş"
+ },
+ "options__15": {
+ "label": "Glütensiz"
+ },
+ "options__16": {
+ "label": "Kalp"
+ },
+ "options__17": {
+ "label": "Ütü"
+ },
+ "options__18": {
+ "label": "Yaprak"
+ },
+ "options__19": {
+ "label": "Deri"
+ },
+ "options__20": {
+ "label": "Şimşek"
+ },
+ "options__21": {
+ "label": "Ruj"
+ },
+ "options__22": {
+ "label": "Kilit"
+ },
+ "options__23": {
+ "label": "Harita pini"
+ },
+ "options__24": {
+ "label": "Kabuklu yemişsiz"
+ },
+ "label": "Simge",
+ "options__25": {
+ "label": "Pantolon"
+ },
+ "options__26": {
+ "label": "Pati izi"
+ },
+ "options__27": {
+ "label": "Biber"
+ },
+ "options__28": {
+ "label": "Parfüm"
+ },
+ "options__29": {
+ "label": "Uçak"
+ },
+ "options__30": {
+ "label": "Bitki"
+ },
+ "options__31": {
+ "label": "Fiyat etiketi"
+ },
+ "options__32": {
+ "label": "Soru işareti"
+ },
+ "options__33": {
+ "label": "Geri dönüşüm"
+ },
+ "options__34": {
+ "label": "İade"
+ },
+ "options__35": {
+ "label": "Cetvel"
+ },
+ "options__36": {
+ "label": "Servis tabağı"
+ },
+ "options__37": {
+ "label": "Gömlek"
+ },
+ "options__38": {
+ "label": "Ayakkabı"
+ },
+ "options__39": {
+ "label": "Silüet"
+ },
+ "options__40": {
+ "label": "Kar tanesi"
+ },
+ "options__41": {
+ "label": "Yıldız"
+ },
+ "options__42": {
+ "label": "Kronometre"
+ },
+ "options__43": {
+ "label": "Kamyon"
+ },
+ "options__44": {
+ "label": "Yıkama"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Açılır pencere",
+ "settings": {
+ "link_label": {
+ "label": "Bağlantı etiketi"
+ },
+ "page": {
+ "label": "Sayfa"
+ }
+ }
+ },
+ "rating": {
+ "name": "Ürün puanı",
+ "settings": {
+ "paragraph": {
+ "content": "Puan göstermek için bir ürün puanlandırma uygulaması ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Tamamlayıcı ürünler",
+ "settings": {
+ "paragraph": {
+ "content": "Tamamlayıcı ürünleri seçmek için Search & Discovery uygulamasını ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Başlık"
+ },
+ "make_collapsible_row": {
+ "label": "Daraltılabilir satır olarak göster"
+ },
+ "icon": {
+ "info": "Daraltılabilir satır gösterildiğinde görünür."
+ },
+ "product_list_limit": {
+ "label": "Gösterilecek maksimum ürün sayısı"
+ },
+ "products_per_page": {
+ "label": "Sayfa başına ürün sayısı"
+ },
+ "pagination_style": {
+ "label": "Sayfalara ayırma stili",
+ "options": {
+ "option_1": "Noktalar",
+ "option_2": "Sayaç",
+ "option_3": "Numaralar"
+ }
+ },
+ "product_card": {
+ "heading": "Ürün kartı"
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options": {
+ "option_1": "Portre",
+ "option_2": "Kare"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Hızlı ekleme düğmesini etkinleştir"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Metin içeren simge",
+ "settings": {
+ "layout": {
+ "label": "Düzen",
+ "options__1": {
+ "label": "Yatay"
+ },
+ "options__2": {
+ "label": "Dikey"
+ }
+ },
+ "content": {
+ "label": "İçerik",
+ "info": "Her sütun veya satır için bir simge seçin ya da görsel ekleyin."
+ },
+ "heading": {
+ "info": "Simge sütununu gizlemek için başlık etiketini boş bırakın."
+ },
+ "icon_1": {
+ "label": "İlk simge"
+ },
+ "image_1": {
+ "label": "İlk görsel"
+ },
+ "heading_1": {
+ "label": "İlk başlık"
+ },
+ "icon_2": {
+ "label": "İkinci simge"
+ },
+ "image_2": {
+ "label": "İkinci görsel"
+ },
+ "heading_2": {
+ "label": "İkinci başlık"
+ },
+ "icon_3": {
+ "label": "Üçüncü simge"
+ },
+ "image_3": {
+ "label": "Üçüncü görsel"
+ },
+ "heading_3": {
+ "label": "Üçüncü başlık"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Envanter durumu",
+ "settings": {
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Düşük envanter eşiği",
+ "info": "Mevcutsa her zaman stokta göstermek için 0 değerini seçin"
+ },
+ "show_inventory_quantity": {
+ "label": "Envanter sayımını göster"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Medya",
+ "info": "Şunun hakkında daha fazla bilgi edinin: [medya türleri.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Video döngüsünü etkinleştir"
+ },
+ "enable_sticky_info": {
+ "label": "Masaüstünde sabit içeriği etkinleştir"
+ },
+ "hide_variants": {
+ "label": "Bir varyasyon seçtikten sonra diğer varyasyonların medyasını gizleyin"
+ },
+ "gallery_layout": {
+ "label": "Masaüstü düzeni",
+ "options__1": {
+ "label": "Üst üste"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ },
+ "options__3": {
+ "label": "Küçük resimler"
+ },
+ "options__4": {
+ "label": "Küçük resim döngüsü"
+ }
+ },
+ "media_size": {
+ "label": "Masaüstü medya genişliği",
+ "info": "Medya, mobil cihazlar için otomatik olarak optimize edilir.",
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Mobil düzen",
+ "options__1": {
+ "label": "2 sütun"
+ },
+ "options__2": {
+ "label": "Küçük resimleri göster"
+ },
+ "options__3": {
+ "label": "Küçük resimleri gizle"
+ }
+ },
+ "media_position": {
+ "label": "Masaüstü medya konumu",
+ "info": "Konum, mobil cihazlar için otomatik olarak optimize edilir.",
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Sağ"
+ }
+ },
+ "image_zoom": {
+ "label": "Görsel yakınlaştırma",
+ "info": "Ligtbox'ı mobilde açmak için tıklayın ve imleci varsayılan seçeneklerin üzerine getirin.",
+ "options__1": {
+ "label": "Lightbox'ı aç"
+ },
+ "options__2": {
+ "label": "Tıkla ve imleci üzerine getir"
+ },
+ "options__3": {
+ "label": "Yakınlaştırma yok"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Medyayı ekran yüksekliğiyle sınırla"
+ },
+ "media_fit": {
+ "label": "Medya sığdırma",
+ "options__1": {
+ "label": "Orijinal"
+ },
+ "options__2": {
+ "label": "Doldur"
+ }
+ }
+ },
+ "name": "Ürün bilgileri"
+ },
+ "main-search": {
+ "name": "Arama sonuçları",
+ "settings": {
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Üstüne gelindiğinde ikinci görseli göster"
+ },
+ "show_vendor": {
+ "label": "Satıcıyı göster"
+ },
+ "header__1": {
+ "content": "Ürün kartı"
+ },
+ "header__2": {
+ "content": "Blog kartı",
+ "info": "Blog kartı stilleri, arama sonuçlarındaki sayfa kartlarına da uygulanır. Kart stillerini değiştirmek için tema ayarlarınızı güncelleyin."
+ },
+ "article_show_date": {
+ "label": "Tarihi göster"
+ },
+ "article_show_author": {
+ "label": "Yazarı göster"
+ },
+ "show_rating": {
+ "label": "Ürün puanlarını göster",
+ "info": "Puan göstermek için bir ürün puanlandırma uygulaması ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Çoklu sütun",
+ "settings": {
+ "title": {
+ "label": "Başlık"
+ },
+ "image_width": {
+ "label": "Görsel genişliği",
+ "options__1": {
+ "label": "Sütun genişliğinin üçte biri"
+ },
+ "options__2": {
+ "label": "Sütun genişliğinin yarısı"
+ },
+ "options__3": {
+ "label": "Sütun genişliğinin tamamı"
+ }
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ },
+ "options__4": {
+ "label": "Yuvarlak"
+ }
+ },
+ "column_alignment": {
+ "label": "Sütun hizalaması",
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ }
+ },
+ "background_style": {
+ "label": "İkincil arka plan",
+ "options__1": {
+ "label": "Hiçbiri"
+ },
+ "options__2": {
+ "label": "Sütun arka planı olarak göster"
+ }
+ },
+ "button_label": {
+ "label": "Düğme etiketi"
+ },
+ "button_link": {
+ "label": "Düğme bağlantısı"
+ },
+ "swipe_on_mobile": {
+ "label": "Mobil cihazda kaydırmayı etkinleştir"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Sütun",
+ "settings": {
+ "image": {
+ "label": "Görsel"
+ },
+ "title": {
+ "label": "Başlık"
+ },
+ "text": {
+ "label": "Açıklama"
+ },
+ "link_label": {
+ "label": "Bağlantı etiketi"
+ },
+ "link": {
+ "label": "Bağlantı"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Çoklu sütun"
+ }
+ },
+ "newsletter": {
+ "name": "E-posta kaydı",
+ "settings": {
+ "full_width": {
+ "label": "Bölümü tam genişlikli yap"
+ },
+ "paragraph": {
+ "content": "Her e-posta aboneliği bir müşteri hesabı oluşturur. [Daha fazla bilgi edinin](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Başlık",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Alt başlık",
+ "settings": {
+ "paragraph": {
+ "label": "Açıklama"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-posta formu"
+ }
+ },
+ "presets": {
+ "name": "E-posta kaydı"
+ }
+ },
+ "page": {
+ "name": "Sayfa",
+ "settings": {
+ "page": {
+ "label": "Sayfa"
+ }
+ },
+ "presets": {
+ "name": "Sayfa"
+ }
+ },
+ "rich-text": {
+ "name": "Zengin metin",
+ "settings": {
+ "full_width": {
+ "label": "Bölümü tam genişlikli yap"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Masaüstü içerik konumu",
+ "info": "Konum, mobil cihazlar için otomatik olarak optimize edilir."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "İçerik hizalaması"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Başlık",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ }
+ }
+ },
+ "text": {
+ "name": "Metin rengi",
+ "settings": {
+ "text": {
+ "label": "Açıklama"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Düğmeler",
+ "settings": {
+ "button_label_1": {
+ "label": "İlk düğme etiketi",
+ "info": "Düğmeyi gizlemek için etiketi boş bırakın."
+ },
+ "button_link_1": {
+ "label": "İlk düğme bağlantısı"
+ },
+ "button_style_secondary_1": {
+ "label": "Dış çizgi düğme stilini kullan"
+ },
+ "button_label_2": {
+ "label": "İkinci düğme etiketi",
+ "info": "Düğmeyi gizlemek için etiketi boş bırakın."
+ },
+ "button_link_2": {
+ "label": "İkinci düğme bağlantısı"
+ },
+ "button_style_secondary_2": {
+ "label": "Dış çizgi düğme stilini kullan"
+ }
+ }
+ },
+ "caption": {
+ "name": "Alt yazı",
+ "settings": {
+ "text": {
+ "label": "Metin rengi"
+ },
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Alt yazı"
+ },
+ "options__2": {
+ "label": "Büyük harf"
+ }
+ },
+ "caption_size": {
+ "label": "Metin boyutu",
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Zengin metin"
+ }
+ },
+ "apps": {
+ "name": "Uygulamalar",
+ "settings": {
+ "include_margins": {
+ "label": "Bölüm kenar boşluklarını temayla aynı yap"
+ }
+ },
+ "presets": {
+ "name": "Uygulamalar"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ },
+ "cover_image": {
+ "label": "Kapak görseli"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "YouTube veya Vimeo URL'si kullan"
+ },
+ "description": {
+ "label": "Video alternatif metni",
+ "info": "Ekran okuyucu kullanan müşteriler için videoyu açıklayın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Görsel dolgusu ekle",
+ "info": "Kapak görselinizin kırpılmasını istemiyorsanız görsel dolgusunu seçin."
+ },
+ "full_width": {
+ "label": "Bölümü tam genişlikli yap"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Videoyu döngü halinde oynat"
+ },
+ "header__1": {
+ "content": "Shopify'da barındırılan videolar"
+ },
+ "header__2": {
+ "content": "URL'den video ekle"
+ },
+ "header__3": {
+ "content": "Stil"
+ },
+ "paragraph": {
+ "content": "Shopify'da barındırılan bir video seçilmediğinde görünür."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Öne çıkan ürün",
+ "blocks": {
+ "text": {
+ "name": "Metin",
+ "settings": {
+ "text": {
+ "label": "Metin"
+ },
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Başlık"
+ },
+ "price": {
+ "name": "Fiyat"
+ },
+ "quantity_selector": {
+ "name": "Adet seçici"
+ },
+ "variant_picker": {
+ "name": "Varyasyon seçici",
+ "settings": {
+ "picker_type": {
+ "label": "Tür",
+ "options__1": {
+ "label": "Açılır menü"
+ },
+ "options__2": {
+ "label": "Seçenekler"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Satın al düğmeleri",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Dinamik ödeme düğmelerini göster",
+ "info": "Müşteriler, mağazanızda bulunan ödeme yöntemlerini kullanarak PayPal veya Apple Pay gibi tercih ettikleri seçeneği görür. [Daha fazla bilgi edinin](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Açıklama"
+ },
+ "share": {
+ "name": "Paylaş",
+ "settings": {
+ "featured_image_info": {
+ "content": "Sosyal medya gönderilerine bağlantı eklerseniz sayfanın öne çıkan görseli, önizleme görseli olarak gösterilir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Mağaza başlığı ve açıklaması, önizleme görseline dahildir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Metin rengi"
+ }
+ }
+ },
+ "rating": {
+ "name": "Ürün puanı",
+ "settings": {
+ "paragraph": {
+ "content": "Puan göstermek için bir ürün puanlandırma uygulaması ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Metin stili",
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "options__3": {
+ "label": "Büyük harf"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Ürün"
+ },
+ "secondary_background": {
+ "label": "İkincil arka planı göster"
+ },
+ "header": {
+ "content": "Medya",
+ "info": "Şunun hakkında daha fazla bilgi edinin: [medya türleri](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Video döngüsünü etkinleştir"
+ },
+ "hide_variants": {
+ "label": "Masaüstünde seçimi kaldırılmış varyasyonların medyasını gizle"
+ },
+ "media_position": {
+ "label": "Masaüstü medya konumu",
+ "info": "Konum, mobil cihazlar için otomatik olarak optimize edilir.",
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Sağ"
+ }
+ }
+ },
+ "presets": {
+ "name": "Öne çıkan ürün"
+ }
+ },
+ "email-signup-banner": {
+ "name": "E-posta kaydı banner'ı",
+ "settings": {
+ "paragraph": {
+ "content": "Her e-posta aboneliği bir müşteri hesabı oluşturur. [Daha fazla bilgi edinin](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Arka plan resmi"
+ },
+ "show_background_image": {
+ "label": "Arka plan resmini göster"
+ },
+ "show_text_box": {
+ "label": "Masaüstünde kapsayıcıyı göster"
+ },
+ "image_overlay_opacity": {
+ "label": "Görsel yer paylaşımı opaklığı"
+ },
+ "show_text_below": {
+ "label": "Mobil cihaz üzerinde görselin altındaki içeriği göster",
+ "info": "En iyi sonuçlar için 16:9 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Banner yüksekliği",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "options__4": {
+ "label": "Büyük"
+ },
+ "info": "En iyi sonuçlar için 16:9 en-boy oranına sahip bir görsel kullanın. [Daha fazla bilgi edinin](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Üst Sol"
+ },
+ "options__2": {
+ "label": "Üst Orta"
+ },
+ "options__3": {
+ "label": "Üst Sağ"
+ },
+ "options__4": {
+ "label": "Orta Sol"
+ },
+ "options__5": {
+ "label": "Orta Kısmın Ortası"
+ },
+ "options__6": {
+ "label": "Orta Sağ"
+ },
+ "options__7": {
+ "label": "Alt Sol"
+ },
+ "options__8": {
+ "label": "Alt Orta"
+ },
+ "options__9": {
+ "label": "Alt Sağ"
+ },
+ "label": "Masaüstü içerik konumu"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Masaüstü içerik hizalaması"
+ },
+ "header": {
+ "content": "Mobil Düzen"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Mobil içerik hizalaması"
+ },
+ "color_scheme": {
+ "info": "Kapsayıcı gösterildiğinde görünür."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Başlık",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Paragraf",
+ "settings": {
+ "paragraph": {
+ "label": "Açıklama"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "label": "Metin stili"
+ }
+ }
+ },
+ "email_form": {
+ "name": "E-posta formu"
+ }
+ },
+ "presets": {
+ "name": "E-posta kaydı banner'ı"
+ }
+ },
+ "slideshow": {
+ "name": "Slayt gösterisi",
+ "settings": {
+ "layout": {
+ "label": "Düzen",
+ "options__1": {
+ "label": "Tam genişlik"
+ },
+ "options__2": {
+ "label": "Izgara"
+ }
+ },
+ "slide_height": {
+ "label": "Slayt yüksekliği",
+ "options__1": {
+ "label": "İlk görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "options__4": {
+ "label": "Büyük"
+ }
+ },
+ "slider_visual": {
+ "label": "Sayfalara ayırma stili",
+ "options__1": {
+ "label": "Sayaç"
+ },
+ "options__2": {
+ "label": "Noktalar"
+ },
+ "options__3": {
+ "label": "Numaralar"
+ }
+ },
+ "auto_rotate": {
+ "label": "Slaytları otomatik olarak döndür"
+ },
+ "change_slides_speed": {
+ "label": "Slaytları şu zaman aralığında değiştir:"
+ },
+ "show_text_below": {
+ "label": "Mobil cihaz üzerinde görsellerin altındaki içeriği göster"
+ },
+ "mobile": {
+ "content": "Mobil düzen"
+ },
+ "accessibility": {
+ "content": "Erişilebilirlik",
+ "label": "Slayt gösterisi açıklaması",
+ "info": "Ekran koruyucu kullanan müşteriler için slayt gösterisini açıklayın."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Slayt",
+ "settings": {
+ "image": {
+ "label": "Görsel"
+ },
+ "heading": {
+ "label": "Başlık"
+ },
+ "subheading": {
+ "label": "Alt başlık"
+ },
+ "button_label": {
+ "label": "Düğme etiketi",
+ "info": "Düğmeyi gizlemek için etiketi boş bırakın."
+ },
+ "link": {
+ "label": "Düğme bağlantısı"
+ },
+ "secondary_style": {
+ "label": "Dış çizgi düğme stilini kullan"
+ },
+ "box_align": {
+ "label": "Masaüstü içerik konumu",
+ "options__1": {
+ "label": "Üst sol"
+ },
+ "options__2": {
+ "label": "Üst orta"
+ },
+ "options__3": {
+ "label": "Üst sağ"
+ },
+ "options__4": {
+ "label": "Orta sol"
+ },
+ "options__5": {
+ "label": "Orta kısmın ortası"
+ },
+ "options__6": {
+ "label": "Orta sağ"
+ },
+ "options__7": {
+ "label": "Alt sol"
+ },
+ "options__8": {
+ "label": "Alt orta"
+ },
+ "options__9": {
+ "label": "Alt sağ"
+ },
+ "info": "Konum, mobil cihazlar için otomatik olarak optimize edilir."
+ },
+ "show_text_box": {
+ "label": "Masaüstünde kapsayıcıyı göster"
+ },
+ "text_alignment": {
+ "label": "Masaüstü içerik hizalaması",
+ "option_1": {
+ "label": "Sol"
+ },
+ "option_2": {
+ "label": "Orta"
+ },
+ "option_3": {
+ "label": "Sağ"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Görsel yer paylaşımı opaklığı"
+ },
+ "text_alignment_mobile": {
+ "label": "Mobil içerik hizalaması",
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Slayt gösterisi"
+ }
+ },
+ "collapsible_content": {
+ "name": "Daraltılabilir içerik",
+ "settings": {
+ "caption": {
+ "label": "Alt yazı"
+ },
+ "heading": {
+ "label": "Başlık"
+ },
+ "heading_alignment": {
+ "label": "Başlık hizalaması",
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ }
+ },
+ "layout": {
+ "label": "Düzen",
+ "options__1": {
+ "label": "Kapsayıcı yok"
+ },
+ "options__2": {
+ "label": "Satır kapsayıcı"
+ },
+ "options__3": {
+ "label": "Bölüm kapsayıcı"
+ }
+ },
+ "container_color_scheme": {
+ "label": "Kapsayıcı renk şeması",
+ "info": "Düzen; satır veya bölüm kapsayıcısına ayarlandığında görünür."
+ },
+ "open_first_collapsible_row": {
+ "label": "İlk daraltılabilir satırı aç"
+ },
+ "header": {
+ "content": "Görsel düzeni"
+ },
+ "image": {
+ "label": "Görsel"
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Büyük"
+ }
+ },
+ "desktop_layout": {
+ "label": "Masaüstü düzeni",
+ "options__1": {
+ "label": "Önce görsel"
+ },
+ "options__2": {
+ "label": "İkinci olarak görsel"
+ },
+ "info": "Mobilde her zaman önce görsel görünür."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Daraltılabilir satır",
+ "settings": {
+ "heading": {
+ "info": "İçeriği açıklayan bir başlık ekleyin.",
+ "label": "Başlık"
+ },
+ "row_content": {
+ "label": "Satır içeriği"
+ },
+ "page": {
+ "label": "Sayfadan alınan satır içeriği"
+ },
+ "icon": {
+ "label": "Simge",
+ "options__1": {
+ "label": "Hiçbiri"
+ },
+ "options__2": {
+ "label": "Elma"
+ },
+ "options__3": {
+ "label": "Muz"
+ },
+ "options__4": {
+ "label": "Şişe"
+ },
+ "options__5": {
+ "label": "Kutu"
+ },
+ "options__6": {
+ "label": "Havuç"
+ },
+ "options__7": {
+ "label": "Sohbet balonu"
+ },
+ "options__8": {
+ "label": "Onay işareti"
+ },
+ "options__9": {
+ "label": "Pano"
+ },
+ "options__10": {
+ "label": "Süt ürünü"
+ },
+ "options__11": {
+ "label": "Süt ürünü içermez"
+ },
+ "options__12": {
+ "label": "Kurutucu"
+ },
+ "options__13": {
+ "label": "Göz"
+ },
+ "options__14": {
+ "label": "Ateş"
+ },
+ "options__15": {
+ "label": "Glütensiz"
+ },
+ "options__16": {
+ "label": "Kalp"
+ },
+ "options__17": {
+ "label": "Ütü"
+ },
+ "options__18": {
+ "label": "Yaprak"
+ },
+ "options__19": {
+ "label": "Deri"
+ },
+ "options__20": {
+ "label": "Şimşek"
+ },
+ "options__21": {
+ "label": "Ruj"
+ },
+ "options__22": {
+ "label": "Kilit"
+ },
+ "options__23": {
+ "label": "Harita pini"
+ },
+ "options__24": {
+ "label": "Kabuklu yemişsiz"
+ },
+ "options__25": {
+ "label": "Pantolon"
+ },
+ "options__26": {
+ "label": "Pati izi"
+ },
+ "options__27": {
+ "label": "Biber"
+ },
+ "options__28": {
+ "label": "Parfüm"
+ },
+ "options__29": {
+ "label": "Uçak"
+ },
+ "options__30": {
+ "label": "Bitki"
+ },
+ "options__31": {
+ "label": "Fiyat etiketi"
+ },
+ "options__32": {
+ "label": "Soru işareti"
+ },
+ "options__33": {
+ "label": "Geri dönüşüm"
+ },
+ "options__34": {
+ "label": "İade"
+ },
+ "options__35": {
+ "label": "Cetvel"
+ },
+ "options__36": {
+ "label": "Servis tabağı"
+ },
+ "options__37": {
+ "label": "Gömlek"
+ },
+ "options__38": {
+ "label": "Ayakkabı"
+ },
+ "options__39": {
+ "label": "Silüet"
+ },
+ "options__40": {
+ "label": "Kar tanesi"
+ },
+ "options__41": {
+ "label": "Yıldız"
+ },
+ "options__42": {
+ "label": "Kronometre"
+ },
+ "options__43": {
+ "label": "Kamyon"
+ },
+ "options__44": {
+ "label": "Yıkama"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Daraltılabilir içerik"
+ }
+ },
+ "main-account": {
+ "name": "Hesap"
+ },
+ "main-activate-account": {
+ "name": "Hesap etkinleştirme"
+ },
+ "main-addresses": {
+ "name": "Adresler"
+ },
+ "main-login": {
+ "name": "Giriş bilgileri"
+ },
+ "main-order": {
+ "name": "Sipariş"
+ },
+ "main-register": {
+ "name": "Kayıt"
+ },
+ "main-reset-password": {
+ "name": "Parola sıfırlama"
+ },
+ "related-products": {
+ "name": "Alakalı ürünler",
+ "settings": {
+ "heading": {
+ "label": "Başlık"
+ },
+ "products_to_show": {
+ "label": "Gösterilecek maksimum ürün sayısı"
+ },
+ "columns_desktop": {
+ "label": "Masaüstündeki sütun sayısı"
+ },
+ "paragraph__1": {
+ "content": "Dinamik önerilerin zamanla değişmesi ve gelişmesi için sipariş ve ürün bilgileri kullanılır. [Daha fazla bilgi edinin](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Ürün kartı"
+ },
+ "image_ratio": {
+ "label": "Görsel oranı",
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Portre"
+ },
+ "options__3": {
+ "label": "Kare"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Üstüne gelindiğinde ikinci görseli göster"
+ },
+ "show_vendor": {
+ "label": "Satıcıyı göster"
+ },
+ "show_rating": {
+ "label": "Ürün puanlarını göster",
+ "info": "Puan göstermek için bir ürün puanlandırma uygulaması ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ },
+ "columns_mobile": {
+ "label": "Mobildeki sütun sayısı",
+ "options__1": {
+ "label": "1 sütun"
+ },
+ "options__2": {
+ "label": "2 sütun"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Çok satırlı",
+ "settings": {
+ "image": {
+ "label": "Görsel"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Görsele uyarla"
+ },
+ "options__2": {
+ "label": "Küçük"
+ },
+ "options__3": {
+ "label": "Orta"
+ },
+ "options__4": {
+ "label": "Büyük"
+ },
+ "label": "Görsel yüksekliği"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ },
+ "label": "Masaüstü görsel genişliği",
+ "info": "Görsel, mobil cihazlar için otomatik olarak optimize edilir."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Küçük"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Büyük"
+ },
+ "label": "Başlık boyutu"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Gövde"
+ },
+ "options__2": {
+ "label": "Alt yazı"
+ },
+ "label": "Metin stili"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Sabit düğme"
+ },
+ "options__2": {
+ "label": "Dış çizgi düğmesi"
+ },
+ "label": "Düğme stili"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Masaüstü içerik hizalaması"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Üst"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Alt"
+ },
+ "label": "Masaüstü içerik konumu",
+ "info": "Konum, mobil cihazlar için otomatik olarak optimize edilir."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Alternatif (soldan)"
+ },
+ "options__2": {
+ "label": "Alternatif (sağdan)"
+ },
+ "options__3": {
+ "label": "Sola hizalanmış"
+ },
+ "options__4": {
+ "label": "Sağa hizalanmış"
+ },
+ "label": "Masaüstü görsel yerleşimi",
+ "info": "Görsel, mobil cihazlar için otomatik olarak optimize edilir."
+ },
+ "container_color_scheme": {
+ "label": "Kapsayıcı renk şeması"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Sol"
+ },
+ "options__2": {
+ "label": "Orta"
+ },
+ "options__3": {
+ "label": "Sağ"
+ },
+ "label": "Mobil içerik hizalaması"
+ },
+ "header_mobile": {
+ "content": "Mobil Düzen"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Satır",
+ "settings": {
+ "image": {
+ "label": "Görsel"
+ },
+ "caption": {
+ "label": "Alt yazı"
+ },
+ "heading": {
+ "label": "Başlık"
+ },
+ "text": {
+ "label": "Metin"
+ },
+ "button_label": {
+ "label": "Düğme etiketi"
+ },
+ "button_link": {
+ "label": "Düğme bağlantısı"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Çok satırlı"
+ }
+ },
+ "quick-order-list": {
+ "name": "Hızlı sipariş listesi",
+ "settings": {
+ "show_image": {
+ "label": "Görselleri göster"
+ },
+ "show_sku": {
+ "label": "SKU'ları göster"
+ }
+ },
+ "presets": {
+ "name": "Hızlı sipariş listesi"
+ }
+ }
+ }
+}
diff --git a/locales/vi.json b/locales/vi.json
new file mode 100644
index 0000000..b2978fd
--- /dev/null
+++ b/locales/vi.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "Vào cửa hàng bằng mật khẩu:",
+ "login_password_button": "Vào bằng mật khẩu",
+ "login_form_password_label": "Mật khẩu",
+ "login_form_password_placeholder": "Mật khẩu của bạn",
+ "login_form_error": "Sai mật khẩu!",
+ "login_form_submit": "Vào",
+ "admin_link_html": "Bạn có phải chủ cửa hàng không? Đăng nhập tại đây ",
+ "powered_by_shopify_html": "Cửa hàng này sẽ do {{ shopify }} cung cấp"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "Chia sẻ trên Facebook",
+ "share_on_twitter": "Tweet trên Twitter",
+ "share_on_pinterest": "Ghim trên Pinterest"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "Tiếp tục mua sắm",
+ "pagination": {
+ "label": "Phân trang",
+ "page": "Trang {{ number }}",
+ "next": "Trang sau",
+ "previous": "Trang trước"
+ },
+ "search": {
+ "search": "Tìm kiếm",
+ "reset": "Xóa cụm từ tìm kiếm"
+ },
+ "cart": {
+ "view": "Xem giỏ hàng ({{ count }})",
+ "item_added": "Mặt hàng đã thêm vào giỏ hàng",
+ "view_empty_cart": "Xem giỏ hàng"
+ },
+ "share": {
+ "copy_to_clipboard": "Sao chép liên kết",
+ "share_url": "Liên kết",
+ "success_message": "Đã sao chép liên kết vào bảng nhớ tạm",
+ "close": "Đóng cửa sổ chia sẻ"
+ },
+ "slider": {
+ "of": "trong số",
+ "next_slide": "Trượt sang phải",
+ "previous_slide": "Trượt sang trái",
+ "name": "Thanh trượt"
+ }
+ },
+ "newsletter": {
+ "label": "Email",
+ "success": "Cảm ơn bạn đã đăng ký",
+ "button_label": "Đăng ký"
+ },
+ "accessibility": {
+ "skip_to_text": "Chuyển đến nội dung",
+ "close": "Đóng",
+ "unit_price_separator": "trên",
+ "vendor": "Nhà cung cấp:",
+ "error": "Lỗi",
+ "refresh_page": "Khi bạn chọn một mục, toàn bộ trang sẽ được làm mới.",
+ "link_messages": {
+ "new_window": "Mở trong cửa sổ mới.",
+ "external": "Mở trang web bên ngoài."
+ },
+ "loading": "Đang tải...",
+ "skip_to_product_info": "Chuyển đến thông tin sản phẩm",
+ "total_reviews": "tổng số lượt đánh giá",
+ "star_reviews_info": "{{ rating_value }}/{{ rating_max }} sao",
+ "collapsible_content_title": "Nội dung có thể thu gọn",
+ "complementary_products": "Sản phẩm bổ sung"
+ },
+ "blogs": {
+ "article": {
+ "blog": "Blog",
+ "read_more_title": "Đọc thêm: {{ title }}",
+ "comments": {
+ "one": "{{ count }} bình luận",
+ "other": "{{ count }} bình luận"
+ },
+ "moderated": "Xin lưu ý, bình luận cần được phê duyệt trước khi được đăng.",
+ "comment_form_title": "Để lại bình luận",
+ "name": "Tên",
+ "email": "Email",
+ "message": "Bình luận",
+ "post": "Gửi bình luận",
+ "back_to_blog": "Quay lại blog",
+ "share": "Chia sẻ bài viết này",
+ "success": "Bạn đã gửi bình luận thành công! Xin cảm ơn!",
+ "success_moderated": "Bạn đã gửi bình luận thành công. Chúng tôi sẽ đăng bình luận sau chốc lát, khi blog của chúng tôi được kiểm duyệt."
+ }
+ },
+ "onboarding": {
+ "product_title": "Tiêu đề sản phẩm mẫu",
+ "collection_title": "Tên bộ sưu tập của bạn"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "Thêm vào giỏ hàng",
+ "description": "Mô tả",
+ "on_sale": "Giảm giá",
+ "product_variants": "Mẫu mã sản phẩm",
+ "quantity": {
+ "label": "Số lượng",
+ "input_label": "Số lượng của {{ product }}",
+ "increase": "Tăng số lượng của {{ product }}",
+ "decrease": "Giảm số lượng của {{ product }}",
+ "minimum_of": "Tối thiểu {{ quantity }}",
+ "maximum_of": "Tối đa {{ quantity }}",
+ "multiples_of": "Số lượng gia tăng {{ quantity }}",
+ "in_cart_html": "{{ quantity }} trong giỏ hàng",
+ "note": "Xem quy tắc số lượng"
+ },
+ "price": {
+ "from_price_html": "Từ {{ price }}",
+ "regular_price": "Giá thông thường",
+ "sale_price": "Giá ưu đãi",
+ "unit_price": "Đơn giá"
+ },
+ "share": "Chia sẻ sản phẩm này",
+ "sold_out": "Đã bán hết",
+ "unavailable": "Không có sẵn",
+ "vendor": "Nhà cung cấp",
+ "video_exit_message": "{{ title }} mở video toàn màn hình ở cùng một cửa sổ.",
+ "xr_button": "Xem tại không gian của bạn",
+ "xr_button_label": "Xem tại không gian của bạn, tải mặt hàng trong cửa sổ thực tế ảo tăng cường",
+ "pickup_availability": {
+ "view_store_info": "Xem thông tin cửa hàng",
+ "check_other_stores": "Kiểm tra tình trạng còn hàng tại các cửa hàng khác",
+ "pick_up_available": "Có thể nhận hàng tại cửa hàng",
+ "pick_up_available_at_html": "Có thể nhận hàng tại {{ location_name }} ",
+ "pick_up_unavailable_at_html": "Hiện chưa thể nhận hàng tại {{ location_name }} ",
+ "unavailable": "Không thể tải khả năng nhận hàng tại cửa hàng",
+ "refresh": "Làm mới"
+ },
+ "media": {
+ "open_media": "Mở phương tiện {{ index }} trong hộp tương tác",
+ "play_model": "Mở Trình xem 3D",
+ "play_video": "Phát video",
+ "gallery_viewer": "Trình xem thư viện",
+ "load_image": "Tải hình ảnh {{ index }} trong chế độ xem thư viện",
+ "load_model": "Tải mô hình 3D {{ index }} trong chế độ xem thư viện",
+ "load_video": "Phát video {{ index }} trong chế độ xem thư viện",
+ "image_available": "Hình ảnh {{ index }} hiện đã có trong chế độ xem thư viện"
+ },
+ "view_full_details": "Xem toàn bộ chi tiết",
+ "include_taxes": "Đã bao gồm thuế.",
+ "shipping_policy_html": "Phí vận chuyển được tính khi thanh toán.",
+ "choose_options": "Chọn các tùy chọn",
+ "choose_product_options": "Chọn tùy chọn cho {{ product_name }}",
+ "value_unavailable": "{{ option_value }} - Không khả dụng",
+ "variant_sold_out_or_unavailable": "Mẫu mã đã bán hết hoặc không còn hàng",
+ "inventory_in_stock": "Còn hàng",
+ "inventory_in_stock_show_count": "Còn {{ quantity }} hàng lưu kho",
+ "inventory_low_stock": "Sắp hết hàng",
+ "inventory_low_stock_show_count": "Sắp hết hàng: Còn {{ quantity }}",
+ "inventory_out_of_stock": "Hết hàng",
+ "inventory_out_of_stock_continue_selling": "Còn hàng",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "Định giá theo số lượng",
+ "note": "Có sẵn định giá theo số lượng",
+ "minimum": "Hơn {{ quantity }}",
+ "price_at_each": "với giá {{ price }}/chiếc",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "Thư viện phương tiện"
+ },
+ "facets": {
+ "apply": "Áp dụng",
+ "clear": "Xóa",
+ "clear_all": "Xóa tất cả",
+ "from": "Từ",
+ "filter_and_sort": "Lọc và sắp xếp",
+ "filter_by_label": "Bộ lọc:",
+ "filter_button": "Bộ lọc",
+ "filters_selected": {
+ "one": "Đã chọn {{ count }}",
+ "other": "Đã chọn {{ count }}"
+ },
+ "max_price": "Giá cao nhất là {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }}/{{ count }} sản phẩm",
+ "other": "{{ product_count }}/{{ count }} sản phẩm"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} sản phẩm",
+ "other": "{{ count }} sản phẩm"
+ },
+ "reset": "Đặt lại",
+ "sort_button": "Sắp xếp",
+ "sort_by_label": "Sắp xếp theo:",
+ "to": "Đến",
+ "clear_filter": "Xóa bộ lọc",
+ "filter_selected_accessibility": "{{ type }} (Đã chọn {{ count }} bộ lọc)",
+ "show_more": "Hiển thị thêm",
+ "show_less": "Rút gọn",
+ "filter_and_operator_subtitle": "Phù hợp với tất cả"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "Không tìm thấy kết quả cho \"{{ terms }}\". Kiểm tra chính tả hoặc sử dụng một từ hoặc cụm từ khác.",
+ "results_with_count": {
+ "one": "{{ count }} kết quả",
+ "other": "{{ count }} kết quả"
+ },
+ "title": "Kết quả tìm kiếm",
+ "page": "Trang",
+ "products": "Sản phẩm",
+ "search_for": "Tìm kiếm “{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "Tìm thấy {{ count }} kết quả cho “{{ terms }}”",
+ "other": "Tìm thấy {{ count }} kết quả cho “{{ terms }}”"
+ },
+ "results_pages_with_count": {
+ "one": "Trang {{ count }}",
+ "other": "{{ count }} trang"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} gợi ý",
+ "other": "{{ count }} gợi ý"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} sản phẩm",
+ "other": "{{ count }} sản phẩm"
+ },
+ "suggestions": "Gợi ý",
+ "pages": "Trang"
+ },
+ "cart": {
+ "cart": "Giỏ hàng"
+ },
+ "contact": {
+ "form": {
+ "name": "Tên",
+ "email": "Email",
+ "phone": "Số điện thoại",
+ "comment": "Bình luận",
+ "send": "Gửi",
+ "post_success": "Cảm ơn đã liên hệ với chúng tôi. Chúng tôi sẽ liên hệ lại với bạn trong thời gian sớm nhất.",
+ "error_heading": "Vui lòng điều chỉnh các mục sau:",
+ "title": "Biểu mẫu liên hệ"
+ }
+ },
+ "404": {
+ "title": "Không tìm thấy trang",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "Thông báo",
+ "menu": "Menu",
+ "cart_count": {
+ "one": "{{ count }} mặt hàng",
+ "other": "{{ count }} mặt hàng"
+ }
+ },
+ "cart": {
+ "title": "Giỏ hàng của bạn",
+ "caption": "Các mặt hàng trong giỏ hàng",
+ "remove_title": "Xóa {{ title }}",
+ "note": "Hướng dẫn đặc biệt của đơn hàng",
+ "checkout": "Thanh toán",
+ "empty": "Giỏ hàng của bạn đang trống",
+ "cart_error": "Đã xảy ra lỗi khi cập nhật giỏ hàng. Vui lòng thử lại.",
+ "cart_quantity_error_html": "Bạn chỉ có thể thêm {{ quantity }} mặt hàng này vào giỏ hàng.",
+ "taxes_and_shipping_policy_at_checkout_html": "Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán",
+ "taxes_included_but_shipping_at_checkout": "Đã bao gồm thuế, còn phí vận chuyển và ưu đãi giảm giá được tính khi thanh toán",
+ "taxes_included_and_shipping_policy_html": "Đã bao gồm thuế. Phí vận chuyển và ưu đãi giảm giá được tính khi thanh toán.",
+ "taxes_and_shipping_at_checkout": "Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán",
+ "headings": {
+ "product": "Sản phẩm",
+ "price": "Giá",
+ "total": "Tổng",
+ "quantity": "Số lượng",
+ "image": "Hình ảnh sản phẩm"
+ },
+ "update": "Cập nhật",
+ "login": {
+ "title": "Bạn đã có tài khoản?",
+ "paragraph_html": "Đăng nhập để thanh toán nhanh hơn."
+ },
+ "estimated_total": "Tổng số tiền ước tính",
+ "new_estimated_total": "Tổng số tiền ước tính mới"
+ },
+ "footer": {
+ "payment": "Phương thức thanh toán"
+ },
+ "featured_blog": {
+ "view_all": "Xem tất cả",
+ "onboarding_title": "Bài viết blog",
+ "onboarding_content": "Cho khách hàng xem tóm tắt bài viết blog"
+ },
+ "featured_collection": {
+ "view_all": "Xem tất cả",
+ "view_all_label": "Xem toàn bộ sản phẩm trong bộ sưu tập {{ collection_name }}"
+ },
+ "collection_list": {
+ "view_all": "Xem tất cả"
+ },
+ "collection_template": {
+ "title": "Bộ sưu tập",
+ "empty": "Không tìm thấy sản phẩm",
+ "use_fewer_filters_html": "Sử dụng ít bộ lọc hơn hoặc xóa tất cả "
+ },
+ "video": {
+ "load_video": "Tải video: {{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "Tải trang chiếu",
+ "previous_slideshow": "Trang chiếu trước",
+ "next_slideshow": "Trang chiếu sau",
+ "pause_slideshow": "Tạm dừng bản trình chiếu",
+ "play_slideshow": "Phát bản trình chiếu",
+ "carousel": "Quay vòng",
+ "slide": "Trang chiếu"
+ },
+ "page": {
+ "title": "Tiêu đề trang"
+ },
+ "announcements": {
+ "previous_announcement": "Thông báo trước",
+ "next_announcement": "Thông báo sau",
+ "carousel": "Quay vòng",
+ "announcement": "Thông báo",
+ "announcement_bar": "Thanh thông báo"
+ },
+ "quick_order_list": {
+ "product_total": "Tổng phụ sản phẩm",
+ "view_cart": "Xem giỏ hàng",
+ "each": "{{ money }}/chiếc",
+ "product": "Sản phẩm",
+ "variant": "Mẫu mã",
+ "variant_total": "Tổng số mẫu mã",
+ "items_added": {
+ "one": "Đã thêm {{ quantity }} mặt hàng",
+ "other": "Đã thêm {{ quantity }} mặt hàng"
+ },
+ "items_removed": {
+ "one": "Đã xóa {{ quantity }} mặt hàng",
+ "other": "Đã xóa {{ quantity }} mặt hàng"
+ },
+ "product_variants": "Mẫu mã sản phẩm",
+ "total_items": "Tổng số mặt hàng",
+ "remove_all_items_confirmation": "Xóa tất cả {{ quantity }} mặt hàng khỏi giỏ hàng của bạn?",
+ "remove_all": "Xóa tất cả",
+ "cancel": "Hủy"
+ }
+ },
+ "localization": {
+ "country_label": "Quốc gia/khu vực",
+ "language_label": "Ngôn ngữ",
+ "update_language": "Cập nhật ngôn ngữ",
+ "update_country": "Cập nhật quốc gia/khu vực"
+ },
+ "customer": {
+ "account": {
+ "title": "Tài khoản",
+ "details": "Chi tiết tài khoản",
+ "view_addresses": "Xem địa chỉ",
+ "return": "Quay lại Chi tiết tài khoản"
+ },
+ "account_fallback": "Tài khoản",
+ "activate_account": {
+ "title": "Kích hoạt tài khoản",
+ "subtext": "Tạo mật khẩu để kích hoạt tài khoản.",
+ "password": "Mật khẩu",
+ "password_confirm": "Xác nhận mật khẩu",
+ "submit": "Kích hoạt tài khoản",
+ "cancel": "Từ chối lời mời"
+ },
+ "addresses": {
+ "title": "Địa chỉ",
+ "default": "Mặc định",
+ "add_new": "Thêm địa chỉ mới",
+ "edit_address": "Sửa địa chỉ",
+ "first_name": "Tên",
+ "last_name": "Họ",
+ "company": "Công ty",
+ "address1": "Địa chỉ 1",
+ "address2": "Địa chỉ 2",
+ "city": "Thành phố",
+ "country": "Quốc gia/khu vực",
+ "province": "Tỉnh",
+ "zip": "Mã bưu chính/mã ZIP",
+ "phone": "Điện thoại",
+ "set_default": "Đặt làm địa chỉ mặc định",
+ "add": "Thêm địa chỉ",
+ "update": "Cập nhật địa chỉ",
+ "cancel": "Hủy",
+ "edit": "Chỉnh sửa",
+ "delete": "Xóa",
+ "delete_confirm": "Bạn có chắc chắn muốn xóa địa chỉ này không?"
+ },
+ "log_in": "Đăng nhập",
+ "log_out": "Đăng xuất",
+ "login_page": {
+ "cancel": "Hủy",
+ "create_account": "Tạo tài khoản",
+ "email": "Email",
+ "forgot_password": "Quên mật khẩu?",
+ "guest_continue": "Tiếp tục",
+ "guest_title": "Tiếp tục với tư cách khách",
+ "password": "Mật khẩu",
+ "title": "Đăng nhập",
+ "sign_in": "Đăng nhập",
+ "submit": "Gửi"
+ },
+ "orders": {
+ "title": "Lịch sử đặt hàng",
+ "order_number": "Đơn hàng",
+ "order_number_link": "Mã đơn hàng {{ number }}",
+ "date": "Ngày",
+ "payment_status": "Trạng thái thanh toán",
+ "fulfillment_status": "Trạng thái thực hiện",
+ "total": "Tổng",
+ "none": "Bạn chưa đặt đơn hàng nào."
+ },
+ "recover_password": {
+ "title": "Đặt lại mật khẩu",
+ "subtext": "Chúng tôi sẽ gửi email cho bạn để đặt lại mật khẩu",
+ "success": "Chúng tôi đã gửi cho bạn email chứa liên kết cập nhật mật khẩu."
+ },
+ "register": {
+ "title": "Tạo tài khoản",
+ "first_name": "Tên",
+ "last_name": "Họ",
+ "email": "Email",
+ "password": "Mật khẩu",
+ "submit": "Tạo"
+ },
+ "reset_password": {
+ "title": "Đặt lại mật khẩu tài khoản",
+ "subtext": "Nhập mật khẩu mới",
+ "password": "Mật khẩu",
+ "password_confirm": "Xác nhận mật khẩu",
+ "submit": "Đặt lại mật khẩu"
+ },
+ "order": {
+ "title": "Đơn hàng {{ name }}",
+ "date_html": "Đặt vào {{ date }}",
+ "cancelled_html": "Đơn hàng đã bị hủy vào {{ date }}",
+ "cancelled_reason": "Lý do: {{ reason }}",
+ "billing_address": "Địa chỉ thanh toán",
+ "payment_status": "Trạng thái thanh toán",
+ "shipping_address": "Địa chỉ giao hàng",
+ "fulfillment_status": "Trạng thái thực hiện",
+ "discount": "Giảm giá",
+ "shipping": "Vận chuyển",
+ "tax": "Thuế",
+ "product": "Sản phẩm",
+ "sku": "SKU",
+ "price": "Giá",
+ "quantity": "Số lượng",
+ "total": "Tổng",
+ "fulfilled_at_html": "Đã thực hiện {{ date }}",
+ "track_shipment": "Theo dõi lô hàng",
+ "tracking_url": "Liên kết theo dõi",
+ "tracking_company": "Hãng vận chuyển",
+ "tracking_number": "Mã theo dõi",
+ "subtotal": "Tổng phụ",
+ "total_duties": "Thuế hải quan",
+ "total_refunded": "Đã hoàn tiền"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "Đây là số dư thẻ quà tặng trị giá {{ value }} của bạn cho {{ shop }}!",
+ "subtext": "Thẻ quà tặng của bạn",
+ "gift_card_code": "Mã thẻ quà tặng",
+ "shop_link": "Truy cập cửa hàng trực tuyến",
+ "add_to_apple_wallet": "Thêm vào Apple Wallet",
+ "qr_image_alt": "Mã QR — quét để đổi thẻ quà tặng",
+ "copy_code": "Sao chép mã thẻ quà tặng",
+ "expired": "Đã hết hạn",
+ "copy_code_success": "Đã sao chép mã thành công",
+ "how_to_use_gift_card": "Sử dụng mã thẻ quà tặng trực tuyến hoặc mã QR tại cửa hàng",
+ "expiration_date": "Hết hạn vào {{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "Tôi muốn gửi làm quà",
+ "email_label": "Email người nhận",
+ "email": "Email",
+ "name_label": "Tên người nhận (không bắt buộc)",
+ "name": "Tên",
+ "message_label": "Tin nhắn (không bắt buộc)",
+ "message": "Tin nhắn",
+ "max_characters": "Tối đa {{ max_chars }} ký tự",
+ "email_label_optional_for_no_js_behavior": "Email người nhận (không bắt buộc)",
+ "send_on": "DD-MM-YYYY",
+ "send_on_label": "Ngày gửi (tùy chọn)",
+ "expanded": "Đã mở rộng biểu mẫu người nhận thẻ quà tặng",
+ "collapsed": "Đã thu nhỏ biểu mẫu người nhận thẻ quà tặng"
+ }
+ }
+}
diff --git a/locales/vi.schema.json b/locales/vi.schema.json
new file mode 100644
index 0000000..a3743d3
--- /dev/null
+++ b/locales/vi.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "Màu sắc",
+ "settings": {
+ "background": {
+ "label": "Nền"
+ },
+ "background_gradient": {
+ "label": "Nền chuyển màu",
+ "info": "Nền chuyển màu thay cho nền nếu có thể."
+ },
+ "text": {
+ "label": "Văn bản"
+ },
+ "button_background": {
+ "label": "Nền nút đặc"
+ },
+ "button_label": {
+ "label": "Nhãn nút đặc"
+ },
+ "secondary_button_label": {
+ "label": "Nút viền ngoài"
+ },
+ "shadow": {
+ "label": "Đổ bóng"
+ }
+ }
+ },
+ "typography": {
+ "name": "Kiểu chữ",
+ "settings": {
+ "type_header_font": {
+ "label": "Phông chữ",
+ "info": "Việc chọn phông chữ khác có thể ảnh hưởng đến tốc độ của cửa hàng. [Tìm hiểu thêm về phông chữ hệ thống.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "Tiêu đề"
+ },
+ "header__2": {
+ "content": "Nội dung"
+ },
+ "type_body_font": {
+ "label": "Phông chữ",
+ "info": "Việc chọn phông chữ khác có thể ảnh hưởng đến tốc độ của cửa hàng. [Tìm hiểu thêm về phông chữ hệ thống.](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "Tỷ lệ cỡ phông chữ"
+ },
+ "body_scale": {
+ "label": "Tỷ lệ cỡ phông chữ"
+ }
+ }
+ },
+ "social-media": {
+ "name": "Truyền thông xã hội",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "Tài khoản mạng xã hội"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "Định dạng đơn vị tiền tệ",
+ "settings": {
+ "content": "Mã đơn vị tiền tệ",
+ "currency_code_enabled": {
+ "label": "Hiển thị mã đơn vị tiền tệ"
+ },
+ "paragraph": "Giá giỏ hàng và giá thanh toán luôn hiển thị mã đơn vị tiền tệ. Ví dụ: 1,00 USD."
+ }
+ },
+ "layout": {
+ "name": "Bố cục",
+ "settings": {
+ "page_width": {
+ "label": "Chiều rộng trang"
+ },
+ "spacing_sections": {
+ "label": "Khoảng cách giữa các mục mẫu"
+ },
+ "header__grid": {
+ "content": "Lưới"
+ },
+ "paragraph__grid": {
+ "content": "Ảnh hưởng đến vùng có nhiều cột hoặc hàng."
+ },
+ "spacing_grid_horizontal": {
+ "label": "Không gian ngang"
+ },
+ "spacing_grid_vertical": {
+ "label": "Không gian dọc"
+ }
+ }
+ },
+ "search_input": {
+ "name": "Hành vi tìm kiếm",
+ "settings": {
+ "header": {
+ "content": "Gợi ý tìm kiếm"
+ },
+ "predictive_search_enabled": {
+ "label": "Bật gợi ý tìm kiếm"
+ },
+ "predictive_search_show_vendor": {
+ "label": "Hiển thị nhà cung cấp sản phẩm",
+ "info": "Hiển thị khi bật gợi ý tìm kiếm."
+ },
+ "predictive_search_show_price": {
+ "label": "Hiển thị giá sản phẩm",
+ "info": "Hiển thị khi bật gợi ý tìm kiếm."
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "Đường viền"
+ },
+ "header__shadow": {
+ "content": "Đổ bóng"
+ },
+ "blur": {
+ "label": "Làm mờ"
+ },
+ "corner_radius": {
+ "label": "Bán kính góc"
+ },
+ "horizontal_offset": {
+ "label": "Khoảng bù ngang"
+ },
+ "vertical_offset": {
+ "label": "Khoảng bù dọc"
+ },
+ "thickness": {
+ "label": "Độ dày"
+ },
+ "opacity": {
+ "label": "Độ chắn sáng"
+ },
+ "image_padding": {
+ "label": "Vùng đệm ảnh"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "Trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Phải"
+ },
+ "label": "Căn chỉnh văn bản"
+ }
+ }
+ },
+ "badges": {
+ "name": "Huy hiệu",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "Dưới cùng bên trái"
+ },
+ "options__2": {
+ "label": "Dưới cùng bên phải"
+ },
+ "options__3": {
+ "label": "Trên cùng bên trái"
+ },
+ "options__4": {
+ "label": "Trên cùng bên phải"
+ },
+ "label": "Vị trí trên thẻ"
+ },
+ "sale_badge_color_scheme": {
+ "label": "Bảng màu huy hiệu giảm giá"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "Bảng màu huy hiệu đã hết hàng"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Nút"
+ },
+ "variant_pills": {
+ "name": "Ô chọn mẫu mã",
+ "paragraph": "Ô chọn mẫu mã là một cách để hiển thị mẫu mã sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "Thông tin đầu vào"
+ },
+ "content_containers": {
+ "name": "Khoảng chứa nội dung"
+ },
+ "popups": {
+ "name": "Menu thả xuống và cửa sổ bật lên",
+ "paragraph": "Ảnh hưởng đến các vùng như menu điều hướng thả xuống, hộp tương tác bật lên và cửa sổ bật lên giỏ hàng."
+ },
+ "media": {
+ "name": "Phương tiện"
+ },
+ "drawers": {
+ "name": "Ngăn"
+ },
+ "cart": {
+ "name": "Giỏ hàng",
+ "settings": {
+ "cart_type": {
+ "label": "Loại giỏ hàng",
+ "drawer": {
+ "label": "Ngăn"
+ },
+ "page": {
+ "label": "Trang"
+ },
+ "notification": {
+ "label": "Thông báo cửa sổ bật lên"
+ }
+ },
+ "show_vendor": {
+ "label": "Hiển thị nhà cung cấp"
+ },
+ "show_cart_note": {
+ "label": "Bật ghi chú trong giỏ hàng"
+ },
+ "cart_drawer": {
+ "header": "Ngăn giỏ hàng",
+ "collection": {
+ "label": "Bộ sưu tập",
+ "info": "Hiển thị khi ngăn giỏ hàng trống."
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "Thẻ sản phẩm",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Tiêu chuẩn"
+ },
+ "options__2": {
+ "label": "Thẻ"
+ },
+ "label": "Kiểu"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "Thẻ bộ sưu tập",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Tiêu chuẩn"
+ },
+ "options__2": {
+ "label": "Thẻ"
+ },
+ "label": "Kiểu"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "Thẻ blog",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "Tiêu chuẩn"
+ },
+ "options__2": {
+ "label": "Thẻ"
+ },
+ "label": "Kiểu"
+ }
+ }
+ },
+ "logo": {
+ "name": "Logo",
+ "settings": {
+ "logo_image": {
+ "label": "Logo"
+ },
+ "logo_width": {
+ "label": "Chiều rộng logo trên màn hình nền",
+ "info": "Chiều rộng logo được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "favicon": {
+ "label": "Hình ảnh biểu tượng trang web",
+ "info": "Sẽ được thu nhỏ xuống 32 x 32 px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Thông tin thương hiệu",
+ "settings": {
+ "brand_headline": {
+ "label": "Tiêu đề"
+ },
+ "brand_description": {
+ "label": "Mô tả"
+ },
+ "brand_image": {
+ "label": "Hình ảnh"
+ },
+ "brand_image_width": {
+ "label": "Chiều rộng hình ảnh"
+ },
+ "paragraph": {
+ "content": "Thêm mô tả thương hiệu vào chân trang của cửa hàng."
+ }
+ }
+ },
+ "animations": {
+ "name": "Hiệu ứng động",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "Hiển thị các mục khi cuộn"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "Không"
+ },
+ "options__2": {
+ "label": "Chế độ nổi theo chiều dọc"
+ },
+ "label": "Hiệu ứng di chuột",
+ "info": "Tác động lên các thẻ và nút.",
+ "options__3": {
+ "label": "Chế độ nổi 3D"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "Vùng đệm mục",
+ "padding_top": "Vùng đệm trên cùng",
+ "padding_bottom": "Vùng đệm dưới cùng"
+ },
+ "spacing": "Khoảng cách",
+ "colors": {
+ "label": "Bảng màu",
+ "has_cards_info": "Hãy cập nhật cài đặt chủ đề để thay đổi bảng màu thẻ."
+ },
+ "heading_size": {
+ "label": "Cỡ tiêu đề",
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ },
+ "options__4": {
+ "label": "Cực lớn"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "Mặc định"
+ },
+ "options__2": {
+ "label": "Hình vòm"
+ },
+ "options__3": {
+ "label": "Giọt nước"
+ },
+ "options__4": {
+ "label": "Dấu chữ V trái"
+ },
+ "options__5": {
+ "label": "Dấu chữ V phải"
+ },
+ "options__6": {
+ "label": "Hình thoi"
+ },
+ "options__7": {
+ "label": "Hình bình hành"
+ },
+ "options__8": {
+ "label": "Hình tròn"
+ },
+ "label": "Hình dạng ảnh",
+ "info": "Thẻ kiểu dáng tiêu chuẩn không có đường viền khi đang áp dụng hình dạng ảnh."
+ },
+ "animation": {
+ "content": "Hiệu ứng động",
+ "image_behavior": {
+ "options__1": {
+ "label": "Không"
+ },
+ "options__2": {
+ "label": "Chuyển động xung quanh"
+ },
+ "label": "Hành vi của ảnh",
+ "options__3": {
+ "label": "Vị trí nền cố định"
+ },
+ "options__4": {
+ "label": "Phóng to khi cuộn"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "Thanh thông báo",
+ "blocks": {
+ "announcement": {
+ "name": "Thông báo",
+ "settings": {
+ "text": {
+ "label": "Văn bản"
+ },
+ "text_alignment": {
+ "label": "Căn chỉnh văn bản",
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ }
+ },
+ "link": {
+ "label": "Liên kết"
+ }
+ }
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "Tự động xoay vòng thông báo"
+ },
+ "change_slides_speed": {
+ "label": "Thay đổi sau mỗi"
+ },
+ "header__1": {
+ "content": "Biểu tượng mạng xã hội",
+ "info": "Để hiển thị tài khoản mạng xã hội, hãy liên kết các tài khoản đó trong [cài đặt chủ đề](/editor?context=theme&category=social%20media)."
+ },
+ "header__2": {
+ "content": "Thông báo"
+ },
+ "show_social": {
+ "label": "Hiển thị biểu tượng trên máy tính để bàn"
+ },
+ "header__3": {
+ "content": "Hộp chọn quốc gia/khu vực",
+ "info": "Để thêm quốc gia/khu vực, vào [cài đặt thị trường.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Bật hộp chọn quốc gia/khu vực"
+ },
+ "header__4": {
+ "content": "Hộp chọn ngôn ngữ",
+ "info": "Để thêm ngôn ngữ, vào [cài đặt ngôn ngữ](/admin/settings/languages)."
+ },
+ "enable_language_selector": {
+ "label": "Bật hộp chọn ngôn ngữ"
+ }
+ },
+ "presets": {
+ "name": "Thanh thông báo"
+ }
+ },
+ "collage": {
+ "name": "Ghép",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "desktop_layout": {
+ "label": "Bố cục màn hình nền",
+ "options__1": {
+ "label": "Khối lớn bên trái"
+ },
+ "options__2": {
+ "label": "Khối lớn bên phải"
+ }
+ },
+ "mobile_layout": {
+ "label": "Bố cục di động",
+ "options__1": {
+ "label": "Ghép"
+ },
+ "options__2": {
+ "label": "Cột"
+ }
+ },
+ "card_styles": {
+ "label": "Kiểu dáng thẻ",
+ "info": "Có thể cập nhật kiểu dáng sản phẩm, bộ sưu tập và thẻ blog trong cài đặt chủ đề.",
+ "options__1": {
+ "label": "Sử dụng kiểu dáng thẻ riêng"
+ },
+ "options__2": {
+ "label": "Tạo kiểu dáng cho tất cả như thẻ sản phẩm"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "name": "Hình ảnh",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh"
+ }
+ }
+ },
+ "product": {
+ "name": "Sản phẩm",
+ "settings": {
+ "product": {
+ "label": "Sản phẩm"
+ },
+ "secondary_background": {
+ "label": "Hiển thị nền thứ cấp"
+ },
+ "second_image": {
+ "label": "Hiển thị hình ảnh thứ cấp khi di chuột đến"
+ }
+ }
+ },
+ "collection": {
+ "name": "Bộ sưu tập",
+ "settings": {
+ "collection": {
+ "label": "Bộ sưu tập"
+ }
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "cover_image": {
+ "label": "Ảnh bìa"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Video chạy trong cửa sổ bật lên nếu mục này chứa các khối khác.",
+ "placeholder": "Sử dụng URL Youtube hoặc Vimeo"
+ },
+ "description": {
+ "label": "Văn bản thay thế cho video",
+ "info": "Mô tả video cho khách hàng bằng trình đọc màn hình. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Ghép"
+ }
+ },
+ "collection-list": {
+ "name": "Danh sách bộ sưu tập",
+ "settings": {
+ "title": {
+ "label": "Tiêu đề"
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Chân dung"
+ },
+ "options__3": {
+ "label": "Vuông"
+ },
+ "info": "Chỉnh sửa bộ sưu tập để thêm hình ảnh. [Tìm hiểu thêm](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "Bật tính năng quẹt trên di động"
+ },
+ "show_view_all": {
+ "label": "Bật nút \"View all\" (Xem tất cả) nếu danh sách chứa nhiều bộ sưu tập hơn số lượng hiển thị"
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "name": "Bộ sưu tập",
+ "settings": {
+ "collection": {
+ "label": "Bộ sưu tập"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Danh sách bộ sưu tập"
+ }
+ },
+ "contact-form": {
+ "name": "Biểu mẫu liên hệ",
+ "presets": {
+ "name": "Biểu mẫu liên hệ"
+ }
+ },
+ "custom-liquid": {
+ "name": "Liquid tùy chỉnh",
+ "settings": {
+ "custom_liquid": {
+ "label": "Mã Liquid",
+ "info": "Thêm đoạn mã ứng dụng hoặc mã khác để tạo các tùy chỉnh nâng cao. [Tìm hiểu thêm](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "Liquid tùy chỉnh"
+ }
+ },
+ "featured-blog": {
+ "name": "Bài viết blog",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "blog": {
+ "label": "Blog"
+ },
+ "post_limit": {
+ "label": "Số bài viết blog hiển thị"
+ },
+ "show_view_all": {
+ "label": "Bật nút \"View all\" (Xem tất cả) nếu blog chứa nhiều bài viết blog hơn số lượng hiển thị"
+ },
+ "show_image": {
+ "label": "Hiển thị hình ảnh nổi bật",
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 3:2. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "Hiển thị ngày"
+ },
+ "show_author": {
+ "label": "Hiển thị tác giả"
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ }
+ },
+ "presets": {
+ "name": "Bài viết blog"
+ }
+ },
+ "featured-collection": {
+ "name": "Bộ sưu tập nổi bật",
+ "settings": {
+ "title": {
+ "label": "Tiêu đề"
+ },
+ "collection": {
+ "label": "Bộ sưu tập"
+ },
+ "products_to_show": {
+ "label": "Số lượng sản phẩm hiển thị tối đa"
+ },
+ "show_view_all": {
+ "label": "Bật tùy chọn \"Xem tất cả\" nếu bộ sưu tập có nhiều sản phẩm hơn số lượng hiển thị"
+ },
+ "header": {
+ "content": "Thẻ sản phẩm"
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Chân dung"
+ },
+ "options__3": {
+ "label": "Vuông"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hiển thị hình ảnh thứ cấp khi di chuột đến"
+ },
+ "show_vendor": {
+ "label": "Hiển thị nhà cung cấp"
+ },
+ "show_rating": {
+ "label": "Hiển thị thứ hạng sản phẩm",
+ "info": "Nếu muốn hiển thị thứ hạng, hãy thêm ứng dụng xếp hạng sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "Bật nút thêm nhanh",
+ "info": "Tối ưu với cửa sổ bật lên hoặc giỏ hàng kiểu ngăn kéo."
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "description": {
+ "label": "Mô tả"
+ },
+ "show_description": {
+ "label": "Hiển thị mô tả bộ sưu tập trong trang quản trị"
+ },
+ "description_style": {
+ "label": "Kiểu mô tả",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề phụ"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ }
+ },
+ "view_all_style": {
+ "label": "Kiểu \"Xem tất cả\"",
+ "options__1": {
+ "label": "Liên kết"
+ },
+ "options__2": {
+ "label": "Nút viền ngoài"
+ },
+ "options__3": {
+ "label": "Nút đặc"
+ }
+ },
+ "enable_desktop_slider": {
+ "label": "Bật tính năng quay vòng trên màn hình nền"
+ },
+ "full_width": {
+ "label": "Tạo chiều rộng đầy đủ cho sản phẩm"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "Bật tính năng quẹt trên di động"
+ }
+ },
+ "presets": {
+ "name": "Bộ sưu tập nổi bật"
+ }
+ },
+ "footer": {
+ "name": "Chân trang",
+ "blocks": {
+ "link_list": {
+ "name": "Menu",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "menu": {
+ "label": "Menu",
+ "info": "Chỉ hiển thị mục menu cấp cao nhất."
+ }
+ }
+ },
+ "text": {
+ "name": "Văn bản",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "subtext": {
+ "label": "Văn bản phụ"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "Thông tin thương hiệu",
+ "settings": {
+ "paragraph": {
+ "content": "Khối này sẽ hiển thị thông tin thương hiệu của bạn. [Chỉnh sửa thông tin thương hiệu.](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "Biểu tượng truyền thông xã hội"
+ },
+ "show_social": {
+ "label": "Hiển thị biểu tượng truyền thông xã hội",
+ "info": "Để hiển thị tài khoản truyền thông xã hội, hãy liên kết các tài khoản đó trong [cài đặt chủ đề](/editor?context=theme&category=social%20media)."
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "Hiển thị đăng ký nhận email"
+ },
+ "newsletter_heading": {
+ "label": "Tiêu đề"
+ },
+ "header__1": {
+ "content": "Đăng ký nhận email",
+ "info": "Đã tự động thêm người đăng ký vào danh sách khách hàng \"chấp nhận tiếp thị\". [Tìm hiểu thêm](https://help.shopify.com/manual/customers/manage-customers)"
+ },
+ "header__2": {
+ "content": "Biểu tượng truyền thông xã hội",
+ "info": "Để hiển thị tài khoản truyền thông xã hội, hãy liên kết các tài khoản đó trong [cài đặt chủ đề](/editor?context=theme&category=social%20media)."
+ },
+ "show_social": {
+ "label": "Hiển thị biểu tượng truyền thông xã hội"
+ },
+ "header__3": {
+ "content": "Hộp chọn quốc gia/vùng"
+ },
+ "header__4": {
+ "info": "Để thêm quốc gia/khu vực, vào [cài đặt thị trường.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Bật hộp chọn quốc gia/vùng"
+ },
+ "header__5": {
+ "content": "Hộp chọn ngôn ngữ"
+ },
+ "header__6": {
+ "info": "Để thêm ngôn ngữ, vào [cài đặt ngôn ngữ](/admin/settings/languages)."
+ },
+ "enable_language_selector": {
+ "label": "Bật hộp chọn ngôn ngữ"
+ },
+ "header__7": {
+ "content": "Phương thức thanh toán"
+ },
+ "payment_enable": {
+ "label": "Hiển thị biểu tượng thanh toán"
+ },
+ "margin_top": {
+ "label": "Lề trên"
+ },
+ "header__8": {
+ "content": "Liên kết chính sách",
+ "info": "Để thêm chính sách cửa hàng, truy cập [cài đặt chính sách](/admin/settings/legal)."
+ },
+ "show_policy": {
+ "label": "Hiển thị liên kết chính sách"
+ },
+ "header__9": {
+ "content": "Theo dõi trên Shop",
+ "info": "Bạn phải bật Shop Pay để cho phép khách hàng theo dõi cửa hàng trên ứng dụng Shop từ cửa hàng của bạn. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "Bật tính năng Theo dõi trên Shop"
+ }
+ }
+ },
+ "header": {
+ "name": "Đầu trang",
+ "settings": {
+ "logo_position": {
+ "label": "Vị trí logo trên màn hình nền",
+ "options__1": {
+ "label": "Ở giữa bên trái"
+ },
+ "options__2": {
+ "label": "Trên cùng bên trái"
+ },
+ "options__3": {
+ "label": "Trên cùng ở giữa"
+ },
+ "options__4": {
+ "label": "Chính giữa"
+ }
+ },
+ "menu": {
+ "label": "Menu"
+ },
+ "show_line_separator": {
+ "label": "Hiển thị đường phân cách"
+ },
+ "margin_bottom": {
+ "label": "Lề dưới"
+ },
+ "menu_type_desktop": {
+ "label": "Loại menu trên màn hình nền",
+ "info": "Loại menu được tự động tối ưu hóa cho thiết bị di động.",
+ "options__1": {
+ "label": "Menu thả xuống"
+ },
+ "options__2": {
+ "label": "Menu lớn"
+ },
+ "options__3": {
+ "label": "Ngăn"
+ }
+ },
+ "mobile_layout": {
+ "content": "Bố cục di động"
+ },
+ "mobile_logo_position": {
+ "label": "Vị trí logo di động",
+ "options__1": {
+ "label": "Ở giữa"
+ },
+ "options__2": {
+ "label": "Bên trái"
+ }
+ },
+ "logo_help": {
+ "content": "Chỉnh sửa logo trong [cài đặt chủ đề](/editor?context=theme&category=logo)."
+ },
+ "sticky_header_type": {
+ "label": "Đầu trang dính",
+ "options__1": {
+ "label": "Không"
+ },
+ "options__2": {
+ "label": "Khi cuộn lên"
+ },
+ "options__3": {
+ "label": "Luôn luôn"
+ },
+ "options__4": {
+ "label": "Luôn luôn, giảm kích cỡ logo"
+ }
+ },
+ "header__3": {
+ "content": "Hộp chọn quốc gia/vùng"
+ },
+ "header__4": {
+ "info": "Để thêm quốc gia/khu vực, vào [cài đặt thị trường.](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "Bật hộp chọn quốc gia/vùng"
+ },
+ "header__5": {
+ "content": "Hộp chọn ngôn ngữ"
+ },
+ "header__6": {
+ "info": "Để thêm ngôn ngữ, vào [cài đặt ngôn ngữ](/admin/settings/languages)."
+ },
+ "enable_language_selector": {
+ "label": "Bật hộp chọn ngôn ngữ"
+ },
+ "header__1": {
+ "content": "Màu"
+ },
+ "menu_color_scheme": {
+ "label": "Bảng màu của menu"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "Biểu ngữ hình ảnh",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh đầu tiên"
+ },
+ "image_2": {
+ "label": "Hình ảnh thứ hai"
+ },
+ "stack_images_on_mobile": {
+ "label": "Xếp chồng hình ảnh trên điện thoại di động"
+ },
+ "show_text_box": {
+ "label": "Hiện vùng chứa trên màn hình nền"
+ },
+ "image_overlay_opacity": {
+ "label": "Độ chắn sáng của lớp phủ hình ảnh"
+ },
+ "show_text_below": {
+ "label": "Hiện vùng chứa trên thiết bị di động"
+ },
+ "image_height": {
+ "label": "Chiều cao biểu ngữ",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh đầu tiên"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 3:2. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Lớn"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Trên cùng bên trái"
+ },
+ "options__2": {
+ "label": "Trên cùng ở giữa"
+ },
+ "options__3": {
+ "label": "Trên cùng bên phải"
+ },
+ "options__4": {
+ "label": "Ở giữa bên trái"
+ },
+ "options__5": {
+ "label": "Chính giữa"
+ },
+ "options__6": {
+ "label": "Ở giữa bên phải"
+ },
+ "options__7": {
+ "label": "Dưới cùng bên trái"
+ },
+ "options__8": {
+ "label": "Dưới cùng ở giữa"
+ },
+ "options__9": {
+ "label": "Dưới cùng bên phải"
+ },
+ "label": "Vị trí nội dung trên màn hình nền"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên màn hình nền"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên thiết bị di động"
+ },
+ "mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Tiêu đề",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ }
+ }
+ },
+ "text": {
+ "name": "Văn bản",
+ "settings": {
+ "text": {
+ "label": "Mô tả"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ },
+ "label": "Kiểu văn bản"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Nút",
+ "settings": {
+ "button_label_1": {
+ "label": "Nhãn nút thứ nhất",
+ "info": "Để nhãn trống để ẩn nút."
+ },
+ "button_link_1": {
+ "label": "Liên kết trên nút thứ nhất"
+ },
+ "button_style_secondary_1": {
+ "label": "Sử dụng kiểu nút viền ngoài"
+ },
+ "button_label_2": {
+ "label": "Nhãn nút thứ hai",
+ "info": "Để nhãn trống để ẩn nút."
+ },
+ "button_link_2": {
+ "label": "Liên kết trên nút thứ hai"
+ },
+ "button_style_secondary_2": {
+ "label": "Sử dụng kiểu nút viền ngoài"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Biểu ngữ hình ảnh"
+ }
+ },
+ "image-with-text": {
+ "name": "Hình ảnh có chữ",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh"
+ },
+ "height": {
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "label": "Chiều cao hình ảnh",
+ "options__4": {
+ "label": "Lớn"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "Hình ảnh trước"
+ },
+ "options__2": {
+ "label": "Hình ảnh thứ hai"
+ },
+ "label": "Vị trí hình ảnh trên màn hình nền",
+ "info": "Hình ảnh trước là bố cục mặc định trên di động."
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ },
+ "label": "Chiều rộng hình ảnh trên màn hình nền",
+ "info": "Hình ảnh được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên màn hình nền",
+ "options__2": {
+ "label": "Giữa"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Bên trên"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên dưới"
+ },
+ "label": "Vị trí nội dung trên màn hình nền"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "Không trùng"
+ },
+ "options__2": {
+ "label": "Trùng"
+ },
+ "label": "Bố cục nội dung"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên thiết bị di động",
+ "options__2": {
+ "label": "Giữa"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Tiêu đề",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ }
+ }
+ },
+ "text": {
+ "name": "Văn bản",
+ "settings": {
+ "text": {
+ "label": "Nội dung"
+ },
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề"
+ }
+ }
+ }
+ },
+ "button": {
+ "name": "Nút",
+ "settings": {
+ "button_label": {
+ "label": "Nhãn nút",
+ "info": "Để nhãn trống để ẩn nút."
+ },
+ "button_link": {
+ "label": "Liên kết trên nút"
+ },
+ "outline_button": {
+ "label": "Sử dụng kiểu nút viền ngoài"
+ }
+ }
+ },
+ "caption": {
+ "name": "Phụ đề",
+ "settings": {
+ "text": {
+ "label": "Văn bản"
+ },
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Tiêu đề phụ"
+ },
+ "options__2": {
+ "label": "Chữ viết hoa"
+ }
+ },
+ "caption_size": {
+ "label": "Cỡ chữ",
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Hình ảnh có chữ"
+ }
+ },
+ "main-article": {
+ "name": "Bài viết blog",
+ "blocks": {
+ "featured_image": {
+ "name": "Hình ảnh nổi bật",
+ "settings": {
+ "image_height": {
+ "label": "Chiều cao hình ảnh nổi bật",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 16:9. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "Lớn"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tên",
+ "settings": {
+ "blog_show_date": {
+ "label": "Hiển thị ngày"
+ },
+ "blog_show_author": {
+ "label": "Hiển thị tác giả"
+ }
+ }
+ },
+ "content": {
+ "name": "Nội dung"
+ },
+ "share": {
+ "name": "Chia sẻ",
+ "settings": {
+ "featured_image_info": {
+ "content": "Nếu bạn đưa liên kết vào bài đăng trên truyền thông xã hội, hình ảnh nổi bật của trang sẽ hiển thị giống hình ảnh xem trước. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Hình ảnh xem trước có chứa tiêu đề và mô tả của cửa hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Văn bản"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "Bài viết blog",
+ "settings": {
+ "header": {
+ "content": "Thẻ bài viết blog"
+ },
+ "show_image": {
+ "label": "Hiển thị hình ảnh nổi bật"
+ },
+ "paragraph": {
+ "content": "Chỉnh sửa bài viết blog để thay đổi đoạn trích. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "Hiển thị ngày"
+ },
+ "show_author": {
+ "label": "Hiển thị tác giả"
+ },
+ "layout": {
+ "label": "Bố cục màn hình nền",
+ "options__1": {
+ "label": "Lưới"
+ },
+ "options__2": {
+ "label": "Ghép"
+ },
+ "info": "Bài viết được xếp chồng trên thiết bị di động."
+ },
+ "image_height": {
+ "label": "Chiều cao hình ảnh nổi bật",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "options__4": {
+ "label": "Lớn"
+ },
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 3:2. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "Tổng phụ",
+ "blocks": {
+ "subtotal": {
+ "name": "Giá tổng phụ"
+ },
+ "buttons": {
+ "name": "Nút thanh toán"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "Mặt hàng"
+ },
+ "main-collection-banner": {
+ "name": "Biểu ngữ bộ sưu tập",
+ "settings": {
+ "paragraph": {
+ "content": "Chỉnh sửa bộ sưu tập để thêm mô tả hoặc hình ảnh. [Tìm hiểu thêm](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "Hiển thị mô tả bộ sưu tập"
+ },
+ "show_collection_image": {
+ "label": "Hiển thị hình ảnh bộ sưu tập",
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 16:9. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "Lưới sản phẩm",
+ "settings": {
+ "products_per_page": {
+ "label": "Sản phẩm trên một trang"
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Chân dung"
+ },
+ "options__3": {
+ "label": "Vuông"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hiển thị hình ảnh thứ cấp khi di chuột đến"
+ },
+ "show_vendor": {
+ "label": "Hiển thị nhà cung cấp"
+ },
+ "enable_tags": {
+ "label": "Bật lọc",
+ "info": "Tùy chỉnh bộ lọc bằng ứng dụng Search & Discovery. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "Bật lọc",
+ "info": "Tùy chỉnh bộ lọc bằng ứng dụng Search & Discovery. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "Bật sắp xếp"
+ },
+ "header__1": {
+ "content": "Lọc và sắp xếp"
+ },
+ "header__3": {
+ "content": "Thẻ sản phẩm"
+ },
+ "show_rating": {
+ "label": "Hiển thị thứ hạng sản phẩm",
+ "info": "Nếu muốn hiển thị thứ hạng, hãy thêm ứng dụng xếp hạng sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "Bật nút thêm nhanh",
+ "info": "Tối ưu với cửa sổ bật lên hoặc giỏ hàng kiểu ngăn kéo."
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ },
+ "filter_type": {
+ "label": "Bố cục bộ lọc trên màn hình nền",
+ "options__1": {
+ "label": "Ngang"
+ },
+ "options__2": {
+ "label": "Dọc"
+ },
+ "options__3": {
+ "label": "Ngăn"
+ },
+ "info": "Ngăn là bố cục mặc định trên di động."
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "Trang danh sách bộ sưu tập",
+ "settings": {
+ "title": {
+ "label": "Tiêu đề"
+ },
+ "sort": {
+ "label": "Sắp xếp bộ sưu tập theo:",
+ "options__1": {
+ "label": "Thứ tự bảng chữ cái (từ A-Z)"
+ },
+ "options__2": {
+ "label": "Thứ tự bảng chữ cái (từ Z-A)"
+ },
+ "options__3": {
+ "label": "Ngày (từ mới đến cũ)"
+ },
+ "options__4": {
+ "label": "Ngày (từ cũ đến mới)"
+ },
+ "options__5": {
+ "label": "Số lượng sản phẩm (từ cao xuống thấp)"
+ },
+ "options__6": {
+ "label": "Số lượng sản phẩm (từ thấp lên cao)"
+ }
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Chân dung"
+ },
+ "options__3": {
+ "label": "Vuông"
+ },
+ "info": "Chỉnh sửa bộ sưu tập để thêm hình ảnh. [Tìm hiểu thêm](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "Trang"
+ },
+ "main-password-footer": {
+ "name": "Chân trang mật khẩu"
+ },
+ "main-password-header": {
+ "name": "Đầu trang mật khẩu",
+ "settings": {
+ "logo_header": {
+ "content": "Logo"
+ },
+ "logo_help": {
+ "content": "Chỉnh sửa logo trong cài đặt chủ đề."
+ }
+ }
+ },
+ "main-product": {
+ "name": "Thông tin sản phẩm",
+ "blocks": {
+ "text": {
+ "name": "Văn bản",
+ "settings": {
+ "text": {
+ "label": "Văn bản"
+ },
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tên"
+ },
+ "price": {
+ "name": "Giá"
+ },
+ "quantity_selector": {
+ "name": "Hộp chọn số lượng"
+ },
+ "variant_picker": {
+ "name": "Trình chọn mẫu mã",
+ "settings": {
+ "picker_type": {
+ "label": "Loại",
+ "options__1": {
+ "label": "Menu thả xuống"
+ },
+ "options__2": {
+ "label": "Góc bo tròn"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Nút mua",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Hiển thị nút thanh toán động",
+ "info": "Sử dụng phương thức thanh toán được hỗ trợ trong cửa hàng, khách hàng sẽ thấy tùy chọn ưu tiên của họ như PayPal hoặc Apple Pay. [Tìm hiểu thêm](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "Hiển thị biểu mẫu thông tin người nhận cho thẻ quà tặng",
+ "info": "Cho phép người mua gửi thẻ quà tặng vào ngày đã lên lịch kèm tin nhắn cá nhân. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ }
+ },
+ "pickup_availability": {
+ "name": "Khả năng nhận hàng tại cửa hàng"
+ },
+ "description": {
+ "name": "Mô tả"
+ },
+ "share": {
+ "name": "Chia sẻ",
+ "settings": {
+ "featured_image_info": {
+ "content": "Nếu bạn đưa liên kết vào bài đăng trên truyền thông xã hội, hình ảnh nổi bật của trang sẽ hiển thị giống hình ảnh xem trước. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)."
+ },
+ "title_info": {
+ "content": "Hình ảnh xem trước có chứa tiêu đề và mô tả của cửa hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)."
+ },
+ "text": {
+ "label": "Văn bản"
+ }
+ }
+ },
+ "collapsible_tab": {
+ "name": "Hàng có thể thu gọn",
+ "settings": {
+ "heading": {
+ "info": "Bao gồm tiêu đề giải thích nội dung.",
+ "label": "Tiêu đề"
+ },
+ "content": {
+ "label": "Nội dung hàng"
+ },
+ "page": {
+ "label": "Nội dung hàng trong trang"
+ },
+ "icon": {
+ "label": "Biểu tượng",
+ "options__1": {
+ "label": "Không"
+ },
+ "options__2": {
+ "label": "Táo"
+ },
+ "options__3": {
+ "label": "Chuối"
+ },
+ "options__4": {
+ "label": "Chai"
+ },
+ "options__5": {
+ "label": "Hộp"
+ },
+ "options__6": {
+ "label": "Cà rốt"
+ },
+ "options__7": {
+ "label": "Bong bóng trò chuyện"
+ },
+ "options__8": {
+ "label": "Dấu kiểm"
+ },
+ "options__9": {
+ "label": "Bìa kẹp hồ sơ"
+ },
+ "options__10": {
+ "label": "Sữa"
+ },
+ "options__11": {
+ "label": "Không chứa sữa"
+ },
+ "options__12": {
+ "label": "Máy sấy"
+ },
+ "options__13": {
+ "label": "Mắt"
+ },
+ "options__14": {
+ "label": "Lửa"
+ },
+ "options__15": {
+ "label": "Không chứa gluten"
+ },
+ "options__16": {
+ "label": "Trái tim"
+ },
+ "options__17": {
+ "label": "Bàn là"
+ },
+ "options__18": {
+ "label": "Lá"
+ },
+ "options__19": {
+ "label": "Da"
+ },
+ "options__20": {
+ "label": "Tia sét"
+ },
+ "options__21": {
+ "label": "Son"
+ },
+ "options__22": {
+ "label": "Ổ khóa"
+ },
+ "options__23": {
+ "label": "Ghim bản đồ"
+ },
+ "options__24": {
+ "label": "Không chứa hạt"
+ },
+ "options__25": {
+ "label": "Quần"
+ },
+ "options__26": {
+ "label": "Dấu chân"
+ },
+ "options__27": {
+ "label": "Hạt tiêu"
+ },
+ "options__28": {
+ "label": "Nước hoa"
+ },
+ "options__29": {
+ "label": "Máy bay"
+ },
+ "options__30": {
+ "label": "Thực vật"
+ },
+ "options__31": {
+ "label": "Thẻ ghi giá"
+ },
+ "options__32": {
+ "label": "Dấu hỏi"
+ },
+ "options__33": {
+ "label": "Tái chế"
+ },
+ "options__34": {
+ "label": "Đơn hàng trả lại"
+ },
+ "options__35": {
+ "label": "Thước kẻ"
+ },
+ "options__36": {
+ "label": "Đĩa ăn"
+ },
+ "options__37": {
+ "label": "Áo sơ mi"
+ },
+ "options__38": {
+ "label": "Giày"
+ },
+ "options__39": {
+ "label": "Hình chiếu"
+ },
+ "options__40": {
+ "label": "Hoa tuyết"
+ },
+ "options__41": {
+ "label": "Ngôi sao"
+ },
+ "options__42": {
+ "label": "Đồng hồ bấm giờ"
+ },
+ "options__43": {
+ "label": "Xe tải"
+ },
+ "options__44": {
+ "label": "Giặt"
+ }
+ }
+ }
+ },
+ "popup": {
+ "name": "Cửa sổ bật lên",
+ "settings": {
+ "link_label": {
+ "label": "Nhãn liên kết"
+ },
+ "page": {
+ "label": "Trang"
+ }
+ }
+ },
+ "rating": {
+ "name": "Thứ hạng sản phẩm",
+ "settings": {
+ "paragraph": {
+ "content": "Nếu muốn hiển thị thứ hạng, hãy thêm ứng dụng xếp hạng sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "Sản phẩm bổ sung",
+ "settings": {
+ "paragraph": {
+ "content": "Để chọn sản phẩm bổ sung, hãy thêm ứng dụng Search & Discovery. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "make_collapsible_row": {
+ "label": "Hiển thị dưới dạng hàng có thể thu gọn"
+ },
+ "icon": {
+ "info": "Hiển thị khi hàng có thể thu gọn hiển thị."
+ },
+ "product_list_limit": {
+ "label": "Số lượng sản phẩm hiển thị tối đa"
+ },
+ "products_per_page": {
+ "label": "Số lượng sản phẩm trên một trang"
+ },
+ "pagination_style": {
+ "label": "Kiểu phân trang",
+ "options": {
+ "option_1": "Chấm",
+ "option_2": "Bộ đếm",
+ "option_3": "Số"
+ }
+ },
+ "product_card": {
+ "heading": "Thẻ sản phẩm"
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options": {
+ "option_1": "Dọc",
+ "option_2": "Vuông"
+ }
+ },
+ "enable_quick_add": {
+ "label": "Bật nút thêm nhanh"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "Biểu tượng có văn bản",
+ "settings": {
+ "layout": {
+ "label": "Bố cục",
+ "options__1": {
+ "label": "Ngang"
+ },
+ "options__2": {
+ "label": "Dọc"
+ }
+ },
+ "content": {
+ "label": "Nội dung",
+ "info": "Chọn biểu tượng hoặc thêm ảnh cho từng cột hoặc hàng."
+ },
+ "heading": {
+ "info": "Để trống nhãn tiêu đề để ẩn cột biểu tượng."
+ },
+ "icon_1": {
+ "label": "Biểu tượng đầu tiên"
+ },
+ "image_1": {
+ "label": "Hình ảnh đầu tiên"
+ },
+ "heading_1": {
+ "label": "Tiêu đề đầu tiên"
+ },
+ "icon_2": {
+ "label": "Biểu tượng thứ hai"
+ },
+ "image_2": {
+ "label": "Hình ảnh thứ hai"
+ },
+ "heading_2": {
+ "label": "Tiêu đề thứ hai"
+ },
+ "icon_3": {
+ "label": "Biểu tượng thứ ba"
+ },
+ "image_3": {
+ "label": "Hình ảnh thứ ba"
+ },
+ "heading_3": {
+ "label": "Tiêu đề thứ ba"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề phụ"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "Trạng thái hàng lưu kho",
+ "settings": {
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề phụ"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ }
+ },
+ "inventory_threshold": {
+ "label": "Ngưỡng hàng trong kho thấp",
+ "info": "Chọn 0 để luôn hiển thị còn hàng nếu có."
+ },
+ "show_inventory_quantity": {
+ "label": "Hiển thị số lượng hàng trong kho"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "Phương tiện",
+ "info": "Tìm hiểu thêm về [loại phương tiện.](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Bật vòng lặp video"
+ },
+ "enable_sticky_info": {
+ "label": "Bật nội dung dính trên màn hình nền"
+ },
+ "hide_variants": {
+ "label": "Ẩn phương tiện của các mẫu mã khác sau khi chọn một mẫu mã"
+ },
+ "gallery_layout": {
+ "label": "Bố cục màn hình nền",
+ "options__1": {
+ "label": "Đã xếp chồng"
+ },
+ "options__2": {
+ "label": "2 cột"
+ },
+ "options__3": {
+ "label": "Hình thu nhỏ"
+ },
+ "options__4": {
+ "label": "Quay vòng hình thu nhỏ"
+ }
+ },
+ "media_size": {
+ "label": "Chiều rộng phương tiện trên màn hình nền",
+ "info": "Phương tiện được tự động tối ưu hóa cho thiết bị di động.",
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ }
+ },
+ "mobile_thumbnails": {
+ "label": "Bố cục di động",
+ "options__1": {
+ "label": "2 cột"
+ },
+ "options__2": {
+ "label": "Hiển thị hình thu nhỏ"
+ },
+ "options__3": {
+ "label": "Ẩn hình thu nhỏ"
+ }
+ },
+ "media_position": {
+ "label": "Vị trí phương tiện trên màn hình nền",
+ "info": "Vị trí được tự động tối ưu hóa cho thiết bị di động.",
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Bên phải"
+ }
+ },
+ "image_zoom": {
+ "label": "Thu phóng hình ảnh",
+ "info": "Nhấp và di chuột đến mục Mặc định để mở lightbox trên thiết bị di động.",
+ "options__1": {
+ "label": "Mở lightbox"
+ },
+ "options__2": {
+ "label": "Nhấp và di chuột"
+ },
+ "options__3": {
+ "label": "Không thu phóng"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "Giới hạn phương tiện theo chiều cao màn hình"
+ },
+ "media_fit": {
+ "label": "Phù hợp với phương tiện",
+ "options__1": {
+ "label": "Gốc"
+ },
+ "options__2": {
+ "label": "Tràn màn hình"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "Kết quả tìm kiếm",
+ "settings": {
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Chân dung"
+ },
+ "options__3": {
+ "label": "Vuông"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hiển thị hình ảnh thứ cấp khi di chuột đến"
+ },
+ "show_vendor": {
+ "label": "Hiển thị nhà cung cấp"
+ },
+ "header__1": {
+ "content": "Thẻ sản phẩm"
+ },
+ "header__2": {
+ "content": "Thẻ blog",
+ "info": "Kiểu dáng của thẻ blog cũng áp dụng cho thẻ trang trong kết quả tìm kiếm. Hãy cập nhật cài đặt chủ đề để thay đổi kiểu dáng thẻ."
+ },
+ "article_show_date": {
+ "label": "Hiển thị ngày"
+ },
+ "article_show_author": {
+ "label": "Hiển thị tác giả"
+ },
+ "show_rating": {
+ "label": "Hiển thị thứ hạng sản phẩm",
+ "info": "Nếu muốn hiển thị thứ hạng, hãy thêm ứng dụng xếp hạng sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "Nhiều cột",
+ "settings": {
+ "title": {
+ "label": "Tiêu đề"
+ },
+ "image_width": {
+ "label": "Chiều rộng hình ảnh",
+ "options__1": {
+ "label": "Chiều rộng một phần ba cột"
+ },
+ "options__2": {
+ "label": "Chiều rộng một nửa cột"
+ },
+ "options__3": {
+ "label": "Chiều rộng toàn bộ cột"
+ }
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Chân dung"
+ },
+ "options__3": {
+ "label": "Vuông"
+ },
+ "options__4": {
+ "label": "Tròn"
+ }
+ },
+ "column_alignment": {
+ "label": "Căn chỉnh cột",
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ }
+ },
+ "background_style": {
+ "label": "Nền thứ cấp",
+ "options__1": {
+ "label": "Không"
+ },
+ "options__2": {
+ "label": "Hiển thị dưới dạng nền cột"
+ }
+ },
+ "button_label": {
+ "label": "Nhãn nút"
+ },
+ "button_link": {
+ "label": "Liên kết trên nút"
+ },
+ "swipe_on_mobile": {
+ "label": "Bật tính năng quẹt trên di động"
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "name": "Cột",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh"
+ },
+ "title": {
+ "label": "Tiêu đề"
+ },
+ "text": {
+ "label": "Mô tả"
+ },
+ "link_label": {
+ "label": "Nhãn liên kết"
+ },
+ "link": {
+ "label": "Liên kết"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Nhiều cột"
+ }
+ },
+ "newsletter": {
+ "name": "Đăng ký nhận email",
+ "settings": {
+ "full_width": {
+ "label": "Làm cho mục có chiều rộng đầy đủ"
+ },
+ "paragraph": {
+ "content": "Mỗi gói đăng ký qua email sẽ tạo một tài khoản khách hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Tiêu đề",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Tiêu đề phụ",
+ "settings": {
+ "paragraph": {
+ "label": "Mô tả"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Mẫu email"
+ }
+ },
+ "presets": {
+ "name": "Đăng ký nhận email"
+ }
+ },
+ "page": {
+ "name": "Trang",
+ "settings": {
+ "page": {
+ "label": "Trang"
+ }
+ },
+ "presets": {
+ "name": "Trang"
+ }
+ },
+ "rich-text": {
+ "name": "Văn bản đa dạng thức",
+ "settings": {
+ "full_width": {
+ "label": "Làm cho mục có chiều rộng đầy đủ"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Vị trí nội dung trên màn hình nền",
+ "info": "Vị trí được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Tiêu đề",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ }
+ }
+ },
+ "text": {
+ "name": "Văn bản",
+ "settings": {
+ "text": {
+ "label": "Mô tả"
+ }
+ }
+ },
+ "buttons": {
+ "name": "Nút",
+ "settings": {
+ "button_label_1": {
+ "label": "Nhãn nút thứ nhất",
+ "info": "Để trống nhãn này để ẩn nút."
+ },
+ "button_link_1": {
+ "label": "Liên kết trên nút thứ nhất"
+ },
+ "button_style_secondary_1": {
+ "label": "Sử dụng kiểu nút viền ngoài"
+ },
+ "button_label_2": {
+ "label": "Nhãn nút thứ hai",
+ "info": "Để trống nhãn này để ẩn nút."
+ },
+ "button_link_2": {
+ "label": "Liên kết trên nút thứ hai"
+ },
+ "button_style_secondary_2": {
+ "label": "Sử dụng kiểu nút viền ngoài"
+ }
+ }
+ },
+ "caption": {
+ "name": "Phụ đề",
+ "settings": {
+ "text": {
+ "label": "Văn bản"
+ },
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Tiêu đề phụ"
+ },
+ "options__2": {
+ "label": "Chữ viết hoa"
+ }
+ },
+ "caption_size": {
+ "label": "Cỡ chữ",
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Văn bản đa dạng thức"
+ }
+ },
+ "apps": {
+ "name": "Ứng dụng",
+ "settings": {
+ "include_margins": {
+ "label": "Đặt lề của mục giống lề của chủ đề"
+ }
+ },
+ "presets": {
+ "name": "Ứng dụng"
+ }
+ },
+ "video": {
+ "name": "Video",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "cover_image": {
+ "label": "Ảnh bìa"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "Sử dụng URL YouTube hoặc Vimeo"
+ },
+ "description": {
+ "label": "Văn bản thay thế cho video",
+ "info": "Mô tả video cho khách hàng bằng trình đọc màn hình. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "Thêm vùng đệm ảnh",
+ "info": "Chọn vùng đệm ảnh nếu bạn không muốn cắt ảnh bìa."
+ },
+ "full_width": {
+ "label": "Tạo chiều rộng đầy đủ cho mục"
+ },
+ "video": {
+ "label": "Video"
+ },
+ "enable_video_looping": {
+ "label": "Phát video ở chế độ vòng lặp"
+ },
+ "header__1": {
+ "content": "Video được lưu trữ trên Shopify"
+ },
+ "header__2": {
+ "content": "Hoặc video nhúng từ URL"
+ },
+ "header__3": {
+ "content": "Kiểu"
+ },
+ "paragraph": {
+ "content": "Hiển thị khi không chọn video được lưu trữ trên Shopify."
+ }
+ },
+ "presets": {
+ "name": "Video"
+ }
+ },
+ "featured-product": {
+ "name": "Sản phẩm nổi bật",
+ "blocks": {
+ "text": {
+ "name": "Văn bản",
+ "settings": {
+ "text": {
+ "label": "Văn bản"
+ },
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "Tiêu đề"
+ },
+ "price": {
+ "name": "Giá"
+ },
+ "quantity_selector": {
+ "name": "Hộp chọn số lượng"
+ },
+ "variant_picker": {
+ "name": "Trình chọn mẫu mã",
+ "settings": {
+ "picker_type": {
+ "label": "Loại",
+ "options__1": {
+ "label": "Menu thả xuống"
+ },
+ "options__2": {
+ "label": "Ô chọn"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Nút Mua",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "Hiển thị nút thanh toán động",
+ "info": "Khi sử dụng phương thức thanh toán được hỗ trợ trong cửa hàng của bạn, khách hàng sẽ thấy tùy chọn ưu tiên của mình, như PayPal hoặc Apple Pay. [Tìm hiểu thêm](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "Mô tả"
+ },
+ "share": {
+ "name": "Chia sẻ",
+ "settings": {
+ "featured_image_info": {
+ "content": "Nếu bạn đưa liên kết vào bài đăng trên truyền thông xã hội, hình ảnh nổi bật của trang sẽ hiển thị giống hình ảnh xem trước. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "Hình ảnh xem trước có chứa tiêu đề và mô tả của cửa hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "Văn bản"
+ }
+ }
+ },
+ "rating": {
+ "name": "Thứ hạng sản phẩm",
+ "settings": {
+ "paragraph": {
+ "content": "Nếu muốn hiển thị thứ hạng, hãy thêm ứng dụng xếp hạng sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "Kiểu văn bản",
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề phụ"
+ },
+ "options__3": {
+ "label": "Chữ viết hoa"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "Sản phẩm"
+ },
+ "secondary_background": {
+ "label": "Hiển thị nền phụ"
+ },
+ "header": {
+ "content": "Phương tiện",
+ "info": "Tìm hiểu thêm về [loại phương tiện](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "Bật vòng lặp video"
+ },
+ "hide_variants": {
+ "label": "Ẩn phương tiện của các mẫu mã không được chọn trên máy tính để bàn"
+ },
+ "media_position": {
+ "label": "Vị trí phương tiện trên màn hình nền",
+ "info": "Vị trí được tự động tối ưu hóa cho thiết bị di động.",
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Bên phải"
+ }
+ }
+ },
+ "presets": {
+ "name": "Sản phẩm nổi bật"
+ }
+ },
+ "email-signup-banner": {
+ "name": "Biểu ngữ đăng ký nhận email",
+ "settings": {
+ "paragraph": {
+ "content": "Mỗi gói đăng ký qua email sẽ tạo một tài khoản khách hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "Ảnh nền"
+ },
+ "show_background_image": {
+ "label": "Hiển thị ảnh nền"
+ },
+ "show_text_box": {
+ "label": "Hiện vùng chứa trên màn hình nền"
+ },
+ "image_overlay_opacity": {
+ "label": "Độ chắn sáng của lớp phủ hình ảnh"
+ },
+ "show_text_below": {
+ "label": "Hiển thị nội dung dưới hình ảnh trên thiết bị di động",
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 16:9. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "Chiều cao biểu ngữ",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "options__4": {
+ "label": "Lớn"
+ },
+ "info": "Để có kết quả tốt nhất, hãy sử dụng hình ảnh có tỷ lệ khung hình 16:9. [Tìm hiểu thêm](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Trên cùng bên trái"
+ },
+ "options__2": {
+ "label": "Trên cùng ở giữa"
+ },
+ "options__3": {
+ "label": "Trên cùng bên phải"
+ },
+ "options__4": {
+ "label": "Ở giữa bên trái"
+ },
+ "options__5": {
+ "label": "Chính giữa"
+ },
+ "options__6": {
+ "label": "Ở giữa bên phải"
+ },
+ "options__7": {
+ "label": "Dưới cùng bên trái"
+ },
+ "options__8": {
+ "label": "Dưới cùng ở giữa"
+ },
+ "options__9": {
+ "label": "Dưới cùng bên phải"
+ },
+ "label": "Vị trí nội dung trên màn hình nền"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên màn hình nền"
+ },
+ "header": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên thiết bị di động"
+ },
+ "color_scheme": {
+ "info": "Có thể nhìn thấy khi vùng chứa hiển thị."
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "Tiêu đề",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "Đoạn",
+ "settings": {
+ "paragraph": {
+ "label": "Mô tả"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề"
+ },
+ "label": "Kiểu văn bản"
+ }
+ }
+ },
+ "email_form": {
+ "name": "Mẫu email"
+ }
+ },
+ "presets": {
+ "name": "Biểu ngữ đăng ký nhận email"
+ }
+ },
+ "slideshow": {
+ "name": "Bản trình chiếu",
+ "settings": {
+ "layout": {
+ "label": "Bố cục",
+ "options__1": {
+ "label": "Độ rộng đầy đủ"
+ },
+ "options__2": {
+ "label": "Lưới"
+ }
+ },
+ "slide_height": {
+ "label": "Chiều cao trang chiếu",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh đầu tiên"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "options__4": {
+ "label": "Lớn"
+ }
+ },
+ "slider_visual": {
+ "label": "Kiểu phân trang",
+ "options__1": {
+ "label": "Bộ đếm"
+ },
+ "options__2": {
+ "label": "Chấm"
+ },
+ "options__3": {
+ "label": "Số"
+ }
+ },
+ "auto_rotate": {
+ "label": "Tự động xoay vòng các trang chiếu"
+ },
+ "change_slides_speed": {
+ "label": "Đổi trang chiếu sau mỗi"
+ },
+ "mobile": {
+ "content": "Bố cục di động"
+ },
+ "show_text_below": {
+ "label": "Hiển thị nội dung bên dưới hình ảnh trên thiết bị di động"
+ },
+ "accessibility": {
+ "content": "Khả năng truy cập",
+ "label": "Mô tả bản trình chiếu",
+ "info": "Mô tả bản trình chiếu cho khách hàng bằng trình đọc màn hình."
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "Trang chiếu",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh"
+ },
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "subheading": {
+ "label": "Tiêu đề phụ"
+ },
+ "button_label": {
+ "label": "Nhãn nút",
+ "info": "Để trống nhãn này để ẩn nút."
+ },
+ "link": {
+ "label": "Liên kết trên nút"
+ },
+ "secondary_style": {
+ "label": "Sử dụng kiểu nút viền ngoài"
+ },
+ "box_align": {
+ "label": "Vị trí nội dung trên màn hình nền",
+ "options__1": {
+ "label": "Trên cùng bên trái"
+ },
+ "options__2": {
+ "label": "Trên cùng ở giữa"
+ },
+ "options__3": {
+ "label": "Trên cùng bên phải"
+ },
+ "options__4": {
+ "label": "Ở giữa bên trái"
+ },
+ "options__5": {
+ "label": "Chính giữa"
+ },
+ "options__6": {
+ "label": "Ở giữa bên phải"
+ },
+ "options__7": {
+ "label": "Dưới cùng bên trái"
+ },
+ "options__8": {
+ "label": "Dưới cùng ở giữa"
+ },
+ "options__9": {
+ "label": "Dưới cùng bên phải"
+ },
+ "info": "Vị trí được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "show_text_box": {
+ "label": "Hiện vùng chứa trên màn hình nền"
+ },
+ "text_alignment": {
+ "label": "Căn chỉnh nội dung trên màn hình nền",
+ "option_1": {
+ "label": "Bên trái"
+ },
+ "option_2": {
+ "label": "Giữa"
+ },
+ "option_3": {
+ "label": "Bên phải"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "Độ chắn sáng của lớp phủ hình ảnh"
+ },
+ "text_alignment_mobile": {
+ "label": "Căn chỉnh nội dung trên thiết bị di động",
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Bản trình chiếu"
+ }
+ },
+ "collapsible_content": {
+ "name": "Nội dung có thể thu gọn",
+ "settings": {
+ "caption": {
+ "label": "Phụ đề"
+ },
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "heading_alignment": {
+ "label": "Căn chỉnh tiêu đề",
+ "options__1": {
+ "label": "Trái"
+ },
+ "options__2": {
+ "label": "Giữa"
+ },
+ "options__3": {
+ "label": "Phải"
+ }
+ },
+ "layout": {
+ "label": "Bố cục",
+ "options__1": {
+ "label": "Không có khoảng chứa nào"
+ },
+ "options__2": {
+ "label": "Khoảng chứa hàng"
+ },
+ "options__3": {
+ "label": "Khoảng chứa mục"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "Mở hàng có thể thu gọn đầu tiên"
+ },
+ "header": {
+ "content": "Bố cục hình ảnh"
+ },
+ "image": {
+ "label": "Hình ảnh"
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Lớn"
+ }
+ },
+ "desktop_layout": {
+ "label": "Bố cục màn hình nền",
+ "options__1": {
+ "label": "Hình ảnh trước"
+ },
+ "options__2": {
+ "label": "Hình ảnh thứ hai"
+ },
+ "info": "Hình ảnh luôn xuất hiện trước trên thiết bị di động."
+ },
+ "container_color_scheme": {
+ "label": "Bảng màu cho khoảng chửa",
+ "info": "Hiển thị khi đặt Bố cục thành khoảng chứa Hàng hoặc khoảng chứa Mục."
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "Hàng có thể thu gọn",
+ "settings": {
+ "heading": {
+ "info": "Bao gồm tiêu đề giải thích nội dung.",
+ "label": "Tiêu đề"
+ },
+ "row_content": {
+ "label": "Nội dung hàng"
+ },
+ "page": {
+ "label": "Nội dung hàng trong trang"
+ },
+ "icon": {
+ "label": "Biểu tượng",
+ "options__1": {
+ "label": "Không"
+ },
+ "options__2": {
+ "label": "Táo"
+ },
+ "options__3": {
+ "label": "Chuối"
+ },
+ "options__4": {
+ "label": "Chai"
+ },
+ "options__5": {
+ "label": "Hộp"
+ },
+ "options__6": {
+ "label": "Cà rốt"
+ },
+ "options__7": {
+ "label": "Bong bóng trò chuyện"
+ },
+ "options__8": {
+ "label": "Dấu kiểm"
+ },
+ "options__9": {
+ "label": "Bìa kẹp hồ sơ"
+ },
+ "options__10": {
+ "label": "Sữa"
+ },
+ "options__11": {
+ "label": "Không chứa sữa"
+ },
+ "options__12": {
+ "label": "Máy sấy"
+ },
+ "options__13": {
+ "label": "Mắt"
+ },
+ "options__14": {
+ "label": "Lửa"
+ },
+ "options__15": {
+ "label": "Không chứa gluten"
+ },
+ "options__16": {
+ "label": "Trái tim"
+ },
+ "options__17": {
+ "label": "Bàn là"
+ },
+ "options__18": {
+ "label": "Lá"
+ },
+ "options__19": {
+ "label": "Da"
+ },
+ "options__20": {
+ "label": "Tia sét"
+ },
+ "options__21": {
+ "label": "Son"
+ },
+ "options__22": {
+ "label": "Ổ khóa"
+ },
+ "options__23": {
+ "label": "Ghim bản đồ"
+ },
+ "options__24": {
+ "label": "Không chứa hạt"
+ },
+ "options__25": {
+ "label": "Quần"
+ },
+ "options__26": {
+ "label": "Dấu chân"
+ },
+ "options__27": {
+ "label": "Hạt tiêu"
+ },
+ "options__28": {
+ "label": "Nước hoa"
+ },
+ "options__29": {
+ "label": "Máy bay"
+ },
+ "options__30": {
+ "label": "Thực vật"
+ },
+ "options__31": {
+ "label": "Thẻ ghi giá"
+ },
+ "options__32": {
+ "label": "Dấu hỏi"
+ },
+ "options__33": {
+ "label": "Tái chế"
+ },
+ "options__34": {
+ "label": "Đơn hàng trả lại"
+ },
+ "options__35": {
+ "label": "Thước kẻ"
+ },
+ "options__36": {
+ "label": "Đĩa ăn"
+ },
+ "options__37": {
+ "label": "Áo sơ mi"
+ },
+ "options__38": {
+ "label": "Giày"
+ },
+ "options__39": {
+ "label": "Hình chiếu"
+ },
+ "options__40": {
+ "label": "Hoa tuyết"
+ },
+ "options__41": {
+ "label": "Ngôi sao"
+ },
+ "options__42": {
+ "label": "Đồng hồ bấm giờ"
+ },
+ "options__43": {
+ "label": "Xe tải"
+ },
+ "options__44": {
+ "label": "Giặt"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Nội dung có thể thu gọn"
+ }
+ },
+ "main-account": {
+ "name": "Tài khoản"
+ },
+ "main-activate-account": {
+ "name": "Kích hoạt tài khoản"
+ },
+ "main-addresses": {
+ "name": "Địa chỉ"
+ },
+ "main-login": {
+ "name": "Đăng nhập"
+ },
+ "main-order": {
+ "name": "Đơn hàng"
+ },
+ "main-register": {
+ "name": "Đăng ký"
+ },
+ "main-reset-password": {
+ "name": "Đặt lại mật khẩu"
+ },
+ "related-products": {
+ "name": "Sản phẩm liên quan",
+ "settings": {
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "products_to_show": {
+ "label": "Số lượng sản phẩm hiển thị tối đa"
+ },
+ "columns_desktop": {
+ "label": "Số cột trên máy tính để bàn"
+ },
+ "paragraph__1": {
+ "content": "Đề xuất động sử dụng thông tin về đơn hàng và sản phẩm để thay đổi và cải thiện theo thời gian. [Tìm hiểu thêm](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "Thẻ sản phẩm"
+ },
+ "image_ratio": {
+ "label": "Tỷ lệ hình ảnh",
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Dọc"
+ },
+ "options__3": {
+ "label": "Vuông"
+ }
+ },
+ "show_secondary_image": {
+ "label": "Hiển thị hình ảnh thứ cấp khi di chuột đến"
+ },
+ "show_vendor": {
+ "label": "Hiển thị nhà cung cấp"
+ },
+ "show_rating": {
+ "label": "Hiển thị thứ hạng sản phẩm",
+ "info": "Nếu muốn hiển thị thứ hạng, hãy thêm ứng dụng xếp hạng sản phẩm. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ },
+ "columns_mobile": {
+ "label": "Số cột trên thiết bị di động",
+ "options__1": {
+ "label": "1 cột"
+ },
+ "options__2": {
+ "label": "2 cột"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "Multirow",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "Điều chỉnh theo hình ảnh"
+ },
+ "options__2": {
+ "label": "Nhỏ"
+ },
+ "options__3": {
+ "label": "Trung bình"
+ },
+ "options__4": {
+ "label": "Lớn"
+ },
+ "label": "Chiều cao hình ảnh"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ },
+ "label": "Chiều rộng hình ảnh trên màn hình nền",
+ "info": "Hình ảnh được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "Nhỏ"
+ },
+ "options__2": {
+ "label": "Trung bình"
+ },
+ "options__3": {
+ "label": "Lớn"
+ },
+ "label": "Cỡ tiêu đề"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "Nội dung"
+ },
+ "options__2": {
+ "label": "Tiêu đề phụ"
+ },
+ "label": "Kiểu văn bản"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "Nút đặc"
+ },
+ "options__2": {
+ "label": "Nút viền ngoài"
+ },
+ "label": "Kiểu nút"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên màn hình nền"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "Bên trên"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên dưới"
+ },
+ "label": "Vị trí nội dung trên màn hình nền",
+ "info": "Vị trí được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "Thay thế từ bên trái"
+ },
+ "options__2": {
+ "label": "Thay thế từ bên phải"
+ },
+ "options__3": {
+ "label": "Đã căn trái"
+ },
+ "options__4": {
+ "label": "Đã căn phải"
+ },
+ "label": "Vị trí hình ảnh trên màn hình nền",
+ "info": "Vị trí được tự động tối ưu hóa cho thiết bị di động."
+ },
+ "container_color_scheme": {
+ "label": "Bảng màu cho khoảng chứa"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "Bên trái"
+ },
+ "options__2": {
+ "label": "Ở giữa"
+ },
+ "options__3": {
+ "label": "Bên phải"
+ },
+ "label": "Căn chỉnh nội dung trên thiết bị di động"
+ },
+ "header_mobile": {
+ "content": "Bố cục trên thiết bị di động"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "Hàng",
+ "settings": {
+ "image": {
+ "label": "Hình ảnh"
+ },
+ "caption": {
+ "label": "Phụ đề"
+ },
+ "heading": {
+ "label": "Tiêu đề"
+ },
+ "text": {
+ "label": "Văn bản"
+ },
+ "button_label": {
+ "label": "Nhãn nút"
+ },
+ "button_link": {
+ "label": "Liên kết trên nút"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "Multirow"
+ }
+ },
+ "quick-order-list": {
+ "name": "Danh sách đặt hàng nhanh",
+ "settings": {
+ "show_image": {
+ "label": "Hiển thị hình ảnh"
+ },
+ "show_sku": {
+ "label": "Hiển thị SKU"
+ }
+ },
+ "presets": {
+ "name": "Danh sách đặt hàng nhanh"
+ }
+ }
+ }
+}
diff --git a/locales/zh-CN.json b/locales/zh-CN.json
new file mode 100644
index 0000000..036f378
--- /dev/null
+++ b/locales/zh-CN.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "使用密码进入商店:",
+ "login_password_button": "使用密码进入",
+ "login_form_password_label": "密码",
+ "login_form_password_placeholder": "您的密码",
+ "login_form_error": "密码错误!",
+ "login_form_submit": "输入",
+ "admin_link_html": "您是否为店主?在此处登录 ",
+ "powered_by_shopify_html": "此商店由 {{ shopify }} 提供支持"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "在 Facebook 上共享",
+ "share_on_twitter": "在 Twitter 上发推文",
+ "share_on_pinterest": "固定在 Pinterest 上"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "继续购物",
+ "pagination": {
+ "label": "分页",
+ "page": "第 {{ number }} 页",
+ "next": "下一页",
+ "previous": "上一页"
+ },
+ "search": {
+ "search": "搜索",
+ "reset": "清除搜索词"
+ },
+ "cart": {
+ "view": "查看购物车 ({{ count }})",
+ "item_added": "商品已加入购物车",
+ "view_empty_cart": "查看购物车"
+ },
+ "share": {
+ "copy_to_clipboard": "复制链接",
+ "share_url": "链接",
+ "success_message": "链接已复制到剪贴板",
+ "close": "关闭分享"
+ },
+ "slider": {
+ "of": "/",
+ "next_slide": "向右滑动",
+ "previous_slide": "向左滑动",
+ "name": "滑块"
+ }
+ },
+ "newsletter": {
+ "label": "电子邮件",
+ "success": "感谢您订阅",
+ "button_label": "订阅"
+ },
+ "accessibility": {
+ "skip_to_text": "跳到内容",
+ "close": "关闭",
+ "unit_price_separator": "单价",
+ "vendor": "厂商:",
+ "error": "错误",
+ "refresh_page": "选择某一选项会使整个页面刷新。",
+ "link_messages": {
+ "new_window": "在新窗口中打开。",
+ "external": "打开外部网站。"
+ },
+ "loading": "正在加载…",
+ "skip_to_product_info": "跳至产品信息",
+ "total_reviews": "总评论数",
+ "star_reviews_info": "{{ rating_value }}/{{ rating_max }} 星",
+ "collapsible_content_title": "可折叠内容",
+ "complementary_products": "互补产品"
+ },
+ "blogs": {
+ "article": {
+ "blog": "博客",
+ "read_more_title": "阅读详细内容:{{ title }}",
+ "comments": {
+ "one": "{{ count }} 条评论",
+ "other": "{{ count }} 条评论"
+ },
+ "moderated": "请注意,评论必须在发布之前获得批准。",
+ "comment_form_title": "发表评论",
+ "name": "名称",
+ "email": "电子邮件",
+ "message": "评论",
+ "post": "发布评论",
+ "back_to_blog": "返回博客",
+ "share": "分享此文章",
+ "success": "您的评论已成功发布!谢谢!",
+ "success_moderated": "您的评论已成功发布。由于我们的博客要经过审核,我们会在稍后将其发布。"
+ }
+ },
+ "onboarding": {
+ "product_title": "产品标题示例",
+ "collection_title": "您的产品系列的名称"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "添加到购物车",
+ "description": "描述",
+ "on_sale": "促销",
+ "product_variants": "产品多属性",
+ "quantity": {
+ "label": "数量",
+ "input_label": "{{ product }} 的数量",
+ "increase": "增加 {{ product }} 的数量",
+ "decrease": "减少 {{ product }} 的数量",
+ "minimum_of": "最小值为 {{ quantity }}",
+ "maximum_of": "最大值为 {{ quantity }}",
+ "multiples_of": "增量为 {{ quantity }}",
+ "in_cart_html": "购物车中 {{ quantity }} 件",
+ "note": "查看数量规则"
+ },
+ "price": {
+ "from_price_html": "来自 {{ price }}",
+ "regular_price": "常规价格",
+ "sale_price": "促销价",
+ "unit_price": "单价"
+ },
+ "share": "分享此产品",
+ "sold_out": "售罄",
+ "unavailable": "不可用",
+ "vendor": "厂商",
+ "video_exit_message": "{{ title }} 在同一窗口中打开全屏视频。",
+ "xr_button": "在您的空间中查看",
+ "xr_button_label": "在您的空间中查看,在增强现实窗口中加载商品",
+ "pickup_availability": {
+ "view_store_info": "查看商店信息",
+ "check_other_stores": "查看在其他商店的可用情况",
+ "pick_up_available": "提供取货服务",
+ "pick_up_available_at_html": "{{ location_name }} 提供取货服务",
+ "pick_up_unavailable_at_html": "{{ location_name }} 目前不提供取货服务",
+ "unavailable": "无法加载取货服务可用情况",
+ "refresh": "刷新"
+ },
+ "media": {
+ "open_media": "在模态窗口中打开媒体文件 {{ index }}",
+ "play_model": "播放 3D 查看器",
+ "play_video": "播放视频",
+ "gallery_viewer": "图库查看器",
+ "load_image": "在图库视图中加载图片 {{ index }}",
+ "load_model": "在图库视图中加载 3D 模型 {{ index }}",
+ "load_video": "在图库视图中播放视频 {{ index }}",
+ "image_available": "图片 {{ index }} 现已在图库视图中可用"
+ },
+ "view_full_details": "查看完整详细信息",
+ "include_taxes": "含税费。",
+ "shipping_policy_html": "结账时计算的运费 。",
+ "choose_options": "选择选项",
+ "choose_product_options": "选择用于 {{ product_name }} 的选项",
+ "value_unavailable": "{{ option_value }} - 不可用",
+ "variant_sold_out_or_unavailable": "多属性已售罄或不可用",
+ "inventory_in_stock": "现货",
+ "inventory_in_stock_show_count": "{{ quantity }} 件存货",
+ "inventory_low_stock": "低库存",
+ "inventory_low_stock_show_count": "低库存:剩余 {{ quantity }}",
+ "inventory_out_of_stock": "缺货",
+ "inventory_out_of_stock_continue_selling": "现货",
+ "sku": "SKU",
+ "volume_pricing": {
+ "title": "批量定价",
+ "note": "提供批量定价",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/件",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "媒体图库"
+ },
+ "facets": {
+ "apply": "应用",
+ "clear": "清除",
+ "clear_all": "全部删除",
+ "from": "从",
+ "filter_and_sort": "筛选和排序",
+ "filter_by_label": "筛选条件:",
+ "filter_button": "筛选",
+ "filters_selected": {
+ "one": "已选择 {{ count }} 个",
+ "other": "已选择 {{ count }} 个"
+ },
+ "max_price": "最高价格为 {{ price }}",
+ "product_count": {
+ "one": "{{ product_count }}/{{ count }} 件产品",
+ "other": "{{ product_count }}/{{ count }} 件产品"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} 件产品",
+ "other": "{{ count }} 件产品"
+ },
+ "reset": "重置",
+ "sort_button": "排序",
+ "sort_by_label": "排序依据:",
+ "to": "到",
+ "clear_filter": "删除筛选条件",
+ "filter_selected_accessibility": "{{ type }}(已选择 {{ count }} 个筛选条件)",
+ "show_more": "显示更多内容",
+ "show_less": "隐藏部分内容",
+ "filter_and_operator_subtitle": "匹配全部"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "未找到“{{ terms }}”的结果。请检查拼写或使用其他词或短语。",
+ "results_with_count": {
+ "one": "{{ count }} 条结果",
+ "other": "{{ count }} 条结果"
+ },
+ "title": "搜索结果",
+ "page": "页面",
+ "products": "产品",
+ "search_for": "搜索“{{ terms }}”",
+ "results_with_count_and_term": {
+ "one": "找到“{{ terms }}”的 {{ count }} 条结果",
+ "other": "找到“{{ terms }}”的 {{ count }} 条结果"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} 个页面",
+ "other": "{{ count }} 个页面"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} 件产品",
+ "other": "{{ count }} 件产品"
+ },
+ "suggestions": "建议",
+ "pages": "页面",
+ "results_suggestions_with_count": {
+ "one": "{{ count }} 个建议",
+ "other": "{{ count }} 个建议"
+ }
+ },
+ "cart": {
+ "cart": "购物车"
+ },
+ "contact": {
+ "form": {
+ "name": "名称",
+ "email": "电子邮件",
+ "phone": "电话号码",
+ "comment": "评论",
+ "send": "发送",
+ "post_success": "感谢您联系我们。我们会尽快回复您。",
+ "error_heading": "请调整以下内容:",
+ "title": "联系表"
+ }
+ },
+ "404": {
+ "title": "找不到页面",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "公告",
+ "menu": "菜单",
+ "cart_count": {
+ "one": "{{ count }} 件产品",
+ "other": "{{ count }} 件产品"
+ }
+ },
+ "cart": {
+ "title": "您的购物车",
+ "caption": "购物车商品",
+ "remove_title": "删除 {{ title }}",
+ "note": "订单特殊说明",
+ "checkout": "结账",
+ "empty": "您的购物车为空",
+ "cart_error": "更新购物车时出错。请重试。",
+ "cart_quantity_error_html": "您只能向购物车添加 {{ quantity }} 件此商品。",
+ "taxes_and_shipping_policy_at_checkout_html": "结账时计算的税费、折扣和运费 ",
+ "taxes_included_but_shipping_at_checkout": "含税费以及结账时计算的运费和折扣",
+ "taxes_included_and_shipping_policy_html": "含税费。结账时计算的运费 和折扣。",
+ "taxes_and_shipping_at_checkout": "结账时计算的税费、折扣和运费",
+ "headings": {
+ "product": "产品",
+ "price": "价格",
+ "total": "总计",
+ "quantity": "数量",
+ "image": "产品图片"
+ },
+ "update": "更新",
+ "login": {
+ "title": "已有账户?",
+ "paragraph_html": "登录 以快速结账。"
+ },
+ "estimated_total": "预计总额",
+ "new_estimated_total": "没有预计总额"
+ },
+ "footer": {
+ "payment": "付款方式"
+ },
+ "featured_blog": {
+ "view_all": "查看全部",
+ "onboarding_title": "博客文章",
+ "onboarding_content": "向您的客户提供一份博客文章的摘要"
+ },
+ "featured_collection": {
+ "view_all": "查看全部",
+ "view_all_label": "查看 {{ collection_name }} 产品系列中的所有产品"
+ },
+ "collection_list": {
+ "view_all": "查看全部"
+ },
+ "collection_template": {
+ "title": "收藏",
+ "empty": "未找到产品",
+ "use_fewer_filters_html": "减少使用的筛选条件数量或删除所有筛选条件 "
+ },
+ "video": {
+ "load_video": "加载视频:{{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "加载幻灯片",
+ "previous_slideshow": "上一张幻灯片",
+ "next_slideshow": "下一张幻灯片",
+ "pause_slideshow": "暂停幻灯片",
+ "play_slideshow": "播放幻灯片",
+ "carousel": "轮播",
+ "slide": "幻灯片"
+ },
+ "page": {
+ "title": "页面标题"
+ },
+ "announcements": {
+ "previous_announcement": "上一个公告",
+ "next_announcement": "下一个公告",
+ "carousel": "轮播",
+ "announcement": "公告",
+ "announcement_bar": "公告栏"
+ },
+ "quick_order_list": {
+ "product_total": "产品小计",
+ "view_cart": "查看购物车",
+ "each": "{{ money }}/件",
+ "product": "产品",
+ "variant": "多属性",
+ "variant_total": "多属性总计",
+ "items_added": {
+ "one": "已添加 {{ quantity }} 件商品",
+ "other": "已添加 {{ quantity }} 件商品"
+ },
+ "items_removed": {
+ "one": "已删除 {{ quantity }} 件商品",
+ "other": "已删除 {{ quantity }} 件商品"
+ },
+ "product_variants": "产品多属性",
+ "total_items": "商品总数",
+ "remove_all_items_confirmation": "删除您购物车中的全部 {{ quantity }} 件商品?",
+ "remove_all": "全部删除",
+ "cancel": "取消"
+ }
+ },
+ "localization": {
+ "country_label": "国家/地区",
+ "language_label": "语言",
+ "update_language": "更新语言",
+ "update_country": "更新国家/地区"
+ },
+ "customer": {
+ "account": {
+ "title": "账户",
+ "details": "账户详细信息",
+ "view_addresses": "查看地址",
+ "return": "返回账户详细信息"
+ },
+ "account_fallback": "账户",
+ "activate_account": {
+ "title": "激活账户",
+ "subtext": "创建密码以激活您的账户。",
+ "password": "密码",
+ "password_confirm": "确认密码",
+ "submit": "激活账户",
+ "cancel": "拒绝邀请"
+ },
+ "addresses": {
+ "title": "地址",
+ "default": "默认",
+ "add_new": "添加新地址",
+ "edit_address": "编辑地址",
+ "first_name": "名字",
+ "last_name": "姓氏",
+ "company": "公司",
+ "address1": "地址 1",
+ "address2": "地址 2",
+ "city": "城市",
+ "country": "国家/地区",
+ "province": "省",
+ "zip": "邮政编码",
+ "phone": "电话",
+ "set_default": "设为默认地址",
+ "add": "添加地址",
+ "update": "更新地址",
+ "cancel": "取消",
+ "edit": "“编辑”。",
+ "delete": "删除",
+ "delete_confirm": "确定要删除此地址吗?"
+ },
+ "log_in": "登录",
+ "log_out": "登出",
+ "login_page": {
+ "cancel": "取消",
+ "create_account": "创建账户",
+ "email": "电子邮件",
+ "forgot_password": "忘记了密码?",
+ "guest_continue": "继续",
+ "guest_title": "以访客身份继续",
+ "password": "密码",
+ "title": "登录",
+ "sign_in": "登录",
+ "submit": "提交"
+ },
+ "orders": {
+ "title": "订单历史记录",
+ "order_number": "订单",
+ "order_number_link": "订单号 {{ number }}",
+ "date": "日期",
+ "payment_status": "付款状态",
+ "fulfillment_status": "发货状态",
+ "total": "总计",
+ "none": "您尚未创建任何订单。"
+ },
+ "recover_password": {
+ "title": "重置密码",
+ "subtext": "我们将向您发送用于重置密码的电子邮件",
+ "success": "我们已向您发送电子邮件,其中包含更新密码的链接。"
+ },
+ "register": {
+ "title": "创建账户",
+ "first_name": "名字",
+ "last_name": "姓氏",
+ "email": "电子邮件",
+ "password": "密码",
+ "submit": "创建"
+ },
+ "reset_password": {
+ "title": "重置账户密码",
+ "subtext": "输入新密码",
+ "password": "密码",
+ "password_confirm": "确认密码",
+ "submit": "重置密码"
+ },
+ "order": {
+ "title": "订单 {{ name }}",
+ "date_html": "下单日期:{{ date }}",
+ "cancelled_html": "订单取消日期:{{ date }}",
+ "cancelled_reason": "原因:{{ reason }}",
+ "billing_address": "账单地址",
+ "payment_status": "付款状态",
+ "shipping_address": "收货地址",
+ "fulfillment_status": "发货状态",
+ "discount": "折扣",
+ "shipping": "运输",
+ "tax": "税费",
+ "product": "产品",
+ "sku": "SKU",
+ "price": "价格",
+ "quantity": "数量",
+ "total": "总计",
+ "fulfilled_at_html": "发货日期:{{ date }}",
+ "track_shipment": "跟踪货件",
+ "tracking_url": "跟踪链接",
+ "tracking_company": "承运商",
+ "tracking_number": "跟踪编号",
+ "subtotal": "小计",
+ "total_duties": "关税",
+ "total_refunded": "已退款"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "您的 {{ shop }} 的礼品卡余额为 {{ value }}!",
+ "subtext": "您的礼品卡",
+ "gift_card_code": "礼品卡代码",
+ "shop_link": "访问在线商店",
+ "add_to_apple_wallet": "添加到 Apple Wallet",
+ "qr_image_alt": "二维码 — 扫描兑换礼品卡",
+ "copy_code": "复制礼品卡代码",
+ "expired": "已过期",
+ "copy_code_success": "已成功复制代码",
+ "how_to_use_gift_card": "在线使用礼品卡代码或在店内使用二维码",
+ "expiration_date": "过期日期:{{ expires_on }}"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "我想将此礼品卡发送为礼品",
+ "email_label": "收件人邮箱",
+ "email": "邮箱",
+ "name_label": "收件人姓名(可选)",
+ "name": "姓名",
+ "message_label": "消息(可选)",
+ "message": "消息",
+ "max_characters": "不超过 {{ max_chars }} 个字符",
+ "email_label_optional_for_no_js_behavior": "收件人邮箱(可选)",
+ "send_on": "YYYY-MM-DD",
+ "send_on_label": "发送日期(可选)",
+ "expanded": "礼品卡收件人表单已展开",
+ "collapsed": "礼品卡收件人表单已折叠"
+ }
+ }
+}
diff --git a/locales/zh-CN.schema.json b/locales/zh-CN.schema.json
new file mode 100644
index 0000000..7b63ff0
--- /dev/null
+++ b/locales/zh-CN.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "颜色",
+ "settings": {
+ "background": {
+ "label": "背景"
+ },
+ "background_gradient": {
+ "label": "背景渐变",
+ "info": "背景渐变将在所有适用位置替换背景。"
+ },
+ "text": {
+ "label": "文本"
+ },
+ "button_background": {
+ "label": "实心按钮背景"
+ },
+ "button_label": {
+ "label": "实心按钮标签"
+ },
+ "secondary_button_label": {
+ "label": "轮廓按钮"
+ },
+ "shadow": {
+ "label": "阴影"
+ }
+ }
+ },
+ "typography": {
+ "name": "版式",
+ "settings": {
+ "type_header_font": {
+ "label": "字体",
+ "info": "选择其他字体可能会影响您商店的速度。[详细了解系统字体。](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "标题"
+ },
+ "header__2": {
+ "content": "正文"
+ },
+ "type_body_font": {
+ "label": "字体",
+ "info": "选择其他字体可能会影响您商店的速度。[详细了解系统字体。](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "字号比例"
+ },
+ "body_scale": {
+ "label": "字号比例"
+ }
+ }
+ },
+ "social-media": {
+ "name": "社交媒体",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "社交媒体账户"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "货币格式",
+ "settings": {
+ "content": "货币代码",
+ "currency_code_enabled": {
+ "label": "显示货币代码"
+ },
+ "paragraph": "购物车和结账价格将始终显示货币代码。示例:1.00 USD。"
+ }
+ },
+ "layout": {
+ "name": "布局",
+ "settings": {
+ "page_width": {
+ "label": "页面宽度"
+ },
+ "spacing_sections": {
+ "label": "模板分区之间的间距"
+ },
+ "header__grid": {
+ "content": "网格"
+ },
+ "paragraph__grid": {
+ "content": "影响具有多列或行的区域。"
+ },
+ "spacing_grid_horizontal": {
+ "label": "水平间距"
+ },
+ "spacing_grid_vertical": {
+ "label": "垂直间距"
+ }
+ }
+ },
+ "search_input": {
+ "name": "搜索行为",
+ "settings": {
+ "header": {
+ "content": "搜索建议"
+ },
+ "predictive_search_enabled": {
+ "label": "启用搜索建议"
+ },
+ "predictive_search_show_vendor": {
+ "label": "显示产品厂商",
+ "info": "在启用搜索建议时可见。"
+ },
+ "predictive_search_show_price": {
+ "label": "显示产品价格",
+ "info": "在启用搜索建议时可见。"
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "边框"
+ },
+ "header__shadow": {
+ "content": "阴影"
+ },
+ "blur": {
+ "label": "模糊"
+ },
+ "corner_radius": {
+ "label": "圆角半径"
+ },
+ "horizontal_offset": {
+ "label": "水平偏移"
+ },
+ "vertical_offset": {
+ "label": "垂直偏移"
+ },
+ "thickness": {
+ "label": "厚度"
+ },
+ "opacity": {
+ "label": "不透明度"
+ },
+ "image_padding": {
+ "label": "图片填充"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "文本对齐方式"
+ }
+ }
+ },
+ "badges": {
+ "name": "徽章",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "左下方"
+ },
+ "options__2": {
+ "label": "右下方"
+ },
+ "options__3": {
+ "label": "左上方"
+ },
+ "options__4": {
+ "label": "右上方"
+ },
+ "label": "在卡上的位置"
+ },
+ "sale_badge_color_scheme": {
+ "label": "促销徽章配色方案"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "售罄徽章配色方案"
+ }
+ }
+ },
+ "buttons": {
+ "name": "按钮"
+ },
+ "variant_pills": {
+ "name": "多属性椭圆形框",
+ "paragraph": "多属性椭圆形框是显示产品多属性的一种方式。[详细了解](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "输入"
+ },
+ "content_containers": {
+ "name": "内容容器"
+ },
+ "popups": {
+ "name": "下拉菜单和弹出窗口",
+ "paragraph": "影响区域,例如导航下拉菜单、弹出模态窗口和购物车弹出窗口。"
+ },
+ "media": {
+ "name": "媒体文件"
+ },
+ "drawers": {
+ "name": "抽屉"
+ },
+ "cart": {
+ "name": "购物车",
+ "settings": {
+ "cart_type": {
+ "label": "购物车类型",
+ "drawer": {
+ "label": "抽屉"
+ },
+ "page": {
+ "label": "页面"
+ },
+ "notification": {
+ "label": "弹出窗口通知"
+ }
+ },
+ "show_vendor": {
+ "label": "显示厂商"
+ },
+ "show_cart_note": {
+ "label": "启用购物车备注"
+ },
+ "cart_drawer": {
+ "header": "购物车抽屉",
+ "collection": {
+ "label": "产品系列",
+ "info": "在购物车抽屉为空时可见。"
+ }
+ }
+ }
+ },
+ "cards": {
+ "name": "产品卡",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "标准"
+ },
+ "options__2": {
+ "label": "卡"
+ },
+ "label": "样式"
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "产品系列卡",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "标准"
+ },
+ "options__2": {
+ "label": "卡"
+ },
+ "label": "样式"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "博客卡",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "标准"
+ },
+ "options__2": {
+ "label": "卡"
+ },
+ "label": "样式"
+ }
+ }
+ },
+ "logo": {
+ "name": "logo",
+ "settings": {
+ "logo_image": {
+ "label": "logo"
+ },
+ "logo_width": {
+ "label": "台式电脑 logo 宽度",
+ "info": "logo 宽度会针对移动设备进行自动优化。"
+ },
+ "favicon": {
+ "label": "网站图标图片",
+ "info": "将缩小到 32 x 32px"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "品牌信息",
+ "settings": {
+ "brand_headline": {
+ "label": "标题"
+ },
+ "brand_description": {
+ "label": "描述"
+ },
+ "brand_image": {
+ "label": "图片"
+ },
+ "brand_image_width": {
+ "label": "图片宽度"
+ },
+ "paragraph": {
+ "content": "在商店的页脚中添加品牌描述。"
+ }
+ }
+ },
+ "animations": {
+ "name": "动画",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "在滚动时显示分区"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "无"
+ },
+ "options__2": {
+ "label": "垂直提升"
+ },
+ "label": "悬停效果",
+ "info": "影响卡和按钮。",
+ "options__3": {
+ "label": "3D 提升"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "分区填充",
+ "padding_top": "顶部填充",
+ "padding_bottom": "底部填充"
+ },
+ "spacing": "间距",
+ "colors": {
+ "label": "配色方案",
+ "has_cards_info": "若要更改卡配色方案,请更新您的模板设置。"
+ },
+ "heading_size": {
+ "label": "标题大小",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "options__4": {
+ "label": "特大"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "默认"
+ },
+ "options__2": {
+ "label": "弧形"
+ },
+ "options__3": {
+ "label": "Blob"
+ },
+ "options__4": {
+ "label": "向左 V 形"
+ },
+ "options__5": {
+ "label": "向右 V 形"
+ },
+ "options__6": {
+ "label": "菱形"
+ },
+ "options__7": {
+ "label": "平行四边形"
+ },
+ "options__8": {
+ "label": "圆形"
+ },
+ "label": "图片形状",
+ "info": "当“图片形状”为非“默认”选项时,标准样式的卡没有边框。"
+ },
+ "animation": {
+ "content": "动画",
+ "image_behavior": {
+ "options__1": {
+ "label": "无"
+ },
+ "options__2": {
+ "label": "环境移动"
+ },
+ "label": "图片行为",
+ "options__3": {
+ "label": "修复背景位置"
+ },
+ "options__4": {
+ "label": "滚动时放大"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "公告栏",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "文本"
+ },
+ "text_alignment": {
+ "label": "文本对齐方式",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ }
+ },
+ "link": {
+ "label": "链接"
+ }
+ },
+ "name": "公告"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "自动循环展示公告"
+ },
+ "change_slides_speed": {
+ "label": "更换时间间隔"
+ },
+ "header__1": {
+ "content": "社交媒体图标",
+ "info": "若要显示您的社交媒体账户,请在 [模板设置](/editor?context=theme&category=social%20media) 中添加其链接。"
+ },
+ "header__2": {
+ "content": "公告"
+ },
+ "show_social": {
+ "label": "在桌面上显示图标"
+ },
+ "header__3": {
+ "content": "国家/地区选择器",
+ "info": "若要添加国家/地区,请转到 [市场设置](/admin/settings/markets)。"
+ },
+ "enable_country_selector": {
+ "label": "启用国家/地区选择器"
+ },
+ "header__4": {
+ "content": "语言选择器",
+ "info": "若要添加语言,请转到您的 [语言设置](/admin/settings/languages)。"
+ },
+ "enable_language_selector": {
+ "label": "启用语言选择器"
+ }
+ },
+ "presets": {
+ "name": "公告栏"
+ }
+ },
+ "collage": {
+ "name": "拼贴画",
+ "settings": {
+ "heading": {
+ "label": "标题"
+ },
+ "desktop_layout": {
+ "label": "桌面布局",
+ "options__1": {
+ "label": "左侧大块"
+ },
+ "options__2": {
+ "label": "右侧大块"
+ }
+ },
+ "mobile_layout": {
+ "label": "移动布局",
+ "options__1": {
+ "label": "拼贴画"
+ },
+ "options__2": {
+ "label": "列"
+ }
+ },
+ "card_styles": {
+ "label": "卡样式",
+ "info": "可在模板设置中更新产品、产品系列和博客卡样式。",
+ "options__1": {
+ "label": "使用单独的卡样式"
+ },
+ "options__2": {
+ "label": "将所有内容设置为产品卡样式"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "图片"
+ }
+ },
+ "name": "图片"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "产品"
+ },
+ "secondary_background": {
+ "label": "显示辅助背景"
+ },
+ "second_image": {
+ "label": "在悬停时显示第二张图片"
+ }
+ },
+ "name": "产品"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "产品系列"
+ }
+ },
+ "name": "产品系列"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "封面图片"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "如果分区中包含其他块,则在弹出窗口中播放视频。",
+ "placeholder": "使用 YouTube 或 Vimeo URL"
+ },
+ "description": {
+ "label": "视频替代文本",
+ "info": "为使用屏幕阅读器的客户描述视频。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "视频"
+ }
+ },
+ "presets": {
+ "name": "拼贴画"
+ }
+ },
+ "collection-list": {
+ "name": "产品系列列表",
+ "settings": {
+ "title": {
+ "label": "标题"
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ },
+ "info": "通过编辑产品集合来添加图片。[详细了解](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "在移动设备上启用刷卡功能"
+ },
+ "show_view_all": {
+ "label": "如果列表中的产品系列未全部显示,请启用“查看全部”按钮"
+ },
+ "columns_desktop": {
+ "label": "桌面上的列数"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "产品系列"
+ }
+ },
+ "name": "产品系列"
+ }
+ },
+ "presets": {
+ "name": "产品系列列表"
+ }
+ },
+ "contact-form": {
+ "name": "联系表",
+ "presets": {
+ "name": "联系表"
+ }
+ },
+ "custom-liquid": {
+ "name": "自定义 Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid 代码",
+ "info": "添加应用代码片段或其他代码以创建高级自定义。[详细了解](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "自定义 Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "博客文章",
+ "settings": {
+ "heading": {
+ "label": "标题"
+ },
+ "blog": {
+ "label": "博客"
+ },
+ "post_limit": {
+ "label": "要显示的博客文章数"
+ },
+ "show_view_all": {
+ "label": "如果博客中的博客文章未全部显示,请启用“查看全部”按钮"
+ },
+ "show_image": {
+ "label": "显示配图",
+ "info": "若要获得最佳效果,请使用纵横比为 3:2 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "显示日期"
+ },
+ "show_author": {
+ "label": "显示作者"
+ },
+ "columns_desktop": {
+ "label": "桌面上的列数"
+ }
+ },
+ "presets": {
+ "name": "博客文章"
+ }
+ },
+ "featured-collection": {
+ "name": "特色产品系列",
+ "settings": {
+ "title": {
+ "label": "标题"
+ },
+ "collection": {
+ "label": "产品系列"
+ },
+ "products_to_show": {
+ "label": "要显示的最大产品数"
+ },
+ "show_view_all": {
+ "label": "如果产品系列中的产品未全部显示,请启用“查看全部”"
+ },
+ "header": {
+ "content": "产品卡"
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "在悬停时显示第二张图片"
+ },
+ "show_vendor": {
+ "label": "显示厂商"
+ },
+ "show_rating": {
+ "label": "显示产品评分",
+ "info": "若要显示评分,请添加产品评分应用。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "启用快速添加按钮",
+ "info": "通过弹出窗口或抽屉式购物车类型实现优化。"
+ },
+ "columns_desktop": {
+ "label": "桌面上的列数"
+ },
+ "description": {
+ "label": "描述"
+ },
+ "show_description": {
+ "label": "从后台显示产品系列描述"
+ },
+ "description_style": {
+ "label": "描述类型",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "链接"
+ },
+ "options__2": {
+ "label": "轮廓按钮"
+ },
+ "options__3": {
+ "label": "实心按钮"
+ },
+ "label": "“查看全部”样式"
+ },
+ "enable_desktop_slider": {
+ "label": "在台式设备上启用轮播"
+ },
+ "full_width": {
+ "label": "使产品全宽显示"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "在移动设备上启用刷卡功能"
+ }
+ },
+ "presets": {
+ "name": "特色产品系列"
+ }
+ },
+ "footer": {
+ "name": "页脚",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "标题"
+ },
+ "menu": {
+ "label": "菜单",
+ "info": "仅显示一级菜单项。"
+ }
+ },
+ "name": "菜单"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "标题"
+ },
+ "subtext": {
+ "label": "子文本"
+ }
+ },
+ "name": "文本"
+ },
+ "brand_information": {
+ "name": "品牌信息",
+ "settings": {
+ "paragraph": {
+ "content": "此块将显示您的品牌信息。[编辑品牌信息。](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "社交媒体图标"
+ },
+ "show_social": {
+ "label": "显示社交媒体图标",
+ "info": "若要显示您的社交媒体账户,请在 [模板设置](/editor?context=theme&category=social%20media) 中添加其链接。"
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "显示电子邮件注册信息"
+ },
+ "newsletter_heading": {
+ "label": "标题"
+ },
+ "header__1": {
+ "info": "订阅者已自动添加到您的“已接受营销”客户列表。[详细了解](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "电子邮件注册信息"
+ },
+ "header__2": {
+ "content": "社交媒体图标",
+ "info": "若要显示您的社交媒体账户,请在 [模板设置](/editor?context=theme&category=social%20media) 中添加其链接。"
+ },
+ "show_social": {
+ "label": "显示社交媒体图标"
+ },
+ "header__3": {
+ "content": "国家/地区选择器"
+ },
+ "header__4": {
+ "info": "若要添加国家/地区,请转到 [营销设置](/admin/settings/markets)。"
+ },
+ "enable_country_selector": {
+ "label": "启用国家/地区选择器"
+ },
+ "header__5": {
+ "content": "语言选择器"
+ },
+ "header__6": {
+ "info": "若要添加语言,请转到您的 [语言设置](/admin/settings/languages)。"
+ },
+ "enable_language_selector": {
+ "label": "启用语言选择器"
+ },
+ "header__7": {
+ "content": "付款方式"
+ },
+ "payment_enable": {
+ "label": "显示付款图标"
+ },
+ "margin_top": {
+ "label": "上边距"
+ },
+ "header__8": {
+ "content": "政策链接",
+ "info": "若要添加商店政策,请前往 [政策设置](/admin/settings/legal)。"
+ },
+ "show_policy": {
+ "label": "显示政策链接"
+ },
+ "header__9": {
+ "content": "在 Shop 中关注",
+ "info": "若要使客户能够通过您的店面在 Shop 应用中关注您的商店,则必须启用 Shop Pay。[详细了解](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "启用在 Shop 中关注"
+ }
+ }
+ },
+ "header": {
+ "name": "标头",
+ "settings": {
+ "logo_position": {
+ "label": "台式设备上的 logo 位置",
+ "options__1": {
+ "label": "中间居左"
+ },
+ "options__2": {
+ "label": "左上方"
+ },
+ "options__3": {
+ "label": "顶部居中"
+ },
+ "options__4": {
+ "label": "中间居中"
+ }
+ },
+ "menu": {
+ "label": "菜单"
+ },
+ "show_line_separator": {
+ "label": "显示分隔线"
+ },
+ "margin_bottom": {
+ "label": "下边距"
+ },
+ "menu_type_desktop": {
+ "label": "桌面菜单类型",
+ "info": "菜单类型会针对移动设备进行自动优化。",
+ "options__1": {
+ "label": "下拉菜单"
+ },
+ "options__2": {
+ "label": "超级菜单"
+ },
+ "options__3": {
+ "label": "抽屉"
+ }
+ },
+ "mobile_layout": {
+ "content": "移动设备布局"
+ },
+ "mobile_logo_position": {
+ "label": "移动设备上的 logo 位置",
+ "options__1": {
+ "label": "居中"
+ },
+ "options__2": {
+ "label": "左"
+ }
+ },
+ "logo_help": {
+ "content": "在[模板设置]](/editor?context=theme&category=logo)中编辑您的 logo。"
+ },
+ "sticky_header_type": {
+ "label": "粘性标头",
+ "options__1": {
+ "label": "无"
+ },
+ "options__2": {
+ "label": "向上滚动时"
+ },
+ "options__3": {
+ "label": "始终"
+ },
+ "options__4": {
+ "label": "始终,缩小 logo 尺寸"
+ }
+ },
+ "header__3": {
+ "content": "国家/地区选择器"
+ },
+ "header__4": {
+ "info": "若要添加国家/地区,请转到 [市场设置](/admin/settings/markets)。"
+ },
+ "enable_country_selector": {
+ "label": "启用国家/地区选择器"
+ },
+ "header__5": {
+ "content": "语言选择器"
+ },
+ "header__6": {
+ "info": "若要添加语言,请转到您的 [语言设置](/admin/settings/languages)。"
+ },
+ "enable_language_selector": {
+ "label": "启用语言选择器"
+ },
+ "header__1": {
+ "content": "颜色"
+ },
+ "menu_color_scheme": {
+ "label": "菜单配色方案"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "图片横幅",
+ "settings": {
+ "image": {
+ "label": "第一张图片"
+ },
+ "image_2": {
+ "label": "第二张图片"
+ },
+ "stack_images_on_mobile": {
+ "label": "在移动设备上堆叠图片"
+ },
+ "show_text_box": {
+ "label": "在台式设备上显示容器"
+ },
+ "image_overlay_opacity": {
+ "label": "图片叠加不透明度"
+ },
+ "show_text_below": {
+ "label": "在移动设备上显示容器"
+ },
+ "image_height": {
+ "label": "横幅高度",
+ "options__1": {
+ "label": "适应第一张图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "info": "若要获得最佳效果,请使用纵横比为 3:2 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "左上方"
+ },
+ "options__2": {
+ "label": "顶部居中"
+ },
+ "options__3": {
+ "label": "右上方"
+ },
+ "options__4": {
+ "label": "中间居左"
+ },
+ "options__5": {
+ "label": "中间居中"
+ },
+ "options__6": {
+ "label": "中间居右"
+ },
+ "options__7": {
+ "label": "左下方"
+ },
+ "options__8": {
+ "label": "底部居中"
+ },
+ "options__9": {
+ "label": "右下方"
+ },
+ "label": "桌面内容位置"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "桌面内容对齐方式"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "移动设备内容对齐方式"
+ },
+ "mobile": {
+ "content": "移动设备布局"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "标题"
+ }
+ },
+ "name": "标题"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "描述"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ },
+ "label": "文本样式"
+ }
+ },
+ "name": "文本"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "第一个按钮标签",
+ "info": "将标签留空以隐藏按钮。"
+ },
+ "button_link_1": {
+ "label": "第一个按钮链接"
+ },
+ "button_style_secondary_1": {
+ "label": "使用轮廓按钮样式"
+ },
+ "button_label_2": {
+ "label": "第二个按钮标签",
+ "info": "将标签留空以隐藏按钮。"
+ },
+ "button_link_2": {
+ "label": "第二个按钮链接"
+ },
+ "button_style_secondary_2": {
+ "label": "使用轮廓按钮样式"
+ }
+ },
+ "name": "按钮"
+ }
+ },
+ "presets": {
+ "name": "图片横幅"
+ }
+ },
+ "image-with-text": {
+ "name": "带文本的图片",
+ "settings": {
+ "image": {
+ "label": "图片"
+ },
+ "height": {
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "label": "图片高度",
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "图片优先"
+ },
+ "options__2": {
+ "label": "第二张图片"
+ },
+ "label": "台式设备图片放置",
+ "info": "图片优先是默认的移动布局。"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "台式设备图片宽度",
+ "info": "图片会针对移动设备进行自动优化。"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "台式设备内容对齐方式",
+ "options__2": {
+ "label": "居中"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "顶部"
+ },
+ "options__2": {
+ "label": "中间"
+ },
+ "options__3": {
+ "label": "底部"
+ },
+ "label": "台式设备内容位置"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "无重叠"
+ },
+ "options__2": {
+ "label": "重叠"
+ },
+ "label": "内容布局"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "移动设备内容对齐方式",
+ "options__2": {
+ "label": "居中"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "标题"
+ }
+ },
+ "name": "标题"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "内容"
+ },
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ }
+ }
+ },
+ "name": "文本"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "按钮标签",
+ "info": "将标签留空以隐藏按钮。"
+ },
+ "button_link": {
+ "label": "按钮链接"
+ },
+ "outline_button": {
+ "label": "使用轮廓按钮样式"
+ }
+ },
+ "name": "按钮"
+ },
+ "caption": {
+ "name": "字幕",
+ "settings": {
+ "text": {
+ "label": "文本"
+ },
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "副标题"
+ },
+ "options__2": {
+ "label": "大写"
+ }
+ },
+ "caption_size": {
+ "label": "文本大小",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "带文本的图片"
+ }
+ },
+ "main-article": {
+ "name": "博客文章",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "配图高度",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "info": "若要获得最佳效果,请使用纵横比为 16:9 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "大"
+ }
+ }
+ },
+ "name": "配图"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "显示日期"
+ },
+ "blog_show_author": {
+ "label": "显示作者"
+ }
+ },
+ "name": "标题"
+ },
+ "content": {
+ "name": "内容"
+ },
+ "share": {
+ "name": "分享",
+ "settings": {
+ "featured_image_info": {
+ "content": "如果您在社交媒体帖子中包含链接,该页面的配图将作为预览图片显示。[了解详细信息](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)。"
+ },
+ "title_info": {
+ "content": "预览图片中包含商店标题和描述。[了解详细信息](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。"
+ },
+ "text": {
+ "label": "文本"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "博客文章",
+ "settings": {
+ "header": {
+ "content": "博客文章卡"
+ },
+ "show_image": {
+ "label": "显示配图"
+ },
+ "paragraph": {
+ "content": "通过编辑博客文章来更改摘录。[详细了解](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "显示日期"
+ },
+ "show_author": {
+ "label": "显示作者"
+ },
+ "layout": {
+ "label": "台式设备布局",
+ "options__1": {
+ "label": "网格"
+ },
+ "options__2": {
+ "label": "拼贴"
+ },
+ "info": "文章会在移动设备上堆叠。"
+ },
+ "image_height": {
+ "label": "配图高度",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "info": "若要获得最佳效果,请使用纵横比为 3:2 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "小计",
+ "blocks": {
+ "subtotal": {
+ "name": "小计价格"
+ },
+ "buttons": {
+ "name": "结账按钮"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "商品"
+ },
+ "main-collection-banner": {
+ "name": "产品系列横幅",
+ "settings": {
+ "paragraph": {
+ "content": "通过编辑产品系列来添加描述或图片。[详细了解](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "显示产品系列描述"
+ },
+ "show_collection_image": {
+ "label": "显示产品系列图片",
+ "info": "若要获得最佳效果,请使用纵横比为 16:9 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "产品网格",
+ "settings": {
+ "products_per_page": {
+ "label": "每页产品数"
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "在悬停时显示第二张图片"
+ },
+ "show_vendor": {
+ "label": "显示厂商"
+ },
+ "header__1": {
+ "content": "筛选和排序"
+ },
+ "enable_tags": {
+ "label": "启用筛选",
+ "info": "使用 Search & Discovery 应用自定义筛选条件。[详细了解](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "启用筛选",
+ "info": "使用 Search & Discovery 应用自定义筛选条件。[详细了解](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "启用排序"
+ },
+ "header__3": {
+ "content": "产品卡"
+ },
+ "show_rating": {
+ "label": "显示产品评分",
+ "info": "若要显示评分,请添加产品评分应用。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "启用快速添加按钮",
+ "info": "通过弹出窗口或抽屉式购物车类型实现优化。"
+ },
+ "columns_desktop": {
+ "label": "桌面上的列数"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ },
+ "filter_type": {
+ "label": "台式设备筛选布局",
+ "options__1": {
+ "label": "水平"
+ },
+ "options__2": {
+ "label": "垂直"
+ },
+ "options__3": {
+ "label": "抽屉"
+ },
+ "info": "默认的移动设备布局是抽屉式布局。"
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "产品系列列表页面",
+ "settings": {
+ "title": {
+ "label": "标题"
+ },
+ "sort": {
+ "label": "产品系列排序依据:",
+ "options__1": {
+ "label": "按字母顺序排序,A-Z"
+ },
+ "options__2": {
+ "label": "按字母顺序排序,Z-A"
+ },
+ "options__3": {
+ "label": "日期从近到早"
+ },
+ "options__4": {
+ "label": "日期从早到近"
+ },
+ "options__5": {
+ "label": "产品数量,从高到低"
+ },
+ "options__6": {
+ "label": "产品数量,从低到高"
+ }
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ },
+ "info": "通过编辑产品集合来添加图片。[详细了解](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "台式设备上的列数"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "页面"
+ },
+ "main-password-footer": {
+ "name": "密码页脚"
+ },
+ "main-password-header": {
+ "name": "密码标头",
+ "settings": {
+ "logo_header": {
+ "content": "logo"
+ },
+ "logo_help": {
+ "content": "在模板设置中编辑您的 logo。"
+ }
+ }
+ },
+ "main-product": {
+ "name": "产品信息",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "文本"
+ },
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ }
+ }
+ },
+ "name": "文本"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "类型",
+ "options__1": {
+ "label": "下拉菜单"
+ },
+ "options__2": {
+ "label": "椭圆形框"
+ }
+ }
+ },
+ "name": "多属性选择器"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "显示动态结账按钮",
+ "info": "通过使用您商店中提供的付款方式,客户会看到他们的首选付款方式,例如 PayPal 或 Apple Pay。[了解详细信息](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "显示礼品卡的收件人信息表单",
+ "info": "允许客户在预定日期发送礼品卡并附加私人消息。[详细了解](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "Buy Button"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "如果您在社交媒体帖子中包含链接,该页面的配图便会作为预览图片显示。[了解详细信息](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)。"
+ },
+ "title_info": {
+ "content": "预览图片中包含商店标题和描述。[了解详细信息](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。"
+ },
+ "text": {
+ "label": "文本"
+ }
+ },
+ "name": "共享"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "包含可解释相关内容的标题。",
+ "label": "标题"
+ },
+ "content": {
+ "label": "行内容"
+ },
+ "page": {
+ "label": "页面中的行内容"
+ },
+ "icon": {
+ "label": "图标",
+ "options__1": {
+ "label": "无"
+ },
+ "options__2": {
+ "label": "苹果"
+ },
+ "options__3": {
+ "label": "香蕉"
+ },
+ "options__4": {
+ "label": "瓶子"
+ },
+ "options__5": {
+ "label": "箱子"
+ },
+ "options__6": {
+ "label": "胡萝卜"
+ },
+ "options__7": {
+ "label": "聊天泡泡"
+ },
+ "options__8": {
+ "label": "复选标记"
+ },
+ "options__9": {
+ "label": "剪贴板"
+ },
+ "options__10": {
+ "label": "乳制品"
+ },
+ "options__11": {
+ "label": "不食乳制品"
+ },
+ "options__12": {
+ "label": "吹风机"
+ },
+ "options__13": {
+ "label": "眼睛"
+ },
+ "options__14": {
+ "label": "火"
+ },
+ "options__15": {
+ "label": "无麸质"
+ },
+ "options__16": {
+ "label": "心形"
+ },
+ "options__17": {
+ "label": "铁"
+ },
+ "options__18": {
+ "label": "树叶"
+ },
+ "options__19": {
+ "label": "皮革"
+ },
+ "options__20": {
+ "label": "闪电束"
+ },
+ "options__21": {
+ "label": "口红"
+ },
+ "options__22": {
+ "label": "锁"
+ },
+ "options__23": {
+ "label": "图钉"
+ },
+ "options__24": {
+ "label": "不含坚果"
+ },
+ "options__25": {
+ "label": "裤装"
+ },
+ "options__26": {
+ "label": "爪印"
+ },
+ "options__27": {
+ "label": "胡椒粉"
+ },
+ "options__28": {
+ "label": "香水"
+ },
+ "options__29": {
+ "label": "飞机"
+ },
+ "options__30": {
+ "label": "绿植"
+ },
+ "options__31": {
+ "label": "价格标签"
+ },
+ "options__32": {
+ "label": "问号"
+ },
+ "options__33": {
+ "label": "回收利用"
+ },
+ "options__34": {
+ "label": "退货"
+ },
+ "options__35": {
+ "label": "直尺"
+ },
+ "options__36": {
+ "label": "餐盘"
+ },
+ "options__37": {
+ "label": "衬衫"
+ },
+ "options__38": {
+ "label": "鞋"
+ },
+ "options__39": {
+ "label": "剪影"
+ },
+ "options__40": {
+ "label": "雪花"
+ },
+ "options__41": {
+ "label": "星星"
+ },
+ "options__42": {
+ "label": "秒表"
+ },
+ "options__43": {
+ "label": "卡车"
+ },
+ "options__44": {
+ "label": "洗涤剂"
+ }
+ }
+ },
+ "name": "可折叠行"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "链接标签"
+ },
+ "page": {
+ "label": "页面"
+ }
+ },
+ "name": "弹出窗口"
+ },
+ "title": {
+ "name": "标题"
+ },
+ "price": {
+ "name": "价格"
+ },
+ "quantity_selector": {
+ "name": "数量选择器"
+ },
+ "pickup_availability": {
+ "name": "是否提供取货服务"
+ },
+ "description": {
+ "name": "描述"
+ },
+ "rating": {
+ "name": "产品评分",
+ "settings": {
+ "paragraph": {
+ "content": "若要显示评分,请添加产品评分应用。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "互补产品",
+ "settings": {
+ "paragraph": {
+ "content": "若要选择互补产品,请添加 Search & Discovery 应用。[详细了解](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "标题"
+ },
+ "make_collapsible_row": {
+ "label": "显示为可折叠行"
+ },
+ "icon": {
+ "info": "在显示可折叠行时可见。"
+ },
+ "product_list_limit": {
+ "label": "要显示的最大产品数"
+ },
+ "products_per_page": {
+ "label": "每页产品数"
+ },
+ "pagination_style": {
+ "label": "分页样式",
+ "options": {
+ "option_1": "点",
+ "option_2": "计数器",
+ "option_3": "数字"
+ }
+ },
+ "product_card": {
+ "heading": "产品卡"
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options": {
+ "option_1": "纵向",
+ "option_2": "方形"
+ }
+ },
+ "enable_quick_add": {
+ "label": "启用快速添加按钮"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "带文本的图标",
+ "settings": {
+ "layout": {
+ "label": "布局",
+ "options__1": {
+ "label": "水平"
+ },
+ "options__2": {
+ "label": "垂直"
+ }
+ },
+ "content": {
+ "label": "内容",
+ "info": "选择图标或为每列或每行添加图片。"
+ },
+ "heading": {
+ "info": "将标题标签留空可隐藏图标列。"
+ },
+ "icon_1": {
+ "label": "第一个图标"
+ },
+ "image_1": {
+ "label": "第一张图片"
+ },
+ "heading_1": {
+ "label": "第一个标题"
+ },
+ "icon_2": {
+ "label": "第二个图标"
+ },
+ "image_2": {
+ "label": "第二张图片"
+ },
+ "heading_2": {
+ "label": "第二个标题"
+ },
+ "icon_3": {
+ "label": "第三个图标"
+ },
+ "image_3": {
+ "label": "第三张图片"
+ },
+ "heading_3": {
+ "label": "第三个标题"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "库存状态",
+ "settings": {
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ }
+ },
+ "inventory_threshold": {
+ "label": "低库存阈值",
+ "info": "选择 0 即可始终在产品可售时显示“有货”。"
+ },
+ "show_inventory_quantity": {
+ "label": "显示库存计数"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "媒体文件",
+ "info": "详细了解 [媒体文件类型。](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "启用视频循环"
+ },
+ "enable_sticky_info": {
+ "label": "在台式设备上启用粘性内容"
+ },
+ "hide_variants": {
+ "label": "在选择多属性后隐藏其他多属性的媒体文件"
+ },
+ "gallery_layout": {
+ "label": "桌面布局",
+ "options__1": {
+ "label": "堆叠"
+ },
+ "options__2": {
+ "label": "2 列"
+ },
+ "options__3": {
+ "label": "缩略图"
+ },
+ "options__4": {
+ "label": "缩略图轮播"
+ }
+ },
+ "media_size": {
+ "label": "台式设备媒体文件宽度",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "info": "媒体文件会针对移动设备进行自动优化。"
+ },
+ "mobile_thumbnails": {
+ "label": "移动布局",
+ "options__1": {
+ "label": "2 列"
+ },
+ "options__2": {
+ "label": "显示缩略图"
+ },
+ "options__3": {
+ "label": "隐藏缩略图"
+ }
+ },
+ "media_position": {
+ "label": "台式设备上的媒体文件位置",
+ "info": "位置会针对移动设备进行自动优化。",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "右"
+ }
+ },
+ "image_zoom": {
+ "label": "图片缩放",
+ "info": "在移动设备上打开灯箱的点击和悬停默认设置。",
+ "options__1": {
+ "label": "打开灯箱"
+ },
+ "options__2": {
+ "label": "点击和悬停"
+ },
+ "options__3": {
+ "label": "无缩放"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "将媒体文件限制为屏幕高度"
+ },
+ "media_fit": {
+ "label": "媒体文件适应",
+ "options__1": {
+ "label": "初始"
+ },
+ "options__2": {
+ "label": "填充"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "搜索结果",
+ "settings": {
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "在悬停时显示第二张图片"
+ },
+ "show_vendor": {
+ "label": "显示厂商"
+ },
+ "header__1": {
+ "content": "产品卡"
+ },
+ "header__2": {
+ "content": "博客卡",
+ "info": "博客卡的样式还将应用于搜索结果中的页面卡。若要更改卡样式,请更新您的模板设置。"
+ },
+ "article_show_date": {
+ "label": "显示日期"
+ },
+ "article_show_author": {
+ "label": "显示作者"
+ },
+ "show_rating": {
+ "label": "显示产品评分",
+ "info": "若要显示评分,请添加产品评分应用。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "桌面上的列数"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "多列",
+ "settings": {
+ "title": {
+ "label": "标题"
+ },
+ "image_width": {
+ "label": "图片宽度",
+ "options__1": {
+ "label": "1/3 列宽"
+ },
+ "options__2": {
+ "label": "1/2 列宽"
+ },
+ "options__3": {
+ "label": "全列宽"
+ }
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ },
+ "options__4": {
+ "label": "圆形"
+ }
+ },
+ "column_alignment": {
+ "label": "列对齐方式",
+ "options__1": {
+ "label": "左对齐"
+ },
+ "options__2": {
+ "label": "居中"
+ }
+ },
+ "background_style": {
+ "label": "辅助背景",
+ "options__1": {
+ "label": "无"
+ },
+ "options__2": {
+ "label": "显示为列背景"
+ }
+ },
+ "button_label": {
+ "label": "按钮标签"
+ },
+ "button_link": {
+ "label": "按钮链接"
+ },
+ "swipe_on_mobile": {
+ "label": "在移动设备上启用刷卡功能"
+ },
+ "columns_desktop": {
+ "label": "桌面上的列数"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "图片"
+ },
+ "title": {
+ "label": "标题"
+ },
+ "text": {
+ "label": "描述"
+ },
+ "link_label": {
+ "label": "链接标签"
+ },
+ "link": {
+ "label": "链接"
+ }
+ },
+ "name": "列"
+ }
+ },
+ "presets": {
+ "name": "多列"
+ }
+ },
+ "newsletter": {
+ "name": "电子邮件注册信息",
+ "settings": {
+ "full_width": {
+ "label": "使分区展示全宽"
+ },
+ "paragraph": {
+ "content": "每次电子邮件订阅均会创建一个客户账户。[详细了解](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "标题"
+ }
+ },
+ "name": "标题"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "描述"
+ }
+ },
+ "name": "副标题"
+ },
+ "email_form": {
+ "name": "电子邮件形式"
+ }
+ },
+ "presets": {
+ "name": "电子邮件注册信息"
+ }
+ },
+ "page": {
+ "name": "页面",
+ "settings": {
+ "page": {
+ "label": "页面"
+ }
+ },
+ "presets": {
+ "name": "页面"
+ }
+ },
+ "rich-text": {
+ "name": "富文本",
+ "settings": {
+ "full_width": {
+ "label": "使分区展示全宽"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "台式设备内容位置",
+ "info": "位置会针对移动设备进行自动优化。"
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "内容对齐方式"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "标题"
+ }
+ },
+ "name": "标题"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "描述"
+ }
+ },
+ "name": "文本"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "第一个按钮标签",
+ "info": "将标签留空可隐藏按钮。"
+ },
+ "button_link_1": {
+ "label": "第一个按钮链接"
+ },
+ "button_style_secondary_1": {
+ "label": "使用轮廓按钮样式"
+ },
+ "button_label_2": {
+ "label": "第二个按钮标签",
+ "info": "将标签留空可隐藏按钮。"
+ },
+ "button_link_2": {
+ "label": "第二个按钮链接"
+ },
+ "button_style_secondary_2": {
+ "label": "使用轮廓按钮样式"
+ }
+ },
+ "name": "按钮"
+ },
+ "caption": {
+ "name": "字幕",
+ "settings": {
+ "text": {
+ "label": "文本"
+ },
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "副标题"
+ },
+ "options__2": {
+ "label": "大写"
+ }
+ },
+ "caption_size": {
+ "label": "文本大小",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "富文本"
+ }
+ },
+ "apps": {
+ "name": "应用",
+ "settings": {
+ "include_margins": {
+ "label": "使分区页边距与模板相同"
+ }
+ },
+ "presets": {
+ "name": "应用"
+ }
+ },
+ "video": {
+ "name": "视频",
+ "settings": {
+ "heading": {
+ "label": "标题"
+ },
+ "cover_image": {
+ "label": "封面图片"
+ },
+ "video_url": {
+ "label": "URL",
+ "info": "使用 YouTube 或 Vimeo URL"
+ },
+ "description": {
+ "label": "视频替代文本",
+ "info": "为使用屏幕阅读器的客户描述视频。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "添加图片填充",
+ "info": "如果您不希望裁剪封面图片,请选择图片填充。"
+ },
+ "full_width": {
+ "label": "使分区展示全宽"
+ },
+ "video": {
+ "label": "视频"
+ },
+ "enable_video_looping": {
+ "label": "循环播放视频"
+ },
+ "header__1": {
+ "content": "Shopify 托管视频"
+ },
+ "header__2": {
+ "content": "或通过 URL 嵌入视频"
+ },
+ "header__3": {
+ "content": "样式"
+ },
+ "paragraph": {
+ "content": "在未选择 Shopify 托管视频时显示。"
+ }
+ },
+ "presets": {
+ "name": "视频"
+ }
+ },
+ "featured-product": {
+ "name": "特色产品",
+ "blocks": {
+ "text": {
+ "name": "文本",
+ "settings": {
+ "text": {
+ "label": "文本"
+ },
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "标题"
+ },
+ "price": {
+ "name": "价格"
+ },
+ "quantity_selector": {
+ "name": "数量选择器"
+ },
+ "variant_picker": {
+ "name": "多属性选择器",
+ "settings": {
+ "picker_type": {
+ "label": "类型",
+ "options__1": {
+ "label": "下拉菜单"
+ },
+ "options__2": {
+ "label": "椭圆形框"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "Buy Button",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "显示动态结账按钮",
+ "info": "通过使用您商店中提供的付款方式,客户会看到他们的首选付款方式,例如 PayPal 或 Apple Pay。[详细了解](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "描述"
+ },
+ "share": {
+ "name": "分享",
+ "settings": {
+ "featured_image_info": {
+ "content": "如果您在社交媒体帖子中包含链接,该页面的配图将作为预览图片显示。[详细了解](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "预览图片中包含商店标题和描述。[详细了解](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "文本"
+ }
+ }
+ },
+ "rating": {
+ "name": "产品评分",
+ "settings": {
+ "paragraph": {
+ "content": "若要显示评分,请添加产品评分应用。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "SKU",
+ "settings": {
+ "text_style": {
+ "label": "文本样式",
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "options__3": {
+ "label": "大写"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "产品"
+ },
+ "secondary_background": {
+ "label": "显示辅助背景"
+ },
+ "header": {
+ "content": "媒体文件",
+ "info": "详细了解 [媒体文件类型](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "启用视频循环"
+ },
+ "hide_variants": {
+ "label": "在桌面上隐藏未选择的多属性的媒体文件"
+ },
+ "media_position": {
+ "label": "台式设备上的媒体文件位置",
+ "info": "位置会针对移动设备进行自动优化。",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "右"
+ }
+ }
+ },
+ "presets": {
+ "name": "特色产品"
+ }
+ },
+ "email-signup-banner": {
+ "name": "电子邮件注册横幅",
+ "settings": {
+ "paragraph": {
+ "content": "每次电子邮件订阅均会创建一个客户账户。[详细了解](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "背景图片"
+ },
+ "show_background_image": {
+ "label": "显示背景图片"
+ },
+ "show_text_box": {
+ "label": "在台式设备上显示容器"
+ },
+ "image_overlay_opacity": {
+ "label": "图片叠加不透明度"
+ },
+ "show_text_below": {
+ "label": "在移动设备上的图片下方显示内容。",
+ "info": "若要获得最佳效果,请使用纵横比为 16:9 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "横幅高度",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "info": "若要获得最佳效果,请使用纵横比为 16:9 的图片。[详细了解](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "中间居左"
+ },
+ "options__5": {
+ "label": "中间居中"
+ },
+ "options__6": {
+ "label": "中间居右"
+ },
+ "options__7": {
+ "label": "左下方"
+ },
+ "options__8": {
+ "label": "底部居中"
+ },
+ "options__9": {
+ "label": "右下方"
+ },
+ "options__1": {
+ "label": "左上方"
+ },
+ "options__2": {
+ "label": "顶部居中"
+ },
+ "options__3": {
+ "label": "右上方"
+ },
+ "label": "桌面内容位置"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "桌面内容对齐方式"
+ },
+ "header": {
+ "content": "移动布局"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "移动设备内容对齐方式"
+ },
+ "color_scheme": {
+ "info": "在显示容器时可见。"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "标题",
+ "settings": {
+ "heading": {
+ "label": "标题"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "段落",
+ "settings": {
+ "paragraph": {
+ "label": "描述"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "label": "文本样式"
+ }
+ }
+ },
+ "email_form": {
+ "name": "电子邮件形式"
+ }
+ },
+ "presets": {
+ "name": "电子邮件注册横幅"
+ }
+ },
+ "slideshow": {
+ "name": "幻灯片",
+ "settings": {
+ "layout": {
+ "label": "布局",
+ "options__1": {
+ "label": "全宽"
+ },
+ "options__2": {
+ "label": "网格"
+ }
+ },
+ "slide_height": {
+ "label": "幻灯片高度",
+ "options__1": {
+ "label": "适应第一张图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "slider_visual": {
+ "label": "分页样式",
+ "options__1": {
+ "label": "计数器"
+ },
+ "options__2": {
+ "label": "点"
+ },
+ "options__3": {
+ "label": "数字"
+ }
+ },
+ "auto_rotate": {
+ "label": "自动旋转幻灯片"
+ },
+ "change_slides_speed": {
+ "label": "幻灯片更换时间间隔"
+ },
+ "mobile": {
+ "content": "移动布局"
+ },
+ "show_text_below": {
+ "label": "在移动设备上的图片下方显示内容"
+ },
+ "accessibility": {
+ "content": "辅助功能",
+ "label": "幻灯片描述",
+ "info": "为使用屏幕阅读器的客户描述幻灯片。"
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "幻灯片",
+ "settings": {
+ "image": {
+ "label": "图片"
+ },
+ "heading": {
+ "label": "标题"
+ },
+ "subheading": {
+ "label": "副标题"
+ },
+ "button_label": {
+ "label": "按钮标签",
+ "info": "将标签留空可隐藏按钮。"
+ },
+ "link": {
+ "label": "按钮链接"
+ },
+ "secondary_style": {
+ "label": "使用轮廓按钮样式"
+ },
+ "box_align": {
+ "label": "台式设备内容位置",
+ "options__1": {
+ "label": "左上方"
+ },
+ "options__2": {
+ "label": "顶部居中"
+ },
+ "options__3": {
+ "label": "右上方"
+ },
+ "options__4": {
+ "label": "中间居左"
+ },
+ "options__5": {
+ "label": "中间居中"
+ },
+ "options__6": {
+ "label": "中间居右"
+ },
+ "options__7": {
+ "label": "左下方"
+ },
+ "options__8": {
+ "label": "底部居中"
+ },
+ "options__9": {
+ "label": "右下方"
+ },
+ "info": "位置会针对移动设备进行自动优化。"
+ },
+ "show_text_box": {
+ "label": "在台式设备上显示容器"
+ },
+ "text_alignment": {
+ "label": "台式设备内容对齐方式",
+ "option_1": {
+ "label": "左"
+ },
+ "option_2": {
+ "label": "居中"
+ },
+ "option_3": {
+ "label": "右"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "图片叠加不透明度"
+ },
+ "text_alignment_mobile": {
+ "label": "移动设备内容对齐方式",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "幻灯片"
+ }
+ },
+ "collapsible_content": {
+ "name": "可折叠内容",
+ "settings": {
+ "caption": {
+ "label": "字幕"
+ },
+ "heading": {
+ "label": "标题"
+ },
+ "heading_alignment": {
+ "label": "标题对齐方式",
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ }
+ },
+ "layout": {
+ "label": "布局",
+ "options__1": {
+ "label": "无容器"
+ },
+ "options__2": {
+ "label": "行容器"
+ },
+ "options__3": {
+ "label": "分区容器"
+ }
+ },
+ "open_first_collapsible_row": {
+ "label": "打开第一个可折叠行"
+ },
+ "header": {
+ "content": "图片布局"
+ },
+ "image": {
+ "label": "图片"
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ },
+ "desktop_layout": {
+ "label": "桌面布局",
+ "options__1": {
+ "label": "图片优先"
+ },
+ "options__2": {
+ "label": "第二张图片"
+ },
+ "info": "移动设备上总是图片优先。"
+ },
+ "container_color_scheme": {
+ "label": "容器配色方案",
+ "info": "在将“布局”设置为“行”或“分区”容器时可见。"
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "可折叠行",
+ "settings": {
+ "heading": {
+ "info": "包含可解释相关内容的标题。",
+ "label": "标题"
+ },
+ "row_content": {
+ "label": "行内容"
+ },
+ "page": {
+ "label": "页面中的行内容"
+ },
+ "icon": {
+ "label": "图标",
+ "options__1": {
+ "label": "无"
+ },
+ "options__2": {
+ "label": "苹果"
+ },
+ "options__3": {
+ "label": "香蕉"
+ },
+ "options__4": {
+ "label": "瓶子"
+ },
+ "options__5": {
+ "label": "箱子"
+ },
+ "options__6": {
+ "label": "胡萝卜"
+ },
+ "options__7": {
+ "label": "聊天泡泡"
+ },
+ "options__8": {
+ "label": "复选标记"
+ },
+ "options__9": {
+ "label": "剪贴板"
+ },
+ "options__10": {
+ "label": "乳制品"
+ },
+ "options__11": {
+ "label": "不食乳制品"
+ },
+ "options__12": {
+ "label": "吹风机"
+ },
+ "options__13": {
+ "label": "眼睛"
+ },
+ "options__14": {
+ "label": "火"
+ },
+ "options__15": {
+ "label": "无麸质"
+ },
+ "options__16": {
+ "label": "心形"
+ },
+ "options__17": {
+ "label": "铁"
+ },
+ "options__18": {
+ "label": "树叶"
+ },
+ "options__19": {
+ "label": "皮革"
+ },
+ "options__20": {
+ "label": "闪电束"
+ },
+ "options__21": {
+ "label": "口红"
+ },
+ "options__22": {
+ "label": "锁"
+ },
+ "options__23": {
+ "label": "图钉"
+ },
+ "options__24": {
+ "label": "不含坚果"
+ },
+ "options__25": {
+ "label": "裤装"
+ },
+ "options__26": {
+ "label": "爪印"
+ },
+ "options__27": {
+ "label": "胡椒粉"
+ },
+ "options__28": {
+ "label": "香水"
+ },
+ "options__29": {
+ "label": "飞机"
+ },
+ "options__30": {
+ "label": "绿植"
+ },
+ "options__31": {
+ "label": "价格标签"
+ },
+ "options__32": {
+ "label": "问号"
+ },
+ "options__33": {
+ "label": "回收利用"
+ },
+ "options__34": {
+ "label": "退货"
+ },
+ "options__35": {
+ "label": "直尺"
+ },
+ "options__36": {
+ "label": "餐盘"
+ },
+ "options__37": {
+ "label": "衬衫"
+ },
+ "options__38": {
+ "label": "鞋"
+ },
+ "options__39": {
+ "label": "剪影"
+ },
+ "options__40": {
+ "label": "雪花"
+ },
+ "options__41": {
+ "label": "星星"
+ },
+ "options__42": {
+ "label": "秒表"
+ },
+ "options__43": {
+ "label": "卡车"
+ },
+ "options__44": {
+ "label": "洗涤剂"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "可折叠内容"
+ }
+ },
+ "main-account": {
+ "name": "账户"
+ },
+ "main-activate-account": {
+ "name": "账户激活"
+ },
+ "main-addresses": {
+ "name": "地址"
+ },
+ "main-login": {
+ "name": "登录"
+ },
+ "main-order": {
+ "name": "订单"
+ },
+ "main-register": {
+ "name": "注册"
+ },
+ "main-reset-password": {
+ "name": "密码重设"
+ },
+ "related-products": {
+ "name": "相关产品",
+ "settings": {
+ "heading": {
+ "label": "标题"
+ },
+ "products_to_show": {
+ "label": "要显示的最大产品数"
+ },
+ "columns_desktop": {
+ "label": "台式设备上的列数"
+ },
+ "paragraph__1": {
+ "content": "动态推荐使用订单和产品信息来随着时间而变化和改进。[详细了解](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "产品卡"
+ },
+ "image_ratio": {
+ "label": "图片比",
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "纵向"
+ },
+ "options__3": {
+ "label": "方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "在悬停时显示第二张图片"
+ },
+ "show_vendor": {
+ "label": "显示厂商"
+ },
+ "show_rating": {
+ "label": "显示产品评分",
+ "info": "若要显示评分,请添加产品评分应用。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ },
+ "columns_mobile": {
+ "label": "移动设备上的列数",
+ "options__1": {
+ "label": "1 列"
+ },
+ "options__2": {
+ "label": "2 列"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "多行",
+ "settings": {
+ "image": {
+ "label": "图片"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "适应图片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "label": "图片高度"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "台式设备图片宽度",
+ "info": "图片会针对移动设备进行自动优化。"
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "标题大小"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "正文"
+ },
+ "options__2": {
+ "label": "副标题"
+ },
+ "label": "文本样式"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "实心按钮"
+ },
+ "options__2": {
+ "label": "轮廓按钮"
+ },
+ "label": "按钮样式"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "台式设备内容对齐方式"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "顶部"
+ },
+ "options__2": {
+ "label": "中间"
+ },
+ "options__3": {
+ "label": "底部"
+ },
+ "label": "台式设备内容位置",
+ "info": "位置会针对移动设备进行自动优化。"
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "从左侧交替"
+ },
+ "options__2": {
+ "label": "从右侧交替"
+ },
+ "options__3": {
+ "label": "左对齐"
+ },
+ "options__4": {
+ "label": "右对齐"
+ },
+ "label": "台式设备图片放置",
+ "info": "放置位置会针对移动设备进行自动优化。"
+ },
+ "container_color_scheme": {
+ "label": "容器配色方案"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "左"
+ },
+ "options__2": {
+ "label": "居中"
+ },
+ "options__3": {
+ "label": "右"
+ },
+ "label": "移动设备内容对齐方式"
+ },
+ "header_mobile": {
+ "content": "移动设备布局"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "行",
+ "settings": {
+ "image": {
+ "label": "图片"
+ },
+ "caption": {
+ "label": "字幕"
+ },
+ "heading": {
+ "label": "标题"
+ },
+ "text": {
+ "label": "文本"
+ },
+ "button_label": {
+ "label": "按钮标签"
+ },
+ "button_link": {
+ "label": "按钮链接"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "多行"
+ }
+ },
+ "quick-order-list": {
+ "name": "快速订单列表",
+ "settings": {
+ "show_image": {
+ "label": "显示图片"
+ },
+ "show_sku": {
+ "label": "显示 SKU"
+ }
+ },
+ "presets": {
+ "name": "快速订单列表"
+ }
+ }
+ }
+}
diff --git a/locales/zh-TW.json b/locales/zh-TW.json
new file mode 100644
index 0000000..1318b2d
--- /dev/null
+++ b/locales/zh-TW.json
@@ -0,0 +1,512 @@
+{
+ "general": {
+ "password_page": {
+ "login_form_heading": "使用密碼進入商店:",
+ "login_password_button": "使用密碼進入",
+ "login_form_password_label": "密碼",
+ "login_form_password_placeholder": "您的密碼",
+ "login_form_error": "密碼錯誤!",
+ "login_form_submit": "輸入",
+ "admin_link_html": "您是商店擁有人嗎?請在此登入 ",
+ "powered_by_shopify_html": "本商店由 {{ shopify }} 提供技術支援"
+ },
+ "social": {
+ "alt_text": {
+ "share_on_facebook": "分享至 Facebook",
+ "share_on_twitter": "在 Twitter 上發佈 Twitter 貼文",
+ "share_on_pinterest": "在 Pinterest 上發佈 Pin 貼文"
+ },
+ "links": {
+ "twitter": "Twitter",
+ "facebook": "Facebook",
+ "pinterest": "Pinterest",
+ "instagram": "Instagram",
+ "tumblr": "Tumblr",
+ "snapchat": "Snapchat",
+ "youtube": "YouTube",
+ "vimeo": "Vimeo",
+ "tiktok": "TikTok"
+ }
+ },
+ "continue_shopping": "繼續購物",
+ "pagination": {
+ "label": "分頁",
+ "page": "第 {{ number }} 頁",
+ "next": "下一頁",
+ "previous": "上一頁"
+ },
+ "search": {
+ "search": "搜尋",
+ "reset": "清除搜尋詞彙"
+ },
+ "cart": {
+ "view": "檢視購物車 ({{ count }})",
+ "item_added": "商品已加入購物車",
+ "view_empty_cart": "檢視購物車"
+ },
+ "share": {
+ "copy_to_clipboard": "複製連結",
+ "share_url": "連結",
+ "success_message": "連結已複製到剪貼簿",
+ "close": "關閉分享"
+ },
+ "slider": {
+ "of": "/",
+ "next_slide": "投影片右側",
+ "previous_slide": "投影片左側",
+ "name": "投影播放器"
+ }
+ },
+ "newsletter": {
+ "label": "電子郵件",
+ "success": "感謝您訂閱",
+ "button_label": "訂閱"
+ },
+ "accessibility": {
+ "skip_to_text": "跳至內容",
+ "close": "關閉",
+ "unit_price_separator": "每",
+ "vendor": "廠商:",
+ "error": "錯誤",
+ "refresh_page": "選擇項目後,整個頁面將重新整理。",
+ "link_messages": {
+ "new_window": "在新視窗中開啟。",
+ "external": "開啟外部網站。"
+ },
+ "loading": "載入中......",
+ "skip_to_product_info": "略過產品資訊",
+ "total_reviews": "評論總次數",
+ "star_reviews_info": "{{ rating_value }} 顆星 (最高 {{ rating_max }} 顆星)",
+ "collapsible_content_title": "可摺疊的內容",
+ "complementary_products": "配套商品"
+ },
+ "blogs": {
+ "article": {
+ "blog": "網誌",
+ "read_more_title": "繼續閱讀:{{ title }}",
+ "comments": {
+ "one": "{{ count }} 則留言",
+ "other": "{{ count }} 則留言"
+ },
+ "moderated": "請注意,留言須先通過審核才能發佈。",
+ "comment_form_title": "發表留言",
+ "name": "名稱",
+ "email": "電子郵件",
+ "message": "留言",
+ "post": "貼文留言",
+ "back_to_blog": "返回網誌",
+ "share": "分享此文章",
+ "success": "您已成功留言!感謝您!",
+ "success_moderated": "您已成功留言。由於我們的網誌有人管理,因此過一段時間後才會進行發佈。"
+ }
+ },
+ "onboarding": {
+ "product_title": "產品名稱範例",
+ "collection_title": "您的商品系列名稱"
+ },
+ "products": {
+ "product": {
+ "add_to_cart": "加入購物車",
+ "description": "說明",
+ "on_sale": "特價",
+ "product_variants": "產品子類",
+ "quantity": {
+ "label": "數量",
+ "input_label": "{{ product }} 數量",
+ "increase": "{{ product }} 數量增加",
+ "decrease": "{{ product }} 數量減少",
+ "minimum_of": "最少 {{ quantity }} 個",
+ "maximum_of": "最多 {{ quantity }} 個",
+ "multiples_of": "{{ quantity }} 的倍數",
+ "in_cart_html": "購物車中有 {{ quantity }} 個",
+ "note": "檢視數量規則"
+ },
+ "price": {
+ "from_price_html": "從 {{ price }} 起",
+ "regular_price": "定價",
+ "sale_price": "售價",
+ "unit_price": "單價"
+ },
+ "share": "分享產品",
+ "sold_out": "售罄",
+ "unavailable": "無法供貨",
+ "vendor": "廠商",
+ "video_exit_message": "{{ title }} 在同一視窗開啟全螢幕影片。",
+ "xr_button": "在您的空間中檢視",
+ "xr_button_label": "在您的空間中檢視,可將商品載入擴增實境視窗",
+ "pickup_availability": {
+ "view_store_info": "檢視商店資訊",
+ "check_other_stores": "查看其他商店的供貨情況",
+ "pick_up_available": "可提供取貨服務",
+ "pick_up_available_at_html": "可提供 {{ location_name }} 的取貨服務",
+ "pick_up_unavailable_at_html": "目前無法提供 {{ location_name }} 的取貨服務",
+ "unavailable": "無法載入取貨服務供應情況",
+ "refresh": "重新整理"
+ },
+ "media": {
+ "open_media": "在互動視窗中開啟多媒體檔案 {{ index }}",
+ "play_model": "播放 3D 檢視器",
+ "play_video": "播放影片",
+ "gallery_viewer": "圖庫檢視器",
+ "load_image": "在圖庫檢視畫面載入圖片 {{ index }}",
+ "load_model": "在圖庫檢視畫面載入 3D 模型 {{ index }}",
+ "load_video": "在圖庫檢視畫面播放影片 {{ index }}",
+ "image_available": "現在可在圖庫檢視畫面中查看圖片 {{ index }}"
+ },
+ "view_full_details": "查看完整資訊",
+ "include_taxes": "內含稅金。",
+ "shipping_policy_html": "結帳時計算運費 。",
+ "choose_options": "選擇選項",
+ "choose_product_options": "選擇 {{ product_name }} 的選項",
+ "value_unavailable": "{{ option_value }} (無法供貨)",
+ "variant_sold_out_or_unavailable": "子類已售罄或無法供貨",
+ "inventory_in_stock": "有庫存",
+ "inventory_in_stock_show_count": "有 {{ quantity }} 件庫存",
+ "inventory_low_stock": "庫存不足",
+ "inventory_low_stock_show_count": "庫存不足:剩餘 {{ quantity }} 件",
+ "inventory_out_of_stock": "無庫存",
+ "inventory_out_of_stock_continue_selling": "有庫存",
+ "sku": "存貨單位 (SKU)",
+ "volume_pricing": {
+ "title": "批發價",
+ "note": "提供批發價",
+ "minimum": "{{ quantity }}+",
+ "price_at_each": "{{ price }}/每項",
+ "price_range": "{{ minimum }} - {{ maximum }}"
+ }
+ },
+ "modal": {
+ "label": "媒體庫"
+ },
+ "facets": {
+ "apply": "套用",
+ "clear": "清除",
+ "clear_all": "全部移除",
+ "from": "寄件人",
+ "filter_and_sort": "篩選與排序",
+ "filter_by_label": "篩選條件:",
+ "filter_button": "篩選條件",
+ "filters_selected": {
+ "one": "已選取 {{ count }} 項",
+ "other": "已選取 {{ count }} 項"
+ },
+ "max_price": "最高價格為 {{ price }}",
+ "product_count": {
+ "one": "{{ count }} 項產品中的 {{ product_count }} 項",
+ "other": "{{ count }} 項產品中的 {{ product_count }} 項"
+ },
+ "product_count_simple": {
+ "one": "{{ count }} 項產品",
+ "other": "{{ count }} 項產品"
+ },
+ "reset": "重設",
+ "sort_button": "排序",
+ "sort_by_label": "排序依據:",
+ "to": "給",
+ "clear_filter": "移除篩選條件",
+ "filter_selected_accessibility": "{{ type }} (已選取 {{ count }} 個篩選條件)",
+ "show_more": "顯示更多內容",
+ "show_less": "顯示較少內容",
+ "filter_and_operator_subtitle": "完全符合"
+ }
+ },
+ "templates": {
+ "search": {
+ "no_results": "找不到與「{{ terms }}」相符的結果。請檢查拼字或使用其他字詞。",
+ "results_with_count": {
+ "one": "{{ count }} 項結果",
+ "other": "{{ count }} 項結果"
+ },
+ "title": "搜尋結果",
+ "page": "頁面",
+ "products": "產品",
+ "search_for": "搜尋「{{ terms }}」",
+ "results_with_count_and_term": {
+ "one": "找到「{{ terms }}」,共 {{ count }} 筆",
+ "other": "找到「{{ terms }}」,共 {{ count }} 筆"
+ },
+ "results_pages_with_count": {
+ "one": "{{ count }} 個頁面",
+ "other": "{{ count }} 個頁面"
+ },
+ "results_suggestions_with_count": {
+ "one": "{{ count }} 項建議",
+ "other": "{{ count }} 項建議"
+ },
+ "results_products_with_count": {
+ "one": "{{ count }} 項商品",
+ "other": "{{ count }} 項商品"
+ },
+ "suggestions": "建議",
+ "pages": "頁面"
+ },
+ "cart": {
+ "cart": "購物車"
+ },
+ "contact": {
+ "form": {
+ "name": "名稱",
+ "email": "電子郵件",
+ "phone": "電話號碼",
+ "comment": "留言",
+ "send": "傳送",
+ "post_success": "感謝您聯絡我們。我們會盡快回覆您。",
+ "error_heading": "請調整以下內容:",
+ "title": "聯絡表單"
+ }
+ },
+ "404": {
+ "title": "找不到頁面",
+ "subtext": "404"
+ }
+ },
+ "sections": {
+ "header": {
+ "announcement": "公告",
+ "menu": "選單",
+ "cart_count": {
+ "one": "{{ count }} 件商品",
+ "other": "{{ count }} 件商品"
+ }
+ },
+ "cart": {
+ "title": "您的購物車",
+ "caption": "購物車商品",
+ "remove_title": "移除 {{ title }}",
+ "note": "訂單特別指示",
+ "checkout": "結帳",
+ "empty": "您的購物車是空的",
+ "cart_error": "更新購物車時發生錯誤。請再試一次。",
+ "cart_quantity_error_html": "您只能將 {{ quantity }} 項商品加入您的購物車。",
+ "taxes_and_shipping_policy_at_checkout_html": "結帳時計算稅金、折扣和運費 ",
+ "taxes_included_but_shipping_at_checkout": "內含稅金,結帳時計算運費和折扣",
+ "taxes_included_and_shipping_policy_html": "內含稅金。結帳時計算運費 和折扣。",
+ "taxes_and_shipping_at_checkout": "結帳時計算稅金、折扣和運費",
+ "headings": {
+ "product": "產品",
+ "price": "價格",
+ "total": "總計",
+ "quantity": "數量",
+ "image": "商品圖片"
+ },
+ "update": "更新",
+ "login": {
+ "title": "是否有帳號?",
+ "paragraph_html": "登入 以加速結帳。"
+ },
+ "estimated_total": "估計總金額",
+ "new_estimated_total": "新的估計總金額"
+ },
+ "footer": {
+ "payment": "付款方式"
+ },
+ "featured_blog": {
+ "view_all": "檢視全部",
+ "onboarding_title": "網誌文章",
+ "onboarding_content": "提供網誌文章摘要給顧客"
+ },
+ "featured_collection": {
+ "view_all": "檢視全部",
+ "view_all_label": "檢視 {{ collection_name }} 商品系列的全部產品"
+ },
+ "collection_list": {
+ "view_all": "檢視全部"
+ },
+ "collection_template": {
+ "title": "商品系列",
+ "empty": "找不到任何產品",
+ "use_fewer_filters_html": "使用較少篩選條件或全部移除 "
+ },
+ "video": {
+ "load_video": "載入影片:{{ description }}"
+ },
+ "slideshow": {
+ "load_slide": "載入投影片",
+ "previous_slideshow": "上一張投影片",
+ "next_slideshow": "下一張投影片",
+ "pause_slideshow": "暫停素材輪播",
+ "play_slideshow": "播放素材輪播",
+ "carousel": "輪播廣告",
+ "slide": "投影片"
+ },
+ "page": {
+ "title": "頁面標題"
+ },
+ "announcements": {
+ "previous_announcement": "前一則公告",
+ "next_announcement": "下一則公告",
+ "carousel": "輪播",
+ "announcement": "公告",
+ "announcement_bar": "公告列"
+ },
+ "quick_order_list": {
+ "product_total": "商品小計",
+ "view_cart": "檢視購物車",
+ "each": "{{ money }}/每項",
+ "product": "商品",
+ "variant": "子類",
+ "variant_total": "子類總計",
+ "items_added": {
+ "one": "已新增 {{ quantity }} 個品項",
+ "other": "已新增 {{ quantity }} 個品項"
+ },
+ "items_removed": {
+ "one": "已移除 {{ quantity }} 個品項",
+ "other": "已移除 {{ quantity }} 個品項"
+ },
+ "product_variants": "商品子類",
+ "total_items": "品項總數",
+ "remove_all_items_confirmation": "是否要從購物車移除全部 {{ quantity }} 個品項?",
+ "remove_all": "全部移除",
+ "cancel": "取消"
+ }
+ },
+ "localization": {
+ "country_label": "國家/地區",
+ "language_label": "語言",
+ "update_language": "更新語言",
+ "update_country": "更新國家/地區"
+ },
+ "customer": {
+ "account": {
+ "title": "帳號",
+ "details": "帳號詳細資訊",
+ "view_addresses": "查看地址",
+ "return": "返回帳號詳細資訊"
+ },
+ "account_fallback": "帳號",
+ "activate_account": {
+ "title": "啟用帳號",
+ "subtext": "建立密碼以啟用帳戶。",
+ "password": "密碼",
+ "password_confirm": "確認密碼",
+ "submit": "啟用帳號",
+ "cancel": "拒絕邀請"
+ },
+ "addresses": {
+ "title": "地址",
+ "default": "預設",
+ "add_new": "新增地址",
+ "edit_address": "編輯地址",
+ "first_name": "名字",
+ "last_name": "姓氏",
+ "company": "公司",
+ "address1": "地址 1",
+ "address2": "地址 2",
+ "city": "市",
+ "country": "國家/地區",
+ "province": "省",
+ "zip": "郵政/郵遞區號",
+ "phone": "電話",
+ "set_default": "設為預設地址",
+ "add": "新增地址",
+ "update": "更新地址",
+ "cancel": "取消",
+ "edit": "編輯",
+ "delete": "刪除",
+ "delete_confirm": "是否確定要刪除此地址?"
+ },
+ "log_in": "登入",
+ "log_out": "登出",
+ "login_page": {
+ "cancel": "取消",
+ "create_account": "建立帳號",
+ "email": "電子郵件",
+ "forgot_password": "忘記密碼了嗎?",
+ "guest_continue": "繼續",
+ "guest_title": "以訪客身分繼續操作",
+ "password": "密碼",
+ "title": "登入",
+ "sign_in": "登入",
+ "submit": "提交"
+ },
+ "orders": {
+ "title": "訂單記錄",
+ "order_number": "訂單",
+ "order_number_link": "訂單編號 {{ number }}",
+ "date": "日期",
+ "payment_status": "付款狀態",
+ "fulfillment_status": "出貨狀態",
+ "total": "總計",
+ "none": "您尚未下訂任何商品。"
+ },
+ "recover_password": {
+ "title": "重設密碼",
+ "subtext": "我們會傳送重設密碼的電子郵件給您",
+ "success": "我們已傳送一封電子郵件給您,內有連結,可讓您更新密碼。"
+ },
+ "register": {
+ "title": "建立帳號",
+ "first_name": "名字",
+ "last_name": "姓氏",
+ "email": "電子郵件",
+ "password": "密碼",
+ "submit": "建立"
+ },
+ "reset_password": {
+ "title": "重設帳號密碼",
+ "subtext": "輸入新密碼",
+ "password": "密碼",
+ "password_confirm": "確認密碼",
+ "submit": "重設密碼"
+ },
+ "order": {
+ "title": "訂單 {{ name }}",
+ "date_html": "已於 {{ date }} 下單",
+ "cancelled_html": "已於 {{ date }} 取消訂單",
+ "cancelled_reason": "原因:{{ reason }}",
+ "billing_address": "帳單地址",
+ "payment_status": "付款狀態",
+ "shipping_address": "運送地址",
+ "fulfillment_status": "訂單出貨狀態",
+ "discount": "折扣",
+ "shipping": "運送",
+ "tax": "稅金",
+ "product": "產品",
+ "sku": "存貨單位 (SKU)",
+ "price": "價格",
+ "quantity": "數量",
+ "total": "總計",
+ "fulfilled_at_html": "已於 {{ date }} 出貨",
+ "track_shipment": "追蹤貨件",
+ "tracking_url": "追蹤連結",
+ "tracking_company": "貨運業者",
+ "tracking_number": "追蹤編號",
+ "subtotal": "小計",
+ "total_duties": "關稅",
+ "total_refunded": "已退款"
+ }
+ },
+ "gift_cards": {
+ "issued": {
+ "title": "這是您在 {{ shop }} 餘額為 {{ value }} 的禮品卡!",
+ "subtext": "您的禮品卡",
+ "gift_card_code": "禮品卡代碼",
+ "shop_link": "造訪網路商店",
+ "add_to_apple_wallet": "加入 Apple 錢包",
+ "qr_image_alt": "QR 碼 — 掃描以兌換禮品卡",
+ "copy_code": "複製禮品卡代碼",
+ "expired": "已到期",
+ "copy_code_success": "代碼已成功複製",
+ "how_to_use_gift_card": "請在網路商店使用禮品卡代碼或在實體商店使用 QR 碼",
+ "expiration_date": "於 {{ expires_on }}到期"
+ }
+ },
+ "recipient": {
+ "form": {
+ "checkbox": "我要將此作為禮物傳送",
+ "email_label": "收件者電子郵件",
+ "email": "電子郵件",
+ "name_label": "收件者姓名 (選填)",
+ "name": "姓名",
+ "message_label": "訊息 (選填)",
+ "message": "訊息",
+ "max_characters": "最多 {{ max_chars }} 個字元",
+ "email_label_optional_for_no_js_behavior": "收件者電子郵件 (選填)",
+ "send_on": "YYYY-MM-DD",
+ "send_on_label": "發送時間 (選填)",
+ "expanded": "禮品卡收件人表單已展開",
+ "collapsed": "禮品卡收件人表單已收合"
+ }
+ }
+}
diff --git a/locales/zh-TW.schema.json b/locales/zh-TW.schema.json
new file mode 100644
index 0000000..4ccb2e5
--- /dev/null
+++ b/locales/zh-TW.schema.json
@@ -0,0 +1,3328 @@
+{
+ "settings_schema": {
+ "colors": {
+ "name": "色彩",
+ "settings": {
+ "background": {
+ "label": "背景"
+ },
+ "background_gradient": {
+ "label": "背景 (漸層效果)",
+ "info": "背景 (漸層效果) 將取代所有適用的背景。"
+ },
+ "text": {
+ "label": "文字"
+ },
+ "button_background": {
+ "label": "純色按鈕背景"
+ },
+ "button_label": {
+ "label": "純色按鈕標籤"
+ },
+ "secondary_button_label": {
+ "label": "外框按鈕"
+ },
+ "shadow": {
+ "label": "陰影"
+ }
+ }
+ },
+ "typography": {
+ "name": "字體",
+ "settings": {
+ "type_header_font": {
+ "label": "字型",
+ "info": "選取不同字型會影響商店速度。[深入瞭解系統字型。](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "header__1": {
+ "content": "標題"
+ },
+ "header__2": {
+ "content": "內文"
+ },
+ "type_body_font": {
+ "label": "字型",
+ "info": "選取不同字型會影響商店速度。[深入瞭解系統字型。](https://help.shopify.com/manual/online-store/os/store-speed/improving-speed#fonts)"
+ },
+ "heading_scale": {
+ "label": "字型大小縮放"
+ },
+ "body_scale": {
+ "label": "字型大小縮放"
+ }
+ }
+ },
+ "social-media": {
+ "name": "社群媒體",
+ "settings": {
+ "social_twitter_link": {
+ "label": "Twitter",
+ "info": "https://twitter.com/shopify"
+ },
+ "social_facebook_link": {
+ "label": "Facebook",
+ "info": "https://facebook.com/shopify"
+ },
+ "social_pinterest_link": {
+ "label": "Pinterest",
+ "info": "https://pinterest.com/shopify"
+ },
+ "social_instagram_link": {
+ "label": "Instagram",
+ "info": "http://instagram.com/shopify"
+ },
+ "social_tiktok_link": {
+ "label": "TikTok",
+ "info": "https://tiktok.com/@shopify"
+ },
+ "social_tumblr_link": {
+ "label": "Tumblr",
+ "info": "https://shopify.tumblr.com"
+ },
+ "social_snapchat_link": {
+ "label": "Snapchat",
+ "info": "https://www.snapchat.com/add/shopify"
+ },
+ "social_youtube_link": {
+ "label": "YouTube",
+ "info": "https://www.youtube.com/shopify"
+ },
+ "social_vimeo_link": {
+ "label": "Vimeo",
+ "info": "https://vimeo.com/shopify"
+ },
+ "header": {
+ "content": "社群帳號"
+ }
+ }
+ },
+ "currency_format": {
+ "name": "幣別格式",
+ "settings": {
+ "content": "幣別代碼",
+ "paragraph": "購物車和結帳價格一律顯示幣別代碼。例如:$1.00 美元。",
+ "currency_code_enabled": {
+ "label": "顯示幣別代碼"
+ }
+ }
+ },
+ "layout": {
+ "name": "版面配置",
+ "settings": {
+ "page_width": {
+ "label": "頁面寬度"
+ },
+ "spacing_sections": {
+ "label": "範本區段間的間距"
+ },
+ "header__grid": {
+ "content": "網格"
+ },
+ "paragraph__grid": {
+ "content": "影響具有多欄或多列的區域。"
+ },
+ "spacing_grid_horizontal": {
+ "label": "水平空間"
+ },
+ "spacing_grid_vertical": {
+ "label": "垂直空間"
+ }
+ }
+ },
+ "search_input": {
+ "name": "搜尋行為",
+ "settings": {
+ "header": {
+ "content": "搜尋建議"
+ },
+ "predictive_search_enabled": {
+ "label": "啟用搜尋建議"
+ },
+ "predictive_search_show_vendor": {
+ "label": "顯示商品廠商",
+ "info": "啟用搜尋建議時顯示。"
+ },
+ "predictive_search_show_price": {
+ "label": "顯示商品價格",
+ "info": "啟用搜尋建議時顯示。"
+ }
+ }
+ },
+ "global": {
+ "settings": {
+ "header__border": {
+ "content": "邊框"
+ },
+ "header__shadow": {
+ "content": "陰影"
+ },
+ "blur": {
+ "label": "模糊"
+ },
+ "corner_radius": {
+ "label": "圓角半徑"
+ },
+ "horizontal_offset": {
+ "label": "水平位移"
+ },
+ "vertical_offset": {
+ "label": "垂直位移"
+ },
+ "thickness": {
+ "label": "粗細"
+ },
+ "opacity": {
+ "label": "透明度"
+ },
+ "image_padding": {
+ "label": "圖片邊框間距"
+ },
+ "text_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "文字對齊方式"
+ }
+ }
+ },
+ "cards": {
+ "name": "商品卡",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "標準型"
+ },
+ "options__2": {
+ "label": "卡片"
+ },
+ "label": "樣式"
+ }
+ }
+ },
+ "badges": {
+ "name": "徽章",
+ "settings": {
+ "position": {
+ "options__1": {
+ "label": "下方靠左"
+ },
+ "options__2": {
+ "label": "下方靠右"
+ },
+ "options__3": {
+ "label": "上方靠左"
+ },
+ "options__4": {
+ "label": "上方靠右"
+ },
+ "label": "卡片上的位置"
+ },
+ "sale_badge_color_scheme": {
+ "label": "銷售徽章顏色配置"
+ },
+ "sold_out_badge_color_scheme": {
+ "label": "售罄徽章顏色佈景主題"
+ }
+ }
+ },
+ "buttons": {
+ "name": "按鈕"
+ },
+ "variant_pills": {
+ "name": "子類藥丸",
+ "paragraph": "子類藥丸是顯示商品子類選項的一種方式。[瞭解詳情](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types#variant-picker-block)"
+ },
+ "inputs": {
+ "name": "輸入"
+ },
+ "content_containers": {
+ "name": "內容容器"
+ },
+ "popups": {
+ "name": "下拉式選單和快顯視窗",
+ "paragraph": "影響導覽下拉式選單、互動視窗快顯視窗,以及購物車快顯視窗等區域。"
+ },
+ "media": {
+ "name": "多媒體檔案"
+ },
+ "drawers": {
+ "name": "收銀機"
+ },
+ "cart": {
+ "name": "購物車",
+ "settings": {
+ "cart_type": {
+ "label": "購物車類型",
+ "drawer": {
+ "label": "導覽匣"
+ },
+ "page": {
+ "label": "頁面"
+ },
+ "notification": {
+ "label": "彈出式視窗通知"
+ }
+ },
+ "show_vendor": {
+ "label": "顯示廠商"
+ },
+ "show_cart_note": {
+ "label": "啟用購物車備註"
+ },
+ "cart_drawer": {
+ "header": "購物車導覽匣",
+ "collection": {
+ "label": "商品系列",
+ "info": "在購物車導覽匣沒有商品時顯示。"
+ }
+ }
+ }
+ },
+ "collection_cards": {
+ "name": "商品系列卡片",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "標準"
+ },
+ "options__2": {
+ "label": "卡片"
+ },
+ "label": "樣式"
+ }
+ }
+ },
+ "blog_cards": {
+ "name": "網誌卡片",
+ "settings": {
+ "style": {
+ "options__1": {
+ "label": "標準"
+ },
+ "options__2": {
+ "label": "卡片"
+ },
+ "label": "樣式"
+ }
+ }
+ },
+ "logo": {
+ "name": "標誌",
+ "settings": {
+ "logo_image": {
+ "label": "標誌"
+ },
+ "logo_width": {
+ "label": "電腦版標誌寬度",
+ "info": "標誌會自動調整為手機最佳寬度。"
+ },
+ "favicon": {
+ "label": "Favicon 圖片",
+ "info": "將會縮小為 32 x 32 像素"
+ }
+ }
+ },
+ "brand_information": {
+ "name": "品牌資訊",
+ "settings": {
+ "brand_headline": {
+ "label": "標題"
+ },
+ "brand_description": {
+ "label": "說明"
+ },
+ "brand_image": {
+ "label": "圖片"
+ },
+ "brand_image_width": {
+ "label": "圖片寬度"
+ },
+ "paragraph": {
+ "content": "在商店頁尾新增品牌說明。"
+ }
+ }
+ },
+ "animations": {
+ "name": "動畫",
+ "settings": {
+ "animations_reveal_on_scroll": {
+ "label": "捲動時顯示區段"
+ },
+ "animations_hover_elements": {
+ "options__1": {
+ "label": "無"
+ },
+ "options__2": {
+ "label": "垂直浮起"
+ },
+ "label": "暫留效果",
+ "info": "套用於卡片和按鈕。",
+ "options__3": {
+ "label": "3D 浮起"
+ }
+ }
+ }
+ }
+ },
+ "sections": {
+ "all": {
+ "padding": {
+ "section_padding_heading": "區段邊框間距",
+ "padding_top": "頂端邊框間距",
+ "padding_bottom": "底部邊框間距"
+ },
+ "spacing": "間距",
+ "colors": {
+ "label": "顏色配置",
+ "has_cards_info": "若要變更卡片的顏色配置,請更新佈景主題設定。"
+ },
+ "heading_size": {
+ "label": "標題大小",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "options__4": {
+ "label": "超大型"
+ }
+ },
+ "image_shape": {
+ "options__1": {
+ "label": "預設"
+ },
+ "options__2": {
+ "label": "拱形"
+ },
+ "options__3": {
+ "label": "斑點"
+ },
+ "options__4": {
+ "label": "> 形箭頭向左"
+ },
+ "options__5": {
+ "label": "> 形箭頭向右"
+ },
+ "options__6": {
+ "label": "菱形"
+ },
+ "options__7": {
+ "label": "平行四邊形"
+ },
+ "options__8": {
+ "label": "圓形"
+ },
+ "label": "圖片形狀",
+ "info": "啟用圖片形狀後,標準樣式的卡片不會有邊框。"
+ },
+ "animation": {
+ "content": "動畫",
+ "image_behavior": {
+ "options__1": {
+ "label": "無"
+ },
+ "options__2": {
+ "label": "緩慢移動"
+ },
+ "label": "圖片行為",
+ "options__3": {
+ "label": "固定背景位置"
+ },
+ "options__4": {
+ "label": "捲動時放大"
+ }
+ }
+ }
+ },
+ "announcement-bar": {
+ "name": "公告列",
+ "blocks": {
+ "announcement": {
+ "settings": {
+ "text": {
+ "label": "文字"
+ },
+ "text_alignment": {
+ "label": "文字對齊方式",
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ }
+ },
+ "link": {
+ "label": "連結"
+ }
+ },
+ "name": "公告"
+ }
+ },
+ "settings": {
+ "auto_rotate": {
+ "label": "自動輪播公告"
+ },
+ "change_slides_speed": {
+ "label": "變更頻率"
+ },
+ "header__1": {
+ "content": "社群媒體圖示",
+ "info": "若要顯示社群媒體帳號,請在您的 [佈景主題設定](/editor?context=theme&category=social%20media) 中連接帳號。"
+ },
+ "header__2": {
+ "content": "公告"
+ },
+ "show_social": {
+ "label": "在電腦版顯示圖示"
+ },
+ "header__3": {
+ "content": "國家/地區選擇器",
+ "info": "若要新增國家/地區,請前往 [市場設定](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "啟用國家/地區選擇器"
+ },
+ "header__4": {
+ "content": "語言選擇器",
+ "info": "若要新增語言,請前往 [語言設定。](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "啟用語言選擇器"
+ }
+ },
+ "presets": {
+ "name": "公告列"
+ }
+ },
+ "collage": {
+ "name": "拼貼",
+ "settings": {
+ "heading": {
+ "label": "標題"
+ },
+ "desktop_layout": {
+ "label": "電腦版版面配置",
+ "options__1": {
+ "label": "左側大型區塊"
+ },
+ "options__2": {
+ "label": "右側大型區塊"
+ }
+ },
+ "mobile_layout": {
+ "label": "行動版版面配置",
+ "options__1": {
+ "label": "拼貼"
+ },
+ "options__2": {
+ "label": "欄"
+ }
+ },
+ "card_styles": {
+ "label": "卡片樣式",
+ "info": "商品、商品系列和網誌卡片樣式皆可在佈景主題設定中更新。",
+ "options__1": {
+ "label": "使用個別卡片樣式"
+ },
+ "options__2": {
+ "label": "將所有項目樣式設為商品卡片"
+ }
+ }
+ },
+ "blocks": {
+ "image": {
+ "settings": {
+ "image": {
+ "label": "圖片"
+ }
+ },
+ "name": "圖片"
+ },
+ "product": {
+ "settings": {
+ "product": {
+ "label": "產品"
+ },
+ "secondary_background": {
+ "label": "顯示次要背景"
+ },
+ "second_image": {
+ "label": "游標暫留時顯示次要圖片"
+ }
+ },
+ "name": "產品"
+ },
+ "collection": {
+ "settings": {
+ "collection": {
+ "label": "商品系列"
+ }
+ },
+ "name": "商品系列"
+ },
+ "video": {
+ "settings": {
+ "cover_image": {
+ "label": "封面圖片"
+ },
+ "video_url": {
+ "label": "網址",
+ "info": "若區段包含其他區塊,則影片會在彈出式視窗中顯示。",
+ "placeholder": "使用 YouTube 或 Vimeo 網址"
+ },
+ "description": {
+ "label": "影片替代文字",
+ "info": "為使用螢幕助讀程式的顧客說明該影片。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)"
+ }
+ },
+ "name": "影片"
+ }
+ },
+ "presets": {
+ "name": "拼貼"
+ }
+ },
+ "collection-list": {
+ "name": "商品系列清單",
+ "settings": {
+ "title": {
+ "label": "標題"
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "縱向"
+ },
+ "options__3": {
+ "label": "正方形"
+ },
+ "info": "編輯您的商品系列以新增圖片。[瞭解詳情](https://help.shopify.com/manual/products/collections)"
+ },
+ "swipe_on_mobile": {
+ "label": "啟用行動裝置的滑動功能"
+ },
+ "show_view_all": {
+ "label": "若清單中包含的商品系列比顯示出的更多,請啟用「檢視全部」按鈕"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ }
+ },
+ "blocks": {
+ "featured_collection": {
+ "settings": {
+ "collection": {
+ "label": "商品系列"
+ }
+ },
+ "name": "商品系列"
+ }
+ },
+ "presets": {
+ "name": "商品系列清單"
+ }
+ },
+ "contact-form": {
+ "name": "聯絡表單",
+ "presets": {
+ "name": "聯絡表單"
+ }
+ },
+ "custom-liquid": {
+ "name": "自訂 Liquid",
+ "settings": {
+ "custom_liquid": {
+ "label": "Liquid 程式碼",
+ "info": "新增應用程式程式碼片段或其他程式碼以建立進階自訂內容。[瞭解詳情](https://shopify.dev/docs/api/liquid)"
+ }
+ },
+ "presets": {
+ "name": "自訂 Liquid"
+ }
+ },
+ "featured-blog": {
+ "name": "網誌文章",
+ "settings": {
+ "heading": {
+ "label": "標題"
+ },
+ "blog": {
+ "label": "網誌"
+ },
+ "post_limit": {
+ "label": "要顯示的網誌文章數量"
+ },
+ "show_view_all": {
+ "label": "若網誌中包含的網誌文章比顯示出的更多,請啟用「檢視全部」按鈕"
+ },
+ "show_image": {
+ "label": "顯示精選圖片",
+ "info": "若想要獲得最佳結果,請使用外觀比例為 3:2 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "show_date": {
+ "label": "顯示日期"
+ },
+ "show_author": {
+ "label": "顯示作者"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ }
+ },
+ "presets": {
+ "name": "網誌文章"
+ }
+ },
+ "featured-collection": {
+ "name": "精選商品系列",
+ "settings": {
+ "title": {
+ "label": "標題"
+ },
+ "collection": {
+ "label": "商品系列"
+ },
+ "products_to_show": {
+ "label": "產品數量顯示上限"
+ },
+ "show_view_all": {
+ "label": "若商品系列中包含未顯示的產品,請啟用「檢視全部」"
+ },
+ "header": {
+ "content": "產品卡"
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "縱向"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "游標暫留時顯示次要圖片"
+ },
+ "show_vendor": {
+ "label": "顯示廠商"
+ },
+ "show_rating": {
+ "label": "顯示產品評等",
+ "info": "新增產品評等應用程式,即可顯示評等。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)"
+ },
+ "enable_quick_buy": {
+ "label": "啟用「快速新增」按鈕",
+ "info": "最適合彈出式視窗或購物車導覽匣類型。"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "description": {
+ "label": "說明"
+ },
+ "show_description": {
+ "label": "顯示來自管理介面的商品系列說明"
+ },
+ "description_style": {
+ "label": "說明樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ }
+ },
+ "view_all_style": {
+ "options__1": {
+ "label": "連結"
+ },
+ "options__2": {
+ "label": "外框按鈕"
+ },
+ "options__3": {
+ "label": "純色按鈕"
+ },
+ "label": "「檢視更多」樣式"
+ },
+ "enable_desktop_slider": {
+ "label": "在電腦版啟用輪播廣告"
+ },
+ "full_width": {
+ "label": "讓產品以全寬度呈現"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ },
+ "swipe_on_mobile": {
+ "label": "啟用行動裝置的滑動功能"
+ }
+ },
+ "presets": {
+ "name": "精選商品系列"
+ }
+ },
+ "footer": {
+ "name": "頁尾",
+ "blocks": {
+ "link_list": {
+ "settings": {
+ "heading": {
+ "label": "標題"
+ },
+ "menu": {
+ "label": "選單",
+ "info": "僅顯示上層選單項目。"
+ }
+ },
+ "name": "選單"
+ },
+ "text": {
+ "settings": {
+ "heading": {
+ "label": "標題"
+ },
+ "subtext": {
+ "label": "子文字"
+ }
+ },
+ "name": "文字"
+ },
+ "brand_information": {
+ "name": "品牌資訊",
+ "settings": {
+ "paragraph": {
+ "content": "此區塊將顯示您的品牌資訊。[編輯品牌資訊。](/editor?context=theme&category=brand%20information)"
+ },
+ "header__1": {
+ "content": "社群媒體圖示"
+ },
+ "show_social": {
+ "label": "顯示社群媒體圖示",
+ "info": "若要顯示您的社群媒體帳號,請在您的 [佈景主題設定](/editor?context=theme&category=social%20media) 中連接帳號。"
+ }
+ }
+ }
+ },
+ "settings": {
+ "newsletter_enable": {
+ "label": "顯示電子郵件訂閱"
+ },
+ "newsletter_heading": {
+ "label": "標題"
+ },
+ "header__1": {
+ "info": "訂閱者已自動新增至您的「接受行銷」顧客名單。[瞭解詳情](https://help.shopify.com/manual/customers/manage-customers)",
+ "content": "電子郵件訂閱"
+ },
+ "header__2": {
+ "content": "社群媒體圖示",
+ "info": "若要顯示您的社群媒體帳號,請在您的 [佈景主題設定](/editor?context=theme&category=social%20media) 中連接帳號。"
+ },
+ "show_social": {
+ "label": "顯示社群媒體圖示"
+ },
+ "header__3": {
+ "content": "國家/地區選擇器"
+ },
+ "header__4": {
+ "info": "若要新增國家/地區,請前往 [市場設定](/admin/settings/markets)。"
+ },
+ "enable_country_selector": {
+ "label": "啟用國家/地區選擇器"
+ },
+ "header__5": {
+ "content": "語言選擇器"
+ },
+ "header__6": {
+ "info": "若要新增語言,請前往 [language settings](/admin/settings/languages)。"
+ },
+ "enable_language_selector": {
+ "label": "啟用語言選擇器"
+ },
+ "header__7": {
+ "content": "付款方式"
+ },
+ "payment_enable": {
+ "label": "顯示付款圖示"
+ },
+ "margin_top": {
+ "label": "上方邊界"
+ },
+ "header__8": {
+ "content": "政策連結",
+ "info": "若要新增商店政策,請前往 [政策設定](/admin/settings/legal)]。"
+ },
+ "show_policy": {
+ "label": "顯示政策連結"
+ },
+ "header__9": {
+ "content": "在 Shop 上追蹤",
+ "info": "若要允許顧客透過您的店面在 Shop 應用程式上追蹤您的商店,您必須啟用 Shop Pay。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)"
+ },
+ "enable_follow_on_shop": {
+ "label": "啟用「在 Shop 上追蹤」"
+ }
+ }
+ },
+ "header": {
+ "name": "標頭",
+ "settings": {
+ "logo_position": {
+ "label": "電腦版標誌位置",
+ "options__1": {
+ "label": "中央左方"
+ },
+ "options__2": {
+ "label": "左上角"
+ },
+ "options__3": {
+ "label": "中央上方"
+ },
+ "options__4": {
+ "label": "中間置中"
+ }
+ },
+ "menu": {
+ "label": "選單"
+ },
+ "show_line_separator": {
+ "label": "顯示不同行"
+ },
+ "margin_bottom": {
+ "label": "下方邊界"
+ },
+ "menu_type_desktop": {
+ "label": "電腦版選單類型",
+ "info": "行動版的選單類型會自動調整大小。",
+ "options__1": {
+ "label": "下拉式選單"
+ },
+ "options__2": {
+ "label": "大型選單"
+ },
+ "options__3": {
+ "label": "隱藏式選單"
+ }
+ },
+ "mobile_layout": {
+ "content": "行動版版面配置"
+ },
+ "mobile_logo_position": {
+ "label": "行動版標誌位置",
+ "options__1": {
+ "label": "置中"
+ },
+ "options__2": {
+ "label": "靠左"
+ }
+ },
+ "logo_help": {
+ "content": "在 [編輯佈景主題設定](/editor?context=theme&category=logo) 中編輯標誌。"
+ },
+ "sticky_header_type": {
+ "label": "固定式頁首",
+ "options__1": {
+ "label": "無"
+ },
+ "options__2": {
+ "label": "向上捲動時"
+ },
+ "options__3": {
+ "label": "一律顯示"
+ },
+ "options__4": {
+ "label": "永遠顯示,縮小標誌尺寸"
+ }
+ },
+ "header__3": {
+ "content": "國家/地區選擇器"
+ },
+ "header__4": {
+ "info": "若要新增國家/地區,請前往 [市場設定](/admin/settings/markets)"
+ },
+ "enable_country_selector": {
+ "label": "啟用國家/地區選擇器"
+ },
+ "header__5": {
+ "content": "語言選擇器"
+ },
+ "header__6": {
+ "info": "若要新增語言,請前往 [語言設定。](/admin/settings/languages)"
+ },
+ "enable_language_selector": {
+ "label": "啟用語言選擇器"
+ },
+ "header__1": {
+ "content": "顏色"
+ },
+ "menu_color_scheme": {
+ "label": "選單顏色配置"
+ }
+ }
+ },
+ "image-banner": {
+ "name": "圖片橫幅",
+ "settings": {
+ "image": {
+ "label": "第一張圖片"
+ },
+ "image_2": {
+ "label": "第二張圖片"
+ },
+ "stack_images_on_mobile": {
+ "label": "在行動裝置上堆疊圖片"
+ },
+ "show_text_box": {
+ "label": "在電腦版顯示容器"
+ },
+ "image_overlay_opacity": {
+ "label": "圖片疊加層透明度"
+ },
+ "show_text_below": {
+ "label": "在行動版顯示容器"
+ },
+ "image_height": {
+ "label": "橫幅高度",
+ "options__1": {
+ "label": "配合第一張圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "info": "若想要獲得最佳結果,請使用外觀比例為 3:2 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "上方靠左"
+ },
+ "options__2": {
+ "label": "上方置中"
+ },
+ "options__3": {
+ "label": "上方靠右"
+ },
+ "options__4": {
+ "label": "中間靠左"
+ },
+ "options__5": {
+ "label": "中間置中"
+ },
+ "options__6": {
+ "label": "中間靠右"
+ },
+ "options__7": {
+ "label": "下方靠左"
+ },
+ "options__8": {
+ "label": "下方置中"
+ },
+ "options__9": {
+ "label": "下方靠右"
+ },
+ "label": "電腦版內容位置"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "電腦版內容對齊方式"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "行動版內容對齊方式"
+ },
+ "mobile": {
+ "content": "行動版版面配置"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "標題"
+ }
+ },
+ "name": "標題"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "說明"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ },
+ "label": "文字樣式"
+ }
+ },
+ "name": "文字"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "第一個按鈕標籤",
+ "info": "將標籤保留空白以隱藏按鈕。"
+ },
+ "button_link_1": {
+ "label": "第一個按鈕連結"
+ },
+ "button_style_secondary_1": {
+ "label": "使用外框按鈕樣式"
+ },
+ "button_label_2": {
+ "label": "第二個按鈕標籤",
+ "info": "將標籤保留空白以隱藏按鈕。"
+ },
+ "button_link_2": {
+ "label": "第二個按鈕連結"
+ },
+ "button_style_secondary_2": {
+ "label": "使用外框按鈕樣式"
+ }
+ },
+ "name": "按鈕"
+ }
+ },
+ "presets": {
+ "name": "圖片橫幅"
+ }
+ },
+ "image-with-text": {
+ "name": "附文字的圖片",
+ "settings": {
+ "image": {
+ "label": "圖片"
+ },
+ "height": {
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "label": "圖片高度",
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "layout": {
+ "options__1": {
+ "label": "先顯示圖片"
+ },
+ "options__2": {
+ "label": "圖片秒數"
+ },
+ "label": "電腦版圖片位置",
+ "info": "圖片會先預設為行動版版面配置。"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "電腦版圖片寬度",
+ "info": "行動版的圖片會自動調整大小。"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "電腦版內容對齊方式",
+ "options__2": {
+ "label": "置中"
+ }
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "靠上"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠下"
+ },
+ "label": "電腦版內容位置"
+ },
+ "content_layout": {
+ "options__1": {
+ "label": "不可重疊"
+ },
+ "options__2": {
+ "label": "可重疊"
+ },
+ "label": "內容版面配置"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "行動版內容對齊方式",
+ "options__2": {
+ "label": "置中"
+ }
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "標題"
+ }
+ },
+ "name": "標題"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "內容"
+ },
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ }
+ }
+ },
+ "name": "文字"
+ },
+ "button": {
+ "settings": {
+ "button_label": {
+ "label": "按鈕標籤",
+ "info": "將標籤保留空白以隱藏按鈕。"
+ },
+ "button_link": {
+ "label": "按鈕連結"
+ },
+ "outline_button": {
+ "label": "使用外框按鈕樣式"
+ }
+ },
+ "name": "按鈕"
+ },
+ "caption": {
+ "name": "說明",
+ "settings": {
+ "text": {
+ "label": "文字"
+ },
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "副標題"
+ },
+ "options__2": {
+ "label": "大寫"
+ }
+ },
+ "caption_size": {
+ "label": "文字大小",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "附文字的圖片"
+ }
+ },
+ "main-article": {
+ "name": "網誌文章",
+ "blocks": {
+ "featured_image": {
+ "settings": {
+ "image_height": {
+ "label": "主要圖片高度",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中等"
+ },
+ "info": "若想要獲得最佳結果,請使用寬高比為 16:9 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)",
+ "options__4": {
+ "label": "大"
+ }
+ }
+ },
+ "name": "主要圖片"
+ },
+ "title": {
+ "settings": {
+ "blog_show_date": {
+ "label": "顯示日期"
+ },
+ "blog_show_author": {
+ "label": "顯示作者"
+ }
+ },
+ "name": "標題"
+ },
+ "content": {
+ "name": "內容"
+ },
+ "share": {
+ "name": "分享",
+ "settings": {
+ "featured_image_info": {
+ "content": "若您在社群媒體貼文加入連結,則此頁面的主要圖片會顯示為預覽圖片。[瞭解詳情](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)。"
+ },
+ "title_info": {
+ "content": "商店名稱和說明包含在預覽圖片中。[瞭解詳情](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "文字"
+ }
+ }
+ }
+ }
+ },
+ "main-blog": {
+ "name": "網誌文章",
+ "settings": {
+ "header": {
+ "content": "網誌文章卡片"
+ },
+ "show_image": {
+ "label": "顯示精選圖片"
+ },
+ "paragraph": {
+ "content": "編輯您的網誌文章以變更摘要。[瞭解詳情](https://help.shopify.com/manual/online-store/blogs/writing-blogs#display-an-excerpt-from-a-blog-post)"
+ },
+ "show_date": {
+ "label": "顯示日期"
+ },
+ "show_author": {
+ "label": "顯示作者"
+ },
+ "layout": {
+ "label": "電腦版版面配置",
+ "options__1": {
+ "label": "網格"
+ },
+ "options__2": {
+ "label": "拼貼"
+ },
+ "info": "行動版的文章會以堆疊呈現。"
+ },
+ "image_height": {
+ "label": "主要圖片高度",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中等"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "info": "若想要獲得最佳結果,請使用外觀比例為 3:2 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-cart-footer": {
+ "name": "小計",
+ "blocks": {
+ "subtotal": {
+ "name": "小計價格"
+ },
+ "buttons": {
+ "name": "結帳按鈕"
+ }
+ }
+ },
+ "main-cart-items": {
+ "name": "商品"
+ },
+ "main-collection-banner": {
+ "name": "商品系列橫幅",
+ "settings": {
+ "paragraph": {
+ "content": "編輯您的商品系列以新增說明或圖片。[瞭解詳情](https://help.shopify.com/manual/products/collections/collection-layout)"
+ },
+ "show_collection_description": {
+ "label": "顯示商品系列說明"
+ },
+ "show_collection_image": {
+ "label": "顯示商品系列圖片",
+ "info": "若想要獲得最佳結果,請使用寬高比為 16:9 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ }
+ }
+ },
+ "main-collection-product-grid": {
+ "name": "產品網格",
+ "settings": {
+ "products_per_page": {
+ "label": "每頁產品數"
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "縱向"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "游標暫留時顯示次要圖片"
+ },
+ "show_vendor": {
+ "label": "顯示廠商"
+ },
+ "header__1": {
+ "content": "篩選與排序"
+ },
+ "enable_tags": {
+ "label": "啟用篩選",
+ "info": "使用 Search & Discovery 應用程式來自訂篩選條件。[瞭解詳情](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_filtering": {
+ "label": "啟用篩選",
+ "info": "使用 Search & Discovery 應用程式來自訂篩選條件。[瞭解詳情](https://help.shopify.com/manual/online-store/search-and-discovery/filters)"
+ },
+ "enable_sorting": {
+ "label": "啟用排序"
+ },
+ "header__3": {
+ "content": "產品卡"
+ },
+ "show_rating": {
+ "label": "顯示產品評等",
+ "info": "新增產品評等應用程式,即可顯示評等。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-grid-section-settings)"
+ },
+ "enable_quick_buy": {
+ "label": "啟用「快速新增」按鈕",
+ "info": "最適合彈出式視窗或購物車導覽匣類型。"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ },
+ "filter_type": {
+ "label": "電腦版濾鏡版面配置",
+ "options__1": {
+ "label": "水平"
+ },
+ "options__2": {
+ "label": "垂直"
+ },
+ "options__3": {
+ "label": "收銀機"
+ },
+ "info": "收銀機為預設的行動版版面配置。"
+ }
+ }
+ },
+ "main-list-collections": {
+ "name": "商品系列清單頁面",
+ "settings": {
+ "title": {
+ "label": "標題"
+ },
+ "sort": {
+ "label": "以下列方式排序商品系列:",
+ "options__1": {
+ "label": "依字母順序 A 到 Z"
+ },
+ "options__2": {
+ "label": "依字母順序 Z 到 A"
+ },
+ "options__3": {
+ "label": "日期 (從新到舊)"
+ },
+ "options__4": {
+ "label": "日期 (從舊到新)"
+ },
+ "options__5": {
+ "label": "產品數量,從高到低"
+ },
+ "options__6": {
+ "label": "產品數量,從低到高"
+ }
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "縱向"
+ },
+ "options__3": {
+ "label": "正方形"
+ },
+ "info": "編輯您的商品系列以新增圖片。[瞭解詳情](https://help.shopify.com/manual/products/collections)"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ }
+ }
+ },
+ "main-page": {
+ "name": "頁面"
+ },
+ "main-password-footer": {
+ "name": "密碼頁尾"
+ },
+ "main-password-header": {
+ "name": "密碼頁首",
+ "settings": {
+ "logo_header": {
+ "content": "標誌"
+ },
+ "logo_help": {
+ "content": "在佈景主題設定中編輯標誌。"
+ }
+ }
+ },
+ "main-product": {
+ "name": "產品資訊",
+ "blocks": {
+ "text": {
+ "settings": {
+ "text": {
+ "label": "文字"
+ },
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ }
+ }
+ },
+ "name": "文字"
+ },
+ "variant_picker": {
+ "settings": {
+ "picker_type": {
+ "label": "類型",
+ "options__1": {
+ "label": "下拉式選單"
+ },
+ "options__2": {
+ "label": "圓角"
+ }
+ }
+ },
+ "name": "子類選擇器"
+ },
+ "buy_buttons": {
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "顯示動態結帳按鈕",
+ "info": "顧客可以使用您商店可用的付款方式,看見其偏好選項,如 PayPal 或 Apple Pay 。[深入瞭解相關資訊](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ },
+ "show_gift_card_recipient": {
+ "label": "顯示禮品卡的收件人資訊表單",
+ "info": "允許買家在排定的日期傳送禮品卡及個人化訊息。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)"
+ }
+ },
+ "name": "購買按鈕"
+ },
+ "share": {
+ "settings": {
+ "featured_image_info": {
+ "content": "若您在社群媒體貼文加入連結,則此頁面的主要圖片會顯示為預覽圖片。[瞭解詳情](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)。"
+ },
+ "title_info": {
+ "content": "商店名稱和說明包含在預覽圖片中。[瞭解詳情](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "文字"
+ }
+ },
+ "name": "分享"
+ },
+ "collapsible_tab": {
+ "settings": {
+ "heading": {
+ "info": "包含說明內容的標題。",
+ "label": "標題"
+ },
+ "content": {
+ "label": "橫列內容"
+ },
+ "page": {
+ "label": "橫列內容頁面"
+ },
+ "icon": {
+ "label": "圖示",
+ "options__1": {
+ "label": "無"
+ },
+ "options__2": {
+ "label": "蘋果"
+ },
+ "options__3": {
+ "label": "香蕉"
+ },
+ "options__4": {
+ "label": "瓶子"
+ },
+ "options__5": {
+ "label": "信箱"
+ },
+ "options__6": {
+ "label": "胡蘿蔔"
+ },
+ "options__7": {
+ "label": "聊天泡泡"
+ },
+ "options__8": {
+ "label": "勾號標示"
+ },
+ "options__9": {
+ "label": "剪貼簿"
+ },
+ "options__10": {
+ "label": "含乳製品"
+ },
+ "options__11": {
+ "label": "不含乳製品"
+ },
+ "options__12": {
+ "label": "吹風機"
+ },
+ "options__13": {
+ "label": "眼睛"
+ },
+ "options__14": {
+ "label": "火"
+ },
+ "options__15": {
+ "label": "無麩質"
+ },
+ "options__16": {
+ "label": "紅心"
+ },
+ "options__17": {
+ "label": "鐵"
+ },
+ "options__18": {
+ "label": "葉片"
+ },
+ "options__19": {
+ "label": "皮革"
+ },
+ "options__20": {
+ "label": "閃電"
+ },
+ "options__21": {
+ "label": "口紅"
+ },
+ "options__22": {
+ "label": "鎖"
+ },
+ "options__23": {
+ "label": "地圖圖釘"
+ },
+ "options__24": {
+ "label": "無堅果"
+ },
+ "options__25": {
+ "label": "長褲"
+ },
+ "options__26": {
+ "label": "爪印"
+ },
+ "options__27": {
+ "label": "胡椒"
+ },
+ "options__28": {
+ "label": "香水"
+ },
+ "options__29": {
+ "label": "飛機"
+ },
+ "options__30": {
+ "label": "植物"
+ },
+ "options__31": {
+ "label": "價格標籤"
+ },
+ "options__32": {
+ "label": "問號"
+ },
+ "options__33": {
+ "label": "回收"
+ },
+ "options__34": {
+ "label": "退貨"
+ },
+ "options__35": {
+ "label": "尺"
+ },
+ "options__36": {
+ "label": "料理盤"
+ },
+ "options__37": {
+ "label": "襯衫"
+ },
+ "options__38": {
+ "label": "鞋子"
+ },
+ "options__39": {
+ "label": "剪影"
+ },
+ "options__40": {
+ "label": "雪花"
+ },
+ "options__41": {
+ "label": "星星"
+ },
+ "options__42": {
+ "label": "碼表"
+ },
+ "options__43": {
+ "label": "卡車"
+ },
+ "options__44": {
+ "label": "洗滌"
+ }
+ }
+ },
+ "name": "可折疊的橫列"
+ },
+ "popup": {
+ "settings": {
+ "link_label": {
+ "label": "連結標籤"
+ },
+ "page": {
+ "label": "頁面"
+ }
+ },
+ "name": "彈出式視窗"
+ },
+ "title": {
+ "name": "標題"
+ },
+ "price": {
+ "name": "價格"
+ },
+ "quantity_selector": {
+ "name": "數量選擇器"
+ },
+ "pickup_availability": {
+ "name": "取貨服務適用地區"
+ },
+ "description": {
+ "name": "說明"
+ },
+ "rating": {
+ "name": "產品評等",
+ "settings": {
+ "paragraph": {
+ "content": "新增產品評等應用程式,即可顯示評等。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-rating-block)"
+ }
+ }
+ },
+ "complementary_products": {
+ "name": "配套商品",
+ "settings": {
+ "paragraph": {
+ "content": "若要選取配套商品,請新增 Search & Discovery 應用程式。[瞭解詳情](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)"
+ },
+ "heading": {
+ "label": "標題"
+ },
+ "make_collapsible_row": {
+ "label": "顯示為可收合的橫列"
+ },
+ "icon": {
+ "info": "顯示可收合的橫列時可見。"
+ },
+ "product_list_limit": {
+ "label": "商品數量顯示上限"
+ },
+ "products_per_page": {
+ "label": "每頁商品數"
+ },
+ "pagination_style": {
+ "label": "分頁樣式",
+ "options": {
+ "option_1": "圓點",
+ "option_2": "計數器",
+ "option_3": "數字"
+ }
+ },
+ "product_card": {
+ "heading": "商品卡片"
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options": {
+ "option_1": "直向",
+ "option_2": "正方形"
+ }
+ },
+ "enable_quick_add": {
+ "label": "啟用「快速新增」按鈕"
+ }
+ }
+ },
+ "icon_with_text": {
+ "name": "圖示與文字",
+ "settings": {
+ "layout": {
+ "label": "版面配置",
+ "options__1": {
+ "label": "水平"
+ },
+ "options__2": {
+ "label": "垂直"
+ }
+ },
+ "content": {
+ "label": "內容",
+ "info": "選擇圖示或為每個欄或列新增圖示。"
+ },
+ "heading": {
+ "info": "將標題標籤留白以隱藏圖示欄。"
+ },
+ "icon_1": {
+ "label": "第一個圖示"
+ },
+ "image_1": {
+ "label": "第一張圖片"
+ },
+ "heading_1": {
+ "label": "第一個標題"
+ },
+ "icon_2": {
+ "label": "第二個圖示"
+ },
+ "image_2": {
+ "label": "第二張圖片"
+ },
+ "heading_2": {
+ "label": "第二個標題"
+ },
+ "icon_3": {
+ "label": "第三個圖示"
+ },
+ "image_3": {
+ "label": "第三張圖片"
+ },
+ "heading_3": {
+ "label": "第三個標題"
+ }
+ }
+ },
+ "sku": {
+ "name": "存貨單位 (SKU)",
+ "settings": {
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ }
+ }
+ }
+ },
+ "inventory": {
+ "name": "庫存狀態",
+ "settings": {
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ }
+ },
+ "inventory_threshold": {
+ "label": "庫存過低門檻",
+ "info": "選擇 0 以便一律顯示「有庫存」(若適用)。"
+ },
+ "show_inventory_quantity": {
+ "label": "顯示庫存數量"
+ }
+ }
+ }
+ },
+ "settings": {
+ "header": {
+ "content": "多媒體檔案",
+ "info": "深入瞭解 [多媒體檔案類型。](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "啟用影片循環播放功能"
+ },
+ "enable_sticky_info": {
+ "label": "在電腦版啟用黏性內容"
+ },
+ "hide_variants": {
+ "label": "在選取一個子類後,隱藏其他子類的多媒體檔案"
+ },
+ "gallery_layout": {
+ "label": "電腦版版面配置",
+ "options__1": {
+ "label": "已堆疊"
+ },
+ "options__2": {
+ "label": "2 欄"
+ },
+ "options__3": {
+ "label": "縮圖"
+ },
+ "options__4": {
+ "label": "縮圖輪播"
+ }
+ },
+ "media_size": {
+ "label": "電腦版多媒體檔案寬度",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "info": "行動版的多媒體檔案會自動調整大小"
+ },
+ "mobile_thumbnails": {
+ "label": "行動版版面配置",
+ "options__1": {
+ "label": "2 欄"
+ },
+ "options__2": {
+ "label": "顯示縮圖"
+ },
+ "options__3": {
+ "label": "隱藏縮圖"
+ }
+ },
+ "media_position": {
+ "label": "電腦版多媒體檔案位置",
+ "info": "行動版會自動調整為最佳位置。",
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "靠右"
+ }
+ },
+ "image_zoom": {
+ "label": "圖片縮放",
+ "info": "點擊並暫留在預設值上,即可在行動裝置上開啟燈箱。",
+ "options__1": {
+ "label": "開啟燈箱"
+ },
+ "options__2": {
+ "label": "點擊並暫留"
+ },
+ "options__3": {
+ "label": "無縮放"
+ }
+ },
+ "constrain_to_viewport": {
+ "label": "將多媒體檔案限制為螢幕高度"
+ },
+ "media_fit": {
+ "label": "多媒體檔案最適大小",
+ "options__1": {
+ "label": "原始"
+ },
+ "options__2": {
+ "label": "填滿"
+ }
+ }
+ }
+ },
+ "main-search": {
+ "name": "搜尋結果",
+ "settings": {
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "縱向"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "游標暫留時顯示次要圖片"
+ },
+ "show_vendor": {
+ "label": "顯示廠商"
+ },
+ "header__1": {
+ "content": "產品卡"
+ },
+ "header__2": {
+ "content": "網誌卡片",
+ "info": "網誌卡片樣式也會套用至搜尋結果中的頁面卡片。若要變更卡片樣式,請更新佈景主題設定。"
+ },
+ "article_show_date": {
+ "label": "顯示日期"
+ },
+ "article_show_author": {
+ "label": "顯示作者"
+ },
+ "show_rating": {
+ "label": "顯示產品評等",
+ "info": "新增產品評等應用程式,即可顯示評等。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#search-results-section-settings)"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ }
+ }
+ },
+ "multicolumn": {
+ "name": "多列",
+ "settings": {
+ "title": {
+ "label": "標題"
+ },
+ "image_width": {
+ "label": "圖片寬度",
+ "options__1": {
+ "label": "欄位的三分之一寬度"
+ },
+ "options__2": {
+ "label": "欄位的一半寬度"
+ },
+ "options__3": {
+ "label": "欄位的全寬度"
+ }
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "縱向"
+ },
+ "options__3": {
+ "label": "正方形"
+ },
+ "options__4": {
+ "label": "圓形"
+ }
+ },
+ "column_alignment": {
+ "label": "欄位對齊",
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ }
+ },
+ "background_style": {
+ "label": "次要背景",
+ "options__1": {
+ "label": "無"
+ },
+ "options__2": {
+ "label": "顯示欄位背景"
+ }
+ },
+ "button_label": {
+ "label": "按鈕標籤"
+ },
+ "button_link": {
+ "label": "按鈕連結"
+ },
+ "swipe_on_mobile": {
+ "label": "啟用行動裝置的滑動功能"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ }
+ },
+ "blocks": {
+ "column": {
+ "settings": {
+ "image": {
+ "label": "圖片"
+ },
+ "title": {
+ "label": "標題"
+ },
+ "text": {
+ "label": "說明"
+ },
+ "link_label": {
+ "label": "連結標籤"
+ },
+ "link": {
+ "label": "連結"
+ }
+ },
+ "name": "欄"
+ }
+ },
+ "presets": {
+ "name": "多列"
+ }
+ },
+ "newsletter": {
+ "name": "電子郵件訂閱",
+ "settings": {
+ "full_width": {
+ "label": "讓區段呈現全寬度"
+ },
+ "paragraph": {
+ "content": "每筆電子郵件訂閱都會建立顧客帳號。[瞭解詳情](https://help.shopify.com/manual/customers)"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "標題"
+ }
+ },
+ "name": "標題"
+ },
+ "paragraph": {
+ "settings": {
+ "paragraph": {
+ "label": "說明"
+ }
+ },
+ "name": "子標題"
+ },
+ "email_form": {
+ "name": "電子郵件表單"
+ }
+ },
+ "presets": {
+ "name": "電子郵件訂閱"
+ }
+ },
+ "page": {
+ "name": "頁面",
+ "settings": {
+ "page": {
+ "label": "頁面"
+ }
+ },
+ "presets": {
+ "name": "頁面"
+ }
+ },
+ "rich-text": {
+ "name": "RTF 文字",
+ "settings": {
+ "full_width": {
+ "label": "讓區段呈現全寬度"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "電腦版內容位置",
+ "info": "行動版會自動調整為最佳位置。"
+ },
+ "content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "內容對齊"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "settings": {
+ "heading": {
+ "label": "標題"
+ }
+ },
+ "name": "標題"
+ },
+ "text": {
+ "settings": {
+ "text": {
+ "label": "說明"
+ }
+ },
+ "name": "文字"
+ },
+ "buttons": {
+ "settings": {
+ "button_label_1": {
+ "label": "第一個按鈕標籤",
+ "info": "將標籤留白以隱藏按鈕。"
+ },
+ "button_link_1": {
+ "label": "第一個按鈕連結"
+ },
+ "button_style_secondary_1": {
+ "label": "使用外框按鈕樣式"
+ },
+ "button_label_2": {
+ "label": "第二個按鈕標籤",
+ "info": "將標籤留白以隱藏按鈕。"
+ },
+ "button_link_2": {
+ "label": "第二個按鈕連結"
+ },
+ "button_style_secondary_2": {
+ "label": "使用外框按鈕樣式"
+ }
+ },
+ "name": "按鈕"
+ },
+ "caption": {
+ "name": "說明",
+ "settings": {
+ "text": {
+ "label": "文字"
+ },
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "副標題"
+ },
+ "options__2": {
+ "label": "大寫"
+ }
+ },
+ "caption_size": {
+ "label": "文字大小",
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "RTF 文字"
+ }
+ },
+ "apps": {
+ "name": "應用程式",
+ "settings": {
+ "include_margins": {
+ "label": "將區段邊界設為與佈景主題相同"
+ }
+ },
+ "presets": {
+ "name": "應用程式"
+ }
+ },
+ "video": {
+ "name": "影片",
+ "settings": {
+ "heading": {
+ "label": "標題"
+ },
+ "cover_image": {
+ "label": "封面圖片"
+ },
+ "video_url": {
+ "label": "網址",
+ "info": "使用 YouTube 或 Vimeo 網址"
+ },
+ "description": {
+ "label": "影片替代文字",
+ "info": "為使用螢幕助讀程式的顧客說明該影片。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video)"
+ },
+ "image_padding": {
+ "label": "新增圖片邊框間距",
+ "info": "若您不希望圖片遭到裁剪,請選取圖片邊框。"
+ },
+ "full_width": {
+ "label": "讓區段以全寬度呈現"
+ },
+ "video": {
+ "label": "影片"
+ },
+ "enable_video_looping": {
+ "label": "循環播放影片"
+ },
+ "header__1": {
+ "content": "Shopify 代管影片"
+ },
+ "header__2": {
+ "content": "或從網址嵌入影片"
+ },
+ "header__3": {
+ "content": "樣式"
+ },
+ "paragraph": {
+ "content": "在沒有已選取的 Shopify 代管影片時顯示。"
+ }
+ },
+ "presets": {
+ "name": "影片"
+ }
+ },
+ "featured-product": {
+ "name": "精選產品",
+ "blocks": {
+ "text": {
+ "name": "文字",
+ "settings": {
+ "text": {
+ "label": "文字"
+ },
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ }
+ }
+ }
+ },
+ "title": {
+ "name": "標題"
+ },
+ "price": {
+ "name": "價格"
+ },
+ "quantity_selector": {
+ "name": "數量選擇器"
+ },
+ "variant_picker": {
+ "name": "子類選擇器",
+ "settings": {
+ "picker_type": {
+ "label": "類型",
+ "options__1": {
+ "label": "下拉式選單"
+ },
+ "options__2": {
+ "label": "圓角"
+ }
+ }
+ }
+ },
+ "buy_buttons": {
+ "name": "購買按鈕",
+ "settings": {
+ "show_dynamic_checkout": {
+ "label": "顯示動態結帳按鈕",
+ "info": "顧客可透過您商店的可用付款方式,看到其偏好選項 (如 PayPal 或 Apple Pay)。[瞭解詳情](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)"
+ }
+ }
+ },
+ "description": {
+ "name": "說明"
+ },
+ "share": {
+ "name": "分享",
+ "settings": {
+ "featured_image_info": {
+ "content": "若您在社群媒體貼文中加入連結,則此頁面的主要圖片會顯示為預覽圖片。[瞭解詳情](https://help.shopify.com/manual/online-store/images/showing-social-media-thumbnail-images)"
+ },
+ "title_info": {
+ "content": "商店名稱和說明包含在預覽圖片中。[瞭解詳情](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)"
+ },
+ "text": {
+ "label": "文字"
+ }
+ }
+ },
+ "rating": {
+ "name": "產品評等",
+ "settings": {
+ "paragraph": {
+ "content": "新增產品評等應用程式,即可顯示評等。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)"
+ }
+ }
+ },
+ "sku": {
+ "name": "存貨單位 (SKU)",
+ "settings": {
+ "text_style": {
+ "label": "文字樣式",
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "options__3": {
+ "label": "大寫"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "product": {
+ "label": "產品"
+ },
+ "secondary_background": {
+ "label": "顯示次要背景"
+ },
+ "header": {
+ "content": "多媒體檔案",
+ "info": "深入瞭解 [多媒體檔案類型](https://help.shopify.com/manual/products/product-media)"
+ },
+ "enable_video_looping": {
+ "label": "啟用影片循環播放功能"
+ },
+ "hide_variants": {
+ "label": "隱藏電腦版未選擇的子類多媒體檔案"
+ },
+ "media_position": {
+ "label": "電腦版多媒體檔案位置",
+ "info": "行動版會自動調整為最佳位置。",
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "靠右"
+ }
+ }
+ },
+ "presets": {
+ "name": "精選產品"
+ }
+ },
+ "email-signup-banner": {
+ "name": "電子郵件訂閱橫幅",
+ "settings": {
+ "paragraph": {
+ "content": "每筆電子郵件訂閱都會建立顧客帳號。[瞭解詳情](https://help.shopify.com/manual/customers)"
+ },
+ "image": {
+ "label": "背景圖片"
+ },
+ "show_background_image": {
+ "label": "顯示背景圖片"
+ },
+ "show_text_box": {
+ "label": "在電腦版顯示容器"
+ },
+ "image_overlay_opacity": {
+ "label": "圖片疊加層透明度"
+ },
+ "show_text_below": {
+ "label": "在行動版圖片下方顯示內容",
+ "info": "若想要獲得最佳結果,請使用寬高比為 16:9 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "image_height": {
+ "label": "橫幅高度",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "info": "若想要獲得最佳結果,請使用寬高比為 16:9 的圖片。[瞭解詳情](https://help.shopify.com/manual/shopify-admin/productivity-tools/image-editor#understanding-image-aspect-ratio)"
+ },
+ "desktop_content_position": {
+ "options__4": {
+ "label": "中間靠左"
+ },
+ "options__5": {
+ "label": "中間置中"
+ },
+ "options__6": {
+ "label": "中間靠右"
+ },
+ "options__7": {
+ "label": "下方靠左"
+ },
+ "options__8": {
+ "label": "下方置中"
+ },
+ "options__9": {
+ "label": "下方靠右"
+ },
+ "options__1": {
+ "label": "上方靠左"
+ },
+ "options__2": {
+ "label": "上方置中"
+ },
+ "options__3": {
+ "label": "上方靠右"
+ },
+ "label": "電腦版內容位置"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "電腦版內容對齊方式"
+ },
+ "header": {
+ "content": "行動版版面配置"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "行動版內容對齊方式"
+ },
+ "color_scheme": {
+ "info": "顯示容器時可見。"
+ }
+ },
+ "blocks": {
+ "heading": {
+ "name": "標題",
+ "settings": {
+ "heading": {
+ "label": "標題"
+ }
+ }
+ },
+ "paragraph": {
+ "name": "段落",
+ "settings": {
+ "paragraph": {
+ "label": "說明"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "label": "文字樣式"
+ }
+ }
+ },
+ "email_form": {
+ "name": "電子郵件表單"
+ }
+ },
+ "presets": {
+ "name": "電子郵件訂閱橫幅"
+ }
+ },
+ "slideshow": {
+ "name": "素材輪播",
+ "settings": {
+ "layout": {
+ "label": "版面配置",
+ "options__1": {
+ "label": "完整寬度"
+ },
+ "options__2": {
+ "label": "網格"
+ }
+ },
+ "slide_height": {
+ "label": "投影片高度",
+ "options__1": {
+ "label": "配合第一張圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ }
+ },
+ "slider_visual": {
+ "label": "分頁樣式",
+ "options__1": {
+ "label": "計數器"
+ },
+ "options__2": {
+ "label": "圓點"
+ },
+ "options__3": {
+ "label": "數字"
+ }
+ },
+ "auto_rotate": {
+ "label": "自動旋轉投影片"
+ },
+ "change_slides_speed": {
+ "label": "每過以下時間即變更投影片"
+ },
+ "mobile": {
+ "content": "行動版版面配置"
+ },
+ "show_text_below": {
+ "label": "在行動版圖片下方顯示內容"
+ },
+ "accessibility": {
+ "content": "無障礙功能",
+ "label": "素材輪播說明",
+ "info": "為使用螢幕助讀程式的顧客說明該素材輪播。"
+ }
+ },
+ "blocks": {
+ "slide": {
+ "name": "投影片",
+ "settings": {
+ "image": {
+ "label": "圖片"
+ },
+ "heading": {
+ "label": "標題"
+ },
+ "subheading": {
+ "label": "子標題"
+ },
+ "button_label": {
+ "label": "按鈕標籤",
+ "info": "將標籤留白以隱藏按鈕。"
+ },
+ "link": {
+ "label": "按鈕連結"
+ },
+ "secondary_style": {
+ "label": "使用外框按鈕樣式"
+ },
+ "box_align": {
+ "label": "電腦版內容位置",
+ "options__1": {
+ "label": "上方靠左"
+ },
+ "options__2": {
+ "label": "上方置中"
+ },
+ "options__3": {
+ "label": "上方靠右"
+ },
+ "options__4": {
+ "label": "中間靠左"
+ },
+ "options__5": {
+ "label": "中間置中"
+ },
+ "options__6": {
+ "label": "中間靠右"
+ },
+ "options__7": {
+ "label": "下方靠左"
+ },
+ "options__8": {
+ "label": "下方置中"
+ },
+ "options__9": {
+ "label": "下方靠右"
+ },
+ "info": "行動版會自動調整為最佳位置。"
+ },
+ "show_text_box": {
+ "label": "在電腦版顯示容器"
+ },
+ "text_alignment": {
+ "label": "電腦版內容對齊方式",
+ "option_1": {
+ "label": "靠左"
+ },
+ "option_2": {
+ "label": "置中"
+ },
+ "option_3": {
+ "label": "靠右"
+ }
+ },
+ "image_overlay_opacity": {
+ "label": "圖片疊加層透明度"
+ },
+ "text_alignment_mobile": {
+ "label": "行動版內容對齊方式",
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "素材輪播"
+ }
+ },
+ "collapsible_content": {
+ "name": "可摺疊的內容",
+ "settings": {
+ "caption": {
+ "label": "說明"
+ },
+ "heading": {
+ "label": "標題"
+ },
+ "heading_alignment": {
+ "label": "標題對齊方式",
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ }
+ },
+ "layout": {
+ "label": "版面配置",
+ "options__1": {
+ "label": "沒有容器"
+ },
+ "options__2": {
+ "label": "橫列容器"
+ },
+ "options__3": {
+ "label": "區段容器"
+ }
+ },
+ "container_color_scheme": {
+ "label": "容器顏色配置",
+ "info": "版面配置設為橫列或區段容器時即可查看。"
+ },
+ "open_first_collapsible_row": {
+ "label": "開啟第一個可折疊的橫列"
+ },
+ "header": {
+ "content": "圖片版面配置"
+ },
+ "image": {
+ "label": "圖片"
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "大"
+ }
+ },
+ "desktop_layout": {
+ "label": "電腦版版面配置",
+ "options__1": {
+ "label": "先顯示圖片"
+ },
+ "options__2": {
+ "label": "圖片秒數"
+ },
+ "info": "行動版上一律先顯示圖片。"
+ }
+ },
+ "blocks": {
+ "collapsible_row": {
+ "name": "可折疊的橫列",
+ "settings": {
+ "heading": {
+ "info": "包含說明內容的標題。",
+ "label": "標題"
+ },
+ "row_content": {
+ "label": "橫列內容"
+ },
+ "page": {
+ "label": "橫列內容頁面"
+ },
+ "icon": {
+ "label": "圖示",
+ "options__1": {
+ "label": "無"
+ },
+ "options__2": {
+ "label": "蘋果"
+ },
+ "options__3": {
+ "label": "香蕉"
+ },
+ "options__4": {
+ "label": "瓶子"
+ },
+ "options__5": {
+ "label": "信箱"
+ },
+ "options__6": {
+ "label": "胡蘿蔔"
+ },
+ "options__7": {
+ "label": "聊天泡泡"
+ },
+ "options__8": {
+ "label": "勾號標示"
+ },
+ "options__9": {
+ "label": "剪貼簿"
+ },
+ "options__10": {
+ "label": "含乳製品"
+ },
+ "options__11": {
+ "label": "不含乳製品"
+ },
+ "options__12": {
+ "label": "吹風機"
+ },
+ "options__13": {
+ "label": "眼睛"
+ },
+ "options__14": {
+ "label": "火"
+ },
+ "options__15": {
+ "label": "無麩質"
+ },
+ "options__16": {
+ "label": "紅心"
+ },
+ "options__17": {
+ "label": "鐵"
+ },
+ "options__18": {
+ "label": "葉片"
+ },
+ "options__19": {
+ "label": "皮革"
+ },
+ "options__20": {
+ "label": "閃電"
+ },
+ "options__21": {
+ "label": "口紅"
+ },
+ "options__22": {
+ "label": "鎖"
+ },
+ "options__23": {
+ "label": "地圖圖釘"
+ },
+ "options__24": {
+ "label": "無堅果"
+ },
+ "options__25": {
+ "label": "長褲"
+ },
+ "options__26": {
+ "label": "爪印"
+ },
+ "options__27": {
+ "label": "胡椒"
+ },
+ "options__28": {
+ "label": "香水"
+ },
+ "options__29": {
+ "label": "飛機"
+ },
+ "options__30": {
+ "label": "植物"
+ },
+ "options__31": {
+ "label": "價格標籤"
+ },
+ "options__32": {
+ "label": "問號"
+ },
+ "options__33": {
+ "label": "回收"
+ },
+ "options__34": {
+ "label": "退貨"
+ },
+ "options__35": {
+ "label": "尺"
+ },
+ "options__36": {
+ "label": "料理盤"
+ },
+ "options__37": {
+ "label": "襯衫"
+ },
+ "options__38": {
+ "label": "鞋子"
+ },
+ "options__39": {
+ "label": "剪影"
+ },
+ "options__40": {
+ "label": "雪花"
+ },
+ "options__41": {
+ "label": "星星"
+ },
+ "options__42": {
+ "label": "碼表"
+ },
+ "options__43": {
+ "label": "卡車"
+ },
+ "options__44": {
+ "label": "洗滌"
+ }
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "可摺疊的內容"
+ }
+ },
+ "main-account": {
+ "name": "帳號"
+ },
+ "main-activate-account": {
+ "name": "啟用帳號"
+ },
+ "main-addresses": {
+ "name": "地址"
+ },
+ "main-login": {
+ "name": "登入"
+ },
+ "main-order": {
+ "name": "訂單"
+ },
+ "main-register": {
+ "name": "註冊"
+ },
+ "main-reset-password": {
+ "name": "重設密碼"
+ },
+ "related-products": {
+ "name": "相關商品",
+ "settings": {
+ "heading": {
+ "label": "標題"
+ },
+ "products_to_show": {
+ "label": "商品數量顯示上限"
+ },
+ "columns_desktop": {
+ "label": "電腦版的欄數"
+ },
+ "paragraph__1": {
+ "content": "動態推薦會使用訂單和商品資訊,以隨著時間改變與改進。[瞭解詳情](https://help.shopify.com/themes/development/recommended-products)"
+ },
+ "header__2": {
+ "content": "商品卡片"
+ },
+ "image_ratio": {
+ "label": "圖片比例",
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "直向"
+ },
+ "options__3": {
+ "label": "正方形"
+ }
+ },
+ "show_secondary_image": {
+ "label": "游標暫留時顯示第二個圖片"
+ },
+ "show_vendor": {
+ "label": "顯示廠商"
+ },
+ "show_rating": {
+ "label": "顯示商品評等",
+ "info": "新增商品評等應用程式,即可顯示評等。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types#product-recommendations-section-settings)"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ },
+ "columns_mobile": {
+ "label": "行動版的欄數",
+ "options__1": {
+ "label": "1 欄"
+ },
+ "options__2": {
+ "label": "2 欄"
+ }
+ }
+ }
+ },
+ "multirow": {
+ "name": "多列",
+ "settings": {
+ "image": {
+ "label": "圖片"
+ },
+ "image_height": {
+ "options__1": {
+ "label": "配合圖片"
+ },
+ "options__2": {
+ "label": "小"
+ },
+ "options__3": {
+ "label": "中"
+ },
+ "options__4": {
+ "label": "大"
+ },
+ "label": "圖片高度"
+ },
+ "desktop_image_width": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "電腦版圖片寬度",
+ "info": "行動版的圖片會自動調整大小。"
+ },
+ "heading_size": {
+ "options__1": {
+ "label": "小"
+ },
+ "options__2": {
+ "label": "中"
+ },
+ "options__3": {
+ "label": "大"
+ },
+ "label": "標題大小"
+ },
+ "text_style": {
+ "options__1": {
+ "label": "內文"
+ },
+ "options__2": {
+ "label": "副標題"
+ },
+ "label": "文字樣式"
+ },
+ "button_style": {
+ "options__1": {
+ "label": "純色按鈕"
+ },
+ "options__2": {
+ "label": "外框按鈕"
+ },
+ "label": "按鈕樣式"
+ },
+ "desktop_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "電腦版內容對齊方式"
+ },
+ "desktop_content_position": {
+ "options__1": {
+ "label": "靠上"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠下"
+ },
+ "label": "電腦版內容位置",
+ "info": "行動版會自動調整為最佳位置。"
+ },
+ "image_layout": {
+ "options__1": {
+ "label": "從左側開始交叉顯示"
+ },
+ "options__2": {
+ "label": "從右側開始交叉顯示"
+ },
+ "options__3": {
+ "label": "靠左對齊"
+ },
+ "options__4": {
+ "label": "靠右對齊"
+ },
+ "label": "電腦版圖片位置",
+ "info": "行動版的圖片會自動調整位置。"
+ },
+ "container_color_scheme": {
+ "label": "容器顏色配置"
+ },
+ "mobile_content_alignment": {
+ "options__1": {
+ "label": "靠左"
+ },
+ "options__2": {
+ "label": "置中"
+ },
+ "options__3": {
+ "label": "靠右"
+ },
+ "label": "行動版內容對齊方式"
+ },
+ "header_mobile": {
+ "content": "行動版版面配置"
+ }
+ },
+ "blocks": {
+ "row": {
+ "name": "列",
+ "settings": {
+ "image": {
+ "label": "圖片"
+ },
+ "caption": {
+ "label": "說明"
+ },
+ "heading": {
+ "label": "標題"
+ },
+ "text": {
+ "label": "文字"
+ },
+ "button_label": {
+ "label": "按鈕標籤"
+ },
+ "button_link": {
+ "label": "按鈕連結"
+ }
+ }
+ }
+ },
+ "presets": {
+ "name": "多列"
+ }
+ },
+ "quick-order-list": {
+ "name": "快速訂單清單",
+ "settings": {
+ "show_image": {
+ "label": "顯示圖片"
+ },
+ "show_sku": {
+ "label": "顯示存貨單位 (SKU)"
+ }
+ },
+ "presets": {
+ "name": "快速訂單清單"
+ }
+ }
+ }
+}
diff --git a/sections/announcement-bar.liquid b/sections/announcement-bar.liquid
new file mode 100644
index 0000000..6b6f2d9
--- /dev/null
+++ b/sections/announcement-bar.liquid
@@ -0,0 +1,326 @@
+{{ 'component-slideshow.css' | asset_url | stylesheet_tag }}
+{{ 'component-slider.css' | asset_url | stylesheet_tag }}
+
+{%- liquid
+ assign social_icons = true
+ if settings.social_facebook_link == blank and settings.social_instagram_link == blank and settings.social_youtube_link == blank and settings.social_tiktok_link == blank and settings.social_twitter_link == blank and settings.social_pinterest_link == blank and settings.social_snapchat_link == blank and settings.social_tumblr_link == blank and settings.social_vimeo_link == blank
+ assign social_icons = false
+ endif
+ if section.settings.enable_country_selector or section.settings.enable_language_selector
+ assign language_country_selector = true
+ endif
+ if section.blocks.size > 0
+ assign announcement_bar = true
+ endif
+-%}
+
+{% if social_icons %}
+ {{ 'component-list-social.css' | asset_url | stylesheet_tag }}
+{% endif %}
+
+
+
+ {%- if section.settings.show_social and social_icons -%}
+ {%- render 'social-icons' -%}
+ {%- endif -%}
+ {%- if section.blocks.size == 1 -%}
+
+ {%- elsif section.blocks.size > 1 -%}
+
+
+
+ {%- if request.design_mode -%}
+
+
+ {%- endif -%}
+ {%- endif -%}
+
+ {%- if section.settings.enable_country_selector and localization.available_countries.size > 1 -%}
+
+ {%- form 'localization', id: 'AnnouncementCountryMobileFormNoScript', class: 'localization-form' -%}
+
+
+ {{ 'localization.country_label' | t }}
+
+
+ {%- for country in localization.available_countries -%}
+
+ {{ country.name }} ({{ country.currency.iso_code }}
+ {{ country.currency.symbol }})
+
+ {%- endfor -%}
+
+ {% render 'icon-caret' %}
+
+ {{ 'localization.update_country' | t }}
+ {%- endform -%}
+
+
+
+ {%- form 'localization', id: 'AnnouncementCountryForm', class: 'localization-form' -%}
+
+
{{ 'localization.country_label' | t }}
+ {%- render 'country-localization', localPosition: 'AnnouncementCountry' -%}
+
+ {%- endform -%}
+
+ {% endif %}
+
+ {%- if section.settings.enable_language_selector and localization.available_languages.size > 1 -%}
+
+ {%- form 'localization', id: 'AnnouncementLanguageMobileFormNoScript', class: 'localization-form' -%}
+
+
+ {{ 'localization.language_label' | t }}
+
+
+ {%- for language in localization.available_languages -%}
+
+ {{ language.endonym_name | capitalize }}
+
+ {%- endfor -%}
+
+ {% render 'icon-caret' %}
+
+ {{ 'localization.update_language' | t }}
+ {%- endform -%}
+
+
+
+ {%- form 'localization', id: 'AnnouncementLanguageForm', class: 'localization-form' -%}
+
+
{{ 'localization.language_label' | t }}
+ {%- render 'language-localization', localPosition: 'AnnouncementLanguage' -%}
+
+ {%- endform -%}
+
+ {%- endif -%}
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.announcement-bar.name",
+ "max_blocks": 12,
+ "class": "announcement-bar-section",
+ "enabled_on": {
+ "groups": ["header"]
+ },
+ "settings": [
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "accent-1"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_line_separator",
+ "default": true,
+ "label": "t:sections.header.settings.show_line_separator.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.announcement-bar.settings.header__1.content",
+ "info": "t:sections.announcement-bar.settings.header__1.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_social",
+ "default": false,
+ "label": "t:sections.announcement-bar.settings.show_social.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.announcement-bar.settings.header__2.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "auto_rotate",
+ "label": "t:sections.announcement-bar.settings.auto_rotate.label",
+ "default": false
+ },
+ {
+ "type": "range",
+ "id": "change_slides_speed",
+ "min": 3,
+ "max": 10,
+ "step": 1,
+ "unit": "s",
+ "label": "t:sections.announcement-bar.settings.change_slides_speed.label",
+ "default": 5
+ },
+ {
+ "type": "header",
+ "content": "t:sections.announcement-bar.settings.header__3.content",
+ "info": "t:sections.announcement-bar.settings.header__3.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_country_selector",
+ "default": false,
+ "label": "t:sections.announcement-bar.settings.enable_country_selector.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.announcement-bar.settings.header__4.content",
+ "info": "t:sections.announcement-bar.settings.header__4.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_language_selector",
+ "default": false,
+ "label": "t:sections.announcement-bar.settings.enable_language_selector.label"
+ }
+ ],
+ "blocks": [
+ {
+ "type": "announcement",
+ "name": "t:sections.announcement-bar.blocks.announcement.name",
+ "settings": [
+ {
+ "type": "text",
+ "id": "text",
+ "default": "Welcome to our store",
+ "label": "t:sections.announcement-bar.blocks.announcement.settings.text.label"
+ },
+ {
+ "type": "url",
+ "id": "link",
+ "label": "t:sections.announcement-bar.blocks.announcement.settings.link.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.announcement-bar.presets.name",
+ "blocks": [
+ {
+ "type": "announcement"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/apps.liquid b/sections/apps.liquid
new file mode 100644
index 0000000..ce3adf4
--- /dev/null
+++ b/sections/apps.liquid
@@ -0,0 +1,31 @@
+
+ {%- for block in section.blocks -%}
+ {% render block %}
+ {%- endfor -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.apps.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "include_margins",
+ "default": true,
+ "label": "t:sections.apps.settings.include_margins.label"
+ }
+ ],
+ "blocks": [
+ {
+ "type": "@app"
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.apps.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/cart-drawer.liquid b/sections/cart-drawer.liquid
new file mode 100644
index 0000000..ef322be
--- /dev/null
+++ b/sections/cart-drawer.liquid
@@ -0,0 +1 @@
+{%- render 'cart-drawer' -%}
diff --git a/sections/cart-icon-bubble.liquid b/sections/cart-icon-bubble.liquid
new file mode 100644
index 0000000..b73b697
--- /dev/null
+++ b/sections/cart-icon-bubble.liquid
@@ -0,0 +1,16 @@
+{%- liquid
+ if cart == empty
+ render 'icon-cart-empty'
+ else
+ render 'icon-cart'
+ endif
+-%}
+{{ 'templates.cart.cart' | t }}
+{%- if cart != empty -%}
+
+ {%- if cart.item_count < 100 -%}
+ {{ cart.item_count }}
+ {%- endif -%}
+ {{ 'sections.header.cart_count' | t: count: cart.item_count }}
+
+{%- endif -%}
diff --git a/sections/cart-live-region-text.liquid b/sections/cart-live-region-text.liquid
new file mode 100644
index 0000000..7cd46db
--- /dev/null
+++ b/sections/cart-live-region-text.liquid
@@ -0,0 +1 @@
+{{ 'sections.cart.new_estimated_total' | t }}: {{ cart.total_price | money_with_currency }}
diff --git a/sections/cart-notification-button.liquid b/sections/cart-notification-button.liquid
new file mode 100644
index 0000000..0d77698
--- /dev/null
+++ b/sections/cart-notification-button.liquid
@@ -0,0 +1 @@
+{{ 'general.cart.view' | t: count: cart.item_count }}
diff --git a/sections/cart-notification-product.liquid b/sections/cart-notification-product.liquid
new file mode 100644
index 0000000..6cd6259
--- /dev/null
+++ b/sections/cart-notification-product.liquid
@@ -0,0 +1,53 @@
+{%- if cart != empty -%}
+ {%- for item in cart.items -%}
+
+ {%- if item.image -%}
+
+ {%- endif -%}
+
+ {%- if settings.show_vendor -%}
+
{{ item.product.vendor }}
+ {%- endif -%}
+
{{ item.product.title | escape }}
+
+ {%- unless item.product.has_only_default_variant -%}
+ {%- for option in item.options_with_values -%}
+
+
{{ option.name }}:
+ {{ option.value }}
+
+ {%- endfor -%}
+ {%- endunless -%}
+ {%- for property in item.properties -%}
+ {%- assign property_first_char = property.first | slice: 0 -%}
+ {%- if property.last != blank and property_first_char != '_' -%}
+
+ {%- endif -%}
+ {%- endfor -%}
+
+ {%- if item.selling_plan_allocation != null -%}
+
{{ item.selling_plan_allocation.selling_plan.name }}
+ {%- endif -%}
+
+
+ {%- endfor -%}
+{%- endif -%}
diff --git a/sections/collage.liquid b/sections/collage.liquid
new file mode 100644
index 0000000..19706ab
--- /dev/null
+++ b/sections/collage.liquid
@@ -0,0 +1,449 @@
+{{ 'collage.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'component-modal-video.css' | asset_url | stylesheet_tag }}
+{{ 'component-deferred-media.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+ {%- if section.settings.heading != blank -%}
+
+ {{ section.settings.heading }}
+
+ {%- endif -%}
+
+ {%- for block in section.blocks -%}
+
+ {%- endfor -%}
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.collage.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Multimedia collage",
+ "label": "t:sections.collage.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_layout",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.collage.settings.desktop_layout.options__1.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.collage.settings.desktop_layout.options__2.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.collage.settings.desktop_layout.label"
+ },
+ {
+ "type": "select",
+ "id": "mobile_layout",
+ "options": [
+ {
+ "value": "collage",
+ "label": "t:sections.collage.settings.mobile_layout.options__1.label"
+ },
+ {
+ "value": "column",
+ "label": "t:sections.collage.settings.mobile_layout.options__2.label"
+ }
+ ],
+ "default": "column",
+ "label": "t:sections.collage.settings.mobile_layout.label"
+ },
+ {
+ "type": "select",
+ "id": "card_styles",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.collage.settings.card_styles.options__1.label"
+ },
+ {
+ "value": "product-card-wrapper",
+ "label": "t:sections.collage.settings.card_styles.options__2.label"
+ }
+ ],
+ "default": "product-card-wrapper",
+ "info": "t:sections.collage.settings.card_styles.info",
+ "label": "t:sections.collage.settings.card_styles.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.all.colors.has_cards_info",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "blocks": [
+ {
+ "type": "image",
+ "name": "t:sections.collage.blocks.image.name",
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.collage.blocks.image.settings.image.label"
+ }
+ ]
+ },
+ {
+ "type": "product",
+ "name": "t:sections.collage.blocks.product.name",
+ "settings": [
+ {
+ "type": "product",
+ "id": "product",
+ "label": "t:sections.collage.blocks.product.settings.product.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "second_image",
+ "default": false,
+ "label": "t:sections.collage.blocks.product.settings.second_image.label"
+ }
+ ]
+ },
+ {
+ "type": "collection",
+ "name": "t:sections.collage.blocks.collection.name",
+ "settings": [
+ {
+ "type": "collection",
+ "id": "collection",
+ "label": "t:sections.collage.blocks.collection.settings.collection.label"
+ }
+ ]
+ },
+ {
+ "type": "video",
+ "name": "t:sections.collage.blocks.video.name",
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "cover_image",
+ "label": "t:sections.collage.blocks.video.settings.cover_image.label"
+ },
+ {
+ "type": "video_url",
+ "id": "video_url",
+ "accept": ["youtube", "vimeo"],
+ "default": "https://www.youtube.com/watch?v=_9VUPq3SxOc",
+ "label": "t:sections.collage.blocks.video.settings.video_url.label",
+ "placeholder": "t:sections.collage.blocks.video.settings.video_url.placeholder",
+ "info": "t:sections.collage.blocks.video.settings.video_url.info"
+ },
+ {
+ "type": "text",
+ "id": "description",
+ "default": "Describe the video",
+ "label": "t:sections.collage.blocks.video.settings.description.label",
+ "info": "t:sections.collage.blocks.video.settings.description.info"
+ }
+ ]
+ }
+ ],
+ "max_blocks": 3,
+ "presets": [
+ {
+ "name": "t:sections.collage.presets.name",
+ "blocks": [
+ {
+ "type": "image"
+ },
+ {
+ "type": "product"
+ },
+ {
+ "type": "collection"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/collapsible-content.liquid b/sections/collapsible-content.liquid
new file mode 100644
index 0000000..9acb813
--- /dev/null
+++ b/sections/collapsible-content.liquid
@@ -0,0 +1,508 @@
+{{ 'component-accordion.css' | asset_url | stylesheet_tag }}
+{{ 'collapsible-content.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+
+
+ {%- if section.settings.image != blank -%}
+
+
+ {%- liquid
+ assign padding_multiplier = 1
+ if section.settings.layout == 'section'
+ assign padding_multiplier = 2
+ endif
+ assign desktop_tablet_padding = 100 | times: padding_multiplier | append: 'px'
+ assign mobile_padding = 30 | times: padding_multiplier | append: 'px'
+ -%}
+ {%- capture sizes -%}
+ (min-width: {{ settings.page_width }}px) calc(({{ settings.page_width }}px - {{ desktop_tablet_padding }}) / 2),
+ (min-width: 750px) calc((100vw - {{ desktop_tablet_padding }}) / 2),
+ calc(100vw - {{ mobile_padding }})
+ {%- endcapture -%}
+ {{
+ section.settings.image
+ | image_url: width: 3200
+ | image_tag:
+ sizes: sizes,
+ widths: '50, 75, 100, 150, 200, 300, 400, 500, 750, 1000, 1250, 1500, 1750, 2000, 2250, 2500, 2750, 3000, 3200'
+ }}
+
+
+ {% endif %}
+
+ {%- for block in section.blocks -%}
+
+
+
+ {% render 'icon-accordion', icon: block.settings.icon %}
+
+ {{ block.settings.heading | default: block.settings.page.title }}
+
+ {% render 'icon-caret' %}
+
+
+ {{ block.settings.row_content }}
+ {{ block.settings.page.content }}
+
+
+
+ {%- endfor -%}
+
+
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.collapsible_content.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "text",
+ "id": "caption",
+ "label": "t:sections.collapsible_content.settings.caption.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "label": "t:sections.collapsible_content.settings.heading.label",
+ "default": "Collapsible content"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_alignment",
+ "label": "t:sections.collapsible_content.settings.heading_alignment.label",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.collapsible_content.settings.heading_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.collapsible_content.settings.heading_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.collapsible_content.settings.heading_alignment.options__3.label"
+ }
+ ],
+ "default": "center"
+ },
+ {
+ "type": "select",
+ "id": "layout",
+ "label": "t:sections.collapsible_content.settings.layout.label",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.collapsible_content.settings.layout.options__1.label"
+ },
+ {
+ "value": "row",
+ "label": "t:sections.collapsible_content.settings.layout.options__2.label"
+ },
+ {
+ "value": "section",
+ "label": "t:sections.collapsible_content.settings.layout.options__3.label"
+ }
+ ],
+ "default": "none"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "color_scheme",
+ "id": "container_color_scheme",
+ "label": "t:sections.collapsible_content.settings.container_color_scheme.label",
+ "info": "t:sections.collapsible_content.settings.container_color_scheme.info",
+ "default": "background-2"
+ },
+ {
+ "type": "checkbox",
+ "id": "open_first_collapsible_row",
+ "default": false,
+ "label": "t:sections.collapsible_content.settings.open_first_collapsible_row.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.collapsible_content.settings.header.content"
+ },
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.collapsible_content.settings.image.label"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.collapsible_content.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.collapsible_content.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.collapsible_content.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.collapsible_content.settings.image_ratio.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_layout",
+ "options": [
+ {
+ "value": "image_first",
+ "label": "t:sections.collapsible_content.settings.desktop_layout.options__1.label"
+ },
+ {
+ "value": "image_second",
+ "label": "t:sections.collapsible_content.settings.desktop_layout.options__2.label"
+ }
+ ],
+ "default": "image_second",
+ "label": "t:sections.collapsible_content.settings.desktop_layout.label",
+ "info": "t:sections.collapsible_content.settings.desktop_layout.info"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "blocks": [
+ {
+ "type": "collapsible_row",
+ "name": "t:sections.collapsible_content.blocks.collapsible_row.name",
+ "settings": [
+ {
+ "type": "text",
+ "id": "heading",
+ "default": "Collapsible row",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.heading.label",
+ "info": "t:sections.collapsible_content.blocks.collapsible_row.settings.heading.info"
+ },
+ {
+ "type": "select",
+ "id": "icon",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.options__44.label"
+ }
+ ],
+ "default": "check_mark",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.icon.label"
+ },
+ {
+ "type": "richtext",
+ "id": "row_content",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.row_content.label"
+ },
+ {
+ "type": "page",
+ "id": "page",
+ "label": "t:sections.collapsible_content.blocks.collapsible_row.settings.page.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.collapsible_content.presets.name",
+ "blocks": [
+ {
+ "type": "collapsible_row"
+ },
+ {
+ "type": "collapsible_row"
+ },
+ {
+ "type": "collapsible_row"
+ },
+ {
+ "type": "collapsible_row"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/collection-list.liquid b/sections/collection-list.liquid
new file mode 100644
index 0000000..b94cdac
--- /dev/null
+++ b/sections/collection-list.liquid
@@ -0,0 +1,292 @@
+{{ 'section-collection-list.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-slider.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign columns_mobile_int = section.settings.columns_mobile | plus: 0
+ assign show_mobile_slider = false
+ if section.settings.swipe_on_mobile and section.blocks.size > columns_mobile_int
+ assign show_mobile_slider = true
+ endif
+-%}
+
+
+
+ {%- unless section.settings.title == blank -%}
+
+ {%- endunless -%}
+
+
+
+ {%- liquid
+ assign columns = section.blocks.size
+ if columns > 3
+ assign columns = 3
+ endif
+ -%}
+ {%- for block in section.blocks -%}
+
+ {%- assign placeholder_image_index = forloop.index0 | modulo: 4 | plus: 1 -%}
+ {%- assign placeholder_image = 'collection-apparel-' | append: placeholder_image_index -%}
+ {% render 'card-collection',
+ card_collection: block.settings.collection,
+ media_aspect_ratio: section.settings.image_ratio,
+ columns: columns,
+ placeholder_image: placeholder_image
+ %}
+
+ {%- endfor -%}
+
+ {%- if show_mobile_slider -%}
+
+ {%- endif -%}
+
+
+ {%- if section.settings.show_view_all and section.blocks.size < collections.size -%}
+
+ {%- endif -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.collection-list.name",
+ "tag": "section",
+ "class": "section section-collection-list",
+ "max_blocks": 15,
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "title",
+ "default": "Collections",
+ "label": "t:sections.collection-list.settings.title.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.collection-list.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.collection-list.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.collection-list.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "square",
+ "label": "t:sections.collection-list.settings.image_ratio.label",
+ "info": "t:sections.collection-list.settings.image_ratio.info"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 5,
+ "step": 1,
+ "default": 3,
+ "label": "t:sections.collection-list.settings.columns_desktop.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.all.colors.has_cards_info",
+ "default": "background-1"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_view_all",
+ "default": false,
+ "label": "t:sections.collection-list.settings.show_view_all.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.collection-list.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.collection-list.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.collection-list.settings.columns_mobile.options__2.label"
+ }
+ ],
+ "default": "1",
+ "label": "t:sections.collection-list.settings.columns_mobile.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "swipe_on_mobile",
+ "default": false,
+ "label": "t:sections.collection-list.settings.swipe_on_mobile.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "blocks": [
+ {
+ "type": "featured_collection",
+ "name": "t:sections.collection-list.blocks.featured_collection.name",
+ "settings": [
+ {
+ "type": "collection",
+ "id": "collection",
+ "label": "t:sections.collection-list.blocks.featured_collection.settings.collection.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.collection-list.presets.name",
+ "blocks": [
+ {
+ "type": "featured_collection"
+ },
+ {
+ "type": "featured_collection"
+ },
+ {
+ "type": "featured_collection"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/contact-form.liquid b/sections/contact-form.liquid
new file mode 100644
index 0000000..99d4f4e
--- /dev/null
+++ b/sections/contact-form.liquid
@@ -0,0 +1,208 @@
+{{ 'section-contact-form.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+ {%- if section.settings.heading != blank -%}
+
+ {{ section.settings.heading }}
+
+ {%- else -%}
+
{{ 'templates.contact.form.title' | t }}
+ {%- endif -%}
+ {%- liquid
+ assign contact_form_class = 'isolate'
+ if settings.animations_reveal_on_scroll
+ assign contact_form_class = 'isolate scroll-trigger animate--slide-in'
+ endif
+ -%}
+ {%- form 'contact', id: 'ContactForm', class: contact_form_class -%}
+ {%- if form.posted_successfully? -%}
+
+ {%- elsif form.errors -%}
+
+
+ {% render 'icon-error' %}
+ {{ 'templates.contact.form.error_heading' | t }}
+
+
+
+ {%- endif -%}
+
+
+
+ {{ 'templates.contact.form.phone' | t }}
+
+
+
+
+ {{- 'templates.contact.form.comment' | t -}}
+
+
+
+
+ {{ 'templates.contact.form.send' | t }}
+
+
+ {%- endform -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.contact-form.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Contact form",
+ "label": "Heading"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.contact-form.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/custom-liquid.liquid b/sections/custom-liquid.liquid
new file mode 100644
index 0000000..7faf456
--- /dev/null
+++ b/sections/custom-liquid.liquid
@@ -0,0 +1,69 @@
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: calc({{ section.settings.padding_top }}px * 0.75);
+ padding-bottom: calc({{ section.settings.padding_bottom }}px * 0.75);
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+ {{ section.settings.custom_liquid }}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.custom-liquid.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "liquid",
+ "id": "custom_liquid",
+ "label": "t:sections.custom-liquid.settings.custom_liquid.label",
+ "info": "t:sections.custom-liquid.settings.custom_liquid.info"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 40
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 52
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.custom-liquid.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/email-signup-banner.liquid b/sections/email-signup-banner.liquid
new file mode 100644
index 0000000..4c76172
--- /dev/null
+++ b/sections/email-signup-banner.liquid
@@ -0,0 +1,390 @@
+{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
+{{ 'component-newsletter.css' | asset_url | stylesheet_tag }}
+{{ 'newsletter-section.css' | asset_url | stylesheet_tag }}
+{{ 'section-email-signup-banner.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ #Banner-{{ section.id }}::after {
+ opacity: {{ section.settings.image_overlay_opacity | divided_by: 100.0 }};
+ }
+
+ {%- if section.settings.image_height == 'adapt-image' and section.settings.image != blank -%}
+ @media screen and (max-width: 749px) {
+ #Banner-{{ section.id }}:not(.banner--mobile-bottom) .banner__content::before {
+ padding-bottom: {{ 1 | divided_by: section.settings.image.aspect_ratio | times: 100 }}%;
+ content: '';
+ display: block;
+ }
+ }
+
+ #Banner-{{ section.id }}::before,
+ #Banner-{{ section.id }} .banner__media::before {
+ padding-bottom: {{ 1 | divided_by: section.settings.image.aspect_ratio | times: 100 }}%;
+ content: '';
+ display: block;
+ }
+ {%- endif -%}
+{%- endstyle -%}
+
+
+ {%- if section.settings.show_background_image -%}
+
+ {%- endif -%}
+
+
+ {%- for block in section.blocks -%}
+ {%- case block.type -%}
+ {%- when 'heading' -%}
+
+ {{ block.settings.heading | escape }}
+
+ {%- when 'paragraph' -%}
+
+ {{ block.settings.text }}
+
+ {%- when 'email_form' -%}
+
+ {% form 'customer', class: 'newsletter-form' %}
+
+
+ {%- if form.posted_successfully? -%}
+
+ {%- endif -%}
+ {% endform %}
+
+ {%- endcase -%}
+ {%- endfor -%}
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.email-signup-banner.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.email-signup-banner.settings.paragraph.content"
+ },
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.email-signup-banner.settings.image.label"
+ },
+ {
+ "type": "range",
+ "id": "image_overlay_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 10,
+ "unit": "%",
+ "label": "t:sections.email-signup-banner.settings.image_overlay_opacity.label",
+ "default": 0
+ },
+ {
+ "type": "checkbox",
+ "id": "show_background_image",
+ "label": "t:sections.email-signup-banner.settings.show_background_image.label",
+ "default": true
+ },
+ {
+ "type": "select",
+ "id": "image_height",
+ "options": [
+ {
+ "value": "adapt-image",
+ "label": "t:sections.email-signup-banner.settings.image_height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.email-signup-banner.settings.image_height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.email-signup-banner.settings.image_height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.email-signup-banner.settings.image_height.options__4.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.email-signup-banner.settings.image_height.label",
+ "info": "t:sections.email-signup-banner.settings.image_height.info"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_position",
+ "options": [
+ {
+ "value": "top-left",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__1.label"
+ },
+ {
+ "value": "top-center",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__2.label"
+ },
+ {
+ "value": "top-right",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__3.label"
+ },
+ {
+ "value": "middle-left",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__4.label"
+ },
+ {
+ "value": "middle-center",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__5.label"
+ },
+ {
+ "value": "middle-right",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__6.label"
+ },
+ {
+ "value": "bottom-left",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__7.label"
+ },
+ {
+ "value": "bottom-center",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__8.label"
+ },
+ {
+ "value": "bottom-right",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.options__9.label"
+ }
+ ],
+ "default": "middle-center",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_position.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_text_box",
+ "default": true,
+ "label": "t:sections.email-signup-banner.settings.show_text_box.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_alignment.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.email-signup-banner.settings.desktop_content_alignment.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.email-signup-banner.settings.color_scheme.info",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.email-signup-banner.settings.header.content"
+ },
+ {
+ "type": "select",
+ "id": "mobile_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.email-signup-banner.settings.mobile_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.email-signup-banner.settings.mobile_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.email-signup-banner.settings.mobile_content_alignment.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.email-signup-banner.settings.mobile_content_alignment.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_text_below",
+ "default": true,
+ "label": "t:sections.email-signup-banner.settings.show_text_below.label"
+ }
+ ],
+ "blocks": [
+ {
+ "type": "heading",
+ "name": "t:sections.email-signup-banner.blocks.heading.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "text",
+ "id": "heading",
+ "default": "Opening soon",
+ "label": "t:sections.email-signup-banner.blocks.heading.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "name": "t:sections.email-signup-banner.blocks.paragraph.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "richtext",
+ "id": "text",
+ "default": "Be the first to know when we launch.
",
+ "label": "t:sections.email-signup-banner.blocks.paragraph.settings.paragraph.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.email-signup-banner.blocks.paragraph.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.email-signup-banner.blocks.paragraph.settings.text_style.options__2.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.email-signup-banner.blocks.paragraph.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "email_form",
+ "name": "t:sections.email-signup-banner.blocks.email_form.name",
+ "limit": 1
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.email-signup-banner.presets.name",
+ "blocks": [
+ {
+ "type": "heading"
+ },
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "email_form"
+ }
+ ]
+ }
+ ],
+ "templates": ["password"]
+}
+{% endschema %}
diff --git a/sections/featured-blog.liquid b/sections/featured-blog.liquid
new file mode 100644
index 0000000..7829f70
--- /dev/null
+++ b/sections/featured-blog.liquid
@@ -0,0 +1,305 @@
+{{ 'component-slider.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-article-card.css' | asset_url | stylesheet_tag }}
+{{ 'section-featured-blog.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign posts_displayed = section.settings.blog.articles_count
+ if section.settings.post_limit <= section.settings.blog.articles_count or section.settings.post_limit <= 4
+ assign posts_exceed_limit = true
+ assign posts_displayed = section.settings.post_limit
+ endif
+-%}
+
+
+ {%- unless section.settings.heading == blank -%}
+
+
+ {{ section.settings.heading }}
+
+
+ {%- if section.settings.blog != blank
+ and section.settings.show_view_all
+ and section.settings.post_limit < section.settings.blog.articles_count
+ -%}
+
+ {{ 'sections.featured_blog.view_all' | t }}
+
+ {%- endif -%}
+
+ {%- endunless -%}
+
+
+
+ {%- if section.settings.blog != blank and section.settings.blog.articles_count > 0 -%}
+ {%- for article in section.settings.blog.articles limit: section.settings.post_limit -%}
+
+ {% render 'article-card',
+ blog: section.settings.blog,
+ article: article,
+ media_aspect_ratio: 1.66,
+ show_image: section.settings.show_image,
+ show_date: section.settings.show_date,
+ show_author: section.settings.show_author,
+ show_excerpt: true
+ %}
+
+ {%- endfor -%}
+ {%- else -%}
+ {% for i in (1..section.settings.post_limit) -%}
+ {%- assign placeholder_image_index = forloop.index0 | modulo: 3 | plus: 1 -%}
+ {%- assign placeholder_image = 'blog-apparel-' | append: placeholder_image_index -%}
+
+
+
+
+ {%- if section.settings.show_image == true -%}
+
+
+ {{ placeholder_image | placeholder_svg_tag: 'blog-placeholder-svg' }}
+
+
+ {%- endif -%}
+
+
+
+
+
+
+ {%- endfor -%}
+ {%- endif -%}
+
+ {%- if posts_exceed_limit -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ 1
+ /
+ {{ 'general.slider.of' | t }}
+ {{ section.settings.post_limit }}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- endif -%}
+
+
+ {%- if section.settings.show_view_all and section.settings.post_limit < section.settings.blog.articles_count -%}
+
+ {%- endif -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.featured-blog.name",
+ "tag": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Blog posts",
+ "label": "t:sections.featured-blog.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "blog",
+ "id": "blog",
+ "label": "t:sections.featured-blog.settings.blog.label"
+ },
+ {
+ "type": "range",
+ "id": "post_limit",
+ "min": 2,
+ "max": 4,
+ "step": 1,
+ "default": 3,
+ "label": "t:sections.featured-blog.settings.post_limit.label"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 4,
+ "step": 1,
+ "default": 3,
+ "label": "t:sections.featured-blog.settings.columns_desktop.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.all.colors.has_cards_info",
+ "default": "background-1"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_image",
+ "default": true,
+ "label": "t:sections.featured-blog.settings.show_image.label",
+ "info": "t:sections.featured-blog.settings.show_image.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_date",
+ "default": true,
+ "label": "t:sections.featured-blog.settings.show_date.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_author",
+ "default": false,
+ "label": "t:sections.featured-blog.settings.show_author.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_view_all",
+ "default": true,
+ "label": "t:sections.featured-blog.settings.show_view_all.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.featured-blog.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/featured-collection.liquid b/sections/featured-collection.liquid
new file mode 100644
index 0000000..c582f39
--- /dev/null
+++ b/sections/featured-collection.liquid
@@ -0,0 +1,446 @@
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+
+{{ 'component-slider.css' | asset_url | stylesheet_tag }}
+{{ 'template-collection.css' | asset_url | stylesheet_tag }}
+
+{% if section.settings.image_shape == 'blob' %}
+ {{ 'mask-blobs.css' | asset_url | stylesheet_tag }}
+{%- endif -%}
+
+{%- if section.settings.enable_quick_add -%}
+ {{ 'quick-add.css' | asset_url | stylesheet_tag }}
+
+
+{%- endif -%}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign products_to_display = section.settings.collection.all_products_count
+
+ if section.settings.collection.all_products_count > section.settings.products_to_show
+ assign products_to_display = section.settings.products_to_show
+ assign more_in_collection = true
+ endif
+
+ assign columns_mobile_int = section.settings.columns_mobile | plus: 0
+ assign show_mobile_slider = false
+ if section.settings.swipe_on_mobile and products_to_display > columns_mobile_int
+ assign show_mobile_slider = true
+ endif
+
+ assign show_desktop_slider = false
+ if section.settings.enable_desktop_slider and products_to_display > section.settings.columns_desktop
+ assign show_desktop_slider = true
+ endif
+-%}
+
+
+
+
+ {%- if section.settings.title != blank -%}
+
+ {{ section.settings.title }}
+
+ {%- endif -%}
+ {%- if section.settings.description != blank
+ or section.settings.show_description
+ and section.settings.collection.description != empty
+ -%}
+
+ {%- if section.settings.show_description -%}
+ {{ section.settings.collection.description }}
+ {%- else -%}
+ {{ section.settings.description -}}
+ {%- endif %}
+
+ {%- endif -%}
+
+
+
+
+ {%- for product in section.settings.collection.products limit: section.settings.products_to_show -%}
+
+ {% render 'card-product',
+ card_product: product,
+ media_aspect_ratio: section.settings.image_ratio,
+ image_shape: section.settings.image_shape,
+ show_secondary_image: section.settings.show_secondary_image,
+ show_vendor: section.settings.show_vendor,
+ show_rating: section.settings.show_rating,
+ show_quick_add: section.settings.enable_quick_add,
+ section_id: section.id
+ %}
+
+ {%- else -%}
+ {%- for i in (1..4) -%}
+
+ {%- assign placeholder_image = 'product-apparel-' | append: forloop.rindex -%}
+ {% render 'card-product',
+ show_vendor: section.settings.show_vendor,
+ placeholder_image: placeholder_image
+ %}
+
+ {%- endfor -%}
+ {%- endfor -%}
+
+ {%- if show_mobile_slider or show_desktop_slider -%}
+
+ {%- endif -%}
+
+
+ {%- if section.settings.show_view_all and more_in_collection -%}
+
+ {%- endif -%}
+ {% if section.settings.image_shape == 'arch' %}
+ {% render 'mask-arch' %}
+ {%- endif -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.featured-collection.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "title",
+ "default": "Featured collection",
+ "label": "t:sections.featured-collection.settings.title.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "richtext",
+ "id": "description",
+ "label": "t:sections.featured-collection.settings.description.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_description",
+ "label": "t:sections.featured-collection.settings.show_description.label",
+ "default": false
+ },
+ {
+ "type": "select",
+ "id": "description_style",
+ "label": "t:sections.featured-collection.settings.description_style.label",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.featured-collection.settings.description_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.featured-collection.settings.description_style.options__2.label"
+ },
+ {
+ "value": "uppercase",
+ "label": "t:sections.featured-collection.settings.description_style.options__3.label"
+ }
+ ],
+ "default": "body"
+ },
+ {
+ "type": "collection",
+ "id": "collection",
+ "label": "t:sections.featured-collection.settings.collection.label"
+ },
+ {
+ "type": "range",
+ "id": "products_to_show",
+ "min": 2,
+ "max": 25,
+ "step": 1,
+ "default": 4,
+ "label": "t:sections.featured-collection.settings.products_to_show.label"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 5,
+ "step": 1,
+ "default": 4,
+ "label": "t:sections.featured-collection.settings.columns_desktop.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "full_width",
+ "label": "t:sections.featured-collection.settings.full_width.label",
+ "default": false
+ },
+ {
+ "type": "checkbox",
+ "id": "show_view_all",
+ "default": true,
+ "label": "t:sections.featured-collection.settings.show_view_all.label"
+ },
+ {
+ "type": "select",
+ "id": "view_all_style",
+ "label": "t:sections.featured-collection.settings.view_all_style.label",
+ "options": [
+ {
+ "value": "link",
+ "label": "t:sections.featured-collection.settings.view_all_style.options__1.label"
+ },
+ {
+ "value": "outline",
+ "label": "t:sections.featured-collection.settings.view_all_style.options__2.label"
+ },
+ {
+ "value": "solid",
+ "label": "t:sections.featured-collection.settings.view_all_style.options__3.label"
+ }
+ ],
+ "default": "solid"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_desktop_slider",
+ "label": "t:sections.featured-collection.settings.enable_desktop_slider.label",
+ "default": false
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.all.colors.has_cards_info",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.featured-collection.settings.header.content"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.featured-collection.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.featured-collection.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.featured-collection.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.featured-collection.settings.image_ratio.label"
+ },
+ {
+ "type": "select",
+ "id": "image_shape",
+ "options": [
+ {
+ "value": "default",
+ "label": "t:sections.all.image_shape.options__1.label"
+ },
+ {
+ "value": "arch",
+ "label": "t:sections.all.image_shape.options__2.label"
+ },
+ {
+ "value": "blob",
+ "label": "t:sections.all.image_shape.options__3.label"
+ },
+ {
+ "value": "chevronleft",
+ "label": "t:sections.all.image_shape.options__4.label"
+ },
+ {
+ "value": "chevronright",
+ "label": "t:sections.all.image_shape.options__5.label"
+ },
+ {
+ "value": "diamond",
+ "label": "t:sections.all.image_shape.options__6.label"
+ },
+ {
+ "value": "parallelogram",
+ "label": "t:sections.all.image_shape.options__7.label"
+ },
+ {
+ "value": "round",
+ "label": "t:sections.all.image_shape.options__8.label"
+ }
+ ],
+ "default": "default",
+ "label": "t:sections.all.image_shape.label",
+ "info": "t:sections.all.image_shape.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_secondary_image",
+ "default": false,
+ "label": "t:sections.featured-collection.settings.show_secondary_image.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_vendor",
+ "default": false,
+ "label": "t:sections.featured-collection.settings.show_vendor.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_rating",
+ "default": false,
+ "label": "t:sections.featured-collection.settings.show_rating.label",
+ "info": "t:sections.featured-collection.settings.show_rating.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_quick_add",
+ "default": false,
+ "label": "t:sections.featured-collection.settings.enable_quick_buy.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.featured-collection.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "default": "2",
+ "label": "t:sections.featured-collection.settings.columns_mobile.label",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.featured-collection.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.featured-collection.settings.columns_mobile.options__2.label"
+ }
+ ]
+ },
+ {
+ "type": "checkbox",
+ "id": "swipe_on_mobile",
+ "default": false,
+ "label": "t:sections.featured-collection.settings.swipe_on_mobile.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.featured-collection.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/featured-product.liquid b/sections/featured-product.liquid
new file mode 100644
index 0000000..aaaf76c
--- /dev/null
+++ b/sections/featured-product.liquid
@@ -0,0 +1,1680 @@
+{{ 'section-main-product.css' | asset_url | stylesheet_tag }}
+{{ 'section-featured-product.css' | asset_url | stylesheet_tag }}
+{{ 'component-accordion.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'component-deferred-media.css' | asset_url | stylesheet_tag }}
+{{ 'component-rating.css' | asset_url | stylesheet_tag }}
+{{ 'component-volume-pricing.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+{%- liquid
+ assign product = section.settings.product
+
+ if section.settings.media_size == 'large'
+ assign media_width = 0.65
+ elsif section.settings.media_size == 'medium'
+ assign media_width = 0.55
+ elsif section.settings.media_size == 'small'
+ assign media_width = 0.45
+ endif
+-%}
+
+{% comment %} TODO: assign `product.selected_or_first_available_variant` to variable and replace usage to reduce verbosity {% endcomment %}
+
+{%- assign first_3d_model = product.media | where: 'media_type', 'model' | first -%}
+{%- if first_3d_model -%}
+ {{ 'component-product-model.css' | asset_url | stylesheet_tag }}
+
+
+{%- endif -%}
+
+
+
+
+ {% render 'product-media-modal', product: product, variant_images: media_to_render %}
+
+
+
+
+{%- if section.settings.image_zoom == 'hover' -%}
+
+{%- endif %}
+{%- if request.design_mode -%}
+
+{%- endif -%}
+
+{%- if first_3d_model -%}
+
+
+{%- endif -%}
+
+{%- liquid
+ if product.selected_or_first_available_variant.featured_media
+ assign seo_media = product.selected_or_first_available_variant.featured_media
+ else
+ assign seo_media = product.featured_media
+ endif
+-%}
+
+
+
+
+
+{% if product.media.size > 0 %}
+
+
+{% endif %}
+
+{% schema %}
+{
+ "name": "t:sections.featured-product.name",
+ "tag": "section",
+ "class": "section section-featured-product",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "blocks": [
+ {
+ "type": "@app"
+ },
+ {
+ "type": "text",
+ "name": "t:sections.featured-product.blocks.text.name",
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "text",
+ "default": "Text block",
+ "label": "t:sections.featured-product.blocks.text.settings.text.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.featured-product.blocks.text.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.featured-product.blocks.text.settings.text_style.options__2.label"
+ },
+ {
+ "value": "uppercase",
+ "label": "t:sections.featured-product.blocks.text.settings.text_style.options__3.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.featured-product.blocks.text.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "title",
+ "name": "t:sections.featured-product.blocks.title.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ }
+ ]
+ },
+ {
+ "type": "price",
+ "name": "t:sections.featured-product.blocks.price.name",
+ "limit": 1
+ },
+ {
+ "type": "sku",
+ "name": "t:sections.featured-product.blocks.sku.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.featured-product.blocks.sku.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.featured-product.blocks.sku.settings.text_style.options__2.label"
+ },
+ {
+ "value": "uppercase",
+ "label": "t:sections.featured-product.blocks.sku.settings.text_style.options__3.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.featured-product.blocks.sku.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "quantity_selector",
+ "name": "t:sections.featured-product.blocks.quantity_selector.name",
+ "limit": 1
+ },
+ {
+ "type": "variant_picker",
+ "name": "t:sections.featured-product.blocks.variant_picker.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "picker_type",
+ "options": [
+ {
+ "value": "dropdown",
+ "label": "t:sections.featured-product.blocks.variant_picker.settings.picker_type.options__1.label"
+ },
+ {
+ "value": "button",
+ "label": "t:sections.featured-product.blocks.variant_picker.settings.picker_type.options__2.label"
+ }
+ ],
+ "default": "button",
+ "label": "t:sections.featured-product.blocks.variant_picker.settings.picker_type.label"
+ }
+ ]
+ },
+ {
+ "type": "buy_buttons",
+ "name": "t:sections.featured-product.blocks.buy_buttons.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "show_dynamic_checkout",
+ "default": true,
+ "label": "t:sections.featured-product.blocks.buy_buttons.settings.show_dynamic_checkout.label",
+ "info": "t:sections.featured-product.blocks.buy_buttons.settings.show_dynamic_checkout.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_gift_card_recipient",
+ "default": true,
+ "label": "t:sections.main-product.blocks.buy_buttons.settings.show_gift_card_recipient.label",
+ "info": "t:sections.main-product.blocks.buy_buttons.settings.show_gift_card_recipient.info"
+ }
+ ]
+ },
+ {
+ "type": "share",
+ "name": "t:sections.featured-product.blocks.share.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "text",
+ "id": "share_label",
+ "label": "t:sections.featured-product.blocks.share.settings.text.label",
+ "default": "Share"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.featured-product.blocks.share.settings.featured_image_info.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.featured-product.blocks.share.settings.title_info.content"
+ }
+ ]
+ },
+ {
+ "type": "custom_liquid",
+ "name": "t:sections.custom-liquid.name",
+ "settings": [
+ {
+ "type": "liquid",
+ "id": "custom_liquid",
+ "label": "t:sections.custom-liquid.settings.custom_liquid.label",
+ "info": "t:sections.custom-liquid.settings.custom_liquid.info"
+ }
+ ]
+ },
+ {
+ "type": "rating",
+ "name": "t:sections.featured-product.blocks.rating.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.featured-product.blocks.rating.settings.paragraph.content"
+ }
+ ]
+ },
+ {
+ "type": "icon-with-text",
+ "name": "t:sections.main-product.blocks.icon_with_text.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "layout",
+ "options": [
+ {
+ "value": "horizontal",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.layout.options__1.label"
+ },
+ {
+ "value": "vertical",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.layout.options__2.label"
+ }
+ ],
+ "default": "horizontal",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.layout.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-product.blocks.icon_with_text.settings.content.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.content.info"
+ },
+ {
+ "type": "select",
+ "id": "icon_1",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "heart",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.icon_1.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_1",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.image_1.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading_1",
+ "default": "Heading",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_1.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info"
+ },
+ {
+ "type": "select",
+ "id": "icon_2",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "return",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.icon_2.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_2",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.image_2.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading_2",
+ "default": "Heading",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_2.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info"
+ },
+ {
+ "type": "select",
+ "id": "icon_3",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "truck",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.icon_3.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_3",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.image_3.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading_3",
+ "default": "Heading",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_3.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info"
+ }
+ ]
+ }
+ ],
+ "settings": [
+ {
+ "type": "product",
+ "id": "product",
+ "label": "t:sections.featured-product.settings.product.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "checkbox",
+ "id": "secondary_background",
+ "default": false,
+ "label": "t:sections.featured-product.settings.secondary_background.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.featured-product.settings.header.content",
+ "info": "t:sections.featured-product.settings.header.info"
+ },
+ {
+ "type": "select",
+ "id": "media_size",
+ "options": [
+ {
+ "value": "small",
+ "label": "t:sections.main-product.settings.media_size.options__1.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.main-product.settings.media_size.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.main-product.settings.media_size.options__3.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.main-product.settings.media_size.label",
+ "info": "t:sections.main-product.settings.media_size.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "constrain_to_viewport",
+ "default": true,
+ "label": "t:sections.main-product.settings.constrain_to_viewport.label"
+ },
+ {
+ "type": "select",
+ "id": "media_fit",
+ "options": [
+ {
+ "value": "contain",
+ "label": "t:sections.main-product.settings.media_fit.options__1.label"
+ },
+ {
+ "value": "cover",
+ "label": "t:sections.main-product.settings.media_fit.options__2.label"
+ }
+ ],
+ "default": "contain",
+ "label": "t:sections.main-product.settings.media_fit.label"
+ },
+ {
+ "type": "select",
+ "id": "media_position",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.featured-product.settings.media_position.options__1.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.featured-product.settings.media_position.options__2.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.featured-product.settings.media_position.label",
+ "info": "t:sections.featured-product.settings.media_position.info"
+ },
+ {
+ "type": "select",
+ "id": "image_zoom",
+ "options": [
+ {
+ "value": "lightbox",
+ "label": "t:sections.main-product.settings.image_zoom.options__1.label"
+ },
+ {
+ "value": "hover",
+ "label": "t:sections.main-product.settings.image_zoom.options__2.label"
+ },
+ {
+ "value": "none",
+ "label": "t:sections.main-product.settings.image_zoom.options__3.label"
+ }
+ ],
+ "default": "lightbox",
+ "label": "t:sections.main-product.settings.image_zoom.label",
+ "info": "t:sections.main-product.settings.image_zoom.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "hide_variants",
+ "default": false,
+ "label": "t:sections.main-product.settings.hide_variants.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_video_looping",
+ "default": false,
+ "label": "t:sections.featured-product.settings.enable_video_looping.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.featured-product.presets.name",
+ "blocks": [
+ {
+ "type": "text",
+ "settings": {
+ "text": "{{ section.settings.product.vendor }}",
+ "text_style": "uppercase"
+ }
+ },
+ {
+ "type": "title"
+ },
+ {
+ "type": "price"
+ },
+ {
+ "type": "variant_picker"
+ },
+ {
+ "type": "quantity_selector"
+ },
+ {
+ "type": "buy_buttons"
+ },
+ {
+ "type": "share"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/footer-group.json b/sections/footer-group.json
new file mode 100644
index 0000000..aba81fb
--- /dev/null
+++ b/sections/footer-group.json
@@ -0,0 +1,53 @@
+{
+ "name": "t:sections.footer.name",
+ "type": "footer",
+ "sections": {
+ "footer": {
+ "type": "footer",
+ "blocks": {
+ "footer-0": {
+ "type": "link_list",
+ "settings": {
+ "heading": "Quick links",
+ "menu": "footer"
+ }
+ },
+ "footer-1": {
+ "type": "link_list",
+ "settings": {
+ "heading": "Info",
+ "menu": "footer"
+ }
+ },
+ "footer-2": {
+ "type": "text",
+ "settings": {
+ "heading": "Our mission",
+ "subtext": "Share contact information, store details, and brand content with your customers.<\/p>"
+ }
+ }
+ },
+ "block_order": [
+ "footer-0",
+ "footer-1",
+ "footer-2"
+ ],
+ "settings": {
+ "color_scheme": "background-1",
+ "newsletter_enable": true,
+ "newsletter_heading": "Subscribe to our emails",
+ "show_social": true,
+ "enable_country_selector": false,
+ "enable_language_selector": false,
+ "payment_enable": true,
+ "show_policy": false,
+ "margin_top": 48,
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "footer"
+ ]
+}
diff --git a/sections/footer.liquid b/sections/footer.liquid
new file mode 100644
index 0000000..f00cdd7
--- /dev/null
+++ b/sections/footer.liquid
@@ -0,0 +1,621 @@
+{% comment %}theme-check-disable UndefinedObject{% endcomment %}
+{{ 'section-footer.css' | asset_url | stylesheet_tag }}
+{{ 'component-newsletter.css' | asset_url | stylesheet_tag }}
+{{ 'component-list-menu.css' | asset_url | stylesheet_tag }}
+{{ 'component-list-payment.css' | asset_url | stylesheet_tag }}
+{{ 'component-list-social.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .footer {
+ margin-top: {{ section.settings.margin_top | times: 0.75 | round: 0 }}px;
+ }
+
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .footer {
+ margin-top: {{ section.settings.margin_top }}px;
+ }
+
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.footer.name",
+ "blocks": [
+ {
+ "type": "@app"
+ },
+ {
+ "type": "link_list",
+ "name": "t:sections.footer.blocks.link_list.name",
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Quick links",
+ "label": "t:sections.footer.blocks.link_list.settings.heading.label"
+ },
+ {
+ "type": "link_list",
+ "id": "menu",
+ "default": "footer",
+ "label": "t:sections.footer.blocks.link_list.settings.menu.label",
+ "info": "t:sections.footer.blocks.link_list.settings.menu.info"
+ }
+ ]
+ },
+ {
+ "type": "brand_information",
+ "name": "t:sections.footer.blocks.brand_information.name",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.footer.blocks.brand_information.settings.paragraph.content"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.blocks.brand_information.settings.header__1.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_social",
+ "default": true,
+ "label": "t:sections.footer.blocks.brand_information.settings.show_social.label",
+ "info": "t:sections.footer.blocks.brand_information.settings.show_social.info"
+ }
+ ]
+ },
+ {
+ "type": "text",
+ "name": "t:sections.footer.blocks.text.name",
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Heading",
+ "label": "t:sections.footer.blocks.text.settings.heading.label"
+ },
+ {
+ "type": "richtext",
+ "id": "subtext",
+ "default": "
Share contact information, store details, and brand content with your customers.
",
+ "label": "t:sections.footer.blocks.text.settings.subtext.label"
+ }
+ ]
+ },
+ {
+ "type": "image",
+ "name": "Image",
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "Image"
+ },
+ {
+ "type": "range",
+ "id": "image_width",
+ "min": 50,
+ "max": 550,
+ "step": 5,
+ "unit": "px",
+ "label": "Image width",
+ "default": 100
+ },
+ {
+ "type": "select",
+ "id": "alignment",
+ "label": "Image alignment on large screen",
+ "options": [
+ {
+ "value": "",
+ "label": "Left"
+ },
+ {
+ "value": "center",
+ "label": "Center"
+ },
+ {
+ "value": "right",
+ "label": "Right"
+ }
+ ],
+ "default": "center"
+ }
+ ]
+ }
+ ],
+ "settings": [
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__1.content",
+ "info": "t:sections.footer.settings.header__1.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "newsletter_enable",
+ "default": true,
+ "label": "t:sections.footer.settings.newsletter_enable.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "newsletter_heading",
+ "default": "Subscribe to our emails",
+ "label": "t:sections.footer.settings.newsletter_heading.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__9.content",
+ "info": "t:sections.footer.settings.header__9.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_follow_on_shop",
+ "default": true,
+ "label": "t:sections.footer.settings.enable_follow_on_shop.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__2.content",
+ "info": "t:sections.footer.settings.header__2.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_social",
+ "default": true,
+ "label": "t:sections.footer.settings.show_social.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__3.content",
+ "info": "t:sections.footer.settings.header__4.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_country_selector",
+ "default": true,
+ "label": "t:sections.footer.settings.enable_country_selector.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__5.content",
+ "info": "t:sections.footer.settings.header__6.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_language_selector",
+ "default": true,
+ "label": "t:sections.footer.settings.enable_language_selector.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__7.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "payment_enable",
+ "default": true,
+ "label": "t:sections.footer.settings.payment_enable.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.footer.settings.header__8.content",
+ "info": "t:sections.footer.settings.header__8.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_policy",
+ "default": false,
+ "label": "t:sections.footer.settings.show_policy.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.spacing"
+ },
+ {
+ "type": "range",
+ "id": "margin_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.footer.settings.margin_top.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "default": {
+ "blocks": [
+ {
+ "type": "link_list"
+ },
+ {
+ "type": "text"
+ }
+ ]
+ }
+}
+{% endschema %}
diff --git a/sections/header-group.json b/sections/header-group.json
new file mode 100644
index 0000000..438add1
--- /dev/null
+++ b/sections/header-group.json
@@ -0,0 +1,44 @@
+{
+ "name": "t:sections.header.name",
+ "type": "header",
+ "sections": {
+ "announcement-bar": {
+ "type": "announcement-bar",
+ "blocks": {
+ "announcement-bar-0": {
+ "type": "announcement",
+ "settings": {
+ "text": "Welcome to our store",
+ "text_alignment": "center",
+ "color_scheme": "background-1",
+ "link": ""
+ }
+ }
+ },
+ "block_order": [
+ "announcement-bar-0"
+ ]
+ },
+ "header": {
+ "type": "header",
+ "settings": {
+ "color_scheme": "background-1",
+ "logo_position": "middle-left",
+ "menu": "main-menu",
+ "menu_type_desktop": "dropdown",
+ "sticky_header_type": "on-scroll-up",
+ "show_line_separator": true,
+ "enable_country_selector": true,
+ "enable_language_selector": true,
+ "mobile_logo_position": "center",
+ "margin_bottom": 0,
+ "padding_top": 20,
+ "padding_bottom": 20
+ }
+ }
+ },
+ "order": [
+ "announcement-bar",
+ "header"
+ ]
+}
diff --git a/sections/header.liquid b/sections/header.liquid
new file mode 100644
index 0000000..0c44123
--- /dev/null
+++ b/sections/header.liquid
@@ -0,0 +1,689 @@
+
+
+
+
+
+{%- if settings.predictive_search_enabled -%}
+
+{%- endif -%}
+{%- if section.settings.menu_type_desktop == 'mega' -%}
+
+ {{ 'component-mega-menu.css' | asset_url | stylesheet_tag }}
+{%- endif -%}
+
+{%- if settings.cart_type == "drawer" -%}
+ {{ 'component-cart-drawer.css' | asset_url | stylesheet_tag }}
+ {{ 'component-cart.css' | asset_url | stylesheet_tag }}
+ {{ 'component-totals.css' | asset_url | stylesheet_tag }}
+ {{ 'component-price.css' | asset_url | stylesheet_tag }}
+ {{ 'component-discounts.css' | asset_url | stylesheet_tag }}
+{%- endif -%}
+
+{{ 'component-list-menu.css' | asset_url | stylesheet_tag }}
+{{ 'component-search.css' | asset_url | stylesheet_tag }}
+{{ 'component-menu-drawer.css' | asset_url | stylesheet_tag }}
+{{ 'component-cart-notification.css' | asset_url | stylesheet_tag }}
+{{ 'component-cart-items.css' | asset_url | stylesheet_tag }}
+
+
+
+{%- style -%}
+ .header {
+ padding: {{ section.settings.padding_top | times: 0.5 | round: 0 }}px 3rem {{ section.settings.padding_bottom | times: 0.5 | round: 0 }}px 3rem;
+ }
+
+ .section-header {
+ position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
+ margin-bottom: {{ section.settings.margin_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-header {
+ margin-bottom: {{ section.settings.margin_bottom }}px;
+ }
+ }
+
+ @media screen and (min-width: 990px) {
+ .header {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+{%- if settings.cart_type == "drawer" -%}
+
+{%- endif -%}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{%- liquid
+ for block in section.blocks
+ if block.type == '@app'
+ assign has_app_block = true
+ endif
+ endfor
+-%}
+
+<{% if section.settings.sticky_header_type != 'none' %}sticky-header data-sticky-type="{{ section.settings.sticky_header_type }}"{% else %}div{% endif %} class="header-wrapper color-{{ section.settings.color_scheme }} gradient{% if section.settings.show_line_separator %} header-wrapper--border-bottom{% endif %}">
+ {%- liquid
+ assign social_links = false
+ assign localization_forms = false
+
+ if settings.social_twitter_link != blank or settings.social_facebook_link != blank or settings.social_pinterest_link != blank or settings.social_instagram_link != blank or settings.social_youtube_link != blank or settings.social_vimeo_link != blank or settings.social_tiktok_link != blank or settings.social_tumblr_link != blank or settings.social_snapchat_link != blank
+ assign social_links = true
+ endif
+
+ if localization.available_countries.size > 1 and section.settings.enable_country_selector or section.settings.enable_language_selector and localization.available_languages.size > 1
+ assign localization_forms = true
+ endif
+ -%}
+
+{% if section.settings.sticky_header_type != 'none' %}sticky-header{% else %}div{% endif %}>
+
+{%- if settings.cart_type == "notification" -%}
+ {%- render 'cart-notification', color_scheme: section.settings.color_scheme, desktop_menu_type: section.settings.menu_type_desktop -%}
+{%- endif -%}
+
+{% javascript %}
+ class StickyHeader extends HTMLElement {
+ constructor() {
+ super();
+ }
+
+ connectedCallback() {
+ this.header = document.querySelector('.section-header');
+ this.headerIsAlwaysSticky = this.getAttribute('data-sticky-type') === 'always' || this.getAttribute('data-sticky-type') === 'reduce-logo-size';
+ this.headerBounds = {};
+
+ this.setHeaderHeight();
+
+ window.matchMedia('(max-width: 990px)').addEventListener('change', this.setHeaderHeight.bind(this));
+
+ if (this.headerIsAlwaysSticky) {
+ this.header.classList.add('shopify-section-header-sticky');
+ };
+
+ this.currentScrollTop = 0;
+ this.preventReveal = false;
+ this.predictiveSearch = this.querySelector('predictive-search');
+
+ this.onScrollHandler = this.onScroll.bind(this);
+ this.hideHeaderOnScrollUp = () => this.preventReveal = true;
+
+ this.addEventListener('preventHeaderReveal', this.hideHeaderOnScrollUp);
+ window.addEventListener('scroll', this.onScrollHandler, false);
+
+ this.createObserver();
+ }
+
+ setHeaderHeight() {
+ document.documentElement.style.setProperty('--header-height', `${this.header.offsetHeight}px`);
+ }
+
+ disconnectedCallback() {
+ this.removeEventListener('preventHeaderReveal', this.hideHeaderOnScrollUp);
+ window.removeEventListener('scroll', this.onScrollHandler);
+ }
+
+ createObserver() {
+ let observer = new IntersectionObserver((entries, observer) => {
+ this.headerBounds = entries[0].intersectionRect;
+ observer.disconnect();
+ });
+
+ observer.observe(this.header);
+ }
+
+ onScroll() {
+ const scrollTop = window.pageYOffset || document.documentElement.scrollTop;
+
+ if (this.predictiveSearch && this.predictiveSearch.isOpen) return;
+
+ if (scrollTop > this.currentScrollTop && scrollTop > this.headerBounds.bottom) {
+ this.header.classList.add('scrolled-past-header');
+ if (this.preventHide) return;
+ requestAnimationFrame(this.hide.bind(this));
+ } else if (scrollTop < this.currentScrollTop && scrollTop > this.headerBounds.bottom) {
+ this.header.classList.add('scrolled-past-header');
+ if (!this.preventReveal) {
+ requestAnimationFrame(this.reveal.bind(this));
+ } else {
+ window.clearTimeout(this.isScrolling);
+
+ this.isScrolling = setTimeout(() => {
+ this.preventReveal = false;
+ }, 66);
+
+ requestAnimationFrame(this.hide.bind(this));
+ }
+ } else if (scrollTop <= this.headerBounds.top) {
+ this.header.classList.remove('scrolled-past-header');
+ requestAnimationFrame(this.reset.bind(this));
+ }
+
+ this.currentScrollTop = scrollTop;
+ }
+
+ hide() {
+ if (this.headerIsAlwaysSticky) return;
+ this.header.classList.add('shopify-section-header-hidden', 'shopify-section-header-sticky');
+ this.closeMenuDisclosure();
+ this.closeSearchModal();
+ }
+
+ reveal() {
+ if (this.headerIsAlwaysSticky) return;
+ this.header.classList.add('shopify-section-header-sticky', 'animate');
+ this.header.classList.remove('shopify-section-header-hidden');
+ }
+
+ reset() {
+ if (this.headerIsAlwaysSticky) return;
+ this.header.classList.remove('shopify-section-header-hidden', 'shopify-section-header-sticky', 'animate');
+ }
+
+ closeMenuDisclosure() {
+ this.disclosures = this.disclosures || this.header.querySelectorAll('header-menu');
+ this.disclosures.forEach(disclosure => disclosure.close());
+ }
+
+ closeSearchModal() {
+ this.searchModal = this.searchModal || this.header.querySelector('details-modal');
+ this.searchModal.close(false);
+ }
+ }
+
+ customElements.define('sticky-header', StickyHeader);
+{% endjavascript %}
+
+
+
+{%- if request.page_type == 'index' -%}
+ {% assign potential_action_target = request.origin | append: routes.search_url | append: "?q={search_term_string}" %}
+
+{%- endif -%}
+
+{% schema %}
+{
+ "name": "t:sections.header.name",
+ "class": "section-header",
+ "max_blocks": 3,
+ "settings": [
+ {
+ "type": "select",
+ "id": "logo_position",
+ "options": [
+ {
+ "value": "top-left",
+ "label": "t:sections.header.settings.logo_position.options__2.label"
+ },
+ {
+ "value": "top-center",
+ "label": "t:sections.header.settings.logo_position.options__3.label"
+ },
+ {
+ "value": "middle-left",
+ "label": "t:sections.header.settings.logo_position.options__1.label"
+ },
+ {
+ "value": "middle-center",
+ "label": "t:sections.header.settings.logo_position.options__4.label"
+ }
+ ],
+ "default": "middle-left",
+ "label": "t:sections.header.settings.logo_position.label",
+ "info": "t:sections.header.settings.logo_help.content"
+ },
+ {
+ "type": "link_list",
+ "id": "menu",
+ "default": "main-menu",
+ "label": "t:sections.header.settings.menu.label"
+ },
+ {
+ "type": "select",
+ "id": "menu_type_desktop",
+ "options": [
+ {
+ "value": "dropdown",
+ "label": "t:sections.header.settings.menu_type_desktop.options__1.label"
+ },
+ {
+ "value": "mega",
+ "label": "t:sections.header.settings.menu_type_desktop.options__2.label"
+ },
+ {
+ "value": "drawer",
+ "label": "t:sections.header.settings.menu_type_desktop.options__3.label"
+ }
+ ],
+ "default": "dropdown",
+ "label": "t:sections.header.settings.menu_type_desktop.label",
+ "info": "t:sections.header.settings.menu_type_desktop.info"
+ },
+ {
+ "type": "select",
+ "id": "sticky_header_type",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.header.settings.sticky_header_type.options__1.label"
+ },
+ {
+ "value": "on-scroll-up",
+ "label": "t:sections.header.settings.sticky_header_type.options__2.label"
+ },
+ {
+ "value": "always",
+ "label": "t:sections.header.settings.sticky_header_type.options__3.label"
+ },
+ {
+ "value": "reduce-logo-size",
+ "label": "t:sections.header.settings.sticky_header_type.options__4.label"
+ }
+ ],
+ "default": "on-scroll-up",
+ "label": "t:sections.header.settings.sticky_header_type.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_line_separator",
+ "default": true,
+ "label": "t:sections.header.settings.show_line_separator.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.header.settings.header__1.content"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "color_scheme",
+ "id": "menu_color_scheme",
+ "label": "t:sections.header.settings.menu_color_scheme.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.header.settings.header__3.content",
+ "info": "t:sections.header.settings.header__4.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_country_selector",
+ "default": true,
+ "label": "t:sections.header.settings.enable_country_selector.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.header.settings.header__5.content",
+ "info": "t:sections.header.settings.header__6.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_language_selector",
+ "default": true,
+ "label": "t:sections.header.settings.enable_language_selector.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.header.settings.mobile_layout.content"
+ },
+ {
+ "type": "select",
+ "id": "mobile_logo_position",
+ "options": [
+ {
+ "value": "center",
+ "label": "t:sections.header.settings.mobile_logo_position.options__1.label"
+ },
+ {
+ "value": "left",
+ "label": "t:sections.header.settings.mobile_logo_position.options__2.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.header.settings.mobile_logo_position.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.spacing"
+ },
+ {
+ "type": "range",
+ "id": "margin_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.header.settings.margin_bottom.label",
+ "default": 0
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 36,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 20
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 36,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 20
+ }
+ ],
+ "blocks": [
+ {
+ "type": "@app"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/image-banner.liquid b/sections/image-banner.liquid
new file mode 100644
index 0000000..2eaad5e
--- /dev/null
+++ b/sections/image-banner.liquid
@@ -0,0 +1,492 @@
+{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
+
+{%- if section.settings.image_height == 'adapt' and section.settings.image != blank -%}
+ {%- style -%}
+ @media screen and (max-width: 749px) {
+ #Banner-{{ section.id }}::before,
+ #Banner-{{ section.id }} .banner__media::before,
+ #Banner-{{ section.id }}:not(.banner--mobile-bottom) .banner__content::before {
+ padding-bottom: {{ 1 | divided_by: section.settings.image.aspect_ratio | times: 100 }}%;
+ content: '';
+ display: block;
+ }
+ }
+
+ @media screen and (min-width: 750px) {
+ #Banner-{{ section.id }}::before,
+ #Banner-{{ section.id }} .banner__media::before {
+ padding-bottom: {{ 1 | divided_by: section.settings.image.aspect_ratio | times: 100 }}%;
+ content: '';
+ display: block;
+ }
+ }
+ {%- endstyle -%}
+{%- endif -%}
+
+{%- style -%}
+ #Banner-{{ section.id }}::after {
+ opacity: {{ section.settings.image_overlay_opacity | divided_by: 100.0 }};
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign full_width = '100vw'
+ assign widths = '375, 550, 750, 1100, 1500, 1780, 2000, 3000, 3840'
+
+ if section.settings.image_behavior == 'ambient'
+ assign half_width = '60vw'
+ assign full_width = '120vw'
+ assign stacked_sizes = '(min-width: 750px) 60vw, 120vw'
+ assign widths = '450, 660, 900, 1320, 1800, 2136, 2400, 3600, 7680'
+ elsif section.settings.image_behavior == 'fixed' or section.settings.image_behavior == 'zoom-in'
+ assign half_width = '100vw'
+ assign stacked_sizes = '100vw'
+ else
+ assign half_width = '50vw'
+ assign stacked_sizes = '(min-width: 750px) 50vw, 100vw'
+ endif
+ assign fetch_priority = 'auto'
+ if section.index == 1
+ assign fetch_priority = 'high'
+ endif
+-%}
+
+
+ {%- if section.settings.image != blank -%}
+
+ {%- liquid
+ assign image_height = section.settings.image.width | divided_by: section.settings.image.aspect_ratio
+ if section.settings.image_2 != blank
+ assign image_class = 'banner__media-image-half'
+ endif
+ if section.settings.image_2 != blank and section.settings.stack_images_on_mobile
+ assign sizes = stacked_sizes
+ elsif section.settings.image_2 != blank
+ assign sizes = half_width
+ else
+ assign sizes = full_width
+ endif
+ -%}
+ {{
+ section.settings.image
+ | image_url: width: 3840
+ | image_tag:
+ width: section.settings.image.width,
+ height: image_height,
+ class: image_class,
+ sizes: sizes,
+ widths: widths,
+ fetchpriority: fetch_priority
+ }}
+
+ {%- elsif section.settings.image_2 == blank -%}
+
+ {{ 'hero-apparel-1' | placeholder_svg_tag: 'placeholder-svg' }}
+
+ {%- endif -%}
+ {%- if section.settings.image_2 != blank -%}
+
+ {%- liquid
+ assign image_height_2 = section.settings.image_2.width | divided_by: section.settings.image_2.aspect_ratio
+ if section.settings.image != blank
+ assign image_class_2 = 'banner__media-image-half'
+ endif
+ if section.settings.image != blank and section.settings.stack_images_on_mobile
+ assign sizes = stacked_sizes
+ elsif section.settings.image_2 != blank
+ assign sizes = half_width
+ else
+ assign sizes = full_width
+ endif
+ -%}
+ {{
+ section.settings.image_2
+ | image_url: width: 3840
+ | image_tag:
+ width: section.settings.image_2.width,
+ height: image_height_2,
+ class: image_class_2,
+ sizes: sizes,
+ widths: widths,
+ fetchpriority: fetch_priority
+ }}
+
+ {%- endif -%}
+
+
+ {%- for block in section.blocks -%}
+ {%- case block.type -%}
+ {%- when 'heading' -%}
+
+ {{ block.settings.heading }}
+
+ {%- when 'text' -%}
+
+
{{ block.settings.text }}
+
+ {%- when 'buttons' -%}
+
+ {%- endcase -%}
+ {%- endfor -%}
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.image-banner.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.image-banner.settings.image.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_2",
+ "label": "t:sections.image-banner.settings.image_2.label"
+ },
+ {
+ "type": "range",
+ "id": "image_overlay_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 10,
+ "unit": "%",
+ "label": "t:sections.image-banner.settings.image_overlay_opacity.label",
+ "default": 0
+ },
+ {
+ "type": "select",
+ "id": "image_height",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.image-banner.settings.image_height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.image-banner.settings.image_height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.image-banner.settings.image_height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.image-banner.settings.image_height.options__4.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.image-banner.settings.image_height.label",
+ "info": "t:sections.image-banner.settings.image_height.info"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_position",
+ "options": [
+ {
+ "value": "top-left",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__1.label"
+ },
+ {
+ "value": "top-center",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__2.label"
+ },
+ {
+ "value": "top-right",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__3.label"
+ },
+ {
+ "value": "middle-left",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__4.label"
+ },
+ {
+ "value": "middle-center",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__5.label"
+ },
+ {
+ "value": "middle-right",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__6.label"
+ },
+ {
+ "value": "bottom-left",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__7.label"
+ },
+ {
+ "value": "bottom-center",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__8.label"
+ },
+ {
+ "value": "bottom-right",
+ "label": "t:sections.image-banner.settings.desktop_content_position.options__9.label"
+ }
+ ],
+ "default": "middle-center",
+ "label": "t:sections.image-banner.settings.desktop_content_position.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_text_box",
+ "default": true,
+ "label": "t:sections.image-banner.settings.show_text_box.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.image-banner.settings.desktop_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.image-banner.settings.desktop_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.image-banner.settings.desktop_content_alignment.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.image-banner.settings.desktop_content_alignment.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.animation.content"
+ },
+ {
+ "type": "select",
+ "id": "image_behavior",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.all.animation.image_behavior.options__1.label"
+ },
+ {
+ "value": "ambient",
+ "label": "t:sections.all.animation.image_behavior.options__2.label"
+ },
+ {
+ "value": "fixed",
+ "label": "t:sections.all.animation.image_behavior.options__3.label"
+ },
+ {
+ "value": "zoom-in",
+ "label": "t:sections.all.animation.image_behavior.options__4.label"
+ }
+ ],
+ "default": "none",
+ "label": "t:sections.all.animation.image_behavior.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.image-banner.settings.mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "mobile_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.image-banner.settings.mobile_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.image-banner.settings.mobile_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.image-banner.settings.mobile_content_alignment.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.image-banner.settings.mobile_content_alignment.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "stack_images_on_mobile",
+ "default": true,
+ "label": "t:sections.image-banner.settings.stack_images_on_mobile.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_text_below",
+ "default": true,
+ "label": "t:sections.image-banner.settings.show_text_below.label"
+ }
+ ],
+ "blocks": [
+ {
+ "type": "heading",
+ "name": "t:sections.image-banner.blocks.heading.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Image banner",
+ "label": "t:sections.image-banner.blocks.heading.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ }
+ ]
+ },
+ {
+ "type": "text",
+ "name": "t:sections.image-banner.blocks.text.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "text",
+ "default": "Give customers details about the banner image(s) or content on the template.",
+ "label": "t:sections.image-banner.blocks.text.settings.text.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.image-banner.blocks.text.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.image-banner.blocks.text.settings.text_style.options__2.label"
+ },
+ {
+ "value": "caption-with-letter-spacing",
+ "label": "t:sections.image-banner.blocks.text.settings.text_style.options__3.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.image-banner.blocks.text.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "buttons",
+ "name": "t:sections.image-banner.blocks.buttons.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "text",
+ "id": "button_label_1",
+ "default": "Button label",
+ "label": "t:sections.image-banner.blocks.buttons.settings.button_label_1.label",
+ "info": "t:sections.image-banner.blocks.buttons.settings.button_label_1.info"
+ },
+ {
+ "type": "url",
+ "id": "button_link_1",
+ "label": "t:sections.image-banner.blocks.buttons.settings.button_link_1.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "button_style_secondary_1",
+ "default": false,
+ "label": "t:sections.image-banner.blocks.buttons.settings.button_style_secondary_1.label"
+ },
+ {
+ "type": "text",
+ "id": "button_label_2",
+ "default": "Button label",
+ "label": "t:sections.image-banner.blocks.buttons.settings.button_label_2.label",
+ "info": "t:sections.image-banner.blocks.buttons.settings.button_label_2.info"
+ },
+ {
+ "type": "url",
+ "id": "button_link_2",
+ "label": "t:sections.image-banner.blocks.buttons.settings.button_link_2.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "button_style_secondary_2",
+ "default": false,
+ "label": "t:sections.image-banner.blocks.buttons.settings.button_style_secondary_2.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.image-banner.presets.name",
+ "blocks": [
+ {
+ "type": "heading"
+ },
+ {
+ "type": "text"
+ },
+ {
+ "type": "buttons"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/image-with-text.liquid b/sections/image-with-text.liquid
new file mode 100644
index 0000000..fcb9249
--- /dev/null
+++ b/sections/image-with-text.liquid
@@ -0,0 +1,481 @@
+{{ 'component-image-with-text.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign fetch_priority = 'auto'
+ if section.index == 1
+ assign fetch_priority = 'high'
+ endif
+ if section.settings.color_scheme == section.settings.section_color_scheme and section.settings.content_layout == 'no-overlap'
+ assign remove_color_classes = true
+ endif
+-%}
+
+
+
+
+
+
+
+ {%- if section.settings.image != blank -%}
+ {%- if section.settings.image_behavior == 'ambient' or section.settings.image_behavior == 'zoom-in' -%}
+ {%- assign widths = '198, 432, 642, 900, 1284, 1800' -%}
+ {%- capture sizes -%}
+ (min-width: {{ settings.page_width }}px) {{ settings.page_width | minus: 100 | divided_by: 1.6667 }}px,
+ (min-width: 750px) calc((100vw - 130px) / 1.667), calc((100vw - 50px) / 1.667)
+ {%- endcapture -%}
+ {%- else -%}
+ {%- assign widths = '165, 360, 535, 750, 1070, 1500' -%}
+ {%- capture sizes -%}
+ (min-width: {{ settings.page_width }}px) {{ settings.page_width | minus: 100 | divided_by: 2 }}px,
+ (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)
+ {%- endcapture -%}
+ {%- endif -%}
+ {{
+ section.settings.image
+ | image_url: width: 1500
+ | image_tag: sizes: sizes, widths: widths, fetchpriority: fetch_priority
+ }}
+ {%- else -%}
+ {{ 'detailed-apparel-1' | placeholder_svg_tag: 'placeholder-svg' }}
+ {%- endif -%}
+
+
+
+
+ {%- for block in section.blocks -%}
+ {% case block.type %}
+ {%- when 'heading' -%}
+
+ {{ block.settings.heading }}
+
+ {%- when 'caption' -%}
+
+ {{ block.settings.caption | escape }}
+
+ {%- when 'text' -%}
+
+ {{ block.settings.text }}
+
+ {%- when 'button' -%}
+ {%- if block.settings.button_label != blank -%}
+
+ {{ block.settings.button_label | escape }}
+
+ {%- endif -%}
+ {%- endcase -%}
+ {%- endfor -%}
+
+
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.image-with-text.name",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.image-with-text.settings.image.label"
+ },
+ {
+ "type": "select",
+ "id": "height",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.image-with-text.settings.height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.image-with-text.settings.height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.image-with-text.settings.height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.image-with-text.settings.height.options__4.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.image-with-text.settings.height.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_image_width",
+ "options": [
+ {
+ "value": "small",
+ "label": "t:sections.image-with-text.settings.desktop_image_width.options__1.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.image-with-text.settings.desktop_image_width.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.image-with-text.settings.desktop_image_width.options__3.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.image-with-text.settings.desktop_image_width.label",
+ "info": "t:sections.image-with-text.settings.desktop_image_width.info"
+ },
+ {
+ "type": "select",
+ "id": "layout",
+ "options": [
+ {
+ "value": "image_first",
+ "label": "t:sections.image-with-text.settings.layout.options__1.label"
+ },
+ {
+ "value": "text_first",
+ "label": "t:sections.image-with-text.settings.layout.options__2.label"
+ }
+ ],
+ "default": "image_first",
+ "label": "t:sections.image-with-text.settings.layout.label",
+ "info": "t:sections.image-with-text.settings.layout.info"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_position",
+ "options": [
+ {
+ "value": "top",
+ "label": "t:sections.image-with-text.settings.desktop_content_position.options__1.label"
+ },
+ {
+ "value": "middle",
+ "label": "t:sections.image-with-text.settings.desktop_content_position.options__2.label"
+ },
+ {
+ "value": "bottom",
+ "label": "t:sections.image-with-text.settings.desktop_content_position.options__3.label"
+ }
+ ],
+ "default": "top",
+ "label": "t:sections.image-with-text.settings.desktop_content_position.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.image-with-text.settings.desktop_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.image-with-text.settings.desktop_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.image-with-text.settings.desktop_content_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.image-with-text.settings.desktop_content_alignment.label"
+ },
+ {
+ "type": "select",
+ "id": "content_layout",
+ "options": [
+ {
+ "value": "no-overlap",
+ "label": "t:sections.image-with-text.settings.content_layout.options__1.label"
+ },
+ {
+ "value": "overlap",
+ "label": "t:sections.image-with-text.settings.content_layout.options__2.label"
+ }
+ ],
+ "default": "no-overlap",
+ "label": "t:sections.image-with-text.settings.content_layout.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "section_color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.multirow.settings.container_color_scheme.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.animation.content"
+ },
+ {
+ "type": "select",
+ "id": "image_behavior",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.all.animation.image_behavior.options__1.label"
+ },
+ {
+ "value": "ambient",
+ "label": "t:sections.all.animation.image_behavior.options__2.label"
+ },
+ {
+ "value": "zoom-in",
+ "label": "t:sections.all.animation.image_behavior.options__4.label"
+ }
+ ],
+ "default": "none",
+ "label": "t:sections.all.animation.image_behavior.label"
+ },
+ {
+ "type": "header",
+ "content": "Mobile layout"
+ },
+ {
+ "type": "select",
+ "id": "mobile_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.image-with-text.settings.mobile_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.image-with-text.settings.mobile_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.image-with-text.settings.mobile_content_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.image-with-text.settings.mobile_content_alignment.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "blocks": [
+ {
+ "type": "heading",
+ "name": "t:sections.image-with-text.blocks.heading.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Image with text",
+ "label": "t:sections.image-with-text.blocks.heading.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ }
+ ]
+ },
+ {
+ "type": "caption",
+ "name": "t:sections.image-with-text.blocks.caption.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "text",
+ "id": "caption",
+ "default": "Add a tagline",
+ "label": "t:sections.image-with-text.blocks.caption.settings.text.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "subtitle",
+ "label": "t:sections.image-with-text.blocks.caption.settings.text_style.options__1.label"
+ },
+ {
+ "value": "caption-with-letter-spacing",
+ "label": "t:sections.image-with-text.blocks.caption.settings.text_style.options__2.label"
+ }
+ ],
+ "default": "caption-with-letter-spacing",
+ "label": "t:sections.image-with-text.blocks.caption.settings.text_style.label"
+ },
+ {
+ "type": "select",
+ "id": "text_size",
+ "options": [
+ {
+ "value": "small",
+ "label": "t:sections.image-with-text.blocks.caption.settings.caption_size.options__1.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.image-with-text.blocks.caption.settings.caption_size.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.image-with-text.blocks.caption.settings.caption_size.options__3.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.image-with-text.blocks.caption.settings.caption_size.label"
+ }
+ ]
+ },
+ {
+ "type": "text",
+ "name": "t:sections.image-with-text.blocks.text.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "richtext",
+ "id": "text",
+ "default": "Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.
",
+ "label": "t:sections.image-with-text.blocks.text.settings.text.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.image-with-text.blocks.text.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.image-with-text.blocks.text.settings.text_style.options__2.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.image-with-text.blocks.text.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "button",
+ "name": "t:sections.image-with-text.blocks.button.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "text",
+ "id": "button_label",
+ "default": "Button label",
+ "label": "t:sections.image-with-text.blocks.button.settings.button_label.label",
+ "info": "t:sections.image-with-text.blocks.button.settings.button_label.info"
+ },
+ {
+ "type": "url",
+ "id": "button_link",
+ "label": "t:sections.image-with-text.blocks.button.settings.button_link.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "button_style_secondary",
+ "default": false,
+ "label": "t:sections.image-with-text.blocks.button.settings.outline_button.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.image-with-text.presets.name",
+ "blocks": [
+ {
+ "type": "heading"
+ },
+ {
+ "type": "text"
+ },
+ {
+ "type": "button"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-404.liquid b/sections/main-404.liquid
new file mode 100644
index 0000000..e1577e8
--- /dev/null
+++ b/sections/main-404.liquid
@@ -0,0 +1,23 @@
+
+
+
+
+ {{ 'templates.404.subtext' | t }}
+
+
+ {{ 'templates.404.title' | t }}
+
+
+ {{ 'general.continue_shopping' | t }}
+
+
diff --git a/sections/main-account.liquid b/sections/main-account.liquid
new file mode 100644
index 0000000..365895d
--- /dev/null
+++ b/sections/main-account.liquid
@@ -0,0 +1,183 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+
+
{{ 'customer.orders.title' | t }}
+
+ {% paginate customer.orders by 20 %}
+ {%- if customer.orders.size > 0 -%}
+
+
+ {{ 'customer.orders.title' | t }}
+
+
+
+ {{ 'customer.orders.order_number' | t }}
+ {{ 'customer.orders.date' | t }}
+ {{ 'customer.orders.payment_status' | t }}
+
+ {{ 'customer.orders.fulfillment_status' | t }}
+
+ {{ 'customer.orders.total' | t }}
+
+
+
+ {%- for order in customer.orders -%}
+
+
+
+ {{ order.name }}
+
+
+
+ {{ order.created_at | time_tag: format: 'date' }}
+
+
+ {{ order.financial_status_label }}
+
+
+ {{ order.fulfillment_status_label }}
+
+
+ {{ order.total_net_amount | money_with_currency }}
+
+
+ {%- endfor -%}
+
+
+ {%- else -%}
+
{{ 'customer.orders.none' | t }}
+ {%- endif -%}
+
+ {%- if paginate.pages > 1 -%}
+ {%- if paginate.parts.size > 0 -%}
+
+ {%- endif -%}
+ {%- endif -%}
+ {% endpaginate %}
+
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-account.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-activate-account.liquid b/sections/main-activate-account.liquid
new file mode 100644
index 0000000..677aa56
--- /dev/null
+++ b/sections/main-activate-account.liquid
@@ -0,0 +1,147 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+
+
+
+
+
+
+ {{ 'customer.activate_account.title' | t }}
+
+
+ {{ 'customer.activate_account.subtext' | t }}
+
+ {%- form 'activate_customer_password' -%}
+ {%- if form.errors -%}
+
+
+ {%- endif -%}
+
+
+
+
+ {{ 'customer.activate_account.password' | t }}
+
+ {%- if form.errors contains 'password' -%}
+
+
+
+
+ {{ form.errors.translated_fields.password | capitalize }}
+ {{ form.errors.messages.password }}
+
+ {%- endif -%}
+
+
+
+
+
+ {{ 'customer.activate_account.password_confirm' | t }}
+
+ {%- if form.errors contains 'password_confirmation' -%}
+
+
+
+
+ {{ form.errors.translated_fields.password_confirmation | capitalize }}
+ {{ form.errors.messages.password_confirmation }}
+
+ {%- endif -%}
+
+
+
+ {{ 'customer.activate_account.submit' | t }}
+
+
+ {{ 'customer.activate_account.cancel' | t }}
+
+ {%- endform -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.main-activate-account.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-addresses.liquid b/sections/main-addresses.liquid
new file mode 100644
index 0000000..83dc5a9
--- /dev/null
+++ b/sections/main-addresses.liquid
@@ -0,0 +1,426 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- paginate customer.addresses by 5 -%}
+
+
+
+
+
+
+
{{ 'customer.addresses.title' | t }}
+
+ {{ 'customer.account.return' | t }}
+
+
+
+
+ {{ 'customer.addresses.add_new' | t }}
+
+
+
{{ 'customer.addresses.add_new' | t }}
+ {%- form 'customer_address', customer.new_address, aria-labelledBy: 'AddressNewHeading' -%}
+
+
+ {{ 'customer.addresses.first_name' | t }}
+
+
+
+ {{ 'customer.addresses.last_name' | t }}
+
+
+
+ {{ 'customer.addresses.company' | t }}
+
+
+
+ {{ 'customer.addresses.address1' | t }}
+
+
+
+ {{ 'customer.addresses.address2' | t }}
+
+
+
+ {{ 'customer.addresses.city' | t }}
+
+
+
{{ 'customer.addresses.country' | t }}
+
+
+ {{ all_country_option_tags }}
+
+
+
+
+
+
+
+
{{ 'customer.addresses.province' | t }}
+
+
+
+
+
+
+
+
+
+ {{ 'customer.addresses.zip' | t }}
+
+
+
+ {{ 'customer.addresses.phone' | t }}
+
+
+ {{ form.set_as_default_checkbox }}
+ {{ 'customer.addresses.set_default' | t }}
+
+
+ {{ 'customer.addresses.add' | t }}
+ {{ 'customer.addresses.cancel' | t }}
+
+ {%- endform -%}
+
+
+
+
+ {%- for address in customer.addresses -%}
+
+ {%- if address == customer.default_address -%}
+ {{ 'customer.addresses.default' | t }}
+ {%- endif -%}
+ {{ address | format_address }}
+
+ {{ 'customer.addresses.edit' | t }}
+
+
+ {{ 'customer.addresses.delete' | t }}
+
+
+
{{ 'customer.addresses.edit_address' | t }}
+ {%- form 'customer_address', address -%}
+
+
+ {{ 'customer.addresses.first_name' | t }}
+
+
+
+ {{ 'customer.addresses.last_name' | t }}
+
+
+
+ {{ 'customer.addresses.company' | t }}
+
+
+
+ {{ 'customer.addresses.address1' | t }}
+
+
+
+ {{ 'customer.addresses.address2' | t }}
+
+
+
+ {{ 'customer.addresses.city' | t }}
+
+
+
+ {{ 'customer.addresses.country' | t }}
+
+
+
+ {{ all_country_option_tags }}
+
+
+
+
+
+
+
+
+
+ {{ 'customer.addresses.zip' | t }}
+
+
+
+ {{ 'customer.addresses.phone' | t }}
+
+
+ {{ form.set_as_default_checkbox }}
+
+ {{ 'customer.addresses.set_default' | t }}
+
+
+
+ {{ 'customer.addresses.update' | t }}
+ {{ 'customer.addresses.cancel' | t }}
+
+ {%- endform -%}
+
+
+ {%- endfor -%}
+
+
+ {%- if paginate.pages > 1 -%}
+ {%- if paginate.parts.size > 0 -%}
+
+ {%- endif -%}
+ {%- endif -%}
+
+{%- endpaginate -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-addresses.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-article.liquid b/sections/main-article.liquid
new file mode 100644
index 0000000..e417f45
--- /dev/null
+++ b/sections/main-article.liquid
@@ -0,0 +1,399 @@
+{{ 'section-blog-post.css' | asset_url | stylesheet_tag }}
+
+
+ {%- for block in section.blocks -%}
+ {%- case block.type -%}
+ {%- when '@app' -%}
+
+ {% render block %}
+
+ {%- when 'featured_image' -%}
+ {%- if article.image -%}
+
+
+
+
+
+ {%- endif -%}
+
+ {%- when 'title' -%}
+
+
+ {{ article.title | escape }}
+
+ {%- if block.settings.blog_show_date -%}
+
+ {{- article.published_at | time_tag: format: 'date' -}}
+
+ {%- endif -%}
+ {%- if block.settings.blog_show_author -%}
+
+ {{ article.author }}
+
+ {%- endif -%}
+
+
+ {%- when 'content' -%}
+
+ {{ article.content }}
+
+
+ {%- when 'share' -%}
+
+ {% assign share_url = request.origin | append: article.url %}
+ {% render 'share-button', block: block, share_link: share_url %}
+
+ {%- endcase -%}
+ {%- endfor -%}
+
+
+ {%- if blog.comments_enabled? -%}
+
+
+
+ {%- endif -%}
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-article.name",
+ "tag": "section",
+ "class": "section",
+ "blocks": [
+ {
+ "type": "@app"
+ },
+ {
+ "type": "featured_image",
+ "name": "t:sections.main-article.blocks.featured_image.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "image_height",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.main-article.blocks.featured_image.settings.image_height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.main-article.blocks.featured_image.settings.image_height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.main-article.blocks.featured_image.settings.image_height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.main-article.blocks.featured_image.settings.image_height.options__4.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.main-article.blocks.featured_image.settings.image_height.label",
+ "info": "t:sections.main-article.blocks.featured_image.settings.image_height.info"
+ }
+ ]
+ },
+ {
+ "type": "title",
+ "name": "t:sections.main-article.blocks.title.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "blog_show_date",
+ "default": true,
+ "label": "t:sections.main-article.blocks.title.settings.blog_show_date.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "blog_show_author",
+ "default": false,
+ "label": "t:sections.main-article.blocks.title.settings.blog_show_author.label"
+ }
+ ]
+ },
+ {
+ "type": "content",
+ "name": "t:sections.main-article.blocks.content.name",
+ "limit": 1
+ },
+ {
+ "type": "share",
+ "name": "t:sections.main-article.blocks.share.name",
+ "limit": 2,
+ "settings": [
+ {
+ "type": "text",
+ "id": "share_label",
+ "label": "t:sections.main-article.blocks.share.settings.text.label",
+ "default": "Share"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-article.blocks.share.settings.featured_image_info.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-article.blocks.share.settings.title_info.content"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-blog.liquid b/sections/main-blog.liquid
new file mode 100644
index 0000000..6a89251
--- /dev/null
+++ b/sections/main-blog.liquid
@@ -0,0 +1,153 @@
+{{ 'component-article-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'section-main-blog.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- paginate blog.articles by 6 -%}
+
+
+
+
+ {%- for article in blog.articles -%}
+
+ {%- render 'article-card',
+ article: article,
+ media_height: section.settings.image_height,
+ media_aspect_ratio: article.image.aspect_ratio,
+ show_image: section.settings.show_image,
+ show_date: section.settings.show_date,
+ show_author: section.settings.show_author,
+ show_excerpt: true
+ -%}
+
+ {%- endfor -%}
+
+
+ {%- if paginate.pages > 1 -%}
+ {%- render 'pagination', paginate: paginate -%}
+ {%- endif -%}
+
+{%- endpaginate -%}
+
+{% schema %}
+{
+ "name": "t:sections.main-blog.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.main-blog.settings.header.content"
+ },
+ {
+ "type": "select",
+ "id": "layout",
+ "options": [
+ {
+ "value": "grid",
+ "label": "t:sections.main-blog.settings.layout.options__1.label"
+ },
+ {
+ "value": "collage",
+ "label": "t:sections.main-blog.settings.layout.options__2.label"
+ }
+ ],
+ "default": "collage",
+ "label": "t:sections.main-blog.settings.layout.label",
+ "info": "t:sections.main-blog.settings.layout.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_image",
+ "default": true,
+ "label": "t:sections.main-blog.settings.show_image.label"
+ },
+ {
+ "type": "select",
+ "id": "image_height",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.main-blog.settings.image_height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.main-blog.settings.image_height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.main-blog.settings.image_height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.main-blog.settings.image_height.options__4.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.main-blog.settings.image_height.label",
+ "info": "t:sections.main-blog.settings.image_height.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_date",
+ "default": true,
+ "label": "t:sections.main-blog.settings.show_date.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_author",
+ "default": false,
+ "label": "t:sections.main-blog.settings.show_author.label"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-blog.settings.paragraph.content"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-cart-footer.liquid b/sections/main-cart-footer.liquid
new file mode 100644
index 0000000..af6654c
--- /dev/null
+++ b/sections/main-cart-footer.liquid
@@ -0,0 +1,183 @@
+{{ 'component-cart.css' | asset_url | stylesheet_tag }}
+{{ 'component-totals.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'component-discounts.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-cart-footer.name",
+ "class": "cart__footer-wrapper",
+ "settings": [
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 40
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 40
+ }
+ ],
+ "blocks": [
+ {
+ "type": "subtotal",
+ "name": "t:sections.main-cart-footer.blocks.subtotal.name",
+ "limit": 1
+ },
+ {
+ "type": "buttons",
+ "name": "t:sections.main-cart-footer.blocks.buttons.name",
+ "limit": 1
+ },
+ {
+ "type": "@app"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-cart-items.liquid b/sections/main-cart-items.liquid
new file mode 100644
index 0000000..4799a83
--- /dev/null
+++ b/sections/main-cart-items.liquid
@@ -0,0 +1,489 @@
+{{ 'component-cart.css' | asset_url | stylesheet_tag }}
+{{ 'component-cart-items.css' | asset_url | stylesheet_tag }}
+{{ 'component-totals.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'component-discounts.css' | asset_url | stylesheet_tag }}
+{{ 'quantity-popover.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- unless settings.cart_type == 'drawer' -%}
+
+{%- endunless -%}
+
+
+
+
+
+
+
+
+
{{ 'sections.cart.empty' | t }}
+
+ {{ 'general.continue_shopping' | t }}
+
+
+ {%- if shop.customer_accounts_enabled and customer == null -%}
+
{{ 'sections.cart.login.title' | t }}
+
+ {{ 'sections.cart.login.paragraph_html' | t: link: routes.account_login_url }}
+
+ {%- endif -%}
+
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-cart-items.name",
+ "settings": [
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-collection-banner.liquid b/sections/main-collection-banner.liquid
new file mode 100644
index 0000000..e9b814c
--- /dev/null
+++ b/sections/main-collection-banner.liquid
@@ -0,0 +1,78 @@
+{% comment %}theme-check-disable ImgLazyLoading{% endcomment %}
+{{ 'component-collection-hero.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ @media screen and (max-width: 749px) {
+ .collection-hero--with-image .collection-hero__inner {
+ padding-bottom: calc({{ settings.media_shadow_vertical_offset | at_least: 0 }}px + 2rem);
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+ {{ 'sections.collection_template.title' | t }}:
+ {{- collection.title | escape -}}
+
+
+ {%- if section.settings.show_collection_description -%}
+
{{ collection.description }}
+ {%- endif -%}
+
+
+ {%- if section.settings.show_collection_image and collection.image -%}
+
+ {%- endif -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-collection-banner.name",
+ "class": "section",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-collection-banner.settings.paragraph.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_collection_description",
+ "default": true,
+ "label": "t:sections.main-collection-banner.settings.show_collection_description.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_collection_image",
+ "default": false,
+ "label": "t:sections.main-collection-banner.settings.show_collection_image.label",
+ "info": "t:sections.main-collection-banner.settings.show_collection_image.info"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-collection-product-grid.liquid b/sections/main-collection-product-grid.liquid
new file mode 100644
index 0000000..a863001
--- /dev/null
+++ b/sections/main-collection-product-grid.liquid
@@ -0,0 +1,389 @@
+{{ 'template-collection.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+
+{% if section.settings.image_shape == 'blob' %}
+ {{ 'mask-blobs.css' | asset_url | stylesheet_tag }}
+{%- endif -%}
+
+{%- if section.settings.enable_quick_add -%}
+ {{ 'quick-add.css' | asset_url | stylesheet_tag }}
+
+
+{%- endif -%}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+ {%- paginate collection.products by section.settings.products_per_page -%}
+ {% comment %} Sort is the first tabbable element when filter type is vertical {% endcomment %}
+ {%- if section.settings.enable_sorting and section.settings.filter_type == 'vertical' -%}
+
+
+
+ {%- endif -%}
+
+
+ {{ 'component-facets.css' | asset_url | stylesheet_tag }}
+
+ {%- if section.settings.enable_filtering or section.settings.enable_sorting -%}
+
+ {% render 'facets',
+ results: collection,
+ enable_filtering: section.settings.enable_filtering,
+ enable_sorting: section.settings.enable_sorting,
+ filter_type: section.settings.filter_type,
+ paginate: paginate
+ %}
+
+ {%- endif -%}
+
+
+
+ {%- endpaginate -%}
+ {% if section.settings.image_shape == 'arch' %}
+ {% render 'mask-arch' %}
+ {%- endif -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.main-collection-product-grid.name",
+ "class": "section",
+ "settings": [
+ {
+ "type": "range",
+ "id": "products_per_page",
+ "min": 8,
+ "max": 24,
+ "step": 4,
+ "default": 16,
+ "label": "t:sections.main-collection-product-grid.settings.products_per_page.label"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 5,
+ "step": 1,
+ "default": 4,
+ "label": "t:sections.main-collection-product-grid.settings.columns_desktop.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.all.colors.has_cards_info",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-collection-product-grid.settings.header__3.content"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.main-collection-product-grid.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.main-collection-product-grid.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.main-collection-product-grid.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.main-collection-product-grid.settings.image_ratio.label"
+ },
+ {
+ "type": "select",
+ "id": "image_shape",
+ "options": [
+ {
+ "value": "default",
+ "label": "t:sections.all.image_shape.options__1.label"
+ },
+ {
+ "value": "arch",
+ "label": "t:sections.all.image_shape.options__2.label"
+ },
+ {
+ "value": "blob",
+ "label": "t:sections.all.image_shape.options__3.label"
+ },
+ {
+ "value": "chevronleft",
+ "label": "t:sections.all.image_shape.options__4.label"
+ },
+ {
+ "value": "chevronright",
+ "label": "t:sections.all.image_shape.options__5.label"
+ },
+ {
+ "value": "diamond",
+ "label": "t:sections.all.image_shape.options__6.label"
+ },
+ {
+ "value": "parallelogram",
+ "label": "t:sections.all.image_shape.options__7.label"
+ },
+ {
+ "value": "round",
+ "label": "t:sections.all.image_shape.options__8.label"
+ }
+ ],
+ "default": "default",
+ "label": "t:sections.all.image_shape.label",
+ "info": "t:sections.all.image_shape.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_secondary_image",
+ "default": false,
+ "label": "t:sections.main-collection-product-grid.settings.show_secondary_image.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_vendor",
+ "default": false,
+ "label": "t:sections.main-collection-product-grid.settings.show_vendor.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_rating",
+ "default": false,
+ "label": "t:sections.main-collection-product-grid.settings.show_rating.label",
+ "info": "t:sections.main-collection-product-grid.settings.show_rating.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_quick_add",
+ "default": false,
+ "label": "t:sections.main-collection-product-grid.settings.enable_quick_buy.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-collection-product-grid.settings.header__1.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_filtering",
+ "default": true,
+ "label": "t:sections.main-collection-product-grid.settings.enable_filtering.label",
+ "info": "t:sections.main-collection-product-grid.settings.enable_filtering.info"
+ },
+ {
+ "type": "select",
+ "id": "filter_type",
+ "options": [
+ {
+ "value": "horizontal",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.options__1.label"
+ },
+ {
+ "value": "vertical",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.options__2.label"
+ },
+ {
+ "value": "drawer",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.options__3.label"
+ }
+ ],
+ "default": "horizontal",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.label",
+ "info": "t:sections.main-collection-product-grid.settings.filter_type.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_sorting",
+ "default": true,
+ "label": "t:sections.main-collection-product-grid.settings.enable_sorting.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-collection-product-grid.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "default": "2",
+ "label": "t:sections.main-collection-product-grid.settings.columns_mobile.label",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.main-collection-product-grid.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.main-collection-product-grid.settings.columns_mobile.options__2.label"
+ }
+ ]
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-list-collections.liquid b/sections/main-list-collections.liquid
new file mode 100644
index 0000000..acd38e6
--- /dev/null
+++ b/sections/main-list-collections.liquid
@@ -0,0 +1,145 @@
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'section-collection-list.css' | asset_url | stylesheet_tag }}
+
+
+
+ {{ section.settings.title }}
+
+ {%- liquid
+ case section.settings.sort
+ when 'products_high', 'products_low'
+ assign collections = collections | sort: 'all_products_count'
+ when 'date', 'date_reversed'
+ assign collections = collections | sort: 'published_at'
+ endcase
+
+ if section.settings.sort == 'products_high' or section.settings.sort == 'date_reversed' or section.settings.sort == 'alphabetical_reversed'
+ assign collections = collections | reverse
+ endif
+
+ assign moduloResult = 28 | modulo: section.settings.columns_desktop
+ assign paginate_by = 30
+ if moduloResult == 0
+ assign paginate_by = 28
+ endif
+ -%}
+ {%- paginate collections by paginate_by -%}
+
+ {%- for collection in collections -%}
+
+ {% render 'card-collection',
+ card_collection: collection,
+ media_aspect_ratio: section.settings.image_ratio,
+ columns: 3
+ %}
+
+ {%- endfor -%}
+
+ {% render 'pagination', paginate: paginate %}
+ {%- endpaginate -%}
+
+{% schema %}
+{
+ "name": "t:sections.main-list-collections.name",
+ "class": "section",
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "title",
+ "label": "t:sections.main-list-collections.settings.title.label",
+ "default": "Collections"
+ },
+ {
+ "type": "select",
+ "id": "sort",
+ "options": [
+ {
+ "value": "alphabetical",
+ "label": "t:sections.main-list-collections.settings.sort.options__1.label"
+ },
+ {
+ "value": "alphabetical_reversed",
+ "label": "t:sections.main-list-collections.settings.sort.options__2.label"
+ },
+ {
+ "value": "date_reversed",
+ "label": "t:sections.main-list-collections.settings.sort.options__3.label"
+ },
+ {
+ "value": "date",
+ "label": "t:sections.main-list-collections.settings.sort.options__4.label"
+ },
+ {
+ "value": "products_high",
+ "label": "t:sections.main-list-collections.settings.sort.options__5.label"
+ },
+ {
+ "value": "products_low",
+ "label": "t:sections.main-list-collections.settings.sort.options__6.label"
+ }
+ ],
+ "default": "alphabetical",
+ "label": "t:sections.main-list-collections.settings.sort.label"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.main-list-collections.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.main-list-collections.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.main-list-collections.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.main-list-collections.settings.image_ratio.label",
+ "info": "t:sections.main-list-collections.settings.image_ratio.info"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 5,
+ "step": 1,
+ "default": 3,
+ "label": "t:sections.main-list-collections.settings.columns_desktop.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-list-collections.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.main-list-collections.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.main-list-collections.settings.columns_mobile.options__2.label"
+ }
+ ],
+ "default": "2",
+ "label": "t:sections.main-list-collections.settings.columns_mobile.label"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-login.liquid b/sections/main-login.liquid
new file mode 100644
index 0000000..d1548d2
--- /dev/null
+++ b/sections/main-login.liquid
@@ -0,0 +1,194 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+ {{ 'customer.recover_password.title' | t }}
+
+
+
+ {{ 'customer.recover_password.subtext' | t }}
+
+
+ {%- form 'recover_customer_password' -%}
+ {% assign recover_success = form.posted_successfully? %}
+
+
+
+ {{ 'customer.login_page.email' | t }}
+
+
+ {%- if form.errors -%}
+
+
+
+
+
+
+
+ {{ form.errors.messages.form }}
+
+ {%- endif -%}
+
+
+ {{ 'customer.login_page.submit' | t }}
+
+
+
+ {{ 'customer.login_page.cancel' | t }}
+
+ {%- endform -%}
+
+
+
+ {{ 'customer.login_page.title' | t }}
+
+
+ {%- if recover_success == true -%}
+
+ {%- endif -%}
+ {%- form 'customer_login', novalidate: 'novalidate' -%}
+ {%- if form.errors -%}
+
+ {{ form.errors | default_errors }}
+ {%- endif -%}
+
+
+
+
+ {{ 'customer.login_page.email' | t }}
+
+
+
+ {%- if form.password_needed -%}
+
+
+
+ {{ 'customer.login_page.password' | t }}
+
+
+
+
+ {{ 'customer.login_page.forgot_password' | t }}
+
+ {%- endif -%}
+
+
+ {{ 'customer.login_page.sign_in' | t }}
+
+
+
+ {{ 'customer.login_page.create_account' | t }}
+
+ {%- endform -%}
+
+
+ {%- if shop.checkout.guest_login -%}
+
+
+ {{ 'customer.login_page.guest_title' | t }}
+
+ {%- form 'guest_login' -%}
+
+ {{ 'customer.login_page.guest_continue' | t }}
+
+ {%- endform -%}
+
+ {%- endif -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.main-login.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-order.liquid b/sections/main-order.liquid
new file mode 100644
index 0000000..42a9256
--- /dev/null
+++ b/sections/main-order.liquid
@@ -0,0 +1,377 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+
+
+
+
+
+
+
{{ 'customer.order.title' | t: name: order.name }}
+ {%- assign order_date = order.created_at | time_tag: format: 'date_at_time' -%}
+
{{ 'customer.order.date_html' | t: date: order_date }}
+ {%- if order.cancelled -%}
+ {%- assign cancelled_at = order.cancelled_at | time_tag: format: 'date_at_time' -%}
+
{{ 'customer.order.cancelled_html' | t: date: cancelled_at }}
+
{{ 'customer.order.cancelled_reason' | t: reason: order.cancel_reason_label }}
+ {%- endif -%}
+
+
+
+ {{ 'customer.order.title' | t: name: order.name }}
+
+
+
+ {{ 'customer.order.product' | t }}
+ {{ 'customer.order.sku' | t }}
+ {{ 'customer.order.price' | t }}
+ {{ 'customer.order.quantity' | t }}
+ {{ 'customer.order.total' | t }}
+
+
+
+ {%- for line_item in order.line_items -%}
+
+
+
+ {%- if line_item.url != blank -%}
+
{{ line_item.title }}
+ {%- else -%}
+
{{ line_item.title }}
+ {%- endif -%}
+ {%- assign property_size = line_item.properties | size -%}
+ {%- unless line_item.selling_plan_allocation == null and property_size == 0 -%}
+
+ {%- unless line_item.product.has_only_default_variant -%}
+
+ {{ line_item.variant.title }}
+
+ {%- endunless -%}
+ {%- unless line_item.selling_plan_allocation == null -%}
+
+ {{ line_item.selling_plan_allocation.selling_plan.name }}
+
+ {%- endunless -%}
+ {%- if property_size != 0 -%}
+ {%- for property in line_item.properties -%}
+ {% assign property_first_char = property.first | slice: 0 %}
+ {%- if property.last != blank and property_first_char != '_' -%}
+
{{ property.first }}:
+
+ {%- if property.last contains '/uploads/' -%}
+ {{ property.last | split: '/' | last }}
+ {%- else -%}
+ {{ property.last }}
+ {%- endif -%}
+
+ {%- endif -%}
+ {%- endfor -%}
+ {%- endif -%}
+
+ {%- endunless -%}
+
+ {%- if line_item.line_level_discount_allocations != blank -%}
+
+ {%- for discount_allocation in line_item.line_level_discount_allocations -%}
+
+
+
+
+ {{- discount_allocation.discount_application.title }} (-
+ {{- discount_allocation.amount | money -}}
+ )
+
+ {%- endfor -%}
+
+ {%- endif -%}
+
+ {%- if line_item.fulfillment -%}
+
+ {%- assign created_at = line_item.fulfillment.created_at | time_tag: format: 'date' -%}
+
{{ 'customer.order.fulfilled_at_html' | t: date: created_at }}
+
+ {%- if line_item.fulfillment.tracking_url -%}
+
+ {{ 'customer.order.track_shipment' | t }}
+
+ {%- endif -%}
+
+ {{ line_item.fulfillment.tracking_company }}
+ {%- if line_item.fulfillment.tracking_number -%}
+ #{{ line_item.fulfillment.tracking_number }}
+ {%- endif -%}
+
+
+ {%- endif -%}
+
+
+
+ {{ line_item.sku }}
+
+
+ {%- if line_item.original_price != line_item.final_price or line_item.unit_price_measurement -%}
+
+ {%- if line_item.original_price != line_item.final_price -%}
+
+ {{ 'products.product.price.regular_price' | t }}
+
+
+ {{ line_item.original_price | money }}
+
+
+ {{ 'products.product.price.sale_price' | t }}
+
+
+ {{ line_item.final_price | money }}
+
+ {%- else -%}
+
+ {{ 'products.product.price.regular_price' | t }}
+
+
+ {{ line_item.original_price | money }}
+
+ {%- endif -%}
+ {%- if line_item.unit_price_measurement -%}
+
+ {{ 'products.product.price.unit_price' | t }}
+
+
+
+ {%- capture unit_price_separator -%}
+ / {{ 'accessibility.unit_price_separator' | t }}
+ {%- endcapture -%}
+ {%- capture unit_price_base_unit -%}
+ {%- if line_item.unit_price_measurement.reference_value != 1 -%}
+ {{- line_item.unit_price_measurement.reference_value -}}
+ {%- endif -%}
+ {{ line_item.unit_price_measurement.reference_unit }}
+ {%- endcapture -%}
+ {{ line_item.unit_price | money }}
+ {{- unit_price_separator -}}
+ {{- unit_price_base_unit -}}
+
+
+ {%- endif -%}
+
+ {%- else -%}
+ {{ line_item.final_price | money }}
+ {%- endif -%}
+
+
+ {{ line_item.quantity }}
+
+
+ {%- if line_item.original_line_price != line_item.final_line_price -%}
+
+
+ {{ 'products.product.price.regular_price' | t }}
+
+
+ {{ line_item.original_line_price | money }}
+
+
+ {{ 'products.product.price.sale_price' | t }}
+
+
+ {{ line_item.final_line_price | money }}
+
+
+ {%- else -%}
+ {{ line_item.original_line_price | money }}
+ {%- endif -%}
+
+
+ {%- endfor -%}
+
+
+
+
+ {{ 'customer.order.subtotal' | t }}
+
+
+ {{ order.line_items_subtotal_price | money }}
+
+
+ {%- if order.cart_level_discount_applications != blank -%}
+
+ {%- for discount_application in order.cart_level_discount_applications -%}
+
+ {{ 'customer.order.discount' | t }}
+
+
+
+
+ {{- discount_application.title -}}
+
+
+
+
+ -{{ discount_application.total_allocated_amount | money }}
+
+
+
+
+ {{- discount_application.title -}}
+
+
+
+ {%- endfor -%}
+
+ {%- endif -%}
+ {%- for shipping_method in order.shipping_methods -%}
+
+
+ {{ 'customer.order.shipping' | t }} ({{ shipping_method.title }})
+
+
+ {{ shipping_method.price | money }}
+
+
+ {%- endfor -%}
+ {%- for tax_line in order.tax_lines -%}
+
+
+ {{ 'customer.order.tax' | t }} ({{ tax_line.title }}
+ {{ tax_line.rate | times: 100 }}%)
+
+
+ {{ tax_line.price | money }}
+
+
+ {%- endfor -%}
+ {%- if order.total_duties -%}
+
+ {{ 'customer.order.total_duties' | t }}
+
+ {{ order.total_duties | money }}
+
+
+ {%- endif -%}
+ {%- if order.total_refunded_amount > 0 -%}
+
+
+ {{ 'customer.order.total_refunded' | t }}
+
+
+ -{{ order.total_refunded_amount | money_with_currency }}
+
+
+ {%- endif -%}
+
+ {{ 'customer.order.total' | t }}
+
+ {{ order.total_net_amount | money_with_currency }}
+
+
+
+
+
+
+
+
{{ 'customer.order.billing_address' | t }}
+
+ {{ 'customer.order.payment_status' | t }}:
+ {{ order.financial_status_label }}
+
+ {{ order.billing_address | format_address }}
+
+
+
{{ 'customer.order.shipping_address' | t }}
+
+ {{ 'customer.order.fulfillment_status' | t }}:
+ {{ order.fulfillment_status_label }}
+
+ {{ order.shipping_address | format_address }}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-order.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-page.liquid b/sections/main-page.liquid
new file mode 100644
index 0000000..b5149ba
--- /dev/null
+++ b/sections/main-page.liquid
@@ -0,0 +1,58 @@
+{{ 'section-main-page.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+ {{ page.title | escape }}
+
+
+ {{ page.content }}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-page.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-password-footer.liquid b/sections/main-password-footer.liquid
new file mode 100644
index 0000000..745f463
--- /dev/null
+++ b/sections/main-password-footer.liquid
@@ -0,0 +1,117 @@
+{% assign scheme1 = settings.color_schemes | first %}
+{%- if section.settings.color_scheme == scheme1 -%} {%- endif -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.main-password-footer.name",
+ "settings": [
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-password-header.liquid b/sections/main-password-header.liquid
new file mode 100644
index 0000000..1342744
--- /dev/null
+++ b/sections/main-password-header.liquid
@@ -0,0 +1,117 @@
+
+
+
+
+
+{% assign scheme1 = settings.color_schemes | first %}
+{%- if section.settings.color_scheme == scheme1 -%} {%- endif -%}
+
+{% schema %}
+{
+ "name": "t:sections.main-password-header.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.main-password-header.settings.logo_header.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-password-header.settings.logo_help.content"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-product.liquid b/sections/main-product.liquid
new file mode 100644
index 0000000..20e9ce4
--- /dev/null
+++ b/sections/main-product.liquid
@@ -0,0 +1,2185 @@
+
+ {{ 'section-main-product.css' | asset_url | stylesheet_tag }}
+ {{ 'component-accordion.css' | asset_url | stylesheet_tag }}
+ {{ 'component-price.css' | asset_url | stylesheet_tag }}
+ {{ 'component-slider.css' | asset_url | stylesheet_tag }}
+ {{ 'component-rating.css' | asset_url | stylesheet_tag }}
+ {{ 'component-deferred-media.css' | asset_url | stylesheet_tag }}
+ {%- if product.quantity_price_breaks_configured? -%}
+ {{ 'component-volume-pricing.css' | asset_url | stylesheet_tag }}
+ {%- endif -%}
+
+ {%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+ {%- endstyle -%}
+
+
+
+ {%- if product.quantity_price_breaks_configured? -%}
+
+
+ {%- endif -%}
+
+ {% if section.settings.image_zoom == 'hover' %}
+
+ {% endif %}
+ {%- if request.design_mode -%}
+
+ {%- endif -%}
+
+ {%- assign first_3d_model = product.media | where: 'media_type', 'model' | first -%}
+ {%- if first_3d_model -%}
+ {{ 'component-product-model.css' | asset_url | stylesheet_tag }}
+
+
+ {%- endif -%}
+
+ {% assign variant_images = product.images | where: 'attached_to_variant?', true | map: 'src' %}
+
+
+
+ {% render 'product-media-modal' variant_images: variant_images %}
+
+ {% assign popups = section.blocks | where: 'type', 'popup' %}
+ {%- for block in popups -%}
+
+ {%- endfor -%}
+
+ {%- if product.media.size > 0 -%}
+
+
+ {%- endif -%}
+
+ {%- if first_3d_model -%}
+
+
+ {%- endif -%}
+
+
+
+ {%- liquid
+ if product.selected_or_first_available_variant.featured_media
+ assign seo_media = product.selected_or_first_available_variant.featured_media
+ else
+ assign seo_media = product.featured_media
+ endif
+ -%}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.main-product.name",
+ "tag": "section",
+ "class": "section",
+ "blocks": [
+ {
+ "type": "@app"
+ },
+ {
+ "type": "text",
+ "name": "t:sections.main-product.blocks.text.name",
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "text",
+ "default": "Text block",
+ "label": "t:sections.main-product.blocks.text.settings.text.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.main-product.blocks.text.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.main-product.blocks.text.settings.text_style.options__2.label"
+ },
+ {
+ "value": "uppercase",
+ "label": "t:sections.main-product.blocks.text.settings.text_style.options__3.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.main-product.blocks.text.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "title",
+ "name": "t:sections.main-product.blocks.title.name",
+ "limit": 1
+ },
+ {
+ "type": "price",
+ "name": "t:sections.main-product.blocks.price.name",
+ "limit": 1
+ },
+ {
+ "type": "sku",
+ "name": "t:sections.main-product.blocks.sku.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.main-product.blocks.sku.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.main-product.blocks.sku.settings.text_style.options__2.label"
+ },
+ {
+ "value": "uppercase",
+ "label": "t:sections.main-product.blocks.sku.settings.text_style.options__3.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.main-product.blocks.sku.settings.text_style.label"
+ }
+ ]
+ },
+ {
+ "type": "inventory",
+ "name": "t:sections.main-product.blocks.inventory.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.main-product.blocks.inventory.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.main-product.blocks.inventory.settings.text_style.options__2.label"
+ },
+ {
+ "value": "uppercase",
+ "label": "t:sections.main-product.blocks.inventory.settings.text_style.options__3.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.main-product.blocks.inventory.settings.text_style.label"
+ },
+ {
+ "type": "range",
+ "id": "inventory_threshold",
+ "label": "t:sections.main-product.blocks.inventory.settings.inventory_threshold.label",
+ "min": 0,
+ "max": 100,
+ "step": 1,
+ "info": "t:sections.main-product.blocks.inventory.settings.inventory_threshold.info",
+ "default": 10
+ },
+ {
+ "type": "checkbox",
+ "id": "show_inventory_quantity",
+ "label": "t:sections.main-product.blocks.inventory.settings.show_inventory_quantity.label",
+ "default": true
+ }
+ ]
+ },
+ {
+ "type": "quantity_selector",
+ "name": "t:sections.main-product.blocks.quantity_selector.name",
+ "limit": 1
+ },
+ {
+ "type": "variant_picker",
+ "name": "t:sections.main-product.blocks.variant_picker.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "select",
+ "id": "picker_type",
+ "options": [
+ {
+ "value": "dropdown",
+ "label": "t:sections.main-product.blocks.variant_picker.settings.picker_type.options__1.label"
+ },
+ {
+ "value": "button",
+ "label": "t:sections.main-product.blocks.variant_picker.settings.picker_type.options__2.label"
+ }
+ ],
+ "default": "button",
+ "label": "t:sections.main-product.blocks.variant_picker.settings.picker_type.label"
+ }
+ ]
+ },
+ {
+ "type": "buy_buttons",
+ "name": "t:sections.main-product.blocks.buy_buttons.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "show_dynamic_checkout",
+ "default": true,
+ "label": "t:sections.main-product.blocks.buy_buttons.settings.show_dynamic_checkout.label",
+ "info": "t:sections.main-product.blocks.buy_buttons.settings.show_dynamic_checkout.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_gift_card_recipient",
+ "default": true,
+ "label": "t:sections.main-product.blocks.buy_buttons.settings.show_gift_card_recipient.label",
+ "info": "t:sections.main-product.blocks.buy_buttons.settings.show_gift_card_recipient.info"
+ }
+ ]
+ },
+ {
+ "type": "description",
+ "name": "t:sections.main-product.blocks.description.name",
+ "limit": 1
+ },
+ {
+ "type": "share",
+ "name": "t:sections.main-product.blocks.share.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "text",
+ "id": "share_label",
+ "label": "t:sections.main-product.blocks.share.settings.text.label",
+ "default": "Share"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-product.blocks.share.settings.featured_image_info.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-product.blocks.share.settings.title_info.content"
+ }
+ ]
+ },
+ {
+ "type": "custom_liquid",
+ "name": "t:sections.custom-liquid.name",
+ "settings": [
+ {
+ "type": "liquid",
+ "id": "custom_liquid",
+ "label": "t:sections.custom-liquid.settings.custom_liquid.label",
+ "info": "t:sections.custom-liquid.settings.custom_liquid.info"
+ }
+ ]
+ },
+ {
+ "type": "collapsible_tab",
+ "name": "t:sections.main-product.blocks.collapsible_tab.name",
+ "settings": [
+ {
+ "type": "text",
+ "id": "heading",
+ "default": "Collapsible row",
+ "info": "t:sections.main-product.blocks.collapsible_tab.settings.heading.info",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "icon",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.label"
+ },
+ {
+ "type": "richtext",
+ "id": "content",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.content.label"
+ },
+ {
+ "type": "page",
+ "id": "page",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.page.label"
+ }
+ ]
+ },
+ {
+ "type": "popup",
+ "name": "t:sections.main-product.blocks.popup.name",
+ "settings": [
+ {
+ "type": "text",
+ "id": "text",
+ "default": "Pop-up link text",
+ "label": "t:sections.main-product.blocks.popup.settings.link_label.label"
+ },
+ {
+ "id": "page",
+ "type": "page",
+ "label": "t:sections.main-product.blocks.popup.settings.page.label"
+ }
+ ]
+ },
+ {
+ "type": "rating",
+ "name": "t:sections.main-product.blocks.rating.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-product.blocks.rating.settings.paragraph.content"
+ }
+ ]
+ },
+ {
+ "type": "complementary",
+ "name": "t:sections.main-product.blocks.complementary_products.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.main-product.blocks.complementary_products.settings.paragraph.content"
+ },
+ {
+ "type": "text",
+ "id": "block_heading",
+ "default": "Pairs well with",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.heading.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "make_collapsible_row",
+ "default": false,
+ "label": "t:sections.main-product.blocks.complementary_products.settings.make_collapsible_row.label"
+ },
+ {
+ "type": "select",
+ "id": "icon",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "price_tag",
+ "info": "t:sections.main-product.blocks.complementary_products.settings.icon.info",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.label"
+ },
+ {
+ "type": "range",
+ "id": "product_list_limit",
+ "min": 1,
+ "max": 10,
+ "step": 1,
+ "default": 10,
+ "label": "t:sections.main-product.blocks.complementary_products.settings.product_list_limit.label"
+ },
+ {
+ "type": "range",
+ "id": "products_per_page",
+ "min": 1,
+ "max": 4,
+ "step": 1,
+ "default": 3,
+ "label": "t:sections.main-product.blocks.complementary_products.settings.products_per_page.label"
+ },
+ {
+ "type": "select",
+ "id": "pagination_style",
+ "options": [
+ {
+ "value": "dots",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.pagination_style.options.option_1"
+ },
+ {
+ "value": "counter",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.pagination_style.options.option_2"
+ },
+ {
+ "value": "numbers",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.pagination_style.options.option_3"
+ }
+ ],
+ "label": "t:sections.main-product.blocks.complementary_products.settings.pagination_style.label",
+ "default": "counter"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-product.blocks.complementary_products.settings.product_card.heading"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "portrait",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.image_ratio.options.option_1"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.image_ratio.options.option_2"
+ }
+ ],
+ "label": "t:sections.main-product.blocks.complementary_products.settings.image_ratio.label",
+ "default": "square"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_quick_add",
+ "label": "t:sections.main-product.blocks.complementary_products.settings.enable_quick_add.label",
+ "default": false
+ }
+ ]
+ },
+ {
+ "type": "icon-with-text",
+ "name": "t:sections.main-product.blocks.icon_with_text.name",
+ "settings": [
+ {
+ "type": "select",
+ "id": "layout",
+ "options": [
+ {
+ "value": "horizontal",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.layout.options__1.label"
+ },
+ {
+ "value": "vertical",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.layout.options__2.label"
+ }
+ ],
+ "default": "horizontal",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.layout.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-product.blocks.icon_with_text.settings.content.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.content.info"
+ },
+ {
+ "type": "select",
+ "id": "icon_1",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "heart",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.icon_1.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_1",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.image_1.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading_1",
+ "default": "Heading",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_1.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info"
+ },
+ {
+ "type": "select",
+ "id": "icon_2",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "return",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.icon_2.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_2",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.image_2.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading_2",
+ "default": "Heading",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_2.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info"
+ },
+ {
+ "type": "select",
+ "id": "icon_3",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__1.label"
+ },
+ {
+ "value": "apple",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__2.label"
+ },
+ {
+ "value": "banana",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__3.label"
+ },
+ {
+ "value": "bottle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__4.label"
+ },
+ {
+ "value": "box",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__5.label"
+ },
+ {
+ "value": "carrot",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__6.label"
+ },
+ {
+ "value": "chat_bubble",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__7.label"
+ },
+ {
+ "value": "check_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__8.label"
+ },
+ {
+ "value": "clipboard",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__9.label"
+ },
+ {
+ "value": "dairy",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__10.label"
+ },
+ {
+ "value": "dairy_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__11.label"
+ },
+ {
+ "value": "dryer",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__12.label"
+ },
+ {
+ "value": "eye",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__13.label"
+ },
+ {
+ "value": "fire",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__14.label"
+ },
+ {
+ "value": "gluten_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__15.label"
+ },
+ {
+ "value": "heart",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__16.label"
+ },
+ {
+ "value": "iron",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__17.label"
+ },
+ {
+ "value": "leaf",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__18.label"
+ },
+ {
+ "value": "leather",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__19.label"
+ },
+ {
+ "value": "lightning_bolt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__20.label"
+ },
+ {
+ "value": "lipstick",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__21.label"
+ },
+ {
+ "value": "lock",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__22.label"
+ },
+ {
+ "value": "map_pin",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__23.label"
+ },
+ {
+ "value": "nut_free",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__24.label"
+ },
+ {
+ "value": "pants",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__25.label"
+ },
+ {
+ "value": "paw_print",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__26.label"
+ },
+ {
+ "value": "pepper",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__27.label"
+ },
+ {
+ "value": "perfume",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__28.label"
+ },
+ {
+ "value": "plane",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__29.label"
+ },
+ {
+ "value": "plant",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__30.label"
+ },
+ {
+ "value": "price_tag",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__31.label"
+ },
+ {
+ "value": "question_mark",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__32.label"
+ },
+ {
+ "value": "recycle",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__33.label"
+ },
+ {
+ "value": "return",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__34.label"
+ },
+ {
+ "value": "ruler",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__35.label"
+ },
+ {
+ "value": "serving_dish",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__36.label"
+ },
+ {
+ "value": "shirt",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__37.label"
+ },
+ {
+ "value": "shoe",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__38.label"
+ },
+ {
+ "value": "silhouette",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__39.label"
+ },
+ {
+ "value": "snowflake",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__40.label"
+ },
+ {
+ "value": "star",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__41.label"
+ },
+ {
+ "value": "stopwatch",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__42.label"
+ },
+ {
+ "value": "truck",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__43.label"
+ },
+ {
+ "value": "washing",
+ "label": "t:sections.main-product.blocks.collapsible_tab.settings.icon.options__44.label"
+ }
+ ],
+ "default": "truck",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.icon_3.label"
+ },
+ {
+ "type": "image_picker",
+ "id": "image_3",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.image_3.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading_3",
+ "default": "Heading",
+ "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_3.label",
+ "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info"
+ }
+ ]
+ }
+ ],
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "enable_sticky_info",
+ "default": true,
+ "label": "t:sections.main-product.settings.enable_sticky_info.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-product.settings.header.content",
+ "info": "t:sections.main-product.settings.header.info"
+ },
+ {
+ "type": "select",
+ "id": "media_size",
+ "options": [
+ {
+ "value": "small",
+ "label": "t:sections.main-product.settings.media_size.options__1.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.main-product.settings.media_size.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.main-product.settings.media_size.options__3.label"
+ }
+ ],
+ "default": "large",
+ "label": "t:sections.main-product.settings.media_size.label",
+ "info": "t:sections.main-product.settings.media_size.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "constrain_to_viewport",
+ "default": true,
+ "label": "t:sections.main-product.settings.constrain_to_viewport.label"
+ },
+ {
+ "type": "select",
+ "id": "media_fit",
+ "options": [
+ {
+ "value": "contain",
+ "label": "t:sections.main-product.settings.media_fit.options__1.label"
+ },
+ {
+ "value": "cover",
+ "label": "t:sections.main-product.settings.media_fit.options__2.label"
+ }
+ ],
+ "default": "contain",
+ "label": "t:sections.main-product.settings.media_fit.label"
+ },
+ {
+ "type": "select",
+ "id": "gallery_layout",
+ "options": [
+ {
+ "value": "stacked",
+ "label": "t:sections.main-product.settings.gallery_layout.options__1.label"
+ },
+ {
+ "value": "columns",
+ "label": "t:sections.main-product.settings.gallery_layout.options__2.label"
+ },
+ {
+ "value": "thumbnail",
+ "label": "t:sections.main-product.settings.gallery_layout.options__3.label"
+ },
+ {
+ "value": "thumbnail_slider",
+ "label": "t:sections.main-product.settings.gallery_layout.options__4.label"
+ }
+ ],
+ "default": "stacked",
+ "label": "t:sections.main-product.settings.gallery_layout.label"
+ },
+ {
+ "type": "select",
+ "id": "media_position",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.main-product.settings.media_position.options__1.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.main-product.settings.media_position.options__2.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.main-product.settings.media_position.label",
+ "info": "t:sections.main-product.settings.media_position.info"
+ },
+ {
+ "type": "select",
+ "id": "image_zoom",
+ "options": [
+ {
+ "value": "lightbox",
+ "label": "t:sections.main-product.settings.image_zoom.options__1.label"
+ },
+ {
+ "value": "hover",
+ "label": "t:sections.main-product.settings.image_zoom.options__2.label"
+ },
+ {
+ "value": "none",
+ "label": "t:sections.main-product.settings.image_zoom.options__3.label"
+ }
+ ],
+ "default": "lightbox",
+ "label": "t:sections.main-product.settings.image_zoom.label",
+ "info": "t:sections.main-product.settings.image_zoom.info"
+ },
+ {
+ "type": "select",
+ "id": "mobile_thumbnails",
+ "options": [
+ {
+ "value": "columns",
+ "label": "t:sections.main-product.settings.mobile_thumbnails.options__1.label"
+ },
+ {
+ "value": "show",
+ "label": "t:sections.main-product.settings.mobile_thumbnails.options__2.label"
+ },
+ {
+ "value": "hide",
+ "label": "t:sections.main-product.settings.mobile_thumbnails.options__3.label"
+ }
+ ],
+ "default": "hide",
+ "label": "t:sections.main-product.settings.mobile_thumbnails.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "hide_variants",
+ "default": false,
+ "label": "t:sections.main-product.settings.hide_variants.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_video_looping",
+ "default": false,
+ "label": "t:sections.main-product.settings.enable_video_looping.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-register.liquid b/sections/main-register.liquid
new file mode 100644
index 0000000..ba2462d
--- /dev/null
+++ b/sections/main-register.liquid
@@ -0,0 +1,174 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+
+
+
+
+
+
+ {{ 'customer.register.title' | t }}
+
+ {%- form 'create_customer', novalidate: 'novalidate' -%}
+ {%- if form.errors -%}
+
+
+ {%- endif -%}
+
+
+
+ {{ 'customer.register.first_name' | t }}
+
+
+
+
+
+ {{ 'customer.register.last_name' | t }}
+
+
+
+
+
+ {{ 'customer.register.email' | t }}
+
+
+ {%- if form.errors contains 'email' -%}
+
+
+
+
+ {{ form.errors.translated_fields.email | capitalize }}
+ {{ form.errors.messages.email }}.
+
+ {%- endif -%}
+
+
+
+ {{ 'customer.register.password' | t }}
+
+
+ {%- if form.errors contains 'password' -%}
+
+
+
+
+ {{ form.errors.translated_fields.password | capitalize }}
+ {{ form.errors.messages.password }}.
+
+ {%- endif -%}
+
+ {{ 'customer.register.submit' | t }}
+
+ {%- endform -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.main-register.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-reset-password.liquid b/sections/main-reset-password.liquid
new file mode 100644
index 0000000..b001175
--- /dev/null
+++ b/sections/main-reset-password.liquid
@@ -0,0 +1,145 @@
+{{ 'customer.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+
+
+
+
+
+
+ {{ 'customer.reset_password.title' | t }}
+
+
+ {{ 'customer.reset_password.subtext' | t }}
+
+ {%- form 'reset_customer_password' -%}
+ {%- if form.errors -%}
+
+
+ {%- endif -%}
+
+
+
+
+ {{ 'customer.reset_password.password' | t }}
+
+ {%- if form.errors contains 'password' -%}
+
+
+
+
+ {{ form.errors.translated_fields.password | capitalize }}
+ {{ form.errors.messages.password }}
+
+ {%- endif -%}
+
+
+
+
+
+ {{ 'customer.reset_password.password_confirm' | t }}
+
+ {%- if form.errors contains 'password_confirmation' -%}
+
+
+
+
+ {{ form.errors.translated_fields.password_confirmation | capitalize }}
+ {{ form.errors.messages.password_confirmation }}
+
+ {%- endif -%}
+
+
+
+ {{ 'customer.reset_password.submit' | t }}
+
+ {%- endform -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.main-reset-password.name",
+ "settings": [
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/main-search.liquid b/sections/main-search.liquid
new file mode 100644
index 0000000..07327df
--- /dev/null
+++ b/sections/main-search.liquid
@@ -0,0 +1,536 @@
+{{ 'template-collection.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'component-search.css' | asset_url | stylesheet_tag }}
+
+{%- if section.settings.enable_filtering or section.settings.enable_sorting -%}
+ {{ 'component-facets.css' | asset_url | stylesheet_tag }}
+
+{%- endif -%}
+
+{% if section.settings.image_shape == 'blob' %}
+ {{ 'mask-blobs.css' | asset_url | stylesheet_tag }}
+{%- endif -%}
+
+
+
+
+
+{%- liquid
+ assign sort_by = search.sort_by | default: search.default_sort_by
+ assign terms = search.terms | escape
+ assign search_url = '?q=' | append: terms | append: '&options%5Bprefix%5D=last&sort_by=' | append: sort_by
+-%}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{% paginate search.results by 24 %}
+
+{% endpaginate %}
+{% if section.settings.image_shape == 'arch' %}
+ {% render 'mask-arch' %}
+{%- endif -%}
+
+{% schema %}
+{
+ "name": "t:sections.main-search.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 5,
+ "step": 1,
+ "default": 4,
+ "label": "t:sections.main-search.settings.columns_desktop.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-search.settings.header__1.content"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.main-search.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.main-search.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.main-search.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.main-search.settings.image_ratio.label"
+ },
+ {
+ "type": "select",
+ "id": "image_shape",
+ "options": [
+ {
+ "value": "default",
+ "label": "t:sections.all.image_shape.options__1.label"
+ },
+ {
+ "value": "arch",
+ "label": "t:sections.all.image_shape.options__2.label"
+ },
+ {
+ "value": "blob",
+ "label": "t:sections.all.image_shape.options__3.label"
+ },
+ {
+ "value": "chevronleft",
+ "label": "t:sections.all.image_shape.options__4.label"
+ },
+ {
+ "value": "chevronright",
+ "label": "t:sections.all.image_shape.options__5.label"
+ },
+ {
+ "value": "diamond",
+ "label": "t:sections.all.image_shape.options__6.label"
+ },
+ {
+ "value": "parallelogram",
+ "label": "t:sections.all.image_shape.options__7.label"
+ },
+ {
+ "value": "round",
+ "label": "t:sections.all.image_shape.options__8.label"
+ }
+ ],
+ "default": "default",
+ "label": "t:sections.all.image_shape.label",
+ "info": "t:sections.all.image_shape.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_secondary_image",
+ "default": false,
+ "label": "t:sections.main-search.settings.show_secondary_image.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_vendor",
+ "default": false,
+ "label": "t:sections.main-search.settings.show_vendor.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_rating",
+ "default": false,
+ "label": "t:sections.main-search.settings.show_rating.label",
+ "info": "t:sections.main-search.settings.show_rating.info"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-collection-product-grid.settings.header__1.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_filtering",
+ "default": true,
+ "label": "t:sections.main-collection-product-grid.settings.enable_filtering.label",
+ "info": "t:sections.main-collection-product-grid.settings.enable_filtering.info"
+ },
+ {
+ "type": "select",
+ "id": "filter_type",
+ "options": [
+ {
+ "value": "horizontal",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.options__1.label"
+ },
+ {
+ "value": "vertical",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.options__2.label"
+ },
+ {
+ "value": "drawer",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.options__3.label"
+ }
+ ],
+ "default": "horizontal",
+ "label": "t:sections.main-collection-product-grid.settings.filter_type.label",
+ "info": "t:sections.main-collection-product-grid.settings.filter_type.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_sorting",
+ "default": true,
+ "label": "t:sections.main-collection-product-grid.settings.enable_sorting.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-search.settings.header__2.content",
+ "info": "t:sections.main-search.settings.header__2.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "article_show_date",
+ "default": true,
+ "label": "t:sections.main-search.settings.article_show_date.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "article_show_author",
+ "default": false,
+ "label": "t:sections.main-search.settings.article_show_author.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.main-search.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "default": "2",
+ "label": "t:sections.main-search.settings.columns_mobile.label",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.main-search.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.main-search.settings.columns_mobile.options__2.label"
+ }
+ ]
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/multicolumn.liquid b/sections/multicolumn.liquid
new file mode 100644
index 0000000..fa21082
--- /dev/null
+++ b/sections/multicolumn.liquid
@@ -0,0 +1,431 @@
+{{ 'section-multicolumn.css' | asset_url | stylesheet_tag }}
+{{ 'component-slider.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign columns_mobile_int = section.settings.columns_mobile | plus: 0
+ assign show_mobile_slider = false
+ if section.settings.swipe_on_mobile and section.blocks.size > columns_mobile_int
+ assign show_mobile_slider = true
+ endif
+-%}
+
+
+
+ {%- unless section.settings.title == blank -%}
+
+ {%- endunless -%}
+
+
+ {%- liquid
+ assign highest_ratio = 0
+ for block in section.blocks
+ if block.settings.image.aspect_ratio > highest_ratio
+ assign highest_ratio = block.settings.image.aspect_ratio
+ endif
+ endfor
+ -%}
+ {%- for block in section.blocks -%}
+ {%- assign empty_column = '' -%}
+ {%- if block.settings.image == blank
+ and block.settings.title == blank
+ and block.settings.text == blank
+ and block.settings.link_label == blank
+ -%}
+ {%- assign empty_column = ' multicolumn-list__item--empty' -%}
+ {%- endif -%}
+
+
+
+ {%- if block.settings.image != blank -%}
+ {% if section.settings.image_ratio == 'adapt' or section.settings.image_ratio == 'circle' %}
+ {% assign spaced_image = true %}
+ {% endif %}
+
+
+ {%- liquid
+ assign number_of_columns = section.settings.columns_desktop
+ assign number_of_columns_mobile = section.settings.columns_mobile
+ assign grid_space_desktop = number_of_columns | minus: 1 | times: settings.spacing_grid_horizontal | plus: 100 | append: 'px'
+ assign grid_space_tablet = number_of_columns_mobile | minus: 1 | times: settings.spacing_grid_horizontal | plus: 100 | append: 'px'
+ assign grid_space_mobile = number_of_columns_mobile | minus: 1 | times: settings.spacing_grid_horizontal | divided_by: 2 | plus: 30 | append: 'px'
+ if section.settings.image_width == 'half'
+ assign image_width = 0.5
+ elsif section.settings.image_width == 'third'
+ assign image_width = 0.33
+ else
+ assign image_width = 1
+ endif
+ -%}
+ {% capture sizes %}
+ (min-width: {{ settings.page_width }}px) calc(({{ settings.page_width }}px - {{ grid_space_desktop }}) * {{ image_width }} / {{ number_of_columns }}),
+ (min-width: 990px) calc((100vw - {{ grid_space_desktop }}) * {{ image_width }} / {{ number_of_columns }}),
+ (min-width: 750px) calc((100vw - {{ grid_space_tablet }}) * {{ image_width }} / {{ number_of_columns_mobile }}),
+ calc((100vw - {{ grid_space_mobile }}) * {{ image_width }} / {{ number_of_columns_mobile }})
+ {% endcapture %}
+ {{
+ block.settings.image
+ | image_url: width: 3200
+ | image_tag:
+ widths: '50, 75, 100, 150, 200, 300, 400, 500, 750, 1000, 1250, 1500, 1750, 2000, 2250, 2500, 2750, 3000, 3200',
+ sizes: sizes,
+ class: 'multicolumn-card__image'
+ }}
+
+
+ {%- endif -%}
+
+
+
+ {%- endfor -%}
+
+
+ {%- if show_mobile_slider -%}
+
+ {%- endif -%}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.multicolumn.name",
+ "class": "section",
+ "tag": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "title",
+ "default": "Multicolumn",
+ "label": "t:sections.multicolumn.settings.title.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "select",
+ "id": "image_width",
+ "options": [
+ {
+ "value": "third",
+ "label": "t:sections.multicolumn.settings.image_width.options__1.label"
+ },
+ {
+ "value": "half",
+ "label": "t:sections.multicolumn.settings.image_width.options__2.label"
+ },
+ {
+ "value": "full",
+ "label": "t:sections.multicolumn.settings.image_width.options__3.label"
+ }
+ ],
+ "default": "full",
+ "label": "t:sections.multicolumn.settings.image_width.label"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.multicolumn.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.multicolumn.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.multicolumn.settings.image_ratio.options__3.label"
+ },
+ {
+ "value": "circle",
+ "label": "t:sections.multicolumn.settings.image_ratio.options__4.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.multicolumn.settings.image_ratio.label"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 6,
+ "step": 1,
+ "default": 3,
+ "label": "t:sections.multicolumn.settings.columns_desktop.label"
+ },
+ {
+ "type": "select",
+ "id": "column_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.multicolumn.settings.column_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.multicolumn.settings.column_alignment.options__2.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.multicolumn.settings.column_alignment.label"
+ },
+ {
+ "type": "select",
+ "id": "background_style",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.multicolumn.settings.background_style.options__1.label"
+ },
+ {
+ "value": "primary",
+ "label": "t:sections.multicolumn.settings.background_style.options__2.label"
+ }
+ ],
+ "default": "primary",
+ "label": "t:sections.multicolumn.settings.background_style.label"
+ },
+ {
+ "type": "text",
+ "id": "button_label",
+ "default": "Button label",
+ "label": "t:sections.multicolumn.settings.button_label.label"
+ },
+ {
+ "type": "url",
+ "id": "button_link",
+ "label": "t:sections.multicolumn.settings.button_link.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.multicolumn.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.multicolumn.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.multicolumn.settings.columns_mobile.options__2.label"
+ }
+ ],
+ "default": "1",
+ "label": "t:sections.multicolumn.settings.columns_mobile.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "swipe_on_mobile",
+ "default": false,
+ "label": "t:sections.multicolumn.settings.swipe_on_mobile.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "blocks": [
+ {
+ "type": "column",
+ "name": "t:sections.multicolumn.blocks.column.name",
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.multicolumn.blocks.column.settings.image.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "title",
+ "default": "Column",
+ "label": "t:sections.multicolumn.blocks.column.settings.title.label"
+ },
+ {
+ "type": "richtext",
+ "id": "text",
+ "default": "Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.
",
+ "label": "t:sections.multicolumn.blocks.column.settings.text.label"
+ },
+ {
+ "type": "text",
+ "id": "link_label",
+ "label": "t:sections.multicolumn.blocks.column.settings.link_label.label"
+ },
+ {
+ "type": "url",
+ "id": "link",
+ "label": "t:sections.multicolumn.blocks.column.settings.link.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.multicolumn.presets.name",
+ "blocks": [
+ {
+ "type": "column"
+ },
+ {
+ "type": "column"
+ },
+ {
+ "type": "column"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/multirow.liquid b/sections/multirow.liquid
new file mode 100644
index 0000000..d49ed6f
--- /dev/null
+++ b/sections/multirow.liquid
@@ -0,0 +1,401 @@
+{{ 'component-image-with-text.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ if section.settings.image_layout contains 'right'
+ assign odd_class = ' image-with-text__grid--reverse'
+ else
+ assign even_class = ' image-with-text__grid--reverse'
+ endif
+
+ if section.settings.row_color_scheme == section.settings.section_color_scheme
+ assign no_content_background = true
+ endif
+
+ if settings.text_boxes_shadow_opacity == 0 and settings.text_boxes_border_thickness == 0 or settings.text_boxes_border_opacity == 0
+ assign no_content_styles = true
+ endif
+
+ if settings.text_boxes_border_thickness > 0 and settings.text_boxes_border_opacity > 0 and settings.media_border_thickness > 0 and settings.media_border_opacity > 0
+ assign borders_class = ' collapse-borders'
+ endif
+
+ if no_content_background and no_content_styles
+ assign padding_class = ' collapse-padding'
+ endif
+
+ unless no_content_background and no_content_styles
+ assign corners_class = ' collapse-corners'
+ endunless
+-%}
+
+
+
+ {%- for block in section.blocks -%}
+
+
+
+
+ {%- if block.settings.image != blank -%}
+ {%- capture sizes -%}
+ (min-width: {{ settings.page_width }}px) {{ settings.page_width | minus: 100 | divided_by: 2 }}px,
+ (min-width: 750px) calc((100vw - 130px) / 2), calc((100vw - 50px) / 2)
+ {%- endcapture -%}
+ {{
+ block.settings.image
+ | image_url: width: 1500
+ | image_tag: sizes: sizes, widths: '165, 360, 535, 750, 1070, 1500'
+ }}
+ {%- else -%}
+ {{ 'detailed-apparel-1' | placeholder_svg_tag: 'placeholder-svg' }}
+ {%- endif -%}
+
+
+
+
+ {%- if block.settings.caption -%}
+
+ {{ block.settings.caption | escape }}
+
+ {%- endif -%}
+ {%- if block.settings.heading -%}
+
+ {{ block.settings.heading }}
+
+ {%- endif -%}
+ {%- if block.settings.text -%}
+
{{ block.settings.text }}
+ {%- endif -%}
+ {%- if block.settings.button_label != blank -%}
+
+ {{ block.settings.button_label | escape }}
+
+ {%- endif -%}
+
+
+
+
+ {%- endfor -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.multirow.name",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "select",
+ "id": "image_height",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.multirow.settings.image_height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.multirow.settings.image_height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.multirow.settings.image_height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.multirow.settings.image_height.options__4.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.multirow.settings.image_height.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_image_width",
+ "options": [
+ {
+ "value": "small",
+ "label": "t:sections.multirow.settings.desktop_image_width.options__1.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.multirow.settings.desktop_image_width.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.multirow.settings.desktop_image_width.options__3.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.multirow.settings.desktop_image_width.label",
+ "info": "t:sections.multirow.settings.desktop_image_width.info"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.multirow.settings.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.multirow.settings.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.multirow.settings.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.multirow.settings.heading_size.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "body",
+ "label": "t:sections.multirow.settings.text_style.options__1.label"
+ },
+ {
+ "value": "subtitle",
+ "label": "t:sections.multirow.settings.text_style.options__2.label"
+ }
+ ],
+ "default": "body",
+ "label": "t:sections.multirow.settings.text_style.label"
+ },
+ {
+ "type": "select",
+ "id": "button_style",
+ "options": [
+ {
+ "value": "primary",
+ "label": "t:sections.multirow.settings.button_style.options__1.label"
+ },
+ {
+ "value": "secondary",
+ "label": "t:sections.multirow.settings.button_style.options__2.label"
+ }
+ ],
+ "default": "secondary",
+ "label": "t:sections.multirow.settings.button_style.label"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_position",
+ "options": [
+ {
+ "value": "top",
+ "label": "t:sections.multirow.settings.desktop_content_position.options__1.label"
+ },
+ {
+ "value": "middle",
+ "label": "t:sections.multirow.settings.desktop_content_position.options__2.label"
+ },
+ {
+ "value": "bottom",
+ "label": "t:sections.multirow.settings.desktop_content_position.options__3.label"
+ }
+ ],
+ "default": "middle",
+ "label": "t:sections.multirow.settings.desktop_content_position.label",
+ "info": "t:sections.multirow.settings.desktop_content_position.info"
+ },
+ {
+ "type": "select",
+ "id": "desktop_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.multirow.settings.desktop_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.multirow.settings.desktop_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.multirow.settings.desktop_content_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.multirow.settings.desktop_content_alignment.label"
+ },
+ {
+ "type": "select",
+ "id": "image_layout",
+ "options": [
+ {
+ "value": "alternate-left",
+ "label": "t:sections.multirow.settings.image_layout.options__1.label"
+ },
+ {
+ "value": "alternate-right",
+ "label": "t:sections.multirow.settings.image_layout.options__2.label"
+ },
+ {
+ "value": "align-left",
+ "label": "t:sections.multirow.settings.image_layout.options__3.label"
+ },
+ {
+ "value": "align-right",
+ "label": "t:sections.multirow.settings.image_layout.options__4.label"
+ }
+ ],
+ "default": "alternate-left",
+ "label": "t:sections.multirow.settings.image_layout.label",
+ "info": "t:sections.multirow.settings.image_layout.info"
+ },
+ {
+ "type": "color_scheme",
+ "id": "section_color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "color_scheme",
+ "id": "row_color_scheme",
+ "label": "t:sections.multirow.settings.container_color_scheme.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.multirow.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "mobile_content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.multirow.settings.mobile_content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.multirow.settings.mobile_content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.multirow.settings.mobile_content_alignment.options__3.label"
+ }
+ ],
+ "default": "left",
+ "label": "t:sections.multirow.settings.mobile_content_alignment.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "blocks": [
+ {
+ "type": "row",
+ "name": "t:sections.multirow.blocks.row.name",
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.multirow.blocks.row.settings.image.label"
+ },
+ {
+ "type": "text",
+ "id": "caption",
+ "default": "Caption",
+ "label": "t:sections.multirow.blocks.row.settings.caption.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Row",
+ "label": "t:sections.multirow.blocks.row.settings.heading.label"
+ },
+ {
+ "type": "richtext",
+ "id": "text",
+ "default": "Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.
",
+ "label": "t:sections.multirow.blocks.row.settings.text.label"
+ },
+ {
+ "type": "text",
+ "id": "button_label",
+ "default": "Button label",
+ "label": "t:sections.multirow.blocks.row.settings.button_label.label"
+ },
+ {
+ "type": "url",
+ "id": "button_link",
+ "label": "t:sections.multirow.blocks.row.settings.button_link.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.multirow.presets.name",
+ "blocks": [
+ {
+ "type": "row"
+ },
+ {
+ "type": "row"
+ },
+ {
+ "type": "row"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/newsletter.liquid b/sections/newsletter.liquid
new file mode 100644
index 0000000..b4988a3
--- /dev/null
+++ b/sections/newsletter.liquid
@@ -0,0 +1,240 @@
+{{ 'component-newsletter.css' | asset_url | stylesheet_tag }}
+{{ 'newsletter-section.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+ {%- for block in section.blocks -%}
+ {%- case block.type -%}
+ {%- when '@app' -%}
+ {% render block %}
+ {%- when 'heading' -%}
+
+ {{ block.settings.heading }}
+
+ {%- when 'paragraph' -%}
+
+ {{ block.settings.text }}
+
+ {%- when 'email_form' -%}
+
+ {% form 'customer', class: 'newsletter-form' %}
+
+
+ {%- if form.posted_successfully? -%}
+
+ {%- endif -%}
+ {% endform %}
+
+ {%- endcase -%}
+ {%- endfor -%}
+
+
+
+{% schema %}
+{
+ "name": "t:sections.newsletter.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header"]
+ },
+ "settings": [
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "checkbox",
+ "id": "full_width",
+ "default": true,
+ "label": "t:sections.newsletter.settings.full_width.label"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.newsletter.settings.paragraph.content"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 40
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 52
+ }
+ ],
+ "blocks": [
+ {
+ "type": "heading",
+ "name": "t:sections.newsletter.blocks.heading.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Subscribe to our emails",
+ "label": "t:sections.newsletter.blocks.heading.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ }
+ ]
+ },
+ {
+ "type": "paragraph",
+ "name": "t:sections.newsletter.blocks.paragraph.name",
+ "limit": 1,
+ "settings": [
+ {
+ "type": "richtext",
+ "id": "text",
+ "default": "Be the first to know about new collections and exclusive offers.
",
+ "label": "t:sections.newsletter.blocks.paragraph.settings.paragraph.label"
+ }
+ ]
+ },
+ {
+ "type": "email_form",
+ "name": "t:sections.newsletter.blocks.email_form.name",
+ "limit": 1
+ },
+ {
+ "type": "@app"
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.newsletter.presets.name",
+ "blocks": [
+ {
+ "type": "heading"
+ },
+ {
+ "type": "paragraph"
+ },
+ {
+ "type": "email_form"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/page.liquid b/sections/page.liquid
new file mode 100644
index 0000000..9f61c0e
--- /dev/null
+++ b/sections/page.liquid
@@ -0,0 +1,109 @@
+{{ 'section-main-page.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+ {%- if section.settings.page.title != blank -%}
+ {{ section.settings.page.title | escape }}
+ {%- else -%}
+ {{ 'sections.page.title' | t }}
+ {%- endif -%}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.page.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "page",
+ "id": "page",
+ "label": "t:sections.page.settings.page.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.page.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/pickup-availability.liquid b/sections/pickup-availability.liquid
new file mode 100644
index 0000000..840e1cf
--- /dev/null
+++ b/sections/pickup-availability.liquid
@@ -0,0 +1,108 @@
+{% comment %}theme-check-disable UndefinedObject{% endcomment %}
+{%- assign pick_up_availabilities = product_variant.store_availabilities | where: 'pick_up_enabled', true -%}
+
+{%- if pick_up_availabilities.size > 0 -%}
+
+ {%- liquid
+ assign closest_location = pick_up_availabilities.first
+
+ if closest_location.available
+ render 'icon-tick'
+ endif
+ -%}
+
+
+ {%- if closest_location.available -%}
+
+ {{
+ 'products.product.pickup_availability.pick_up_available_at_html'
+ | t: location_name: closest_location.location.name
+ }}
+
+
{{ closest_location.pick_up_time }}
+
+ {%- if pick_up_availabilities.size == 1 -%}
+ {{ 'products.product.pickup_availability.view_store_info' | t }}
+ {%- else -%}
+ {{ 'products.product.pickup_availability.check_other_stores' | t }}
+ {%- endif -%}
+
+ {%- else -%}
+
+ {{
+ 'products.product.pickup_availability.pick_up_unavailable_at_html'
+ | t: location_name: closest_location.location.name
+ }}
+
+ {%- if pick_up_availabilities.size > 1 -%}
+
+ {{ 'products.product.pickup_availability.check_other_stores' | t }}
+
+ {%- endif -%}
+ {%- endif -%}
+
+
+
+
+
+
+ {%- unless product_variant.product.has_only_default_variant -%}
+
+ {%- for product_option in product_variant.product.options_with_values -%}
+ {{ product_option.name | escape }}:
+ {%- for value in product_option.values -%}
+ {%- if product_option.selected_value == value -%}
+ {{ value | escape }}
+ {%- endif -%}
+ {%- endfor -%}
+ {%- unless forloop.last -%}, {%- endunless -%}
+ {%- endfor -%}
+
+ {%- endunless -%}
+
+
+
+{%- endif -%}
diff --git a/sections/predictive-search.liquid b/sections/predictive-search.liquid
new file mode 100644
index 0000000..cd36889
--- /dev/null
+++ b/sections/predictive-search.liquid
@@ -0,0 +1,260 @@
+{% comment %}theme-check-disable ImgLazyLoading{% endcomment %}
+{%- if predictive_search.performed -%}
+ {% assign first_column_results_size = predictive_search.resources.queries.size
+ | plus: predictive_search.resources.collections.size
+ | plus: predictive_search.resources.pages.size
+ | plus: predictive_search.resources.articles.size
+ %}
+
+ {%- if first_column_results_size > 0 or predictive_search.resources.products.size > 0 -%}
+
+ {%- endif -%}
+ {%- if first_column_results_size > 0 -%}
+
+ {%- endif -%}
+ {%- if predictive_search.resources.queries.size > 0 or predictive_search.resources.collections.size > 0 -%}
+
+
+ {{- 'templates.search.suggestions' | t -}}
+
+
+
+ {%- endif -%}
+ {%- if predictive_search.resources.articles.size > 0 or predictive_search.resources.pages.size > 0 -%}
+
+
+ {{- 'templates.search.pages' | t -}}
+
+
+ {%- for page in predictive_search.resources.pages -%}
+
+
+
+
+
+ {%- endfor -%}
+ {%- for article in predictive_search.resources.articles -%}
+
+
+
+
+
+ {%- endfor -%}
+
+
+ {%- endif -%}
+ {%- if first_column_results_size > 0 -%}
+
+ {%- endif -%}
+ {%- if predictive_search.resources.products.size > 0
+ or predictive_search.resources.articles.size > 0
+ or predictive_search.resources.pages.size > 0
+ -%}
+
+ {%- if predictive_search.resources.products.size > 0 -%}
+
+
+ {{- 'templates.search.products' | t -}}
+
+
+
+ {%- endif -%}
+ {%- if predictive_search.resources.articles.size > 0 or predictive_search.resources.pages.size > 0 -%}
+
+
+ {{- 'templates.search.pages' | t -}}
+
+
+ {%- for page in predictive_search.resources.pages -%}
+
+
+
+
+
+ {%- endfor -%}
+ {%- for article in predictive_search.resources.articles -%}
+
+
+
+
+
+ {%- endfor -%}
+
+
+ {%- endif -%}
+
+ {%- endif -%}
+ {%- if first_column_results_size > 0 or predictive_search.resources.products.size > 0 -%}
+
+ {%- endif -%}
+
+ {%- render 'loading-spinner', class: 'predictive-search__loading-state' -%}
+
+
+
+
+ {{- 'templates.search.search_for' | t: terms: predictive_search.terms -}}
+
+ {% render 'icon-arrow' %}
+
+
+
+
+
+ {% liquid
+ assign total_results = predictive_search.resources.products.size | plus: first_column_results_size
+ if total_results == 0
+ echo 'templates.search.no_results' | t: terms: predictive_search.terms
+ else
+ echo 'templates.search.results_with_count' | t: count: total_results | append: ': '
+ if predictive_search.resources.queries.size > 0
+ assign count = predictive_search.resources.queries.size | plus: predictive_search.resources.collections.size
+ echo 'templates.search.results_suggestions_with_count' | t: count: count | append: ', '
+ endif
+ if predictive_search.resources.pages.size > 0
+ assign count = predictive_search.resources.pages.size | plus: predictive_search.resources.articles.size
+ echo 'templates.search.results_pages_with_count' | t: count: count | append: ', '
+ endif
+ if predictive_search.resources.products.size > 0
+ echo 'templates.search.results_products_with_count' | t: count: predictive_search.resources.products.size
+ endif
+ endif
+ %}
+
+{%- endif -%}
diff --git a/sections/quick-order-list.liquid b/sections/quick-order-list.liquid
new file mode 100644
index 0000000..1a78b2b
--- /dev/null
+++ b/sections/quick-order-list.liquid
@@ -0,0 +1,330 @@
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'quick-order-list.css' | asset_url | stylesheet_tag }}
+{{ 'quantity-popover.css' | asset_url | stylesheet_tag }}
+
+
+
+
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{% comment %} TODO: enable theme-check once `line_items_for` is accepted as valid filter {% endcomment %}
+{% # theme-check-disable %}
+{%- assign items_in_cart = cart | line_items_for: product | sum: 'quantity' -%}
+{% # theme-check-enable %}
+
+
+
+
+
+ {%- if product.has_only_default_variant or product.variants.size == 1 -%}
+
+ {% comment %} Populated by JS {% endcomment %}
+
+ {%- else -%}
+
+
+
+
+
+ {%- render 'icon-checkmark' -%}
+
+
+
+ {% comment %} Populated by JS {% endcomment %}
+
+
+
+
+ {{ items_in_cart }}
+
+
{{ 'sections.quick_order_list.total_items' | t }}
+
+
+
+
+ {{ 'sections.cart.update' | t }}
+
+
+
+
+ {% comment %} TODO: enable theme-check once `line_items_for` is accepted as valid filter {% endcomment %}
+ {% # theme-check-disable %}
+ {{ cart | line_items_for: product | sum: 'original_line_price' | money }}
+ {% # theme-check-enable %}
+
+
{{ 'sections.quick_order_list.product_total' | t }}
+
+
+ {%- if cart.taxes_included and shop.shipping_policy.body != blank -%}
+ {{ 'sections.cart.taxes_included_and_shipping_policy_html' | t: link: shop.shipping_policy.url }}
+ {%- elsif cart.taxes_included -%}
+ {{ 'sections.cart.taxes_included_but_shipping_at_checkout' | t }}
+ {%- elsif shop.shipping_policy.body != blank -%}
+ {{ 'sections.cart.taxes_and_shipping_policy_at_checkout_html' | t: link: shop.shipping_policy.url }}
+ {%- else -%}
+ {{ 'sections.cart.taxes_and_shipping_at_checkout' | t }}
+ {%- endif -%}
+
+
+
+
+
+ {%- render 'icon-checkmark' -%}
+
+
+
+ {% comment %} Populated by JS {% endcomment %}
+
+
+
+
+
+ {{ 'sections.quick_order_list.remove_all_items_confirmation' | t: quantity: items_in_cart }}
+
+
+
+ {{- 'sections.quick_order_list.remove_all' | t -}}
+
+
+
+
+ {{- 'sections.quick_order_list.cancel' | t -}}
+
+
+
+
+ {%- endif -%}
+
+
+
+
+
+
+
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.quick-order-list.name",
+ "limit": 1,
+ "enabled_on": {
+ "templates": ["product"]
+ },
+ "settings": [
+ {
+ "type": "checkbox",
+ "id": "show_image",
+ "default": false,
+ "label": "t:sections.quick-order-list.settings.show_image.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_sku",
+ "default": false,
+ "label": "t:sections.quick-order-list.settings.show_sku.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.quick-order-list.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/related-products.liquid b/sections/related-products.liquid
new file mode 100644
index 0000000..610e0d3
--- /dev/null
+++ b/sections/related-products.liquid
@@ -0,0 +1,247 @@
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+{{ 'component-price.css' | asset_url | stylesheet_tag }}
+{{ 'section-related-products.css' | asset_url | stylesheet_tag }}
+
+{% if section.settings.image_shape == 'blob' %}
+ {{ 'mask-blobs.css' | asset_url | stylesheet_tag }}
+{%- endif -%}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+ {% if recommendations.performed and recommendations.products_count > 0 %}
+
+ {{ section.settings.heading }}
+
+
+ {% for recommendation in recommendations.products %}
+
+ {% render 'card-product',
+ card_product: recommendation,
+ media_aspect_ratio: section.settings.image_ratio,
+ image_shape: section.settings.image_shape,
+ show_secondary_image: section.settings.show_secondary_image,
+ show_vendor: section.settings.show_vendor,
+ show_rating: section.settings.show_rating
+ %}
+
+ {% endfor %}
+
+ {% endif %}
+
+ {% if section.settings.image_shape == 'arch' %}
+ {% render 'mask-arch' %}
+ {%- endif -%}
+
+
+{% schema %}
+{
+ "name": "t:sections.related-products.name",
+ "tag": "section",
+ "class": "section",
+ "settings": [
+ {
+ "type": "paragraph",
+ "content": "t:sections.related-products.settings.paragraph__1.content"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "You may also like",
+ "label": "t:sections.related-products.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "range",
+ "id": "products_to_show",
+ "min": 2,
+ "max": 10,
+ "step": 1,
+ "default": 4,
+ "label": "t:sections.related-products.settings.products_to_show.label"
+ },
+ {
+ "type": "range",
+ "id": "columns_desktop",
+ "min": 1,
+ "max": 5,
+ "step": 1,
+ "default": 4,
+ "label": "t:sections.related-products.settings.columns_desktop.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "info": "t:sections.all.colors.has_cards_info",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.related-products.settings.header__2.content"
+ },
+ {
+ "type": "select",
+ "id": "image_ratio",
+ "options": [
+ {
+ "value": "adapt",
+ "label": "t:sections.related-products.settings.image_ratio.options__1.label"
+ },
+ {
+ "value": "portrait",
+ "label": "t:sections.related-products.settings.image_ratio.options__2.label"
+ },
+ {
+ "value": "square",
+ "label": "t:sections.related-products.settings.image_ratio.options__3.label"
+ }
+ ],
+ "default": "adapt",
+ "label": "t:sections.related-products.settings.image_ratio.label"
+ },
+ {
+ "type": "select",
+ "id": "image_shape",
+ "options": [
+ {
+ "value": "default",
+ "label": "t:sections.all.image_shape.options__1.label"
+ },
+ {
+ "value": "arch",
+ "label": "t:sections.all.image_shape.options__2.label"
+ },
+ {
+ "value": "blob",
+ "label": "t:sections.all.image_shape.options__3.label"
+ },
+ {
+ "value": "chevronleft",
+ "label": "t:sections.all.image_shape.options__4.label"
+ },
+ {
+ "value": "chevronright",
+ "label": "t:sections.all.image_shape.options__5.label"
+ },
+ {
+ "value": "diamond",
+ "label": "t:sections.all.image_shape.options__6.label"
+ },
+ {
+ "value": "parallelogram",
+ "label": "t:sections.all.image_shape.options__7.label"
+ },
+ {
+ "value": "round",
+ "label": "t:sections.all.image_shape.options__8.label"
+ }
+ ],
+ "default": "default",
+ "label": "t:sections.all.image_shape.label",
+ "info": "t:sections.all.image_shape.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_secondary_image",
+ "default": false,
+ "label": "t:sections.related-products.settings.show_secondary_image.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_vendor",
+ "default": false,
+ "label": "t:sections.related-products.settings.show_vendor.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_rating",
+ "default": false,
+ "label": "t:sections.related-products.settings.show_rating.label",
+ "info": "t:sections.related-products.settings.show_rating.info"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.related-products.settings.header_mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "columns_mobile",
+ "default": "2",
+ "label": "t:sections.related-products.settings.columns_mobile.label",
+ "options": [
+ {
+ "value": "1",
+ "label": "t:sections.related-products.settings.columns_mobile.options__1.label"
+ },
+ {
+ "value": "2",
+ "label": "t:sections.related-products.settings.columns_mobile.options__2.label"
+ }
+ ]
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/rich-text.liquid b/sections/rich-text.liquid
new file mode 100644
index 0000000..3210b5e
--- /dev/null
+++ b/sections/rich-text.liquid
@@ -0,0 +1,344 @@
+{{ 'section-rich-text.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+
+
+
+
+ {%- for block in section.blocks -%}
+ {%- case block.type -%}
+ {%- when 'heading' -%}
+
+ {{ block.settings.heading }}
+
+ {%- when 'caption' -%}
+
+ {{ block.settings.caption | escape }}
+
+ {%- when 'text' -%}
+
+ {{ block.settings.text }}
+
+ {%- when 'button' -%}
+
+ {%- endcase -%}
+ {%- endfor -%}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.rich-text.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "select",
+ "id": "desktop_content_position",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.rich-text.settings.desktop_content_position.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.rich-text.settings.desktop_content_position.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.rich-text.settings.desktop_content_position.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.rich-text.settings.desktop_content_position.label",
+ "info": "t:sections.rich-text.settings.desktop_content_position.info"
+ },
+ {
+ "type": "select",
+ "id": "content_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.rich-text.settings.content_alignment.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.rich-text.settings.content_alignment.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.rich-text.settings.content_alignment.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.rich-text.settings.content_alignment.label"
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "checkbox",
+ "id": "full_width",
+ "default": true,
+ "label": "t:sections.rich-text.settings.full_width.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 40
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 52
+ }
+ ],
+ "blocks": [
+ {
+ "type": "heading",
+ "name": "t:sections.rich-text.blocks.heading.name",
+ "limit": 3,
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Talk about your brand",
+ "label": "t:sections.rich-text.blocks.heading.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ },
+ {
+ "value": "hxl",
+ "label": "t:sections.all.heading_size.options__4.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ }
+ ]
+ },
+ {
+ "type": "caption",
+ "name": "t:sections.rich-text.blocks.caption.name",
+ "limit": 3,
+ "settings": [
+ {
+ "type": "text",
+ "id": "caption",
+ "default": "Add a tagline",
+ "label": "t:sections.rich-text.blocks.caption.settings.text.label"
+ },
+ {
+ "type": "select",
+ "id": "text_style",
+ "options": [
+ {
+ "value": "subtitle",
+ "label": "t:sections.rich-text.blocks.caption.settings.text_style.options__1.label"
+ },
+ {
+ "value": "caption-with-letter-spacing",
+ "label": "t:sections.rich-text.blocks.caption.settings.text_style.options__2.label"
+ }
+ ],
+ "default": "caption-with-letter-spacing",
+ "label": "t:sections.rich-text.blocks.caption.settings.text_style.label"
+ },
+ {
+ "type": "select",
+ "id": "text_size",
+ "options": [
+ {
+ "value": "small",
+ "label": "t:sections.rich-text.blocks.caption.settings.caption_size.options__1.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.rich-text.blocks.caption.settings.caption_size.options__2.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.rich-text.blocks.caption.settings.caption_size.options__3.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.rich-text.blocks.caption.settings.caption_size.label"
+ }
+ ]
+ },
+ {
+ "type": "text",
+ "name": "t:sections.rich-text.blocks.text.name",
+ "limit": 3,
+ "settings": [
+ {
+ "type": "richtext",
+ "id": "text",
+ "default": "Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.
",
+ "label": "t:sections.rich-text.blocks.text.settings.text.label"
+ }
+ ]
+ },
+ {
+ "type": "button",
+ "name": "t:sections.rich-text.blocks.buttons.name",
+ "limit": 2,
+ "settings": [
+ {
+ "type": "text",
+ "id": "button_label",
+ "default": "Button label",
+ "label": "t:sections.rich-text.blocks.buttons.settings.button_label_1.label",
+ "info": "t:sections.rich-text.blocks.buttons.settings.button_label_1.info"
+ },
+ {
+ "type": "url",
+ "id": "button_link",
+ "label": "t:sections.rich-text.blocks.buttons.settings.button_link_1.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "button_style_secondary",
+ "default": false,
+ "label": "t:sections.rich-text.blocks.buttons.settings.button_style_secondary_1.label"
+ },
+ {
+ "type": "text",
+ "id": "button_label_2",
+ "label": "t:sections.rich-text.blocks.buttons.settings.button_label_2.label",
+ "info": "t:sections.rich-text.blocks.buttons.settings.button_label_2.info"
+ },
+ {
+ "type": "url",
+ "id": "button_link_2",
+ "label": "t:sections.rich-text.blocks.buttons.settings.button_link_2.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "button_style_secondary_2",
+ "default": false,
+ "label": "t:sections.rich-text.blocks.buttons.settings.button_style_secondary_2.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.rich-text.presets.name",
+ "blocks": [
+ {
+ "type": "heading"
+ },
+ {
+ "type": "text"
+ },
+ {
+ "type": "button"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/slideshow.liquid b/sections/slideshow.liquid
new file mode 100644
index 0000000..a2d048b
--- /dev/null
+++ b/sections/slideshow.liquid
@@ -0,0 +1,594 @@
+{{ 'section-image-banner.css' | asset_url | stylesheet_tag }}
+{{ 'component-slider.css' | asset_url | stylesheet_tag }}
+{{ 'component-slideshow.css' | asset_url | stylesheet_tag }}
+
+{%- if section.settings.slide_height == 'adapt_image' and section.blocks.first.settings.image != blank -%}
+ {%- style -%}
+ @media screen and (max-width: 749px) {
+ #Slider-{{ section.id }}::before,
+ #Slider-{{ section.id }} .media::before,
+ #Slider-{{ section.id }}:not(.banner--mobile-bottom) .banner__content::before {
+ padding-bottom: {{ 1 | divided_by: section.blocks.first.settings.image.aspect_ratio | times: 100 }}%;
+ content: '';
+ display: block;
+ }
+ }
+
+ @media screen and (min-width: 750px) {
+ #Slider-{{ section.id }}::before,
+ #Slider-{{ section.id }} .media::before {
+ padding-bottom: {{ 1 | divided_by: section.blocks.first.settings.image.aspect_ratio | times: 100 }}%;
+ content: '';
+ display: block;
+ }
+ }
+ {%- endstyle -%}
+{%- endif -%}
+
+
+ {%- if section.settings.auto_rotate and section.blocks.size > 1 -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- if section.settings.slider_visual == 'counter' -%}
+
1
+
/
+
{{ 'general.slider.of' | t }}
+
{{ section.blocks.size }}
+ {%- else -%}
+
+ {%- for block in section.blocks -%}
+
+ {%- if section.settings.slider_visual == 'numbers' -%}
+ {{ forloop.index -}}
+ {%- else -%}
+
+ {%- endif -%}
+
+ {%- endfor -%}
+
+ {%- endif -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- if section.settings.auto_rotate -%}
+
+ {%- render 'icon-pause' -%}
+ {%- render 'icon-play' -%}
+
+ {%- endif -%}
+
+
+
+
+ {%- endif -%}
+
+
+ {%- for block in section.blocks -%}
+
+
+
+ {%- if block.settings.image -%}
+ {%- liquid
+ assign height = block.settings.image.width | divided_by: block.settings.image.aspect_ratio | round
+ if section.settings.image_behavior == 'ambient'
+ assign sizes = '120vw'
+ assign widths = '450, 660, 900, 1320, 1800, 2136, 2400, 3600, 7680'
+ else
+ assign sizes = '100vw'
+ assign widths = '375, 550, 750, 1100, 1500, 1780, 2000, 3000, 3840'
+ endif
+ assign fetch_priority = 'auto'
+ if section.index == 1
+ assign fetch_priority = 'high'
+ endif
+ -%}
+ {%- if forloop.first %}
+ {{
+ block.settings.image
+ | image_url: width: 3840
+ | image_tag: height: height, sizes: sizes, widths: widths, fetchpriority: fetch_priority
+ }}
+ {%- else -%}
+ {{
+ block.settings.image
+ | image_url: width: 3840
+ | image_tag: loading: 'lazy', height: height, sizes: sizes, widths: widths
+ }}
+ {%- endif -%}
+ {%- else -%}
+ {%- assign placeholder_slide = forloop.index | modulo: 2 -%}
+ {%- if placeholder_slide == 1 -%}
+ {{ 'hero-apparel-2' | placeholder_svg_tag: 'placeholder-svg' }}
+ {%- else -%}
+ {{ 'hero-apparel-1' | placeholder_svg_tag: 'placeholder-svg' }}
+ {%- endif -%}
+ {%- endif -%}
+
+
+
+ {%- if block.settings.heading != blank -%}
+
+ {{ block.settings.heading }}
+
+ {%- endif -%}
+ {%- if block.settings.subheading != blank -%}
+
+
{{ block.settings.subheading }}
+
+ {%- endif -%}
+ {%- if block.settings.button_label != blank -%}
+
+ {%- endif -%}
+
+
+
+ {%- endfor -%}
+
+
+ {%- if section.blocks.size > 1 and section.settings.auto_rotate == false -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- if section.settings.slider_visual == 'counter' -%}
+
1
+
/
+
{{ 'general.slider.of' | t }}
+
{{ section.blocks.size }}
+ {%- else -%}
+
+ {%- for block in section.blocks -%}
+
+ {%- if section.settings.slider_visual == 'numbers' -%}
+ {{ forloop.index -}}
+ {%- else -%}
+
+ {%- endif -%}
+
+ {%- endfor -%}
+
+ {%- endif -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- if section.settings.auto_rotate -%}
+
+ {%- render 'icon-pause' -%}
+ {%- render 'icon-play' -%}
+
+ {%- endif -%}
+
+
+
+
+ {%- endif -%}
+
+
+{%- if request.design_mode -%}
+
+{%- endif -%}
+
+{% schema %}
+{
+ "name": "t:sections.slideshow.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "select",
+ "id": "layout",
+ "options": [
+ {
+ "value": "full_bleed",
+ "label": "t:sections.slideshow.settings.layout.options__1.label"
+ },
+ {
+ "value": "grid",
+ "label": "t:sections.slideshow.settings.layout.options__2.label"
+ }
+ ],
+ "default": "full_bleed",
+ "label": "t:sections.slideshow.settings.layout.label"
+ },
+ {
+ "type": "select",
+ "id": "slide_height",
+ "options": [
+ {
+ "value": "adapt_image",
+ "label": "t:sections.slideshow.settings.slide_height.options__1.label"
+ },
+ {
+ "value": "small",
+ "label": "t:sections.slideshow.settings.slide_height.options__2.label"
+ },
+ {
+ "value": "medium",
+ "label": "t:sections.slideshow.settings.slide_height.options__3.label"
+ },
+ {
+ "value": "large",
+ "label": "t:sections.slideshow.settings.slide_height.options__4.label"
+ }
+ ],
+ "default": "medium",
+ "label": "t:sections.slideshow.settings.slide_height.label"
+ },
+ {
+ "type": "select",
+ "id": "slider_visual",
+ "options": [
+ {
+ "value": "dots",
+ "label": "t:sections.slideshow.settings.slider_visual.options__2.label"
+ },
+ {
+ "value": "counter",
+ "label": "t:sections.slideshow.settings.slider_visual.options__1.label"
+ },
+ {
+ "value": "numbers",
+ "label": "t:sections.slideshow.settings.slider_visual.options__3.label"
+ }
+ ],
+ "default": "counter",
+ "label": "t:sections.slideshow.settings.slider_visual.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "auto_rotate",
+ "label": "t:sections.slideshow.settings.auto_rotate.label",
+ "default": false
+ },
+ {
+ "type": "range",
+ "id": "change_slides_speed",
+ "min": 3,
+ "max": 9,
+ "step": 2,
+ "unit": "s",
+ "label": "t:sections.slideshow.settings.change_slides_speed.label",
+ "default": 5
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.animation.content"
+ },
+ {
+ "type": "select",
+ "id": "image_behavior",
+ "options": [
+ {
+ "value": "none",
+ "label": "t:sections.all.animation.image_behavior.options__1.label"
+ },
+ {
+ "value": "ambient",
+ "label": "t:sections.all.animation.image_behavior.options__2.label"
+ }
+ ],
+ "default": "none",
+ "label": "t:sections.all.animation.image_behavior.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.slideshow.settings.mobile.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_text_below",
+ "label": "t:sections.slideshow.settings.show_text_below.label",
+ "default": true
+ },
+ {
+ "type": "header",
+ "content": "t:sections.slideshow.settings.accessibility.content"
+ },
+ {
+ "type": "text",
+ "id": "accessibility_info",
+ "label": "t:sections.slideshow.settings.accessibility.label",
+ "info": "t:sections.slideshow.settings.accessibility.info",
+ "default": "Slideshow about our brand"
+ }
+ ],
+ "blocks": [
+ {
+ "type": "slide",
+ "name": "t:sections.slideshow.blocks.slide.name",
+ "limit": 5,
+ "settings": [
+ {
+ "type": "image_picker",
+ "id": "image",
+ "label": "t:sections.slideshow.blocks.slide.settings.image.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Image slide",
+ "label": "t:sections.slideshow.blocks.slide.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "inline_richtext",
+ "id": "subheading",
+ "default": "Tell your brand's story through images",
+ "label": "t:sections.slideshow.blocks.slide.settings.subheading.label"
+ },
+ {
+ "type": "text",
+ "id": "button_label",
+ "default": "Button label",
+ "label": "t:sections.slideshow.blocks.slide.settings.button_label.label",
+ "info": "t:sections.slideshow.blocks.slide.settings.button_label.info"
+ },
+ {
+ "type": "url",
+ "id": "link",
+ "label": "t:sections.slideshow.blocks.slide.settings.link.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "button_style_secondary",
+ "label": "t:sections.slideshow.blocks.slide.settings.secondary_style.label",
+ "default": false
+ },
+ {
+ "type": "select",
+ "id": "box_align",
+ "options": [
+ {
+ "value": "top-left",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__1.label"
+ },
+ {
+ "value": "top-center",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__2.label"
+ },
+ {
+ "value": "top-right",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__3.label"
+ },
+ {
+ "value": "middle-left",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__4.label"
+ },
+ {
+ "value": "middle-center",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__5.label"
+ },
+ {
+ "value": "middle-right",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__6.label"
+ },
+ {
+ "value": "bottom-left",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__7.label"
+ },
+ {
+ "value": "bottom-center",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__8.label"
+ },
+ {
+ "value": "bottom-right",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.options__9.label"
+ }
+ ],
+ "default": "middle-center",
+ "label": "t:sections.slideshow.blocks.slide.settings.box_align.label",
+ "info": "t:sections.slideshow.blocks.slide.settings.box_align.info"
+ },
+ {
+ "type": "checkbox",
+ "id": "show_text_box",
+ "label": "t:sections.slideshow.blocks.slide.settings.show_text_box.label",
+ "default": true
+ },
+ {
+ "type": "select",
+ "id": "text_alignment",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment.option_1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment.option_2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment.option_3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment.label"
+ },
+ {
+ "type": "range",
+ "id": "image_overlay_opacity",
+ "min": 0,
+ "max": 100,
+ "step": 10,
+ "unit": "%",
+ "label": "t:sections.slideshow.blocks.slide.settings.image_overlay_opacity.label",
+ "default": 0
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.slideshow.settings.mobile.content"
+ },
+ {
+ "type": "select",
+ "id": "text_alignment_mobile",
+ "options": [
+ {
+ "value": "left",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment_mobile.options__1.label"
+ },
+ {
+ "value": "center",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment_mobile.options__2.label"
+ },
+ {
+ "value": "right",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment_mobile.options__3.label"
+ }
+ ],
+ "default": "center",
+ "label": "t:sections.slideshow.blocks.slide.settings.text_alignment_mobile.label"
+ }
+ ]
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.slideshow.presets.name",
+ "blocks": [
+ {
+ "type": "slide"
+ },
+ {
+ "type": "slide"
+ }
+ ]
+ }
+ ]
+}
+{% endschema %}
diff --git a/sections/video.liquid b/sections/video.liquid
new file mode 100644
index 0000000..624918e
--- /dev/null
+++ b/sections/video.liquid
@@ -0,0 +1,275 @@
+{{ 'video-section.css' | asset_url | stylesheet_tag }}
+{{ 'component-deferred-media.css' | asset_url | stylesheet_tag }}
+
+{%- style -%}
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
+ padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
+ }
+
+ @media screen and (min-width: 750px) {
+ .section-{{ section.id }}-padding {
+ padding-top: {{ section.settings.padding_top }}px;
+ padding-bottom: {{ section.settings.padding_bottom }}px;
+ }
+ }
+{%- endstyle -%}
+
+{%- liquid
+ assign video_id = section.settings.video.id | default: section.settings.video_url.id
+ assign video_alt = section.settings.video.alt | default: section.settings.description
+ assign alt = 'sections.video.load_video' | t: description: video_alt | escape
+ assign poster = section.settings.video.preview_image | default: section.settings.cover_image
+
+ if section.settings.video != null
+ assign ratio_diff = section.settings.video.aspect_ratio | minus: poster.aspect_ratio | abs
+ if ratio_diff < 0.01 and ratio_diff > 0
+ assign fix_ratio = true
+ endif
+ endif
+-%}
+
+{%- capture sizes -%}
+ {% if section.settings.full_width -%}
+ 100vw
+ {%- else -%}
+ (min-width: {{ settings.page_width }}px) {{ settings.page_width | minus: 100 }}px, (min-width: 750px)
+ calc(100vw - 10rem), 100vw
+ {%- endif %}
+{%- endcapture -%}
+
+
+
+
+ {%- unless section.settings.heading == blank -%}
+
+
{{ section.settings.heading }}
+
+ {%- endunless -%}
+
+
+
+
+
+
+ {%- if poster != null -%}
+ {{
+ poster
+ | image_url: width: 3840
+ | image_tag: sizes: sizes, widths: '375, 750, 1100, 1500, 1780, 2000, 3000, 3840', alt: alt
+ }}
+ {%- else -%}
+ {{ 'hero-apparel-3' | placeholder_svg_tag: 'placeholder-svg placeholder' }}
+ {%- endif -%}
+
+ {%- render 'icon-play' -%}
+
+
+
+ {%- if section.settings.video == null and section.settings.video_url != null -%}
+ {%- liquid
+ assign loop = ''
+ if section.settings.enable_video_looping
+ assign loop = '&loop=1&playlist=' | append: video_id
+ endif
+ -%}
+ {%- if section.settings.video_url.type == 'youtube' -%}
+ VIDEO
+ {%- else -%}
+
+ {%- endif -%}
+ {%- else -%}
+ {{
+ section.settings.video
+ | video_tag:
+ image_size: '1100x',
+ autoplay: true,
+ loop: section.settings.enable_video_looping,
+ controls: true,
+ muted: false
+ }}
+ {%- endif -%}
+
+
+
+
+
+{% schema %}
+{
+ "name": "t:sections.video.name",
+ "tag": "section",
+ "class": "section",
+ "disabled_on": {
+ "groups": ["header", "footer"]
+ },
+ "settings": [
+ {
+ "type": "inline_richtext",
+ "id": "heading",
+ "default": "Video",
+ "label": "t:sections.video.settings.heading.label"
+ },
+ {
+ "type": "select",
+ "id": "heading_size",
+ "options": [
+ {
+ "value": "h2",
+ "label": "t:sections.all.heading_size.options__1.label"
+ },
+ {
+ "value": "h1",
+ "label": "t:sections.all.heading_size.options__2.label"
+ },
+ {
+ "value": "h0",
+ "label": "t:sections.all.heading_size.options__3.label"
+ }
+ ],
+ "default": "h1",
+ "label": "t:sections.all.heading_size.label"
+ },
+ {
+ "type": "checkbox",
+ "id": "enable_video_looping",
+ "label": "t:sections.video.settings.enable_video_looping.label",
+ "default": false
+ },
+ {
+ "type": "header",
+ "content": "t:sections.video.settings.header__1.content"
+ },
+ {
+ "type": "video",
+ "id": "video",
+ "label": "t:sections.video.settings.video.label"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.video.settings.header__2.content"
+ },
+ {
+ "type": "paragraph",
+ "content": "t:sections.video.settings.paragraph.content"
+ },
+ {
+ "type": "video_url",
+ "id": "video_url",
+ "accept": ["youtube", "vimeo"],
+ "default": "https://www.youtube.com/watch?v=_9VUPq3SxOc",
+ "label": "t:sections.video.settings.video_url.label",
+ "info": "t:sections.video.settings.video_url.info"
+ },
+ {
+ "type": "image_picker",
+ "id": "cover_image",
+ "label": "t:sections.video.settings.cover_image.label"
+ },
+ {
+ "type": "text",
+ "id": "description",
+ "label": "t:sections.video.settings.description.label",
+ "info": "t:sections.video.settings.description.info"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.video.settings.header__3.content"
+ },
+ {
+ "type": "checkbox",
+ "id": "full_width",
+ "label": "t:sections.video.settings.full_width.label",
+ "default": false
+ },
+ {
+ "type": "color_scheme",
+ "id": "color_scheme",
+ "label": "t:sections.all.colors.label",
+ "default": "background-1"
+ },
+ {
+ "type": "header",
+ "content": "t:sections.all.padding.section_padding_heading"
+ },
+ {
+ "type": "range",
+ "id": "padding_top",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_top",
+ "default": 36
+ },
+ {
+ "type": "range",
+ "id": "padding_bottom",
+ "min": 0,
+ "max": 100,
+ "step": 4,
+ "unit": "px",
+ "label": "t:sections.all.padding.padding_bottom",
+ "default": 36
+ }
+ ],
+ "presets": [
+ {
+ "name": "t:sections.video.presets.name"
+ }
+ ]
+}
+{% endschema %}
diff --git a/snippets/article-card.liquid b/snippets/article-card.liquid
new file mode 100644
index 0000000..1fb4a86
--- /dev/null
+++ b/snippets/article-card.liquid
@@ -0,0 +1,155 @@
+{% comment %}
+ Renders an article card for a given blog with settings to either show the image or not.
+
+ Accepts:
+ - blog: {Object} Blog object
+ - article: {Object} Article object
+ - media_aspect_ratio: {String} The setting changes the aspect ratio of the article image, if shown
+ - media_height: {String} The setting changes the height of the article image. Overrides media_aspect_ratio.
+ - show_image: {String} The setting either show the article image or not. If it's not included it will show the image by default
+ - show_date: {String} The setting either show the article date or not. If it's not included it will not show the image by default
+ - show_author: {String} The setting either show the article author or not. If it's not included it will not show the author by default
+ - show_badge: {String} The setting either show the blog badge or not.
+ - lazy_load: {Boolean} Image should be lazy loaded. Default: true (optional)
+
+ Usage:
+ {% render 'article-card' blog: blog, article: article, show_image: section.settings.show_image %}
+{% endcomment %}
+
+{%- if article and article != empty -%}
+ {%- liquid
+ assign ratio = 1
+ if media_aspect_ratio != null
+ assign ratio = media_aspect_ratio
+ endif
+ -%}
+
+ {% comment %}
{% endcomment %}
+
+
+ {%- if show_image == true and article.image -%}
+
+
+ {% comment %}theme-check-disable ImgLazyLoading{% endcomment %}
+
+ {% comment %}theme-check-enable ImgLazyLoading{% endcomment %}
+
+
+ {%- endif -%}
+
+
+ {%- if show_badge -%}
+
+ {{ 'blogs.article.blog' | t }}
+
+ {%- endif -%}
+
+
+
+
+ {%- if show_badge -%}
+
+ {{ 'blogs.article.blog' | t }}
+
+ {%- endif -%}
+
+
+
+{%- endif -%}
diff --git a/snippets/buy-buttons.liquid b/snippets/buy-buttons.liquid
new file mode 100644
index 0000000..4e83e3d
--- /dev/null
+++ b/snippets/buy-buttons.liquid
@@ -0,0 +1,149 @@
+{% comment %}
+ Renders product buy-buttons.
+ Accepts:
+ - product: {Object} product object.
+ - block: {Object} passing the block information.
+ - product_form_id: {String} product form id.
+ - section_id: {String} id of section to which this snippet belongs.
+ - show_pickup_availability: {Boolean} for the pickup availability. If true the pickup availability is rendered, false - not rendered (optional).
+
+ Usage:
+ {% render 'buy-buttons', block: block, product: product, product_form_id: product_form_id, section_id: section.id, show_pickup_availability: true %}
+{% endcomment %}
+
+ {%- if product != blank -%}
+ {%- liquid
+ assign gift_card_recipient_feature_active = false
+ if block.settings.show_gift_card_recipient and product.gift_card?
+ assign gift_card_recipient_feature_active = true
+ endif
+
+ assign show_dynamic_checkout = false
+ if block.settings.show_dynamic_checkout and gift_card_recipient_feature_active == false
+ assign show_dynamic_checkout = true
+ endif
+ -%}
+
+
+
+
+ {%- form 'product',
+ product,
+ id: product_form_id,
+ class: 'form',
+ novalidate: 'novalidate',
+ data-type: 'add-to-cart-form'
+ -%}
+
+
+ {%- if gift_card_recipient_feature_active -%}
+ {%- render 'gift-card-recipient-form', product: product, form: form, section: section -%}
+ {%- endif -%}
+
+
+ {%- liquid
+ assign check_against_inventory = true
+ if product.selected_or_first_available_variant.inventory_management != 'shopify' or product.selected_or_first_available_variant.inventory_policy == 'continue'
+ assign check_against_inventory = false
+ endif
+ if product.selected_or_first_available_variant.quantity_rule.min > product.selected_or_first_available_variant.inventory_quantity and check_against_inventory
+ assign quantity_rule_soldout = true
+ endif
+ -%}
+
+
+ {%- if product.selected_or_first_available_variant.available == false or quantity_rule_soldout -%}
+ {{ 'products.product.sold_out' | t }}
+ {%- else -%}
+ {{ 'products.product.add_to_cart' | t }}
+ {%- endif -%}
+
+ {%- render 'loading-spinner' -%}
+
+ {%- if show_dynamic_checkout -%}
+ {{ form | payment_button }}
+ {%- endif -%}
+
+ {%- endform -%}
+
+ {%- else -%}
+
+ {%- endif -%}
+
+ {%- if show_pickup_availability -%}
+ {{ 'component-pickup-availability.css' | asset_url | stylesheet_tag }}
+
+ {%- assign pick_up_availabilities = product.selected_or_first_available_variant.store_availabilities
+ | where: 'pick_up_enabled', true
+ -%}
+
+
0 %}
+ available
+ {% endif %}
+ data-root-url="{{ routes.root_url }}"
+ data-variant-id="{{ product.selected_or_first_available_variant.id }}"
+ data-has-only-default-variant="{{ product.has_only_default_variant }}"
+ data-product-page-color-scheme="gradient color-{{ section.settings.color_scheme }}"
+ >
+
+
+ {% render 'icon-unavailable' %}
+
+
{{ 'products.product.pickup_availability.unavailable' | t }}
+
+ {{ 'products.product.pickup_availability.refresh' | t }}
+
+
+
+
+
+
+
+ {%- endif -%}
+
diff --git a/snippets/card-collection.liquid b/snippets/card-collection.liquid
new file mode 100644
index 0000000..f5b879e
--- /dev/null
+++ b/snippets/card-collection.liquid
@@ -0,0 +1,159 @@
+{% comment %}
+ Renders a collection card
+
+ Accepts:
+ - card_collection: {Object} Collection Liquid object
+ - media_aspect_ratio: {String} Size of the product image card. Values are "square" and "portrait". Default is "square" (optional)
+ - columns: {Number}
+ - extend_height: {Boolean} Card height extends to available container space. Default: false (optional)
+ - wrapper_class: {String} Wrapper class for card (optional)
+ - placeholder_image: {String} Placeholder image when collection is empty (optional)
+
+ Usage:
+ {% render 'card-collection' %}
+{% endcomment %}
+
+{%- liquid
+ assign ratio = 1
+ if card_collection.featured_image and media_aspect_ratio == 'portrait'
+ assign ratio = 0.8
+ elsif card_collection.featured_image and media_aspect_ratio == 'adapt'
+ assign ratio = card_collection.featured_image.aspect_ratio
+ endif
+ if ratio == 0 or ratio == null
+ assign ratio = 1
+ endif
+ assign card_color_scheme = settings.card_color_scheme
+ assign card_style = settings.card_style
+ if wrapper_class == null or wrapper_class == 'none'
+ assign card_color_scheme = settings.collection_card_color_scheme
+ assign card_style = settings.collection_card_style
+ endif
+-%}
+
+
+
+
+ {%- if card_collection.featured_image -%}
+
+ {%- endif -%}
+ {%- if card_collection == blank -%}
+
+ {{ placeholder_image | placeholder_svg_tag: 'placeholder-svg' }}
+
+ {%- else -%}
+
+ {%- endif -%}
+
+ {%- if card_collection != blank and card_style == 'card' or card_collection.featured_image -%}
+
+ {%- endif -%}
+ {%- if card_collection == blank -%}
+
+ {%- endif -%}
+
+
diff --git a/snippets/card-product.liquid b/snippets/card-product.liquid
new file mode 100644
index 0000000..1d83c18
--- /dev/null
+++ b/snippets/card-product.liquid
@@ -0,0 +1,369 @@
+{% comment %}
+ Renders a product card
+
+ Accepts:
+ - card_product: {Object} Product Liquid object (optional)
+ - media_aspect_ratio: {String} Size of the product image card. Values are "square" and "portrait". Default is "square" (optional)
+ - image_shape: {String} Image mask to apply to the product image card. Values are "arch", "blob", "chevronleft", "chevronright", "diamond", "parallelogram", and "round". (optional)
+ - show_secondary_image: {Boolean} Show the secondary image on hover. Default: false (optional)
+ - show_vendor: {Boolean} Show the product vendor. Default: false
+ - show_rating: {Boolean} Show the product rating. Default: false
+ - extend_height: {Boolean} Card height extends to available container space. Default: true (optional)
+ - lazy_load: {Boolean} Image should be lazy loaded. Default: true (optional)
+ - show_quick_add: {Boolean} Show the quick add button.
+ - section_id: {String} The ID of the section that contains this card.
+ - horizontal_class: {Boolean} Add a card--horizontal class if set to true. Default: false (optional)
+ - horizontal_quick_add: {Boolean} Changes the quick add button styles when set to true. Default: false (optional)
+ - placeholder_image: {String} The placeholder image to use when no product exists. Default: 'product-apparel-2' (optional)
+
+ Usage:
+ {% render 'card-product', show_vendor: section.settings.show_vendor %}
+{% endcomment %}
+
+{{ 'component-rating.css' | asset_url | stylesheet_tag }}
+{{ 'component-volume-pricing.css' | asset_url | stylesheet_tag }}
+
+{%- if card_product and card_product != empty -%}
+ {%- liquid
+ assign ratio = 1
+ if card_product.featured_media and media_aspect_ratio == 'portrait'
+ assign ratio = 0.8
+ elsif card_product.featured_media and media_aspect_ratio == 'adapt'
+ assign ratio = card_product.featured_media.aspect_ratio
+ endif
+ if ratio == 0 or ratio == null
+ assign ratio = 1
+ endif
+ -%}
+
+
+
+
+
+ {%- if show_quick_add -%}
+
+ {%- liquid
+ assign product_form_id = 'quick-add-' | append: section_id | append: card_product.id
+ assign qty_rules = false
+ if card_product.selected_or_first_available_variant.quantity_rule.min > 1 or card_product.selected_or_first_available_variant.quantity_rule.max != null or card_product.selected_or_first_available_variant.quantity_rule.increment > 1
+ assign qty_rules = true
+ endif
+ -%}
+ {%- if card_product.variants.size > 1 or qty_rules -%}
+
+
+ {{ 'products.product.choose_options' | t }}
+ {%- if horizontal_quick_add -%}
+ {% render 'icon-arrow' %}
+ {%- endif -%}
+ {%- render 'loading-spinner' -%}
+
+
+
+
+
+ {%- else -%}
+
+ {%- form 'product',
+ card_product,
+ id: product_form_id,
+ class: 'form',
+ novalidate: 'novalidate',
+ data-type: 'add-to-cart-form'
+ -%}
+
+
+
+ {%- if card_product.selected_or_first_available_variant.available -%}
+ {{ 'products.product.add_to_cart' | t }}
+ {%- else -%}
+ {{ 'products.product.sold_out' | t }}
+ {%- endif -%}
+
+
+ {{ 'products.product.sold_out' | t }}
+
+ {%- if horizontal_quick_add -%}
+ {% render 'icon-plus' %}
+ {%- endif -%}
+ {%- render 'loading-spinner' -%}
+
+ {%- endform -%}
+
+ {%- endif -%}
+
+ {%- endif -%}
+
+ {%- if card_product.available == false -%}
+
+ {{- 'products.product.sold_out' | t -}}
+
+ {%- elsif card_product.compare_at_price > card_product.price and card_product.available -%}
+
+ {{- 'products.product.on_sale' | t -}}
+
+ {%- endif -%}
+
+
+
+
+{%- else -%}
+
+{%- endif -%}
diff --git a/snippets/cart-drawer.liquid b/snippets/cart-drawer.liquid
new file mode 100644
index 0000000..c1edd78
--- /dev/null
+++ b/snippets/cart-drawer.liquid
@@ -0,0 +1,553 @@
+{% comment %}
+ Renders cart drawer
+
+ Usage:
+ {% render 'cart-drawer' %}
+{% endcomment %}
+
+{{ 'quantity-popover.css' | asset_url | stylesheet_tag }}
+{{ 'component-card.css' | asset_url | stylesheet_tag }}
+
+
+
+
+
+
+
+
+
+
+ {%- if cart == empty -%}
+
+
+
+
{{ 'sections.cart.empty' | t }}
+
+ {% render 'icon-close' %}
+
+
+ {{ 'general.continue_shopping' | t }}
+
+
+ {%- if shop.customer_accounts_enabled and customer == null -%}
+
{{ 'sections.cart.login.title' | t }}
+
+ {{ 'sections.cart.login.paragraph_html' | t: link: routes.account_login_url }}
+
+ {%- endif -%}
+
+
+ {%- if settings.cart_drawer_collection != blank -%}
+
+ {% render 'card-collection', card_collection: settings.cart_drawer_collection, columns: 1 %}
+
+ {%- endif -%}
+
+ {%- endif -%}
+
+
+
+
+
+
+
+
+
+
diff --git a/snippets/cart-notification.liquid b/snippets/cart-notification.liquid
new file mode 100644
index 0000000..6fcaf4a
--- /dev/null
+++ b/snippets/cart-notification.liquid
@@ -0,0 +1,60 @@
+{% comment %}
+ Renders cart notification
+
+ Accepts:
+ - color_scheme: {String} sets the color scheme of the notification (optional)
+ - desktop_menu_type: {String} passes the desktop menu type which allows us to use the right css class (optional)
+
+ Usage:
+ {% render 'cart-notification' %}
+{% endcomment %}
+
+
+
+
+{% style %}
+ .cart-notification {
+ display: none;
+ }
+{% endstyle %}
diff --git a/snippets/country-localization.liquid b/snippets/country-localization.liquid
new file mode 100644
index 0000000..2cef4f9
--- /dev/null
+++ b/snippets/country-localization.liquid
@@ -0,0 +1,45 @@
+{%- comment -%}
+ Renders the country picker for the localization form
+
+ Accepts:
+ - localPosition: pass in the position in which the form is coming up to create specific IDs
+{%- endcomment -%}
+
+
+
+
+ {{- localization.country.currency.iso_code }}
+ {{ localization.country.currency.symbol }} | {{ localization.country.name -}}
+
+ {% render 'icon-caret' %}
+
+
+
+
diff --git a/snippets/email-signup-banner-background-mobile.liquid b/snippets/email-signup-banner-background-mobile.liquid
new file mode 100644
index 0000000..6215349
--- /dev/null
+++ b/snippets/email-signup-banner-background-mobile.liquid
@@ -0,0 +1,12 @@
+
+
+
diff --git a/snippets/email-signup-banner-background.liquid b/snippets/email-signup-banner-background.liquid
new file mode 100644
index 0000000..c94d790
--- /dev/null
+++ b/snippets/email-signup-banner-background.liquid
@@ -0,0 +1,16 @@
+
+
+
diff --git a/snippets/facets.liquid b/snippets/facets.liquid
new file mode 100644
index 0000000..55981d6
--- /dev/null
+++ b/snippets/facets.liquid
@@ -0,0 +1,1190 @@
+{% comment %}
+ Renders facets (filtering and sorting)
+
+ Accepts:
+ - results: {Object} Collection or Search object
+ - enable_filtering: {Boolean} Show filtering when true
+ - enable_sorting: {Boolean} Show sorting when true
+ - filter_type: {String} Type of filter
+ - paginate: {Object}
+
+ Usage:
+ {% render 'facets', results: collection, enable_filtering: true, enable_sorting: true, filter_type: 'vertical', paginate: paginate %}
+{% endcomment %}
+
+{{ 'component-show-more.css' | asset_url | stylesheet_tag }}
+{{ 'component-visual-display.css' | asset_url | stylesheet_tag }}
+
+{%- liquid
+ assign sort_by = results.sort_by | default: results.default_sort_by
+ assign total_active_values = 0
+ if results.url
+ assign results_url = results.url
+ else
+ assign terms = results.terms | escape
+ assign results_url = '?q=' | append: terms | append: '&options%5Bprefix%5D=last&sort_by=' | append: sort_by
+ endif
+-%}
+
+
diff --git a/snippets/gift-card-recipient-form.liquid b/snippets/gift-card-recipient-form.liquid
new file mode 100644
index 0000000..46d31d1
--- /dev/null
+++ b/snippets/gift-card-recipient-form.liquid
@@ -0,0 +1,240 @@
+{% comment %}
+ Renders gift card recipient form.
+ Accepts:
+ - product: {Object} product object.
+ - form: {Object} the product form object.
+ - section: {Object} section to which this snippet belongs.
+
+ Usage:
+ {% render 'gift-card-recipient-form', product: product, form: form, section: section %}
+{% endcomment %}
+
+
+ {%- assign gift_card_recipient_control_flag = 'properties[__shopify_send_gift_card_to_recipient]' -%}
+
+
+
+
+
+
+
+
+
+
+ {{ 'recipient.form.checkbox' | t }}
+
+
+
+
+
+
+
+
+
+ {{ 'recipient.form.email_label' | t }}
+
+ {{- 'recipient.form.email_label_optional_for_no_js_behavior' | t -}}
+
+
+
+
+
+ {% render 'icon-error' %}
+
+ {%- if form.errors contains 'email' -%}
+ {{ form.errors.messages.email }}.
+ {%- endif -%}
+
+
+
+
+
+
+
+
+ {{- 'recipient.form.name_label' | t -}}
+
+
+
+
+ {% render 'icon-error' %}
+
+ {%- if form.errors contains 'name' -%}
+ {{ form.errors.messages.name }}.
+ {%- endif -%}
+
+
+
+
+
+ {%- assign max_chars_message = 200 -%}
+ {%- assign max_chars_message_rendered = 'recipient.form.max_characters' | t: max_chars: max_chars_message -%}
+ {%- assign message_label_rendered = 'recipient.form.message_label' | t -%}
+
+
+
+ {{ message_label_rendered }}
+
+
+
+
+ {{ max_chars_message_rendered }}
+
+
+
+ {% render 'icon-error' %}
+
+ {%- if form.errors contains 'message' -%}
+ {{ form.errors.messages.message }}.
+ {%- endif -%}
+
+
+
+
+
+
+
+
+ {{ 'recipient.form.send_on_label' | t }}
+
+
+
+
+ {% render 'icon-error' %}
+
+ {%- if form.errors contains 'send_on' -%}
+ {{ form.errors.messages.send_on }}.
+ {%- endif -%}
+
+
+
+
+
+
+
+
diff --git a/snippets/header-drawer.liquid b/snippets/header-drawer.liquid
new file mode 100644
index 0000000..f62b9c9
--- /dev/null
+++ b/snippets/header-drawer.liquid
@@ -0,0 +1,311 @@
+{% comment %}
+ Renders a header drawer menu for mobile and desktop.
+
+ Usage:
+ {% render 'header-drawer' %}
+{% endcomment %}
+
+
+
+
diff --git a/snippets/header-dropdown-menu.liquid b/snippets/header-dropdown-menu.liquid
new file mode 100644
index 0000000..ba7612c
--- /dev/null
+++ b/snippets/header-dropdown-menu.liquid
@@ -0,0 +1,103 @@
+{% comment %}
+ Renders a standard dropdown style menu for the header.
+
+ Usage:
+ {% render 'header-dropdown-menu' %}
+{% endcomment %}
+
+
diff --git a/snippets/header-mega-menu.liquid b/snippets/header-mega-menu.liquid
new file mode 100644
index 0000000..d42b9b5
--- /dev/null
+++ b/snippets/header-mega-menu.liquid
@@ -0,0 +1,94 @@
+{% comment %}
+ Renders a megamenu for the header.
+
+ Usage:
+ {% render 'header-mega-menu' %}
+{% endcomment %}
+
+
diff --git a/snippets/header-search.liquid b/snippets/header-search.liquid
new file mode 100644
index 0000000..5721564
--- /dev/null
+++ b/snippets/header-search.liquid
@@ -0,0 +1,108 @@
+{% comment %}
+ Renders a header search modal. Should be used with 'header.liquid'
+
+ Accepts:
+ - input_id: {String} Id for the search input element (required)
+
+ Usage:
+ {% render 'header-search', input_id: 'My-Id'%}
+{% endcomment %}
+
+
diff --git a/snippets/icon-3d-model.liquid b/snippets/icon-3d-model.liquid
new file mode 100644
index 0000000..f10769f
--- /dev/null
+++ b/snippets/icon-3d-model.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-accordion.liquid b/snippets/icon-accordion.liquid
new file mode 100644
index 0000000..54dff4c
--- /dev/null
+++ b/snippets/icon-accordion.liquid
@@ -0,0 +1,192 @@
+{%- if icon != 'none' -%}
+
+ {%- case icon -%}
+ {%- when 'apple' -%}
+
+
+
+ {%- when 'banana' -%}
+
+
+ {%- when 'bottle' -%}
+
+
+
+ {%- when 'box' -%}
+
+ {%- when 'carrot' -%}
+
+
+
+
+
+
+ {%- when 'chat_bubble' -%}
+
+
+
+
+ {%- when 'check_mark' -%}
+
+
+ {%- when 'clipboard' -%}
+
+
+
+
+
+ {%- when 'dairy' -%}
+
+
+
+
+
+ {%- when 'dairy_free' -%}
+
+
+
+
+
+
+
+
+
+ {%- when 'dryer' -%}
+
+
+ {%- when 'eye' -%}
+
+
+ {%- when 'fire' -%}
+
+
+ {%- when 'gluten_free' -%}
+
+
+
+
+
+
+
+
+
+
+
+ {%- when 'heart' -%}
+
+ {%- when 'iron' -%}
+
+
+
+
+ {%- when 'leaf' -%}
+
+
+
+
+ {%- when 'leather' -%}
+
+ {%- when 'lightning_bolt' -%}
+
+ {%- when 'lipstick' -%}
+
+
+
+ {%- when 'lock' -%}
+
+
+
+
+ {%- when 'map_pin' -%}
+
+
+ {%- when 'nut_free' -%}
+
+
+
+
+ {%- when 'pants' -%}
+
+
+ {%- when 'paw_print' -%}
+
+
+
+
+
+ {%- when 'pepper' -%}
+
+ {%- when 'perfume' -%}
+
+
+
+
+ {%- when 'plane' -%}
+
+ {%- when 'plant' -%}
+
+
+
+
+ {%- when 'price_tag' -%}
+
+
+ {%- when 'question_mark' -%}
+
+
+ {%- when 'recycle' -%}
+
+
+
+ {%- when 'return' -%}
+
+
+ {%- when 'ruler' -%}
+
+
+
+
+
+ {%- when 'serving_dish' -%}
+
+
+
+
+ {%- when 'shirt' -%}
+
+ {%- when 'shoe' -%}
+
+
+ {%- when 'silhouette' -%}
+
+
+ {%- when 'snowflake' -%}
+
+ {%- when 'star' -%}
+
+ {%- when 'stopwatch' -%}
+
+
+
+
+
+
+ {%- when 'truck' -%}
+
+
+
+
+ {%- when 'washing' -%}
+
+
+ {%- endcase -%}
+
+{%- endif -%}
diff --git a/snippets/icon-account.liquid b/snippets/icon-account.liquid
new file mode 100644
index 0000000..38c7595
--- /dev/null
+++ b/snippets/icon-account.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-arrow.liquid b/snippets/icon-arrow.liquid
new file mode 100644
index 0000000..49e7afc
--- /dev/null
+++ b/snippets/icon-arrow.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-caret.liquid b/snippets/icon-caret.liquid
new file mode 100644
index 0000000..b16be67
--- /dev/null
+++ b/snippets/icon-caret.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-cart-empty.liquid b/snippets/icon-cart-empty.liquid
new file mode 100644
index 0000000..e76906f
--- /dev/null
+++ b/snippets/icon-cart-empty.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-cart.liquid b/snippets/icon-cart.liquid
new file mode 100644
index 0000000..e80d3fc
--- /dev/null
+++ b/snippets/icon-cart.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-checkmark.liquid b/snippets/icon-checkmark.liquid
new file mode 100644
index 0000000..874c53e
--- /dev/null
+++ b/snippets/icon-checkmark.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-clipboard.liquid b/snippets/icon-clipboard.liquid
new file mode 100644
index 0000000..c001fc9
--- /dev/null
+++ b/snippets/icon-clipboard.liquid
@@ -0,0 +1,12 @@
+
+
+
diff --git a/snippets/icon-close-small.liquid b/snippets/icon-close-small.liquid
new file mode 100644
index 0000000..0428247
--- /dev/null
+++ b/snippets/icon-close-small.liquid
@@ -0,0 +1,13 @@
+
+
+
+
diff --git a/snippets/icon-close.liquid b/snippets/icon-close.liquid
new file mode 100644
index 0000000..8f1196f
--- /dev/null
+++ b/snippets/icon-close.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-discount.liquid b/snippets/icon-discount.liquid
new file mode 100644
index 0000000..dd6d3c7
--- /dev/null
+++ b/snippets/icon-discount.liquid
@@ -0,0 +1,8 @@
+
+
+
diff --git a/snippets/icon-error.liquid b/snippets/icon-error.liquid
new file mode 100644
index 0000000..24c4e68
--- /dev/null
+++ b/snippets/icon-error.liquid
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/snippets/icon-facebook.liquid b/snippets/icon-facebook.liquid
new file mode 100644
index 0000000..8164a75
--- /dev/null
+++ b/snippets/icon-facebook.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-filter.liquid b/snippets/icon-filter.liquid
new file mode 100644
index 0000000..4d75f8c
--- /dev/null
+++ b/snippets/icon-filter.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-hamburger.liquid b/snippets/icon-hamburger.liquid
new file mode 100644
index 0000000..dc87919
--- /dev/null
+++ b/snippets/icon-hamburger.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-info.liquid b/snippets/icon-info.liquid
new file mode 100644
index 0000000..0b916a8
--- /dev/null
+++ b/snippets/icon-info.liquid
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/snippets/icon-instagram.liquid b/snippets/icon-instagram.liquid
new file mode 100644
index 0000000..5a13ddf
--- /dev/null
+++ b/snippets/icon-instagram.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-minus.liquid b/snippets/icon-minus.liquid
new file mode 100644
index 0000000..1486409
--- /dev/null
+++ b/snippets/icon-minus.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-padlock.liquid b/snippets/icon-padlock.liquid
new file mode 100644
index 0000000..6a9984d
--- /dev/null
+++ b/snippets/icon-padlock.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-pause.liquid b/snippets/icon-pause.liquid
new file mode 100644
index 0000000..e4a9941
--- /dev/null
+++ b/snippets/icon-pause.liquid
@@ -0,0 +1,11 @@
+
+
+
+
diff --git a/snippets/icon-pinterest.liquid b/snippets/icon-pinterest.liquid
new file mode 100644
index 0000000..69116e2
--- /dev/null
+++ b/snippets/icon-pinterest.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-play.liquid b/snippets/icon-play.liquid
new file mode 100644
index 0000000..5ce71fd
--- /dev/null
+++ b/snippets/icon-play.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-plus.liquid b/snippets/icon-plus.liquid
new file mode 100644
index 0000000..fd5c272
--- /dev/null
+++ b/snippets/icon-plus.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-remove.liquid b/snippets/icon-remove.liquid
new file mode 100644
index 0000000..d3a74e5
--- /dev/null
+++ b/snippets/icon-remove.liquid
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/snippets/icon-share.liquid b/snippets/icon-share.liquid
new file mode 100644
index 0000000..6f39c50
--- /dev/null
+++ b/snippets/icon-share.liquid
@@ -0,0 +1,14 @@
+
+
+
+
+
diff --git a/snippets/icon-snapchat.liquid b/snippets/icon-snapchat.liquid
new file mode 100644
index 0000000..f7e2ba3
--- /dev/null
+++ b/snippets/icon-snapchat.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-success.liquid b/snippets/icon-success.liquid
new file mode 100644
index 0000000..c145074
--- /dev/null
+++ b/snippets/icon-success.liquid
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/snippets/icon-tick.liquid b/snippets/icon-tick.liquid
new file mode 100644
index 0000000..1d2debc
--- /dev/null
+++ b/snippets/icon-tick.liquid
@@ -0,0 +1,10 @@
+
+
+
diff --git a/snippets/icon-tiktok.liquid b/snippets/icon-tiktok.liquid
new file mode 100644
index 0000000..c295475
--- /dev/null
+++ b/snippets/icon-tiktok.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-tumblr.liquid b/snippets/icon-tumblr.liquid
new file mode 100644
index 0000000..881c276
--- /dev/null
+++ b/snippets/icon-tumblr.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-twitter.liquid b/snippets/icon-twitter.liquid
new file mode 100644
index 0000000..c6c0af2
--- /dev/null
+++ b/snippets/icon-twitter.liquid
@@ -0,0 +1,3 @@
+
diff --git a/snippets/icon-unavailable.liquid b/snippets/icon-unavailable.liquid
new file mode 100644
index 0000000..91f2016
--- /dev/null
+++ b/snippets/icon-unavailable.liquid
@@ -0,0 +1,11 @@
+
+
+
diff --git a/snippets/icon-vimeo.liquid b/snippets/icon-vimeo.liquid
new file mode 100644
index 0000000..9a40b29
--- /dev/null
+++ b/snippets/icon-vimeo.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-with-text.liquid b/snippets/icon-with-text.liquid
new file mode 100644
index 0000000..5d0690b
--- /dev/null
+++ b/snippets/icon-with-text.liquid
@@ -0,0 +1,109 @@
+{% comment %}
+ Renders icon with text block
+
+ Accepts:
+ - block: {Object} passes in the block information.
+
+
+ Usage:
+ {% render 'icon-with-text',
+ block: block
+ %}
+{% endcomment %}
+{%- liquid
+ assign heading_1_empty = false
+ assign heading_2_empty = false
+ assign heading_3_empty = false
+ assign text_only_all_items = true
+
+ if block.settings.heading_1 == empty
+ assign heading_1_empty = true
+ endif
+
+ if block.settings.heading_2 == empty
+ assign heading_2_empty = true
+ endif
+
+ if block.settings.heading_3 == empty
+ assign heading_3_empty = true
+ endif
+
+ if heading_1_empty == false and block.settings.icon_1 != 'none' or block.settings.image_1 != null
+ assign text_only_all_items = false
+ elsif heading_2_empty == false and block.settings.icon_2 != 'none' or block.settings.image_2 != null
+ assign text_only_all_items = false
+ elsif heading_3_empty == false and block.settings.icon_3 != 'none' or block.settings.image_3 != null
+ assign text_only_all_items = false
+ endif
+-%}
+
+ {%- unless heading_1_empty -%}
+
+ {%- if block.settings.image_1 == null -%}
+ {%- render 'icon-accordion', icon: block.settings.icon_1 -%}
+ {%- else -%}
+
+ {%- endif -%}
+
+ {{- block.settings.heading_1 -}}
+
+
+ {%- endunless -%}
+ {%- unless heading_2_empty -%}
+
+ {%- if block.settings.image_2 == null -%}
+ {% render 'icon-accordion', icon: block.settings.icon_2 -%}
+ {%- else -%}
+
+ {%- endif -%}
+
+ {{- block.settings.heading_2 -}}
+
+
+ {%- endunless -%}
+ {%- unless heading_3_empty -%}
+
+ {%- if block.settings.image_3 == null -%}
+ {% render 'icon-accordion', icon: block.settings.icon_3 -%}
+ {%- else -%}
+
+ {%- endif -%}
+
+ {{- block.settings.heading_3 -}}
+
+
+ {%- endunless -%}
+
diff --git a/snippets/icon-youtube.liquid b/snippets/icon-youtube.liquid
new file mode 100644
index 0000000..108aa20
--- /dev/null
+++ b/snippets/icon-youtube.liquid
@@ -0,0 +1,3 @@
+
+
+
diff --git a/snippets/icon-zoom.liquid b/snippets/icon-zoom.liquid
new file mode 100644
index 0000000..7ffa482
--- /dev/null
+++ b/snippets/icon-zoom.liquid
@@ -0,0 +1,14 @@
+
+
+
+
+
diff --git a/snippets/language-localization.liquid b/snippets/language-localization.liquid
new file mode 100644
index 0000000..4068584
--- /dev/null
+++ b/snippets/language-localization.liquid
@@ -0,0 +1,40 @@
+{%- comment -%}
+ Renders the language picker for the localization form
+
+ Accepts:
+ - localPosition: pass in the position in which the form is coming up to create specific IDs
+{%- endcomment -%}
+
+
+
+ {{ localization.language.endonym_name | capitalize }}
+ {% render 'icon-caret' %}
+
+
+
+
diff --git a/snippets/loading-spinner.liquid b/snippets/loading-spinner.liquid
new file mode 100644
index 0000000..bd40d3d
--- /dev/null
+++ b/snippets/loading-spinner.liquid
@@ -0,0 +1,22 @@
+{% comment %}
+ Renders loading-spinner.
+ Accepts:
+ - class: {string} css classes to replace the default ones (optional)
+
+ Usage:
+ {% render 'loading-spinner' %}
+{% endcomment %}
+
+{{ 'component-loading-spinner.css' | asset_url | stylesheet_tag }}
+
+
+
+
+
+
diff --git a/snippets/mask-arch.liquid b/snippets/mask-arch.liquid
new file mode 100644
index 0000000..92e4e5b
--- /dev/null
+++ b/snippets/mask-arch.liquid
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/snippets/meta-tags.liquid b/snippets/meta-tags.liquid
new file mode 100644
index 0000000..4ca45a1
--- /dev/null
+++ b/snippets/meta-tags.liquid
@@ -0,0 +1,39 @@
+{%- liquid
+ assign og_title = page_title | default: shop.name
+ assign og_url = canonical_url | default: request.origin
+ assign og_type = 'website'
+ assign og_description = page_description | default: shop.description | default: shop.name
+
+ if request.page_type == 'product'
+ assign og_type = 'product'
+ elsif request.page_type == 'article'
+ assign og_type = 'article'
+ elsif request.page_type == 'password'
+ assign og_url = request.origin
+ endif
+%}
+
+
+
+
+
+
+
+{%- if page_image -%}
+
+
+
+
+{%- endif -%}
+
+{%- if request.page_type == 'product' -%}
+
+
+{%- endif -%}
+
+{%- if settings.social_twitter_link != blank -%}
+
+{%- endif -%}
+
+
+
diff --git a/snippets/pagination.liquid b/snippets/pagination.liquid
new file mode 100644
index 0000000..e5634f8
--- /dev/null
+++ b/snippets/pagination.liquid
@@ -0,0 +1,74 @@
+{% comment %}
+ Renders a set of links for paginated results. Must be used within paginate tags.
+
+ Usage:
+ {% paginate results by 2 %}
+ {% render 'pagination', paginate: paginate, anchor: '#yourID' %}
+ {% endpaginate %}
+
+ Accepts:
+ - paginate: {Object}
+ - anchor: {String} (optional) This can be added so that on page reload it takes you to wherever you've placed your anchor tag.
+{% endcomment %}
+
+{{ 'component-pagination.css' | asset_url | stylesheet_tag }}
+
+{%- if paginate.parts.size > 0 -%}
+
+{%- endif -%}
diff --git a/snippets/price.liquid b/snippets/price.liquid
new file mode 100644
index 0000000..5d6ca6a
--- /dev/null
+++ b/snippets/price.liquid
@@ -0,0 +1,128 @@
+{% comment %}
+ Renders a list of product's price (regular, sale)
+
+ Accepts:
+ - product: {Object} Product Liquid object (optional)
+ - use_variant: {Boolean} Renders selected or first variant price instead of overall product pricing (optional)
+ - show_badges: {Boolean} Renders 'Sale' and 'Sold Out' tags if the product matches the condition (optional)
+ - price_class: {String} Adds a price class to the price element (optional)
+ - show_compare_at_price: {Boolean} Renders the compare at price if the product matches the condition (optional)
+
+ Usage:
+ {% render 'price', product: product %}
+{% endcomment %}
+{%- liquid
+ if use_variant
+ assign target = product.selected_or_first_available_variant
+ else
+ assign target = product
+ endif
+
+ assign compare_at_price = target.compare_at_price
+ assign price = target.price | default: 1999
+ assign price_min = product.price_min
+ assign price_max = product.price_max
+ assign available = target.available | default: false
+ assign money_price = price | money
+ assign money_price_min = price_min | money
+ assign money_price_max = price_max | money
+ if settings.currency_code_enabled
+ assign money_price = price | money_with_currency
+ assign money_price_min = price_min | money_with_currency
+ assign money_price_max = price_max | money_with_currency
+ endif
+
+ if target == product and product.price_varies
+ assign money_price = 'products.product.price.from_price_html' | t: price: money_price
+ endif
+-%}
+
+
diff --git a/snippets/product-media-gallery.liquid b/snippets/product-media-gallery.liquid
new file mode 100644
index 0000000..69ac587
--- /dev/null
+++ b/snippets/product-media-gallery.liquid
@@ -0,0 +1,308 @@
+{% comment %}
+ Renders a product media gallery. Should be used with 'media-gallery.js'
+ Also see 'product-media-modal'
+
+ Accepts:
+ - product: {Object} Product liquid object
+ - variant_images: {Array} Product images associated with a variant
+ - is_duplicate: {Boolean} Prevents rendering uneeded elements and duplicate ids for subsequent instances
+
+ Usage:
+ {% render 'product-media-gallery', is_duplicate: true %}
+{% endcomment %}
+
+{%- liquid
+ if section.settings.hide_variants and variant_images.size == product.media.size
+ assign single_media_visible = true
+ endif
+
+ assign media_count = product.media.size
+ if section.settings.hide_variants and media_count > 1 and variant_images.size > 0
+ assign media_count = media_count | minus: variant_images.size | plus: 1
+ endif
+
+ if media_count == 1 or single_media_visible
+ assign single_media_visible_mobile = true
+ endif
+
+ if media_count == 0 or single_media_visible_mobile or section.settings.mobile_thumbnails == 'show' or section.settings.mobile_thumbnails == 'columns' and media_count < 3
+ assign hide_mobile_slider = true
+ endif
+
+ if section.settings.media_size == 'large'
+ assign media_width = 0.65
+ elsif section.settings.media_size == 'medium'
+ assign media_width = 0.55
+ elsif section.settings.media_size == 'small'
+ assign media_width = 0.45
+ endif
+
+ assign id_append = ''
+ if is_duplicate
+ assign id_append = '-duplicate'
+ endif
+-%}
+
+
+
+
+ {%- unless is_duplicate -%}
+
+ {{ 'accessibility.skip_to_product_info' | t }}
+
+ {%- endunless -%}
+
+ {%- unless is_duplicate -%}
+
+ {%- endunless -%}
+
+ {%- if first_3d_model -%}
+
+ {% render 'icon-3d-model' %}
+ {{ 'products.product.xr_button' | t }}
+
+ {%- endif -%}
+ {%- if media_count > 1
+ and section.settings.gallery_layout contains 'thumbnail'
+ or section.settings.mobile_thumbnails == 'show'
+ -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- capture sizes -%}
+ (min-width: {{ settings.page_width }}px) calc(({{ settings.page_width | minus: 100 | times: media_width | round }} - 4rem) / 4),
+ (min-width: 990px) calc(({{ media_width | times: 100 }}vw - 4rem) / 4),
+ (min-width: 750px) calc((100vw - 15rem) / 8),
+ calc((100vw - 8rem) / 3)
+ {%- endcapture -%}
+
+ {%- if featured_media != null -%}
+ {%- liquid
+ capture media_index
+ if featured_media.media_type == 'model'
+ increment model_index
+ elsif featured_media.media_type == 'video' or featured_media.media_type == 'external_video'
+ increment video_index
+ elsif featured_media.media_type == 'image'
+ increment image_index
+ endif
+ endcapture
+ assign media_index = media_index | plus: 1
+ -%}
+
+ {%- capture thumbnail_id -%}
+ Thumbnail-{{ section.id }}-0{{ id_append }}
+ {%- endcapture -%}
+
+ {{
+ featured_media.preview_image
+ | image_url: width: 416
+ | image_tag:
+ loading: 'lazy',
+ sizes: sizes,
+ widths: '54, 74, 104, 162, 208, 324, 416',
+ id: thumbnail_id,
+ alt: featured_media.alt
+ | escape
+ }}
+
+
+ {%- endif -%}
+ {%- for media in product.media -%}
+ {%- unless media.id == product.selected_or_first_available_variant.featured_media.id -%}
+ {%- liquid
+ capture media_index
+ if media.media_type == 'model'
+ increment model_index
+ elsif media.media_type == 'video' or media.media_type == 'external_video'
+ increment video_index
+ elsif media.media_type == 'image'
+ increment image_index
+ endif
+ endcapture
+ assign media_index = media_index | plus: 1
+ -%}
+
+ {%- if media.media_type == 'model' -%}
+
+ {%- render 'icon-3d-model' -%}
+
+ {%- elsif media.media_type == 'video' or media.media_type == 'external_video' -%}
+
+ {%- render 'icon-play' -%}
+
+ {%- endif -%}
+ {%- capture thumbnail_id -%}
+ Thumbnail-{{ section.id }}-{{ forloop.index }}{{ id_append }}
+ {%- endcapture -%}
+
+ {{
+ media.preview_image
+ | image_url: width: 416
+ | image_tag:
+ loading: 'lazy',
+ sizes: sizes,
+ widths: '54, 74, 104, 162, 208, 324, 416',
+ id: thumbnail_id,
+ alt: media.alt
+ | escape
+ }}
+
+
+ {%- endunless -%}
+ {%- endfor -%}
+
+
+ {% render 'icon-caret' %}
+
+
+ {%- endif -%}
+
diff --git a/snippets/product-media-modal.liquid b/snippets/product-media-modal.liquid
new file mode 100644
index 0000000..6568150
--- /dev/null
+++ b/snippets/product-media-modal.liquid
@@ -0,0 +1,57 @@
+{% comment %}
+ Renders a product media modal. Also see 'product-media-gallery'
+
+ Accepts:
+ - product: {Object} Product liquid object
+ - variant_images: {Array} Product images associated with a variant
+
+ Usage:
+ {% render 'product-media-modal' %}
+{% endcomment %}
+
+
+
+
diff --git a/snippets/product-media.liquid b/snippets/product-media.liquid
new file mode 100644
index 0000000..84dd955
--- /dev/null
+++ b/snippets/product-media.liquid
@@ -0,0 +1,101 @@
+{% comment %}
+ Renders product media
+
+ Accepts:
+ - media: {Object} Product Media object
+ - loop: {Boolean} Enable video looping (optional)
+ - variant_image: {Boolean} Whether or not media is associated with a variant
+
+ Usage:
+ {% render 'product-media',
+ media: media,
+ loop: section.settings.enable_video_looping,
+ variant_image: true
+ %}
+{% endcomment %}
+
+{%- if media.media_type == 'image' -%}
+
+{%- else -%}
+ {%- if media.media_type == 'model' -%}
+
+ {%- else -%}
+
+ {%- endif -%}
+{%- endif -%}
diff --git a/snippets/product-thumbnail.liquid b/snippets/product-thumbnail.liquid
new file mode 100644
index 0000000..05b2eff
--- /dev/null
+++ b/snippets/product-thumbnail.liquid
@@ -0,0 +1,169 @@
+{% comment %}theme-check-disable ImgLazyLoading{% endcomment %}
+{% comment %}
+ Renders a product thumbnail with a modal-opener
+
+ Accepts:
+ - media: {Object} Product Media object
+ - media_count: {Number} Number of media objects
+ - position: {String} Position of the media. Used for accessible label.
+ - desktop_layout: {String} Layout of the media for desktop.
+ - mobile_layout: {String} Layout of the media for mobile.
+ - loop: {Boolean} Enable video looping (optional)
+ - modal_id: {String} The product modal that will be shown by clicking the thumbnail
+ - xr_button: {Boolean} Renders the "View in your space" button (shopify-xr-button) if the media is a 3D Model
+ - constrain_to_viewport: {Boolean} Force media height to fit within viewport
+ - media_fit: {String} Method ("contain" or "cover") to fit image into container
+ - media_width: {Float} The width percentage that the media column occupies on desktop.
+ - lazy_load: {Boolean} Image should be lazy loaded. Default: true (optional)
+
+ Usage:
+ {% render 'product-thumbnail',
+ media: media,
+ position: forloop.index,
+ loop: section.settings.enable_video_looping,
+ modal_id: section.id
+ %}
+{% endcomment %}
+
+{%- liquid
+ unless lazy_load == false
+ assign lazy = 'lazy'
+ endunless
+
+ assign desktop_columns = 1
+ if desktop_layout == 'columns' and media_count > 1
+ assign desktop_columns = 2
+ endif
+
+ assign mobile_columns = 1
+ if mobile_layout == 'columns' and media_count > 1
+ assign mobile_columns = 2
+ endif
+
+ if media.media_type == 'image'
+ assign image_class = 'image-magnify-' | append: section.settings.image_zoom
+ endif
+-%}
+
+{%- capture sizes -%}
+ (min-width: {{ settings.page_width }}px) {{ settings.page_width | minus: 100 | times: media_width | divided_by: desktop_columns | round }}px, (min-width: 990px) calc({{ media_width | times: 100 | divided_by: desktop_columns }}vw - 10rem), (min-width: 750px) calc((100vw - 11.5rem) / 2), calc(100vw / {{ mobile_columns }} - 4rem)
+{%- endcapture -%}
+
+
diff --git a/snippets/product-variant-options.liquid b/snippets/product-variant-options.liquid
new file mode 100644
index 0000000..8d65e95
--- /dev/null
+++ b/snippets/product-variant-options.liquid
@@ -0,0 +1,80 @@
+{% comment %}
+ Renders product variant options
+
+ Accepts:
+ - product: {Object} product object.
+ - option: {Object} current product_option object.
+ - block: {Object} block object.
+
+
+ Usage:
+ {% render 'product-variant-options',
+ product: product,
+ option: option,
+ block: block
+ %}
+{% endcomment %}
+{%- liquid
+ assign variants_available_arr = product.variants | map: 'available'
+ assign variants_option1_arr = product.variants | map: 'option1'
+ assign variants_option2_arr = product.variants | map: 'option2'
+ assign variants_option3_arr = product.variants | map: 'option3'
+
+ assign product_form_id = 'product-form-' | append: section.id
+-%}
+
+{%- for value in option.values -%}
+ {%- liquid
+ assign option_disabled = true
+
+ for option1_name in variants_option1_arr
+ case option.position
+ when 1
+ if variants_option1_arr[forloop.index0] == value and variants_available_arr[forloop.index0]
+ assign option_disabled = false
+ endif
+ when 2
+ if option1_name == product.selected_or_first_available_variant.option1 and variants_option2_arr[forloop.index0] == value and variants_available_arr[forloop.index0]
+ assign option_disabled = false
+ endif
+ when 3
+ if option1_name == product.selected_or_first_available_variant.option1 and variants_option2_arr[forloop.index0] == product.selected_or_first_available_variant.option2 and variants_option3_arr[forloop.index0] == value and variants_available_arr[forloop.index0]
+ assign option_disabled = false
+ endif
+ endcase
+ endfor
+ -%}
+
+ {%- if block.settings.picker_type == 'button' -%}
+
+
+ {{ value -}}
+ {{ 'products.product.variant_sold_out_or_unavailable' | t }}
+
+ {%- elsif block.settings.picker_type == 'dropdown' -%}
+
+ {% if option_disabled -%}
+ {{- 'products.product.value_unavailable' | t: option_value: value -}}
+ {%- else -%}
+ {{- value -}}
+ {%- endif %}
+
+ {%- endif -%}
+{%- endfor -%}
diff --git a/snippets/product-variant-picker.liquid b/snippets/product-variant-picker.liquid
new file mode 100644
index 0000000..b51497b
--- /dev/null
+++ b/snippets/product-variant-picker.liquid
@@ -0,0 +1,122 @@
+{% comment %}
+ Renders product variant-picker
+
+ Accepts:
+ - product: {Object} product object.
+ - block: {Object} passing the block information.
+ - product_form_id: {String} Id of the product form to which the variant picker is associated.
+ - update_url: {Boolean} whether or not to update url when changing variants. If false, the url isn't updated. Default: true (optional).
+ Usage:
+ {% render 'product-variant-picker', product: product, block: block, product_form_id: product_form_id %}
+{% endcomment %}
+{%- unless product.has_only_default_variant -%}
+ {%- if block.settings.picker_type == 'button' -%}
+
+ {%- for option in product.options_with_values -%}
+
+ {{ option.name }}
+ {% render 'product-variant-options', product: product, option: option, block: block %}
+
+ {%- endfor -%}
+
+
+ {%- else -%}
+
+ {%- for option in product.options_with_values -%}
+
+ {%- endfor -%}
+
+
+
+ {%- endif -%}
+{%- endunless -%}
+
+
+
+
diff --git a/snippets/quantity-input.liquid b/snippets/quantity-input.liquid
new file mode 100644
index 0000000..e269b99
--- /dev/null
+++ b/snippets/quantity-input.liquid
@@ -0,0 +1,43 @@
+{% comment %}
+ Quantity input
+
+ Accepts:
+ - variant: {Object} Variant object
+ - variant_id: {String} Variant ID (optional)
+
+ Usage:
+ {% render 'quantity-input' variant: variant %}
+{% endcomment %}
+
+
+
+
+ {{- 'products.product.quantity.decrease' | t: product: variant.title | escape -}}
+
+ {% render 'icon-minus' %}
+
+
+
+
+ {{- 'products.product.quantity.increase' | t: product: variant.title | escape -}}
+
+ {% render 'icon-plus' %}
+
+
diff --git a/snippets/quick-order-list-row.liquid b/snippets/quick-order-list-row.liquid
new file mode 100644
index 0000000..6050769
--- /dev/null
+++ b/snippets/quick-order-list-row.liquid
@@ -0,0 +1,480 @@
+{% comment %}
+ Variant List Row
+
+ Accepts:
+ - item: {Object} Variant or Product object
+ - sku: {String} Sku of Product or Variant (optional)
+ - image: {Object} Product or Variant image (optional)
+ Usage:
+ {% render 'quick-order-list-row' variant: variant %}
+{% endcomment %}
+
+{% # theme-check-disable %}
+{% assign cart_qty = cart | item_count_for_variant: variant.id %}
+{% # theme-check-enable %}
+
+
+
+ {%- if section.settings.show_image -%}
+
+ {%- endif -%}
+
+ {{ item.title | escape }}
+ {%- if section.settings.show_sku -%}
+ {{ sku | escape }}
+ {%- endif -%}
+
+
+
+
+
+ {{ item.title | escape }}
+ {%- if section.settings.show_sku -%}
+ {{ sku | escape }}
+ {%- endif -%}
+
+
+ {%- assign item_price = item.price | money -%}
+ {%- if item.compare_at_price -%}
+
+
+ {{ 'products.product.price.regular_price' | t }}
+
+
+
+ {{ item.compare_at_price | money }}
+
+
+
+ {{ 'products.product.price.sale_price' | t }}
+
+
+ {%- if variant.quantity_price_breaks.size > 0 -%}
+ {%- liquid
+ assign volume_pricing_array = variant.quantity_price_breaks | sort: 'quantity' | reverse
+ -%}
+
+
+ {%- if cart_qty < volume_pricing_array.last.minimum_quantity -%}
+ {%- assign variant_price = variant.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: variant_price -}}
+
+ {%- else -%}
+ {%- for price_break in volume_pricing_array -%}
+ {%- if cart_qty >= price_break.minimum_quantity -%}
+ {%- assign price_break_price = price_break.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: price_break_price -}}
+
+ {%- break -%}
+ {%- endif -%}
+ {%- endfor -%}
+ {%- endif -%}
+
+
+ {%- else -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: item_price -}}
+
+ {%- endif -%}
+
+
+ {%- else -%}
+ {%- if variant.quantity_price_breaks.size > 0 -%}
+ {%- liquid
+ assign volume_pricing_array = variant.quantity_price_breaks | sort: 'quantity' | reverse
+ -%}
+
+
+ {%- if cart_qty < volume_pricing_array.last.minimum_quantity -%}
+ {%- assign variant_price = variant.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: variant_price -}}
+
+ {%- else -%}
+ {%- for price_break in volume_pricing_array -%}
+ {%- if cart_qty >= price_break.minimum_quantity -%}
+ {%- assign price_break_price = price_break.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: price_break_price -}}
+
+ {%- break -%}
+ {%- endif -%}
+ {%- endfor -%}
+ {%- endif -%}
+
+
+ {%- else -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: item_price -}}
+
+ {%- endif -%}
+ {%- endif -%}
+
+ {%- if item.available and item.unit_price_measurement -%}
+
+ {{ 'products.product.price.unit_price' | t }}
+ {{ item.unit_price | money }}
+ /
+ {{ 'accessibility.unit_price_separator' | t }}
+ {%- if item.unit_price_measurement.reference_value != 1 -%}
+ {{- item.unit_price_measurement.reference_value -}}
+ {%- endif -%}
+ {{ item.unit_price_measurement.reference_unit }}
+
+ {%- endif -%}
+
+
+
+ {%- render 'loading-spinner' -%}
+ {% comment %} TODO: enable theme-check once `line_items_for` is accepted as valid filter {% endcomment %}
+ {% # theme-check-disable %}
+ {{ cart | line_items_for: item | sum: 'original_line_price' | money }}
+ {% # theme-check-enable %}
+
+
+
+ {%- liquid
+ assign check_against_inventory = true
+ if variant.inventory_management != 'shopify' or variant.inventory_policy == 'continue'
+ assign check_against_inventory = false
+ endif
+ if variant.quantity_rule.min > variant.inventory_quantity and check_against_inventory
+ assign quantity_rule_soldout = true
+ endif
+
+ assign has_qty_rules = false
+ if variant.quantity_rule.increment > 1 or variant.quantity_rule.min > 1 or variant.quantity_rule.max != null
+ assign has_qty_rules = true
+ endif
+
+ assign has_vol_pricing = false
+ if variant.quantity_price_breaks.size > 0
+ assign has_vol_pricing = true
+ endif
+
+ assign is_available = false
+ assign has_popover = false
+ unless variant.available == false or quantity_rule_soldout
+ assign is_available = true
+ endunless
+ if has_qty_rules or has_vol_pricing
+ assign has_popover = true
+ endif
+ -%}
+
+
+
+ {{ 'products.product.quantity.label' | t }}
+
+
+ {%- if has_qty_rules or has_vol_pricing -%}
+
+ {% render 'icon-info' %}
+
+ {%- endif -%}
+ {%- if variant.available == false or quantity_rule_soldout -%}
+ {{ 'products.product.sold_out' | t }}
+ {%- else -%}
+ {% comment %} TODO: Remove theme check {% endcomment %}
+ {% # theme-check-disable %}
+ {% assign cart_qty = cart | item_count_for_variant: variant.id %}
+ {% # theme-check-enable %}
+ {% render 'quantity-input', variant: variant %}
+ {%- endif -%}
+
+ {%- if cart_qty > 0 -%}
+
+
+ {% render 'icon-remove' %}
+
+
+ {%- endif -%}
+
+ {%- if has_popover -%}
+
+ {% render 'icon-info' %}
+
+ {%- if has_vol_pricing -%}
+ {{ 'products.product.volume_pricing.note' | t }}
+ {%- elsif has_qty_rules -%}
+ {{ 'products.product.quantity.note' | t }}
+ {%- endif -%}
+
+
+ {%- endif -%}
+ {%- if has_vol_pricing or has_qty_rules -%}
+
+ {%- endif -%}
+
+
+
+ {%- assign item_price = item.price | money -%}
+
+ {%- if item.compare_at_price -%}
+
+
+ {{ 'products.product.price.regular_price' | t }}
+
+
+
+ {{ item.compare_at_price | money }}
+
+
+
+ {{ 'products.product.price.sale_price' | t }}
+
+
+ {%- if variant.quantity_price_breaks.size > 0 -%}
+ {%- liquid
+ assign volume_pricing_array = variant.quantity_price_breaks | sort: 'quantity' | reverse
+ -%}
+
+
+ {%- if cart_qty < volume_pricing_array.last.minimum_quantity -%}
+ {%- assign variant_price = variant.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: variant_price -}}
+
+ {%- else -%}
+ {%- for price_break in volume_pricing_array -%}
+ {%- if cart_qty >= price_break.minimum_quantity -%}
+ {%- assign price_break_price = price_break.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: price_break_price -}}
+
+ {%- break -%}
+ {%- endif -%}
+ {%- endfor -%}
+ {%- endif -%}
+
+
+ {%- else -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: item_price -}}
+
+ {%- endif -%}
+
+
+ {%- else -%}
+ {%- if variant.quantity_price_breaks.size > 0 -%}
+ {%- liquid
+ assign volume_pricing_array = variant.quantity_price_breaks | sort: 'quantity' | reverse
+ -%}
+
+
+ {%- if cart_qty < volume_pricing_array.last.minimum_quantity -%}
+ {%- assign variant_price = variant.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: variant_price -}}
+
+ {%- else -%}
+ {%- for price_break in volume_pricing_array -%}
+ {%- if cart_qty >= price_break.minimum_quantity -%}
+ {%- assign price_break_price = price_break.price | money -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: price_break_price -}}
+
+ {%- break -%}
+ {%- endif -%}
+ {%- endfor -%}
+ {%- endif -%}
+
+
+ {%- else -%}
+
+ {{- 'sections.quick_order_list.each' | t: money: item_price -}}
+
+ {%- endif -%}
+ {%- endif -%}
+
+ {%- if item.available and item.unit_price_measurement -%}
+
+ {{ 'products.product.price.unit_price' | t }}
+ {{ item.unit_price | money }}
+ /
+ {{ 'accessibility.unit_price_separator' | t }}
+ {%- if item.unit_price_measurement.reference_value != 1 -%}
+ {{- item.unit_price_measurement.reference_value -}}
+ {%- endif -%}
+ {{ item.unit_price_measurement.reference_unit }}
+
+ {%- endif -%}
+
+
+ {%- render 'loading-spinner' -%}
+ {% comment %} TODO: enable theme-check once `line_items_for` is accepted as valid filter {% endcomment %}
+ {% # theme-check-disable %}
+ {{ cart | line_items_for: item | sum: 'original_line_price' | money }}
+ {% # theme-check-enable %}
+
+
+
+
+
+
+
+
+
+
+
+{%- if product.quantity_price_breaks_configured? -%}
+
+
+
+ {{ variant.quantity_rule.min }}
+ {%- assign price = variant.price | money -%}
+ {{ price }}
+
+ {%- for price_break in variant.quantity_price_breaks -%}
+ {%- assign price_break_price = price_break.price | money -%}
+
+
+ {{- price_break.minimum_quantity -}}
+
+ {{- price_break.price | money }}
+
+ {%- endfor -%}
+
+
+{%- endif -%}
diff --git a/snippets/share-button.liquid b/snippets/share-button.liquid
new file mode 100644
index 0000000..4dd5671
--- /dev/null
+++ b/snippets/share-button.liquid
@@ -0,0 +1,49 @@
+{% comment %}
+ Renders share button.
+ Accepts:
+ - block: {Object} passes in the block information.
+ - share_link: {String} url to be added to the input the user will get/copy.
+
+ Usage:
+ {% render 'share-button',
+ block: block,
+ share_link: share_url
+ %}
+{% endcomment %}
+
+
+
+
+ {% render 'icon-share' %}
+ {{ block.settings.share_label | escape }}
+
+
+
+ {% render 'icon-share' %}
+ {{ block.settings.share_label | escape }}
+
+
+
+
diff --git a/snippets/social-icons.liquid b/snippets/social-icons.liquid
new file mode 100644
index 0000000..1cbcb53
--- /dev/null
+++ b/snippets/social-icons.liquid
@@ -0,0 +1,85 @@
+{% comment %}
+ Renders social icons.
+ Accepts:
+ - class: {String} a class to be added to the element (optional).
+
+ Usage:
+ {% render 'social-icons',
+ class: 'my-class'
+ %}
+{% endcomment %}
+
+
diff --git a/snippets/visual-display.liquid b/snippets/visual-display.liquid
new file mode 100644
index 0000000..57fd02f
--- /dev/null
+++ b/snippets/visual-display.liquid
@@ -0,0 +1,45 @@
+{% comment %}
+ Renders a visual display element, currently just a swatch. If wrapped in "visual-display-parent" and "visual-display-parent--swatch" classes, this will receive hover and focus states.
+
+ Add a class of "active" or "disabled" to the parent element to change the state of the visual display.
+
+ Accepts:
+ - type: {String} Can be "colors" or "image", or nothing to represent an empty state.
+ - value: {Object} Will be an array of color drops, or image drop, depending on the "type"
+ - presentation: {String} Can only be "swatch"
+
+ Usage:
+ {% render 'visual-display', type: value.display.type, value: value.display.value, presentation: filter.presentation %}
+{% endcomment %}
+
+ {%- case type -%}
+ {%- when 'colors' -%}
+ {% liquid
+ assign size_limit = value.size | at_most: 4
+ assign rotation = '0deg'
+ if size_limit == 2
+ assign rotation = '45deg'
+ endif
+
+ assign angle_increment = 360 | divided_by: size_limit
+ assign angle = 0
+ %}
+ {%- capture conic_gradient -%}
+ {%- for color in value limit: size_limit -%}
+ {{ color }} {{ angle }}deg{%- assign angle = angle | plus: angle_increment %} {{ angle }}deg{%- unless forloop.last %}, {%- endunless -%}
+ {%- endfor -%}
+ {%- endcapture -%}
+
+ {%- when 'image' -%}
+ {{
+ value
+ | image_url: width: 300
+ | image_tag: class: 'visual-display__child visual-display__image', alt: value.alt
+ }}
+ {%- else -%}
+
+ {%- endcase -%}
+
diff --git a/templates/404.json b/templates/404.json
new file mode 100644
index 0000000..747b016
--- /dev/null
+++ b/templates/404.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-404"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/article.json b/templates/article.json
new file mode 100644
index 0000000..c1dc6e7
--- /dev/null
+++ b/templates/article.json
@@ -0,0 +1,40 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-article",
+ "blocks": {
+ "featured_image": {
+ "type": "featured_image",
+ "settings": {
+ "image_height": "adapt"
+ }
+ },
+ "title": {
+ "type": "title",
+ "settings": {
+ "blog_show_date": true,
+ "blog_show_author": false
+ }
+ },
+ "share": {
+ "type": "share",
+ "settings": {
+ "share_label": "Share"
+ }
+ },
+ "content": {
+ "type": "content"
+ }
+ },
+ "block_order": [
+ "featured_image",
+ "title",
+ "share",
+ "content"
+ ]
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/blog.json b/templates/blog.json
new file mode 100644
index 0000000..9dee6d8
--- /dev/null
+++ b/templates/blog.json
@@ -0,0 +1,19 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-blog",
+ "settings": {
+ "layout": "collage",
+ "show_image": true,
+ "image_height": "medium",
+ "show_date": true,
+ "show_author": false,
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/cart.json b/templates/cart.json
new file mode 100644
index 0000000..00ff37e
--- /dev/null
+++ b/templates/cart.json
@@ -0,0 +1,55 @@
+{
+ "sections": {
+ "cart-items": {
+ "type": "main-cart-items",
+ "settings": {
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ },
+ "cart-footer": {
+ "type": "main-cart-footer",
+ "blocks": {
+ "subtotal": {
+ "type": "subtotal",
+ "settings": {
+ }
+ },
+ "buttons": {
+ "type": "buttons",
+ "settings": {
+ }
+ }
+ },
+ "block_order": [
+ "subtotal",
+ "buttons"
+ ]
+ },
+ "featured-collection": {
+ "type": "featured-collection",
+ "settings": {
+ "title": "Featured collection",
+ "heading_size": "h2",
+ "collection": "all",
+ "products_to_show": 4,
+ "columns_desktop": 4,
+ "color_scheme": "background-1",
+ "show_view_all": true,
+ "swipe_on_mobile": false,
+ "image_ratio": "square",
+ "show_secondary_image": false,
+ "show_vendor": false,
+ "show_rating": false,
+ "columns_mobile": "2",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "cart-items",
+ "cart-footer",
+ "featured-collection"
+ ]
+}
diff --git a/templates/collection.json b/templates/collection.json
new file mode 100644
index 0000000..f21fa3a
--- /dev/null
+++ b/templates/collection.json
@@ -0,0 +1,32 @@
+{
+ "sections": {
+ "banner": {
+ "type": "main-collection-banner",
+ "settings": {
+ "show_collection_description": true,
+ "show_collection_image": false,
+ "color_scheme": "background-1"
+ }
+ },
+ "product-grid": {
+ "type": "main-collection-product-grid",
+ "settings": {
+ "products_per_page": 16,
+ "columns_desktop": 4,
+ "image_ratio": "adapt",
+ "show_secondary_image": false,
+ "show_vendor": false,
+ "show_rating": false,
+ "enable_filtering": true,
+ "enable_sorting": true,
+ "columns_mobile": "2",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "banner",
+ "product-grid"
+ ]
+}
diff --git a/templates/customers/account.json b/templates/customers/account.json
new file mode 100644
index 0000000..b9c2398
--- /dev/null
+++ b/templates/customers/account.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-account"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/customers/activate_account.json b/templates/customers/activate_account.json
new file mode 100644
index 0000000..43c4141
--- /dev/null
+++ b/templates/customers/activate_account.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-activate-account"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/customers/addresses.json b/templates/customers/addresses.json
new file mode 100644
index 0000000..fc30f2a
--- /dev/null
+++ b/templates/customers/addresses.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-addresses"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/customers/login.json b/templates/customers/login.json
new file mode 100644
index 0000000..ece5378
--- /dev/null
+++ b/templates/customers/login.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-login"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/customers/order.json b/templates/customers/order.json
new file mode 100644
index 0000000..b23bc48
--- /dev/null
+++ b/templates/customers/order.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-order"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/customers/register.json b/templates/customers/register.json
new file mode 100644
index 0000000..3d82f08
--- /dev/null
+++ b/templates/customers/register.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-register"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/customers/reset_password.json b/templates/customers/reset_password.json
new file mode 100644
index 0000000..cf74f5b
--- /dev/null
+++ b/templates/customers/reset_password.json
@@ -0,0 +1,10 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-reset-password"
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/gift_card.liquid b/templates/gift_card.liquid
new file mode 100644
index 0000000..4a2838a
--- /dev/null
+++ b/templates/gift_card.liquid
@@ -0,0 +1,206 @@
+{% layout none %}
+
+
+
+
+
+
+
+
+
+
+
+ {%- if settings.favicon != blank -%}
+
+ {%- endif -%}
+
+ {%- unless settings.type_header_font.system? -%}
+
+ {%- endunless -%}
+
+ {%- assign formatted_balance = gift_card.balance | money_without_trailing_zeros | strip_html -%}
+
+ {{ 'gift_cards.issued.title' | t: value: formatted_balance, shop: shop.name }}
+
+
+
+ {{ content_for_header }}
+
+ {%- liquid
+ assign body_font_bold = settings.type_body_font | font_modify: 'weight', 'bold'
+ assign body_font_italic = settings.type_body_font | font_modify: 'style', 'italic'
+ assign body_font_bold_italic = body_font_bold | font_modify: 'style', 'italic'
+ %}
+
+ {% style %}
+ {{ settings.type_body_font | font_face: font_display: 'swap' }}
+ {{ body_font_bold | font_face: font_display: 'swap' }}
+ {{ body_font_italic | font_face: font_display: 'swap' }}
+ {{ body_font_bold_italic | font_face: font_display: 'swap' }}
+ {{ settings.type_header_font | font_face: font_display: 'swap' }}
+
+ :root {
+ --font-body-family: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
+ --font-body-style: {{ settings.type_body_font.style }};
+ --font-body-weight: {{ settings.type_body_font.weight }};
+
+ --font-heading-family: {{ settings.type_header_font.family }}, {{ settings.type_header_font.fallback_families }};
+ --font-heading-style: {{ settings.type_header_font.style }};
+ --font-heading-weight: {{ settings.type_header_font.weight }};
+
+ --font-body-scale: {{ settings.body_scale | divided_by: 100.0 }};
+ --font-heading-scale: {{ settings.heading_scale | times: 1.0 | divided_by: settings.body_scale }};
+
+ {% assign scheme = settings.color_schemes | first %}
+ --color-background: {{ scheme.settings.background.red }},{{ scheme.settings.background.green }},{{ scheme.settings.background.blue }};
+ {% if scheme.settings.background_gradient != empty -%}
+ --gradient-background: {{ scheme.settings.background_gradient }};
+ {%- else -%}
+ --gradient-background: {{ scheme.settings.background }};
+ {%- endif %}
+ --color-foreground: {{ scheme.settings.text.red }},{{ scheme.settings.text.green }},{{ scheme.settings.text.blue }};
+ --color-button: {{ scheme.settings.button.red }},{{ scheme.settings.button.green }},{{ scheme.settings.button.blue }};
+ --color-button-label: {{ scheme.settings.button_label.red }},{{ scheme.settings.button_label.green }},{{ scheme.settings.button_label.blue }};
+ --color-secondary-button-label: {{ scheme.settings.secondary_button_label.red }},{{ scheme.settings.secondary_button_label.green }},{{ scheme.settings.secondary_button_label.blue }};
+ --color-shadow: {{ scheme.settings.shadow.red }},{{ scheme.settings.shadow.green }},{{ scheme.settings.shadow.blue }};
+
+ {% assign badge_scheme_id = settings.sold_out_badge_color_scheme | append: '' %}
+ {% assign badge_scheme = settings.color_schemes[badge_scheme_id] %}
+ --color-soldout-badge: {{ badge_scheme.settings.background.red }},{{ badge_scheme.settings.background.green }},{{ badge_scheme.settings.background.blue }};
+ --color-soldout-badge-label: {{ badge_scheme.settings.text.red }},{{ badge_scheme.settings.text.green }},{{ badge_scheme.settings.text.blue }};
+
+ --page-width: {{ settings.page_width | divided_by: 10 }}rem;
+ --page-width-margin: {% if settings.page_width == '1600' %}2{% else %}0{% endif %}rem;
+
+ --buttons-radius: {{ settings.buttons_radius }}px;
+ --buttons-border-width: {% if settings.buttons_border_opacity > 0 %}{{ settings.buttons_border_thickness }}{% else %}0{% endif %}px;
+ --buttons-border-opacity: {{ settings.buttons_border_opacity | divided_by: 100.0 }};
+ --buttons-shadow-opacity: {{ settings.buttons_shadow_opacity | divided_by: 100.0 }};
+ --buttons-shadow-horizontal-offset: {{ settings.buttons_shadow_horizontal_offset }}px;
+ --buttons-shadow-vertical-offset: {{ settings.buttons_shadow_vertical_offset }}px;
+ --buttons-shadow-blur-radius: {{ settings.buttons_shadow_blur }}px;
+ --buttons-border-offset: {% if settings.buttons_radius > 0 or settings.buttons_shadow_opacity > 0 %}0.3{% else %}0{% endif %}px;
+
+ --inputs-radius: {{ settings.inputs_radius }}px;
+ --inputs-border-width: {{ settings.inputs_border_thickness }}px;
+ --inputs-border-opacity: {{ settings.inputs_border_opacity | divided_by: 100.0 }};
+ --inputs-shadow-opacity: {{ settings.inputs_shadow_opacity | divided_by: 100.0 }};
+ --inputs-shadow-horizontal-offset: {{ settings.inputs_shadow_horizontal_offset }}px;
+ --inputs-shadow-vertical-offset: {{ settings.inputs_shadow_vertical_offset }}px;
+ --inputs-shadow-blur-radius: {{ settings.inputs_shadow_blur }}px;
+ }
+ {% endstyle %}
+
+ {%- unless settings.type_body_font.system? -%}
+
+ {%- endunless -%}
+ {%- unless settings.type_header_font.system? -%}
+
+ {%- endunless -%}
+
+ {{ 'template-giftcard.css' | asset_url | stylesheet_tag }}
+
+
+
+
+
+
+ {% if settings.currency_code_enabled %}
+ {{ gift_card.balance | money_with_currency }}
+ {% else %}
+ {{ gift_card.balance | money }}
+ {% endif %}
+
+ {%- if gift_card.enabled == false or gift_card.expired -%}
+
{{ 'gift_cards.issued.expired' | t }}
+ {%- endif -%}
+
+ {% if gift_card.expires_on %}
+ {%- assign gift_card_expiration_date = gift_card.expires_on | date: '%B %e, %Y' -%}
+
+ {{ 'gift_cards.issued.expiration_date' | t: expires_on: gift_card_expiration_date }}
+
+ {% endif %}
+
+
+
+
+ {%- if settings.logo != blank -%}
+ {%- assign logo_alt = settings.logo.alt | default: shop.name | escape -%}
+ {{ settings.logo | image_url: width: 570 | image_tag: class: 'gift-card__image', alt: logo_alt }}
+ {%- else %}
+
+ {%- endif %}
+
+ {{ shop.name }}
+
+
{{ 'gift_cards.issued.how_to_use_gift_card' | t }}
+
+ {{ gift_card.code | format_code }}
+
+ {%- if gift_card.pass_url -%}
+
+
+
+ {%- endif -%}
+
+
+
+
+ {{ 'accessibility.link_messages.new_window' | t }}
+
+
+
+
+
diff --git a/templates/index.json b/templates/index.json
new file mode 100644
index 0000000..5186450
--- /dev/null
+++ b/templates/index.json
@@ -0,0 +1,210 @@
+{
+ "sections": {
+ "image_banner": {
+ "type": "image-banner",
+ "blocks": {
+ "heading": {
+ "type": "heading",
+ "settings": {
+ "heading": "Image banner",
+ "heading_size": "h0"
+ }
+ },
+ "text": {
+ "type": "text",
+ "settings": {
+ "text": "Give customers details about the banner image(s) or content on the template.",
+ "text_style": "body"
+ }
+ },
+ "button": {
+ "type": "buttons",
+ "settings": {
+ "button_label_1": "Shop all",
+ "button_link_1": "shopify://collections/all",
+ "button_style_secondary_1": true,
+ "button_label_2": "",
+ "button_link_2": "",
+ "button_style_secondary_2": false
+ }
+ }
+ },
+ "block_order": [
+ "heading",
+ "text",
+ "button"
+ ],
+ "settings": {
+ "image_overlay_opacity": 40,
+ "image_height": "large",
+ "desktop_content_position": "bottom-center",
+ "show_text_box": false,
+ "desktop_content_alignment": "center",
+ "color_scheme": "inverse",
+ "mobile_content_alignment": "center",
+ "stack_images_on_mobile": false,
+ "show_text_below": false
+ }
+ },
+ "rich_text": {
+ "type": "rich-text",
+ "blocks": {
+ "heading": {
+ "type": "heading",
+ "settings": {
+ "heading": "Talk about your brand",
+ "heading_size": "h1"
+ }
+ },
+ "text": {
+ "type": "text",
+ "settings": {
+ "text": "Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.<\/p>"
+ }
+ }
+ },
+ "block_order": [
+ "heading",
+ "text"
+ ],
+ "settings": {
+ "color_scheme": "background-1",
+ "full_width": true,
+ "padding_top": 40,
+ "padding_bottom": 0
+ }
+ },
+ "featured_collection": {
+ "type": "featured-collection",
+ "settings": {
+ "title": "Featured products",
+ "heading_size": "h2",
+ "collection": "all",
+ "products_to_show": 8,
+ "columns_desktop": 4,
+ "color_scheme": "background-1",
+ "show_view_all": false,
+ "swipe_on_mobile": false,
+ "image_ratio": "adapt",
+ "show_secondary_image": true,
+ "show_vendor": false,
+ "show_rating": false,
+ "columns_mobile": "2",
+ "padding_top": 28,
+ "padding_bottom": 36
+ }
+ },
+ "collage": {
+ "type": "collage",
+ "blocks": {
+ "collection-0": {
+ "type": "collection",
+ "settings": {
+ "collection": ""
+ }
+ },
+ "product": {
+ "type": "product",
+ "settings": {
+ "product": "",
+ "second_image": false
+ }
+ },
+ "collection-1": {
+ "type": "collection",
+ "settings": {
+ "collection": ""
+ }
+ }
+ },
+ "block_order": [
+ "collection-0",
+ "product",
+ "collection-1"
+ ],
+ "settings": {
+ "heading": "Multimedia collage",
+ "heading_size": "h2",
+ "desktop_layout": "left",
+ "mobile_layout": "collage",
+ "color_scheme": "background-1",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ },
+ "video": {
+ "type": "video",
+ "settings": {
+ "heading": "",
+ "video_url": "https://www.youtube.com/watch?v=_9VUPq3SxOc",
+ "heading_size": "h1",
+ "description": "",
+ "full_width": false,
+ "color_scheme": "background-1",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ },
+ "multicolumn": {
+ "type": "multicolumn",
+ "blocks": {
+ "column1": {
+ "type": "column",
+ "settings": {
+ "title": "Column",
+ "text": "
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>",
+ "link_label": "",
+ "link": ""
+ }
+ },
+ "column2": {
+ "type": "column",
+ "settings": {
+ "title": "Column",
+ "text": "
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>",
+ "link_label": "",
+ "link": ""
+ }
+ },
+ "column3": {
+ "type": "column",
+ "settings": {
+ "title": "Column",
+ "text": "
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>",
+ "link_label": "",
+ "link": ""
+ }
+ }
+ },
+ "block_order": [
+ "column1",
+ "column2",
+ "column3"
+ ],
+ "settings": {
+ "title": "",
+ "heading_size": "h1",
+ "image_width": "third",
+ "image_ratio": "adapt",
+ "columns_desktop": 3,
+ "column_alignment": "center",
+ "background_style": "none",
+ "button_label": "",
+ "button_link": "",
+ "swipe_on_mobile": false,
+ "color_scheme": "background-1",
+ "columns_mobile": "1",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "image_banner",
+ "rich_text",
+ "featured_collection",
+ "collage",
+ "video",
+ "multicolumn"
+ ]
+}
diff --git a/templates/list-collections.json b/templates/list-collections.json
new file mode 100644
index 0000000..b7247f3
--- /dev/null
+++ b/templates/list-collections.json
@@ -0,0 +1,15 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-list-collections",
+ "settings": {
+ "title": "Collections",
+ "sort": "alphabetical",
+ "image_ratio": "square"
+ }
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/page.contact.json b/templates/page.contact.json
new file mode 100644
index 0000000..cf4e693
--- /dev/null
+++ b/templates/page.contact.json
@@ -0,0 +1,25 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-page",
+ "settings": {
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ },
+ "form": {
+ "type": "contact-form",
+ "settings": {
+ "heading": "",
+ "heading_size": "h1",
+ "color_scheme": "background-1",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "main",
+ "form"
+ ]
+}
diff --git a/templates/page.json b/templates/page.json
new file mode 100644
index 0000000..f2ee79b
--- /dev/null
+++ b/templates/page.json
@@ -0,0 +1,14 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-page",
+ "settings": {
+ "padding_top": 28,
+ "padding_bottom": 28
+ }
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/password.json b/templates/password.json
new file mode 100644
index 0000000..227a4d4
--- /dev/null
+++ b/templates/password.json
@@ -0,0 +1,46 @@
+{
+ "layout": "password",
+ "sections": {
+ "main": {
+ "type": "email-signup-banner",
+ "blocks": {
+ "heading": {
+ "type": "heading",
+ "settings": {
+ "heading": "Opening soon",
+ "heading_size": "h1"
+ }
+ },
+ "paragraph": {
+ "type": "paragraph",
+ "settings": {
+ "text": "
Be the first to know when we launch.<\/p>",
+ "text_style": "body"
+ }
+ },
+ "email_form": {
+ "type": "email_form"
+ }
+ },
+ "block_order": [
+ "heading",
+ "paragraph",
+ "email_form"
+ ],
+ "settings": {
+ "image_overlay_opacity": 0,
+ "show_background_image": true,
+ "image_height": "medium",
+ "desktop_content_position": "middle-center",
+ "show_text_box": true,
+ "desktop_content_alignment": "center",
+ "color_scheme": "background-1",
+ "mobile_content_alignment": "center",
+ "show_text_below": true
+ }
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/templates/product.json b/templates/product.json
new file mode 100644
index 0000000..e8ffab4
--- /dev/null
+++ b/templates/product.json
@@ -0,0 +1,216 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-product",
+ "blocks": {
+ "vendor": {
+ "type": "text",
+ "settings": {
+ "text": "{{ product.vendor }}",
+ "text_style": "uppercase"
+ }
+ },
+ "title": {
+ "type": "title"
+ },
+ "caption": {
+ "type": "text",
+ "settings": {
+ "text": "{{ product.metafields.descriptors.subtitle.value }}",
+ "text_style": "subtitle"
+ }
+ },
+ "price": {
+ "type": "price"
+ },
+ "variant_picker": {
+ "type": "variant_picker",
+ "settings": {
+ "picker_type": "button"
+ }
+ },
+ "quantity_selector": {
+ "type": "quantity_selector"
+ },
+ "buy_buttons": {
+ "type": "buy_buttons",
+ "settings": {
+ "show_dynamic_checkout": true,
+ "show_gift_card_recipient": true
+ }
+ },
+ "description": {
+ "type": "description"
+ },
+ "collapsible-row-0": {
+ "type": "collapsible_tab",
+ "settings": {
+ "heading": "Materials",
+ "icon": "leather",
+ "content": "",
+ "page": ""
+ }
+ },
+ "collapsible-row-1": {
+ "type": "collapsible_tab",
+ "settings": {
+ "heading": "Shipping & Returns",
+ "icon": "truck",
+ "content": "",
+ "page": ""
+ }
+ },
+ "collapsible-row-2": {
+ "type": "collapsible_tab",
+ "settings": {
+ "heading": "Dimensions",
+ "icon": "ruler",
+ "content": "",
+ "page": ""
+ }
+ },
+ "collapsible-row-3": {
+ "type": "collapsible_tab",
+ "settings": {
+ "heading": "Care Instructions",
+ "icon": "heart",
+ "content": "",
+ "page": ""
+ }
+ },
+ "share": {
+ "type": "share",
+ "settings": {
+ "share_label": "Share"
+ }
+ }
+ },
+ "block_order": [
+ "vendor",
+ "title",
+ "caption",
+ "price",
+ "variant_picker",
+ "quantity_selector",
+ "buy_buttons",
+ "description",
+ "collapsible-row-0",
+ "collapsible-row-1",
+ "collapsible-row-2",
+ "collapsible-row-3",
+ "share"
+ ],
+ "settings": {
+ "enable_sticky_info": true,
+ "gallery_layout": "stacked",
+ "media_size": "large",
+ "constrain_to_viewport": true,
+ "mobile_thumbnails": "hide",
+ "hide_variants": true,
+ "enable_video_looping": false,
+ "padding_top": 36,
+ "padding_bottom": 12
+ }
+ },
+ "image-with-text": {
+ "type": "image-with-text",
+ "blocks": {
+ "image-with-text-0": {
+ "type": "heading",
+ "settings": {
+ "heading": "Image with text",
+ "heading_size": "h1"
+ }
+ },
+ "image-with-text-1": {
+ "type": "text",
+ "settings": {
+ "text": "
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>",
+ "text_style": "body"
+ }
+ }
+ },
+ "block_order": [
+ "image-with-text-0",
+ "image-with-text-1"
+ ],
+ "settings": {
+ "height": "small",
+ "desktop_image_width": "medium",
+ "layout": "text_first",
+ "desktop_content_position": "top",
+ "desktop_content_alignment": "left",
+ "content_layout": "no-overlap",
+ "color_scheme": "background-2",
+ "mobile_content_alignment": "left",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ },
+ "multicolumn": {
+ "type": "multicolumn",
+ "blocks": {
+ "column-0": {
+ "type": "column",
+ "settings": {
+ "title": "Free Shipping",
+ "text": "
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>",
+ "link_label": "",
+ "link": ""
+ }
+ },
+ "column-1": {
+ "type": "column",
+ "settings": {
+ "title": "Hassle-Free Exchanges",
+ "text": "
Pair text with an image to focus on your chosen product, collection, or blog post. Add details on availability, style, or even provide a review.<\/p>",
+ "link_label": "",
+ "link": ""
+ }
+ }
+ },
+ "block_order": [
+ "column-0",
+ "column-1"
+ ],
+ "settings": {
+ "title": "",
+ "heading_size": "h1",
+ "image_width": "full",
+ "image_ratio": "adapt",
+ "columns_desktop": 2,
+ "column_alignment": "left",
+ "background_style": "none",
+ "button_label": "",
+ "button_link": "",
+ "swipe_on_mobile": false,
+ "color_scheme": "background-1",
+ "columns_mobile": "1",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ },
+ "related-products": {
+ "type": "related-products",
+ "settings": {
+ "heading": "You may also like",
+ "heading_size": "h2",
+ "columns_desktop": 4,
+ "color_scheme": "background-1",
+ "image_ratio": "square",
+ "show_secondary_image": true,
+ "show_vendor": false,
+ "show_rating": false,
+ "columns_mobile": "2",
+ "padding_top": 36,
+ "padding_bottom": 28
+ }
+ }
+ },
+ "order": [
+ "main",
+ "image-with-text",
+ "multicolumn",
+ "related-products"
+ ]
+}
diff --git a/templates/search.json b/templates/search.json
new file mode 100644
index 0000000..3aa4542
--- /dev/null
+++ b/templates/search.json
@@ -0,0 +1,24 @@
+{
+ "sections": {
+ "main": {
+ "type": "main-search",
+ "settings": {
+ "columns_desktop": 4,
+ "image_ratio": "adapt",
+ "show_secondary_image": false,
+ "show_vendor": false,
+ "show_rating": false,
+ "enable_filtering": true,
+ "enable_sorting": true,
+ "article_show_date": true,
+ "article_show_author": false,
+ "columns_mobile": "2",
+ "padding_top": 36,
+ "padding_bottom": 36
+ }
+ }
+ },
+ "order": [
+ "main"
+ ]
+}
diff --git a/translation.yml b/translation.yml
new file mode 100644
index 0000000..fb6866f
--- /dev/null
+++ b/translation.yml
@@ -0,0 +1,18 @@
+source_language: en
+target_languages: [bg-BG, cs, da, de, el, es, fi, fr, hr-HR, hu, id, it, ja, ko, lt-LT, nb, nl, pl, pt-BR, pt-PT, ro-RO, ru, sk-SK, sl-SI, sv, th, tr, vi, zh-CN, zh-TW]
+non_blocking_languages: []
+async_pr_mode: per_pr
+components:
+ - name: buyer
+ audience: buyer
+ scheme: 'apps-and-themes'
+ owners: ['@Shopify/themes-translations']
+ paths:
+ - locales/{{language}}.json
+ - name: merchant
+ target_languages: [cs, da, de, es, fi, fr, it, ja, ko, nb, nl, pl, pt-BR, pt-PT, sv, th, tr, vi, zh-CN, zh-TW]
+ audience: merchant
+ scheme: 'apps-and-themes'
+ owners: ['@Shopify/themes-translations']
+ paths:
+ - locales/{{language}}.schema.json
+ {{ 'blogs.article.comments' | t: count: article.comments_count }} +
+ {% paginate article.comments by 5 %} +{{ 'blogs.article.comment_form_title' | t }}
+ {%- if form.errors -%} + ++ {%- for field in form.errors -%} +-
+
+ {%- if form.errors.translated_fields[field] contains 'author' -%}
+ {{ 'blogs.article.name' | t }}
+ {%- elsif form.errors.translated_fields[field] contains 'body' -%}
+ {{ 'blogs.article.message' | t }}
+ {%- else -%}
+ {{ form.errors.translated_fields[field] }}
+ {%- endif -%}
+ {{ form.errors.messages[field] }}
+
+
+ {%- endfor -%}
+
+ {%- elsif form.posted_successfully? -%} + + {%- endif -%} + +{{ 'blogs.article.moderated' | t }}
+ {%- endif -%} + + {% endform %} +