diff --git a/Assets/assets/animations.js b/Assets/assets/animations.js new file mode 100644 index 0000000..2622f60 --- /dev/null +++ b/Assets/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/assets/base.css b/Assets/assets/base.css new file mode 100644 index 0000000..c8c0d4c --- /dev/null +++ b/Assets/assets/base.css @@ -0,0 +1,3597 @@ +:root { + --alpha-button-background: 1; + --alpha-button-border: 1; + --alpha-link: 0.85; + --alpha-badge-border: 0.1; + --focused-base-outline: 0.2rem solid rgba(var(--color-foreground), 0.5); + --focused-base-outline-offset: 0.3rem; + --focused-base-box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3); +} + +.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 */ + +.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; +} + +.hxxl { + font-size: clamp(calc(var(--font-heading-scale) * 5.6rem), 14vw, calc(var(--font-heading-scale) * 7.2rem)); + line-height: 1.1; +} + +.hxl { + font-size: calc(var(--font-heading-scale) * 5rem); + line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale))); +} + +@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-extra-longer: 750ms; + --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); +} + +.svg-wrapper { + display: inline-flex; + justify-content: center; + align-items: center; + width: 20px; + height: 20px; +} + +.svg-wrapper > svg { + height: 100%; + width: 100%; +} + +/* 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; + } +} + +.placeholder-svg { + height: 100%; + width: 100%; +} + +/* base-focus */ +/* + Focus ring - default (with offset) +*/ + +*:focus { + outline: 0; + box-shadow: none; +} + +*:focus-visible { + outline: var(--focused-base-outline); + outline-offset: var(--focused-base-outline-offset); + box-shadow: var(--focused-base-box-shadow); +} + +/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */ +.focused { + outline: var(--focused-base-outline); + outline-offset: var(--focused-base-outline-offset); + box-shadow: var(--focused-base-box-shadow); +} + +/* + 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 { + 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); +} + +/* + 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 { + 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); +} + +/* 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-wrapper { + 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 { + --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); +} + +.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 { + 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__button--unbranded: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) { + 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; +} + +/* Shopify Accelerated Checkout */ + +shopify-accelerated-checkout { + --shopify-accelerated-checkout-button-border-radius: var(--buttons-radius-outset); + --shopify-accelerated-checkout-button-box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) + rgba(var(--color-shadow), var(--shadow-opacity)); +} +shopify-accelerated-checkout-cart { + --shopify-accelerated-checkout-button-border-radius: var(--buttons-radius-outset); + --shopify-accelerated-checkout-button-box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius) + rgba(var(--color-shadow), var(--shadow-opacity)); +} + + +/* 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-wrapper { + 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-family: var(--font-body-family); + font-style: var(--font-body-style); + font-weight: var(--font-body-weight); + 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 .svg-wrapper, +.customer select + .svg-wrapper { + height: 0.6rem; + width: 1rem; + pointer-events: none; + position: absolute; + top: calc(50% - 0.2rem); + right: 0; +} + +.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-wrapper { + 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-wrapper { + flex-shrink: 0; + height: 1.3rem; + margin-right: 0.5rem; + width: 1.3rem; +} + +.form__message--large .icon, +.customer .form__message .svg-wrapper { + height: 1.5rem; + width: 1.5rem; + margin-right: 1rem; +} + +.customer .field .form__message .svg-wrapper { + 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-family: var(--font-body-family); + font-style: var(--font-body-style); + font-weight: var(--font-body-weight); + 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-wrapper { + 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-container .loading__spinner:not(.hidden) ~ *, +.quantity__rules-cart .loading__spinner:not(.hidden) ~ * { + visibility: hidden; +} + +/* component-modal */ +.modal__toggle { + list-style-type: none; +} + +.modal__toggle-close { + display: none; +} + +.modal__toggle-open { + display: flex; +} + +.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 .svg-wrapper { + width: 44px; + height: 44px; +} + +.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); +} + +.header__icon--account shop-user-avatar { + --shop-avatar-size: 2.8rem; +} + +details .header__icon-close { + display: none; +} + +details[open] .header__icon-close { + display: inline-block; +} + +account-icon { + display: flex; +} + +/* 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; + } +} + +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; +} + +.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-wrapper { + transition: scale var(--duration-short) linear; + scale: var(--zoom-in-ratio); +} + +/* Animations */ + +@media (prefers-reduced-motion: no-preference) { + .animate--ambient > img, + .animate--ambient > .svg-wrapper { + 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; + transform: 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. */ + } +} + +/* Loading spinner */ +.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; +} + +/* Progress bar */ +.progress-bar-container { + width: 100%; + margin: auto; +} + +.progress-bar { + height: 0.13rem; + width: 100%; +} + +.progress-bar-value { + width: 100%; + height: 100%; + background-color: rgb(var(--color-foreground)); + animation: indeterminateAnimation var(--duration-extra-longer) infinite ease-in-out; + transform-origin: 0; +} + +.progress-bar .progress-bar-value { + display: block; +} + +@keyframes indeterminateAnimation { + 0% { + transform: translateX(-20%) scaleX(0); + } + 40% { + transform: translateX(30%) scaleX(0.7); + } + 100% { + transform: translateX(100%) scaleX(0); + } +} diff --git a/Assets/assets/cart-drawer.js b/Assets/assets/cart-drawer.js new file mode 100644 index 0000000..ad37f3c --- /dev/null +++ b/Assets/assets/cart-drawer.js @@ -0,0 +1,136 @@ +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'); + if (!cartLink) return; + + 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); + + if (!sectionElement) return; + 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/assets/cart-notification.js b/Assets/assets/cart-notification.js new file mode 100644 index 0000000..7e8a06c --- /dev/null +++ b/Assets/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/assets/cart.js b/Assets/assets/cart.js new file mode 100644 index 0000000..5a7841a --- /dev/null +++ b/Assets/assets/cart.js @@ -0,0 +1,294 @@ +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, event); + }); + } +} + +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; + } + return this.onCartUpdate(); + }); + } + + disconnectedCallback() { + if (this.cartUpdateUnsubscriber) { + this.cartUpdateUnsubscriber(); + } + } + + resetQuantityInput(id) { + const input = this.querySelector(`#Quantity-${id}`); + input.value = input.getAttribute('value'); + this.isEnterPressed = false; + } + + setValidity(event, index, message) { + event.target.setCustomValidity(message); + event.target.reportValidity(); + this.resetQuantityInput(index); + event.target.select(); + } + + validateQuantity(event) { + const inputValue = parseInt(event.target.value); + const index = event.target.dataset.index; + let message = ''; + + if (inputValue < event.target.dataset.min) { + message = window.quickOrderListStrings.min_error.replace('[min]', event.target.dataset.min); + } else if (inputValue > parseInt(event.target.max)) { + message = window.quickOrderListStrings.max_error.replace('[max]', event.target.max); + } else if (inputValue % parseInt(event.target.step) !== 0) { + message = window.quickOrderListStrings.step_error.replace('[step]', event.target.step); + } + + if (message) { + this.setValidity(event, index, message); + } else { + event.target.setCustomValidity(''); + event.target.reportValidity(); + this.updateQuantity( + index, + inputValue, + event, + document.activeElement.getAttribute('name'), + event.target.dataset.quantityVariantId + ); + } + } + + onChange(event) { + this.validateQuantity(event); + } + + onCartUpdate() { + if (this.tagName === 'CART-DRAWER-ITEMS') { + return 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 { + return 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, event, name, variantId) { + this.enableLoading(line); + + const body = JSON.stringify({ + line, + quantity, + sections: this.getSectionsToRender().map((section) => section.section), + sections_url: window.location.pathname, + }); + const eventTarget = event.currentTarget instanceof CartRemoveButton ? 'clear' : 'change'; + + fetch(`${routes.cart_change_url}`, { ...fetchConfig(), ...{ body } }) + .then((response) => { + return response.text(); + }) + .then((state) => { + const parsedState = JSON.parse(state); + + CartPerformance.measure(`${eventTarget}:paint-updated-sections"`, () => { + 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')); + } + }); + + CartPerformance.measureFromEvent(`${eventTarget}:user-action`, event); + + 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').textContent = 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( + 'input', + debounce((event) => { + const body = JSON.stringify({ note: event.target.value }); + fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } }) + .then(() => CartPerformance.measureFromEvent('note-update:user-action', event)); + }, ON_CHANGE_DEBOUNCE_TIMER) + ); + } + } + ); +} diff --git a/Assets/assets/collage.css b/Assets/assets/collage.css new file mode 100644 index 0000000..67618cc --- /dev/null +++ b/Assets/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/assets/collapsible-content.css b/Assets/assets/collapsible-content.css new file mode 100644 index 0000000..232ce8d --- /dev/null +++ b/Assets/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-scheme-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/assets/component-accordion.css b/Assets/assets/component-accordion.css new file mode 100644 index 0000000..188ff80 --- /dev/null +++ b/Assets/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 .svg-wrapper { + 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/assets/component-article-card.css b/Assets/assets/component-article-card.css new file mode 100644 index 0000000..998f100 --- /dev/null +++ b/Assets/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/assets/component-card.css b/Assets/assets/component-card.css new file mode 100644 index 0000000..c72491d --- /dev/null +++ b/Assets/assets/component-card.css @@ -0,0 +1,595 @@ +.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-scheme-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 + 0.4 / var(--font-body-scale)); + color: rgba(var(--color-foreground), 0.75); +} + +.card__information-volume-pricing-note--button, +.card__information-volume-pricing-note--button.quantity-popover__info-button--icon-with-label { + position: relative; + z-index: 1; + cursor: pointer; + padding: 0; + margin: 0; + text-align: var(--text-alignment); + min-width: auto; +} + +.card__information-volume-pricing-note--button:hover { + text-decoration: underline; +} + +.card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info { + transform: initial; + top: auto; + bottom: 4rem; + max-width: 20rem; + width: calc(95% + 2rem); +} + +.card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info span:first-of-type { + padding-right: 0.3rem; +} + +.card__information-volume-pricing-note--button-right + .global-settings-popup.quantity-popover__info { + right: 0; + left: auto; +} + +.card__information-volume-pricing-note--button-center + .global-settings-popup.quantity-popover__info { + left: 50%; + transform: translate(-50%); +} + +.card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info .quantity__rules { + text-align: left; +} + +@media screen and (min-width: 990px) { + .grid--6-col-desktop .card__content quick-add-bulk .quantity { + width: auto; + } + + .grid--6-col-desktop .card__content quick-add-bulk .quantity__button { + width: calc(3rem / var(--font-body-scale)); + } + + .grid--6-col-desktop .card__information-volume-pricing-note--button + .global-settings-popup.quantity-popover__info { + left: 50%; + transform: translate(-50%); + width: calc(100% + var(--border-width) + 3.5rem); + } + + .grid--6-col-desktop + .card--standard + .card__information-volume-pricing-note--button + + .global-settings-popup.quantity-popover__info { + width: calc(100% + var(--border-width) + 1rem); + } +} + +@media screen and (max-width: 749px) { + .grid--2-col-tablet-down .card__content quick-add-bulk .quantity__button { + width: calc(3.5rem / var(--font-body-scale)); + } + + .grid--2-col-tablet-down + .card--card + .card__information-volume-pricing-note--button + + .global-settings-popup.quantity-popover__info, + .grid--2-col-tablet-down + .card--standard + .card__information-volume-pricing-note--button + + .global-settings-popup.quantity-popover__info { + left: 50%; + transform: translate(-50%); + } + + .grid--2-col-tablet-down + .card--standard + .card__information-volume-pricing-note--button + + .global-settings-popup.quantity-popover__info { + width: 100%; + } + + .grid--2-col-tablet-down + .card--card + .card__information-volume-pricing-note--button + + .global-settings-popup.quantity-popover__info { + width: calc(100% + var(--border-width) + 4rem); + } + + .grid--2-col-tablet-down .card__content quick-add-bulk .quantity { + width: auto; + } +} + +.card-information quantity-popover volume-pricing { + margin-top: 0; +} + +@media screen and (max-width: 989px) { + .card-information quantity-popover .quantity__rules ~ volume-pricing { + margin-top: 0; + } + + .card-information quantity-popover volume-pricing { + margin-top: 4.2rem; + } +} + +@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 { + 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; +} + +/* Specificity needed due to the changes below */ +.card-information + > *:not(.visually-hidden:first-child) + + quantity-popover:not(.rating):not(.card__information-volume-pricing-note), +.card-information .card__information-volume-pricing-note.card__information-volume-pricing-note--button { + margin-top: 0; +} + +.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/assets/component-cart-drawer.css b/Assets/assets/component-cart-drawer.css new file mode 100644 index 0000000..7729a2d --- /dev/null +++ b/Assets/assets/component-cart-drawer.css @@ -0,0 +1,414 @@ +.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-wrapper { + height: 2rem; + width: 2rem; +} + +.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 2.8rem 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%; +} + +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: 1rem; + 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-item__nested-line .cart-item__image { + max-width: 60%; + float: right; +} + +.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: 1.7rem; +} + +.cart-drawer .cart-items .cart-item__nested-line td:not(.cart-item__quantity) { + padding-top: 1rem; +} + +.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 2rem 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); + top: 100%; +} + +.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/assets/component-cart-items.css b/Assets/assets/component-cart-items.css new file mode 100644 index 0000000..c41d3a0 --- /dev/null +++ b/Assets/assets/component-cart-items.css @@ -0,0 +1,367 @@ +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__nested-line .cart-item__image-container { + min-width: calc(10rem / var(--font-body-scale)); + justify-content: right; + img { + width: 60%; + } +} + +.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.3rem; + line-height: 1.4; + letter-spacing: 0.04rem; + order: 1; +} + +.cart-item__error-text + .svg-wrapper { + flex-shrink: 0; + width: 1.5rem; + height: 1.5rem; + margin-right: 0.7rem; + margin-top: 0.25rem; +} + +.cart-item__error-text:empty + .svg-wrapper { + 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:has(+ .cart-item__nested-line) { + margin-bottom: 1.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-items .cart-item__nested-line td { + padding-top: 1rem; + } + + .cart-item { + display: table-row; + } + + .cart-item > td + td { + padding-left: 4rem; + } + + .cart-item__details { + width: 35rem; + } + + .cart-item__media { + width: 10rem; + } + + .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 > * { + 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 (max-width: 989px) { + .cart-items .quantity-popover__info-button { + padding-left: 0; + } +} diff --git a/Assets/assets/component-cart-notification.css b/Assets/assets/component-cart-notification.css new file mode 100644 index 0000000..7af62a6 --- /dev/null +++ b/Assets/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/assets/component-cart.css b/Assets/assets/component-cart.css new file mode 100644 index 0000000..6e4d5c1 --- /dev/null +++ b/Assets/assets/component-cart.css @@ -0,0 +1,222 @@ +.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 > * + * { + 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__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/assets/component-collection-hero.css b/Assets/assets/component-collection-hero.css new file mode 100644 index 0000000..9ceadf0 --- /dev/null +++ b/Assets/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/assets/component-complementary-products.css b/Assets/assets/component-complementary-products.css new file mode 100644 index 0000000..5555777 --- /dev/null +++ b/Assets/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/assets/component-deferred-media.css b/Assets/assets/component-deferred-media.css new file mode 100644 index 0000000..978d9c9 --- /dev/null +++ b/Assets/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/assets/component-discounts.css b/Assets/assets/component-discounts.css new file mode 100644 index 0000000..1a4ed6d --- /dev/null +++ b/Assets/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/assets/component-facets.css b/Assets/assets/component-facets.css new file mode 100644 index 0000000..da3d9d9 --- /dev/null +++ b/Assets/assets/component-facets.css @@ -0,0 +1,1257 @@ +.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; +} + +.select .icon-caret { + width: 10px; +} + +.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 { + 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 { + 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); +} + +.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__summary .svg-wrapper { + height: auto; + width: auto; +} + +.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:first-of-type { + 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, minmax(0, 1fr)); + text-align: center; + padding: 2rem 2.4rem; +} + +.facets-layout-list--swatch { + --swatch-input--size: 2.4rem; +} + +.facets-layout-grid.facets-layout-grid { + gap: 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-label, +.facets-layout-list input:focus ~ .facet-checkbox__text-label { + text-decoration: underline; +} + +.facets-layout-grid > * { + align-items: flex-start; +} + +.facets-layout-grid .facets__label { + display: flex; + flex-direction: column; + padding: 0; + height: 100%; + font-size: 1.3rem; +} + +/* Image filter specific styles */ +.facets-layout-grid .facets__image-wrapper { + display: block; + position: relative; + aspect-ratio: 1 / 1; + min-height: 0; + padding: 0.4rem; +} + +.facets__image { + width: 100%; + height: 100%; + object-fit: contain; +} + +/* Default state */ +.facets-layout-grid--image .facets__label { + outline-style: solid; + outline-color: transparent; + transition-property: outline-color, outline-width, box-shadow; + transition-duration: var(--duration-short); + transition-timing-function: ease; +} + +.facets-layout-grid--image .facet-checkbox__text { + padding: 0.4rem; +} + +/* Active state */ +.facets-layout-grid--image .facets__label.active { + outline-color: rgb(var(--color-foreground)); + outline-width: 0.1rem; +} + +/* Hover state */ +.facets-layout-grid--image .facets__label:hover { + outline-color: rgba(var(--color-foreground), 0.4); + outline-width: 0.2rem; +} + +/* Focus visible */ +.facets-layout-grid--image .facets__label:has(:focus-visible) { + outline-color: rgba(var(--color-foreground), 0.5); + outline-width: 0.2rem; + box-shadow: 0px 0px 3px 1px rgba(var(--color-foreground), 0.25); +} + +/* Focused state */ +.facets-layout-grid--image .facets__label.active:has(:focus-visible) { + outline-color: rgb(var(--color-foreground)); + outline-width: 0.1rem; + 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.7rem 0.1rem rgba(var(--color-foreground), 0.25); +} + +/* Disabled state */ +.facets-layout-grid--image .facets__label.disabled { + /* Note: disabled gets its transparency set by a parent, so no need to set an alpha here. Also, we move the outline to the child when disabled */ + outline: none; +} + +.facets-layout-grid--image .facets__label.disabled .facets__image-wrapper { + outline: 0.1rem solid rgb(var(--color-foreground)); +} + +.facets-layout-grid--image .facets__label.disabled .facets__image-wrapper:before { + content: ''; + position: absolute; + bottom: 0; + left: 0; + /* 100% * square root of 2, this is not a magic number, it is math! */ + width: 141.4%; + height: 0.1rem; + background-color: rgb(var(--color-foreground)); + transform: rotate(-45deg); + transform-origin: left; +} + +.facets-layout-grid--image .facets__label.disabled .disabled-line { + position: absolute; + inset: 0; + height: 100%; + width: 100%; + background: transparent; + margin: 0; +} + +.facets-layout-grid--image .facets__label.disabled .disabled-line line { + stroke: rgb(var(--color-foreground)); + stroke-width: 1; +} + +/* End of image filter specific styles */ + +.list-menu__item label, +.list-menu__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 */ +.facets__label:hover, +.facets__label.active, +.facets__label:has(:focus-visible) { + color: rgba(var(--color-foreground), 1); +} + +/* Disabled state */ +.facets-layout .facets__label.disabled { + pointer-events: none; +} + +.facets-layout:not(.facets-layout-list--swatch, .facets-layout-grid--image) .facets__label.disabled { + opacity: 0.4; +} + +.facets-layout-grid--image .facets__label.disabled .facets__image-wrapper { + opacity: 0.2; +} + +:is(.facets-layout-list--swatch, .facets-layout-grid--image) .facets__label.disabled .facet-checkbox__text { + opacity: 0.4; +} + +/* End disabled state */ + +.facets-layout-list--text 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'], +.facets-layout-list--swatch input[type='checkbox'] { + position: absolute; + inset: 0; + z-index: 1; + margin: 0; + opacity: 0; + width: 100%; + height: 100%; +} + +.facets-layout-list--swatch .facets__label { + display: flex; + align-items: center; + gap: 0.8rem; +} + +.swatch-input-wrapper { + display: flex; +} + +.facet-checkbox > svg, +.facet-checkbox > .svg-wrapper { + background-color: rgb(var(--color-background)); + margin-right: 1.2rem; + flex-shrink: 0; +} + +.facet-checkbox .svg-wrapper { + visibility: hidden; + position: absolute; + left: 0.3rem; + z-index: 5; + top: 1.4rem; + width: 1.1rem; + height: 0.7rem; +} + +.facet-checkbox > input[type='checkbox']:checked ~ .svg-wrapper > .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 ~ .svg-wrapper > .icon-checkmark { + border: 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; +} + +.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.25rem 1.25rem; + display: flex; + align-items: center; +} + +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.1rem; + padding-top: 0.1rem; + } + + .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 { + 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 { + 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-wrapper { + 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-wrapper { + margin-right: -0.4rem; + margin-top: 0.1rem; + width: 1.2rem; + } +} + +.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-wrapper { + 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-wrapper { + width: 2.2rem; +} + +details.menu-opening .mobile-facets__close { + display: flex; + opacity: 1; +} + +details.menu-opening .mobile-facets__close .svg-wrapper { + 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; +} + +.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); +} + +.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-wrapper { + 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; + width: 11px; + height: 9px; +} + +.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__sort { + display: flex; + justify-content: space-between; +} + +.mobile-facets__sort label { + flex-shrink: 0; +} + +.mobile-facets__sort .select { + width: auto; +} + +.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; + } + + .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 .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; + } + + .facets-vertical .facet-checkbox input[type='checkbox'] { + z-index: 0; + } + + .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/assets/component-image-with-text.css b/Assets/assets/component-image-with-text.css new file mode 100644 index 0000000..5a97c82 --- /dev/null +++ b/Assets/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-wrapper { + 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/assets/component-list-menu.css b/Assets/assets/component-list-menu.css new file mode 100644 index 0000000..09f76ba --- /dev/null +++ b/Assets/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/assets/component-list-payment.css b/Assets/assets/component-list-payment.css new file mode 100644 index 0000000..62a5062 --- /dev/null +++ b/Assets/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/assets/component-list-social.css b/Assets/assets/component-list-social.css new file mode 100644 index 0000000..a6c04c1 --- /dev/null +++ b/Assets/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/assets/component-localization-form.css b/Assets/assets/component-localization-form.css new file mode 100644 index 0000000..3e13eb4 --- /dev/null +++ b/Assets/assets/component-localization-form.css @@ -0,0 +1,451 @@ +.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; + } +} + +.localization-form .button { + padding: 1rem; +} + +.localization-form__currency { + opacity: 0; + transition: opacity 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94); + white-space: nowrap; + padding-right: 1.7rem; +} + +@media screen and (max-width: 749px) { + .localization-form .button { + word-break: break-all; + } + + .localization-form__currency { + opacity: 1; + } +} + +.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)); +} + +.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; +} + +.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)); + max-height: 27.5rem; +} + +.disclosure__list { + position: relative; + overflow-y: auto; + font-size: 1.4rem; + padding-bottom: 0.5rem; + padding-top: 0.5rem; + scroll-padding: 0.5rem 0; + max-height: 20.5rem; + max-width: 25.5rem; + min-width: 12rem; + width: max-content; +} + +.country-selector__list { + padding-bottom: 0.95rem; + padding-top: 0; +} + +.country-selector__list--with-multiple-currencies { + width: 25.5rem; +} + +.country-selector__close-button { + display: none; +} + +.country-filter { + display: flex; + justify-content: end; + align-items: center; + gap: 0.5rem; + padding: 1.5rem 1.5rem 0.6rem; + position: sticky; + top: -0.02rem; + background-color: rgb(var(--color-background)); + z-index: 6; +} + +.country-filter__input { + min-width: 200px; +} + +.country-filter__reset-button, +.country-filter__search-icon { + right: calc(var(--inputs-border-width)); + top: var(--inputs-border-width); +} + +.country-filter__reset-button:not(:focus-visible)::after, +.country-filter__reset-button:not(:focus)::after { + display: block; + height: calc(100% - 1.8rem); + content: ''; + position: absolute; + right: 0; +} + +.country-filter__reset-button:focus, +.country-filter__reset-button:focus-visible { + background-color: rgb(var(--color-background)); + z-index: 4; +} + +.country-filter__reset-button:not(:focus-visible):not(.focused) { + box-shadow: inherit; + background-color: inherit; +} + +.country-filter__reset-button:hover .icon { + transform: scale(1.07); +} + +.country-filter__reset-button .icon.icon-close, +.country-filter__search-icon .icon { + height: 1.8rem; + width: 1.8rem; + stroke-width: 0.1rem; +} + +.country-filter__search-icon { + transition: opacity var(--duration-short) ease, visibility var(--duration-short) ease; + opacity: 1; + visibility: visible; + pointer-events: none; + cursor: text; +} + +.country-filter__search-icon--hidden { + opacity: 0; + visibility: hidden; +} + +@media screen and (max-width: 749px) { + .disclosure__list-wrapper.country-selector:not([hidden]) + .country-selector__overlay:empty { + display: block; + } + + .country-selector__overlay { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-color: rgba(var(--color-foreground), 0.5); + z-index: 3; + animation: animateLocalization var(--duration-default) ease; + } + + .disclosure__list-wrapper.country-selector { + position: fixed; + bottom: -1rem; + left: 0; + width: 100%; + height: 80%; + max-height: 80vh; + border-radius: 0; + border: none; + box-shadow: none; + z-index: 4; + } + + .disclosure__list.country-selector__list { + max-height: 85%; + min-width: 100%; + margin-bottom: 0; + z-index: 5; + } + + .country-selector__close-button.link { + display: flex; + justify-content: center; + align-items: center; + padding: 0rem; + background-color: transparent; + height: 4.4rem; + width: 4.4rem; + } + + .country-selector__close-button .icon { + width: 2rem; + height: 2rem; + } + + .country-filter { + padding: 1.5rem 2rem 0.6rem 1.5rem; + } +} + +@media screen and (min-width: 750px) { + .country-filter--no-padding { + padding: 0; + } +} + +.countries { + padding-top: 0.6rem; +} + +.popular-countries { + border-bottom: 1px solid rgba(var(--color-foreground), 0.2); + padding-bottom: 0.6rem; + padding-top: 0.6rem; +} + +.disclosure__item { + position: relative; +} + +.disclosure__link { + display: grid; + grid-template-columns: auto 1fr auto; + gap: 0.5rem; + padding: 0.9rem 1.5rem; + 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 .icon-checkmark { + width: 1rem; + margin-right: 0.2rem; +} + +.disclosure__link:hover .localization-form__currency, +.disclosure__link:focus-visible .localization-form__currency, +.disclosure__link:focus .localization-form__currency { + display: inline-block; + opacity: 1; +} + +.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; +} + +.language-selector .disclosure__list { + min-width: 200px; +} diff --git a/Assets/assets/component-mega-menu.css b/Assets/assets/component-mega-menu.css new file mode 100644 index 0000000..4c0d178 --- /dev/null +++ b/Assets/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/assets/component-menu-drawer.css b/Assets/assets/component-menu-drawer.css new file mode 100644 index 0000000..319a4ed --- /dev/null +++ b/Assets/assets/component-menu-drawer.css @@ -0,0 +1,243 @@ +.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; +} + +.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)); + } +} + +.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; +} + +.js .menu-drawer__menu li { + margin-bottom: 0.2rem; +} + +.menu-drawer__menu-item { + padding: 1.1rem 3rem; + text-decoration: none; + font-size: 1.8rem; +} + +.menu-drawer summary.menu-drawer__menu-item { + padding-right: 5.2rem; +} + +.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 { + display: none; +} + +.menu-drawer__menu-item > .svg-wrapper { + width: 15px; + 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; +} + +.menu-drawer__close-button .svg-wrapper { + transform: rotate(180deg); + margin-right: 1rem; + width: 15px; +} + +.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 account-icon > .svg-wrapper { + height: 2rem; + width: 2rem; + margin-right: 1rem; +} + +.menu-drawer__account shop-user-avatar { + --shop-avatar-size: 2.4rem; + margin-right: 0.55rem; + margin-left: -0.45rem; +} + +.menu-drawer__account:hover account-icon > .svg-wrapper { + 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; +} + +@media screen and (max-width: 749px) { + .menu-drawer.country-selector-open { + transform: none !important; + filter: none !important; + transition: none !important; + } +} diff --git a/Assets/assets/component-modal-video.css b/Assets/assets/component-modal-video.css new file mode 100644 index 0000000..19a8d6b --- /dev/null +++ b/Assets/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/assets/component-model-viewer-ui.css b/Assets/assets/component-model-viewer-ui.css new file mode 100644 index 0000000..8da5b15 --- /dev/null +++ b/Assets/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/assets/component-newsletter.css b/Assets/assets/component-newsletter.css new file mode 100644 index 0000000..719c13f --- /dev/null +++ b/Assets/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/assets/component-pagination.css b/Assets/assets/component-pagination.css new file mode 100644 index 0000000..5232c39 --- /dev/null +++ b/Assets/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/assets/component-pickup-availability.css b/Assets/assets/component-pickup-availability.css new file mode 100644 index 0000000..d99933b --- /dev/null +++ b/Assets/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/assets/component-predictive-search.css b/Assets/assets/component-predictive-search.css new file mode 100644 index 0000000..13718b0 --- /dev/null +++ b/Assets/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/assets/component-price.css b/Assets/assets/component-price.css new file mode 100644 index 0000000..72406b1 --- /dev/null +++ b/Assets/assets/component-price.css @@ -0,0 +1,100 @@ +.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; + color: rgba(var(--color-foreground), 0.7); +} diff --git a/Assets/assets/component-product-model.css b/Assets/assets/component-product-model.css new file mode 100644 index 0000000..4fcdc11 --- /dev/null +++ b/Assets/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/assets/component-product-variant-picker.css b/Assets/assets/component-product-variant-picker.css new file mode 100644 index 0000000..b698ab8 --- /dev/null +++ b/Assets/assets/component-product-variant-picker.css @@ -0,0 +1,152 @@ +variant-selects { + display: block; +} + +.product--no-media .product-form__input--pill, +.product--no-media .product-form__input--swatch, +.product--no-media .product-form__input--dropdown { + display: flex; + align-items: center; + justify-content: center; + text-align: center; +} + +.product--no-media .product-form__input.product-form__input--pill, +.product--no-media .product-form__input.product-form__input--swatch { + flex-wrap: wrap; + margin: 0 auto 1.2rem auto; +} + +.product--no-media .product-form__input--dropdown { + flex-direction: column; + max-width: 100%; +} + +:is(.product-form__input--pill, .product-form__input--swatch) .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']:not(.disabled):not(.visually-disabled) + label > .label-unavailable { + display: none; +} + +.product-form__input--dropdown { + --swatch-input--size: 2rem; + margin-bottom: 1.6rem; +} + +.product-form__input--dropdown .dropdown-swatch + select { + padding-left: calc(2.4rem + var(--swatch-input--size)); +} + +.product-form__input--dropdown .dropdown-swatch { + position: absolute; + left: 1.6rem; + top: calc(50% - var(--swatch-input--size) / 2); + width: var(--swatch-input--size); + height: var(--swatch-input--size); + z-index: 1; +} + +/* Custom styles for Pill display type */ +.product-form__input--pill 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--pill 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--pill input[type='radio'] + label:hover { + border-color: rgb(var(--color-foreground)); +} + +.product-form__input--pill input[type='radio']:checked + label { + background-color: rgb(var(--color-foreground)); + color: rgb(var(--color-background)); +} + +@media screen and (forced-colors: active) { + .product-form__input--pill input[type='radio']:checked + label { + text-decoration: underline; + } + + .product-form__input--pill input[type='radio']:focus-visible + label { + outline: transparent solid 1px; + outline-offset: 2px; + } +} + +.product-form__input--pill input[type='radio']:checked + label::selection { + background-color: rgba(var(--color-background), 0.3); +} + +.product-form__input--pill input[type='radio']:disabled + label, +.product-form__input--pill 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--pill input[type='radio'].disabled:checked + label, +.product-form__input--pill input[type='radio']:disabled:checked + label { + color: rgba(var(--color-background), 0.6); +} +.product-form__input--pill 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--pill input[type='radio'].focused + label { + box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.55); +} + +/* Custom styles for Swatch display type */ +.product-form__input--swatch { + display: flex; + flex-wrap: wrap; +} + +.product-form__input--swatch .swatch-input__input + .swatch-input__label { + --swatch-input--size: 3.6rem; + + margin: 0.7rem 1.2rem 0.2rem 0; +} + +@media screen and (min-width: 750px) { + .product-form__input--swatch .swatch-input__input + .swatch-input__label { + --swatch-input--size: 2.8rem; + } +} +/* End custom styles for Swatch display type */ diff --git a/Assets/assets/component-progress-bar.css b/Assets/assets/component-progress-bar.css new file mode 100644 index 0000000..64c009d --- /dev/null +++ b/Assets/assets/component-progress-bar.css @@ -0,0 +1,33 @@ +.progress-bar-container { + width: 100%; + margin: auto; +} + +.progress-bar { + height: 0.13rem; + width: 100%; +} + +.progress-bar-value { + width: 100%; + height: 100%; + background-color: rgb(var(--color-foreground)); + animation: indeterminateAnimation var(--duration-extra-longer) infinite ease-in-out; + transform-origin: 0; +} + +.progress-bar .progress-bar-value { + display: block; +} + +@keyframes indeterminateAnimation { + 0% { + transform: translateX(-20%) scaleX(0); + } + 40% { + transform: translateX(30%) scaleX(0.7); + } + 100% { + transform: translateX(100%) scaleX(0); + } +} diff --git a/Assets/assets/component-rating.css b/Assets/assets/component-rating.css new file mode 100644 index 0000000..05bbcfc --- /dev/null +++ b/Assets/assets/component-rating.css @@ -0,0 +1,64 @@ +.product--no-media .rating-wrapper { + text-align: center; +} + +.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/assets/component-search.css b/Assets/assets/component-search.css new file mode 100644 index 0000000..5a04cb5 --- /dev/null +++ b/Assets/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/assets/component-show-more.css b/Assets/assets/component-show-more.css new file mode 100644 index 0000000..7e39d02 --- /dev/null +++ b/Assets/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/assets/component-slider.css b/Assets/assets/component-slider.css new file mode 100644 index 0000000..c0c197e --- /dev/null +++ b/Assets/assets/component-slider.css @@ -0,0 +1,377 @@ +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; + } +} + +.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; +} + +.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/assets/component-slideshow.css b/Assets/assets/component-slideshow.css new file mode 100644 index 0000000..9c2cfb5 --- /dev/null +++ b/Assets/assets/component-slideshow.css @@ -0,0 +1,201 @@ +slideshow-component { + position: relative; + display: flex; + flex-direction: column; +} + +slideshow-component .slideshow.banner { + flex-direction: row; + flex-wrap: nowrap; + margin: 0; + gap: 0; + overflow-y: hidden; +} + +.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-wrapper { + 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/assets/component-swatch-input.css b/Assets/assets/component-swatch-input.css new file mode 100644 index 0000000..f81d938 --- /dev/null +++ b/Assets/assets/component-swatch-input.css @@ -0,0 +1,87 @@ +/* swatch-input lives in its own file for reusability of the swatch in other areas than the product form context */ +.swatch-input__input + .swatch-input__label { + --swatch-input--border-radius: 50%; + display: inline-block; + max-width: 100%; + border-radius: var(--swatch-input--border-radius); + cursor: pointer; + outline-offset: 0.2rem; + outline-color: transparent; + outline-style: solid; + transition-property: outline-color, outline-width, box-shadow; + transition-duration: var(--duration-short); + transition-timing-function: ease; + forced-color-adjust: none; +} + +.swatch-input__input + .swatch-input__label.swatch-input__label--square { + --swatch-input--border-radius: 0.2rem; +} + +/* Active state */ +.swatch-input__input:active + .swatch-input__label, +.swatch-input__input:checked + .swatch-input__label { + outline: 0.1rem solid rgb(var(--color-foreground)); +} + +/* Hover state */ +.swatch-input__input + .swatch-input__label:hover, +.swatch-input__input:hover + .swatch-input__label { + outline: 0.2rem solid rgba(var(--color-foreground), 0.4); +} + +/* Focus visible */ +.swatch-input__input:focus-visible + .swatch-input__label { + outline: 0.2rem solid rgba(var(--color-foreground), 0.5); + box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0.1rem 0.5rem rgba(var(--color-foreground), 0.25); +} + +/* Active and focused */ +.swatch-input__input:active:focus-visible + .swatch-input__label, +.swatch-input__input:checked:focus-visible + .swatch-input__label { + outline: 0.1rem solid rgb(var(--color-foreground)); + box-shadow: 0 0 0 0.2rem rgb(var(--color-background)), 0 0 0.1rem 0.4rem rgba(var(--color-foreground), 0.25); +} + +/* Visually disabled */ +.swatch-input__input.visually-disabled:not(:active):not(:checked) + .swatch-input__label { + transition: none; +} +.swatch-input__input.visually-disabled:not(:active):not(:checked) + .swatch-input__label:hover { + outline: none; +} + +/* Actually disabled */ +.swatch-input__input:disabled + .swatch-input__label { + pointer-events: none; +} + +/* Overrides for swatch snippet when used inside disabled swatch-input */ +.swatch-input__input:disabled + .swatch-input__label > .swatch, +.swatch-input__input.visually-disabled + .swatch-input__label > .swatch { + position: relative; + overflow: hidden; +} + +/* Disabled styles */ +.swatch-input__input:disabled + .swatch-input__label > .swatch, +.swatch-input__input.visually-disabled + .swatch-input__label > .swatch { + opacity: 0.4; +} + +/* Display crossed out line over swatch when input is disabled */ +.swatch-input__input:disabled + .swatch-input__label > .swatch::after, +.swatch-input__input.visually-disabled + .swatch-input__label > .swatch::after { + /* Diagonal of a square = length of the side * sqrt(2) */ + --diagonal--size: calc(var(--swatch-input--size) * 1.414); + --crossed-line--size: 0.1rem; + content: ''; + position: absolute; + bottom: calc(var(--crossed-line--size) * -0.5); + left: 0; + width: var(--diagonal--size); + height: var(--crossed-line--size); + background-color: rgb(var(--color-foreground)); + transform: rotate(-45deg); + transform-origin: left; +} diff --git a/Assets/assets/component-swatch.css b/Assets/assets/component-swatch.css new file mode 100644 index 0000000..ab4a83c --- /dev/null +++ b/Assets/assets/component-swatch.css @@ -0,0 +1,25 @@ +/* swatch lives in its own file for reusability of the swatch in swatch-input and dropdown */ +.swatch { + --swatch--size: var(--swatch-input--size, 4.4rem); + --swatch--border-radius: var(--swatch-input--border-radius, 50%); + + display: block; + width: var(--swatch--size); + max-width: 100%; + aspect-ratio: 1 / 1; + background: var(--swatch--background); + background-position: var(--swatch-focal-point, initial); + background-size: cover; + background-origin: border-box; + border: 0.1rem solid rgba(var(--color-foreground), 0.15); + border-radius: var(--swatch--border-radius); +} + +.swatch--square { + --swatch--border-radius: var(--swatch-input--border-radius, 0.2rem); +} + +.swatch--unavailable { + border-style: dashed; + border-color: rgba(var(--color-foreground), 0.5); +} diff --git a/Assets/assets/component-totals.css b/Assets/assets/component-totals.css new file mode 100644 index 0000000..97fa7f8 --- /dev/null +++ b/Assets/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/assets/component-volume-pricing.css b/Assets/assets/component-volume-pricing.css new file mode 100644 index 0000000..f23c9b2 --- /dev/null +++ b/Assets/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; +} + +div.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/assets/constants.js b/Assets/assets/constants.js new file mode 100644 index 0000000..8c405e6 --- /dev/null +++ b/Assets/assets/constants.js @@ -0,0 +1,9 @@ +const ON_CHANGE_DEBOUNCE_TIMER = 300; + +const PUB_SUB_EVENTS = { + cartUpdate: 'cart-update', + quantityUpdate: 'quantity-update', + optionValueSelectionChange: 'option-value-selection-change', + variantChange: 'variant-change', + cartError: 'cart-error', +}; diff --git a/Assets/assets/customer.css b/Assets/assets/customer.css new file mode 100644 index 0000000..474c592 --- /dev/null +++ b/Assets/assets/customer.css @@ -0,0 +1,754 @@ +.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-wrapper { + height: 0.6rem; +} + +.customer .pagination li:first-of-type .svg-wrapper { + margin-left: -0.2rem; + transform: rotate(90deg); +} + +.customer .pagination li:last-of-type .svg-wrapper { + 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-wrapper { + 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-wrapper { + 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; + 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/assets/customer.js b/Assets/assets/customer.js new file mode 100644 index 0000000..c608cce --- /dev/null +++ b/Assets/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/assets/details-disclosure.js b/Assets/assets/details-disclosure.js new file mode 100644 index 0000000..b4680b7 --- /dev/null +++ b/Assets/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/assets/details-modal.js b/Assets/assets/details-modal.js new file mode 100644 index 0000000..4d7002d --- /dev/null +++ b/Assets/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/assets/email-signup-banner-background-mobile.svg b/Assets/assets/email-signup-banner-background-mobile.svg new file mode 100644 index 0000000..6197f1c --- /dev/null +++ b/Assets/assets/email-signup-banner-background-mobile.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/email-signup-banner-background.svg b/Assets/assets/email-signup-banner-background.svg new file mode 100644 index 0000000..9d05eff --- /dev/null +++ b/Assets/assets/email-signup-banner-background.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/facets.js b/Assets/assets/facets.js new file mode 100644 index 0000000..9305e5f --- /dev/null +++ b/Assets/assets/facets.js @@ -0,0 +1,365 @@ +class FacetFiltersForm extends HTMLElement { + constructor() { + super(); + this.onActiveFilterClick = this.onActiveFilterClick.bind(this); + + this.debouncedOnSubmit = debounce((event) => { + this.onSubmitHandler(event); + }, 800); + + 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 facetDetailsElementsFromFetch = parsedHTML.querySelectorAll( + '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter' + ); + const facetDetailsElementsFromDom = document.querySelectorAll( + '#FacetFiltersForm .js-filter, #FacetFiltersFormMobile .js-filter, #FacetFiltersPillsForm .js-filter' + ); + + // Remove facets that are no longer returned from the server + Array.from(facetDetailsElementsFromDom).forEach((currentElement) => { + if (!Array.from(facetDetailsElementsFromFetch).some(({ id }) => currentElement.id === id)) { + currentElement.remove(); + } + }); + + const matchesId = (element) => { + const jsFilter = event ? event.target.closest('.js-filter') : undefined; + return jsFilter ? element.id === jsFilter.id : false; + }; + + const facetsToRender = Array.from(facetDetailsElementsFromFetch).filter((element) => !matchesId(element)); + const countsToRender = Array.from(facetDetailsElementsFromFetch).find(matchesId); + + facetsToRender.forEach((elementToRender, index) => { + const currentElement = document.getElementById(elementToRender.id); + // Element already rendered in the DOM so just update the innerHTML + if (currentElement) { + document.getElementById(elementToRender.id).innerHTML = elementToRender.innerHTML; + } else { + if (index > 0) { + const { className: previousElementClassName, id: previousElementId } = facetsToRender[index - 1]; + // Same facet type (eg horizontal/vertical or drawer/mobile) + if (elementToRender.className === previousElementClassName) { + document.getElementById(previousElementId).after(elementToRender); + return; + } + } + + if (elementToRender.parentElement) { + document.querySelector(`#${elementToRender.parentElement.id} .js-filter`).before(elementToRender); + } + } + }); + + 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 newFacetDetailsElement = document.getElementById(closestJSFilterID); + const newElementSelector = newFacetDetailsElement.classList.contains('mobile-facets__details') + ? `.mobile-facets__close-button` + : `.facets__summary`; + const newElementToActivate = newFacetDetailsElement.querySelector(newElementSelector); + + const isTextInput = event.target.getAttribute('type') === 'text'; + + if (newElementToActivate && !isTextInput) 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') { + 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)); + element.addEventListener('keydown', this.onKeyDown.bind(this)); + }); + this.setMinAndMaxValues(); + } + + onRangeChange(event) { + this.adjustToValidValues(event.currentTarget); + this.setMinAndMaxValues(); + } + + onKeyDown(event) { + if (event.metaKey) return; + + const pattern = /[0-9]|\.|,|'| |Tab|Backspace|Enter|ArrowUp|ArrowDown|ArrowLeft|ArrowRight|Delete|Escape/; + if (!event.key.match(pattern)) event.preventDefault(); + } + + setMinAndMaxValues() { + const inputs = this.querySelectorAll('input'); + const minInput = inputs[0]; + const maxInput = inputs[1]; + if (maxInput.value) minInput.setAttribute('data-max', maxInput.value); + if (minInput.value) maxInput.setAttribute('data-min', minInput.value); + if (minInput.value === '') maxInput.setAttribute('data-min', 0); + if (maxInput.value === '') minInput.setAttribute('data-max', maxInput.getAttribute('data-max')); + } + + adjustToValidValues(input) { + const value = Number(input.value); + const min = Number(input.getAttribute('data-min')); + const max = Number(input.getAttribute('data-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/assets/global.js b/Assets/assets/global.js new file mode 100644 index 0000000..4adf04d --- /dev/null +++ b/Assets/assets/global.js @@ -0,0 +1,1332 @@ +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" + ) + ); +} + +class SectionId { + static #separator = '__'; + + // for a qualified section id (e.g. 'template--22224696705326__main'), return just the section id (e.g. 'template--22224696705326') + static parseId(qualifiedSectionId) { + return qualifiedSectionId.split(SectionId.#separator)[0]; + } + + // for a qualified section id (e.g. 'template--22224696705326__main'), return just the section name (e.g. 'main') + static parseSectionName(qualifiedSectionId) { + return qualifiedSectionId.split(SectionId.#separator)[1]; + } + + // for a section id (e.g. 'template--22224696705326') and a section name (e.g. 'recommended-products'), return a qualified section id (e.g. 'template--22224696705326__recommended-products') + static getIdForSection(sectionId, sectionName) { + return `${sectionId}${SectionId.#separator}${sectionName}`; + } +} + +class HTMLUpdateUtility { + /** + * Used to swap an HTML node with a new node. + * The new node is inserted as a previous sibling to the old node, the old node is hidden, and then the old node is removed. + * + * The function currently uses a double buffer approach, but this should be replaced by a view transition once it is more widely supported https://developer.mozilla.org/en-US/docs/Web/API/View_Transitions_API + */ + static viewTransition(oldNode, newContent, preProcessCallbacks = [], postProcessCallbacks = []) { + preProcessCallbacks?.forEach((callback) => callback(newContent)); + + const newNodeWrapper = document.createElement('div'); + HTMLUpdateUtility.setInnerHTML(newNodeWrapper, newContent.outerHTML); + const newNode = newNodeWrapper.firstChild; + + // dedupe IDs + const uniqueKey = Date.now(); + oldNode.querySelectorAll('[id], [form]').forEach((element) => { + element.id && (element.id = `${element.id}-${uniqueKey}`); + element.form && element.setAttribute('form', `${element.form.getAttribute('id')}-${uniqueKey}`); + }); + + oldNode.parentNode.insertBefore(newNode, oldNode); + oldNode.style.display = 'none'; + + postProcessCallbacks?.forEach((callback) => callback(newNode)); + + setTimeout(() => oldNode.remove(), 500); + } + + // Sets inner HTML and reinjects the script tags to allow execution. By default, scripts are disabled when using element.innerHTML. + static setInnerHTML(element, html) { + element.innerHTML = html; + 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); + }); + } +} + +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; + + if (event.target.name === 'plus') { + if (parseInt(this.input.dataset.min) > parseInt(this.input.step) && this.input.value == 0) { + this.input.value = this.input.dataset.min; + } else { + this.input.stepUp(); + } + } else { + this.input.stepDown(); + } + + if (previousValue !== this.input.value) this.input.dispatchEvent(this.changeEvent); + + if (this.input.dataset.min === previousValue && event.target.name === 'minus') { + this.input.value = parseInt(this.input.min); + } + } + + validateQtyRules() { + const value = parseInt(this.input.value); + if (this.input.min) { + const buttonMinus = this.querySelector(".quantity__button[name='minus']"); + buttonMinus.classList.toggle('disabled', parseInt(value) <= parseInt(this.input.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):not(.country-selector__close-button):not(.country-filter__reset-button)' + ).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; + this.dataset.section = this.closest('.shopify-section').id.replace('shopify-section-', ''); + 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 BulkModal extends HTMLElement { + constructor() { + super(); + } + + connectedCallback() { + const handleIntersection = (entries, observer) => { + if (!entries[0].isIntersecting) return; + observer.unobserve(this); + if (this.innerHTML.trim() === '') { + const productUrl = this.dataset.url.split('?')[0]; + fetch(`${productUrl}?section_id=bulk-quick-order-list`) + .then((response) => response.text()) + .then((responseText) => { + const html = new DOMParser().parseFromString(responseText, 'text/html'); + const sourceQty = html.querySelector('.quick-order-list-container').parentNode; + this.innerHTML = sourceQty.innerHTML; + }) + .catch((e) => { + console.error(e); + }); + } + }; + + new IntersectionObserver(handleIntersection.bind(this)).observe( + document.querySelector(`#QuickBulk-${this.dataset.productId}-${this.dataset.sectionId}`) + ); + } +} + +customElements.define('bulk-modal', BulkModal); + +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(); + } + + // Workaround for safari iframe bug + const formerStyle = deferredElement.getAttribute('style'); + deferredElement.setAttribute('style', 'display: block;'); + window.setTimeout(() => { + deferredElement.setAttribute('style', formerStyle); + }, 0); + } + } +} + +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(); + } + + connectedCallback() { + this.addEventListener('change', (event) => { + const target = this.getInputForEventTarget(event.target); + this.updateSelectionMetadata(event); + + publish(PUB_SUB_EVENTS.optionValueSelectionChange, { + data: { + event, + target, + selectedOptionValues: this.selectedOptionValues, + }, + }); + }); + } + + updateSelectionMetadata({ target }) { + const { value, tagName } = target; + + if (tagName === 'SELECT' && target.selectedOptions.length) { + Array.from(target.options) + .find((option) => option.getAttribute('selected')) + .removeAttribute('selected'); + target.selectedOptions[0].setAttribute('selected', 'selected'); + + const swatchValue = target.selectedOptions[0].dataset.optionSwatchValue; + const selectedDropdownSwatchValue = target + .closest('.product-form__input') + .querySelector('[data-selected-value] > .swatch'); + if (!selectedDropdownSwatchValue) return; + if (swatchValue) { + selectedDropdownSwatchValue.style.setProperty('--swatch--background', swatchValue); + selectedDropdownSwatchValue.classList.remove('swatch--unavailable'); + } else { + selectedDropdownSwatchValue.style.setProperty('--swatch--background', 'unset'); + selectedDropdownSwatchValue.classList.add('swatch--unavailable'); + } + + selectedDropdownSwatchValue.style.setProperty( + '--swatch-focal-point', + target.selectedOptions[0].dataset.optionSwatchFocalPoint || 'unset' + ); + } else if (tagName === 'INPUT' && target.type === 'radio') { + const selectedSwatchValue = target.closest(`.product-form__input`).querySelector('[data-selected-value]'); + if (selectedSwatchValue) selectedSwatchValue.innerHTML = value; + } + } + + getInputForEventTarget(target) { + return target.tagName === 'SELECT' ? target.selectedOptions[0] : target; + } + + get selectedOptionValues() { + return Array.from(this.querySelectorAll('select option[selected], fieldset input:checked')).map( + ({ dataset }) => dataset.optionValueId + ); + } +} + +customElements.define('variant-selects', VariantSelects); + +class ProductRecommendations extends HTMLElement { + observer = undefined; + + constructor() { + super(); + } + + connectedCallback() { + this.initializeRecommendations(this.dataset.productId); + } + + initializeRecommendations(productId) { + this.observer?.unobserve(this); + this.observer = new IntersectionObserver( + (entries, observer) => { + if (!entries[0].isIntersecting) return; + observer.unobserve(this); + this.loadRecommendations(productId); + }, + { rootMargin: '0px 0px 400px 0px' } + ); + this.observer.observe(this); + } + + loadRecommendations(productId) { + fetch(`${this.dataset.url}&product_id=${productId}§ion_id=${this.dataset.sectionId}`) + .then((response) => response.text()) + .then((text) => { + const html = document.createElement('div'); + html.innerHTML = text; + const recommendations = html.querySelector('product-recommendations'); + + if (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); + }); + } +} + +customElements.define('product-recommendations', ProductRecommendations); + +class AccountIcon extends HTMLElement { + constructor() { + super(); + + this.icon = this.querySelector('.icon'); + } + + connectedCallback() { + document.addEventListener('storefront:signincompleted', this.handleStorefrontSignInCompleted.bind(this)); + } + + handleStorefrontSignInCompleted(event) { + if (event?.detail?.avatar) { + this.icon?.replaceWith(event.detail.avatar.cloneNode()); + } + } +} + +customElements.define('account-icon', AccountIcon); + +class BulkAdd extends HTMLElement { + static ASYNC_REQUEST_DELAY = 250; + + constructor() { + super(); + this.queue = []; + this.setRequestStarted(false); + this.ids = []; + } + + startQueue(id, quantity) { + this.queue.push({ id, quantity }); + + const interval = setInterval(() => { + if (this.queue.length > 0) { + if (!this.requestStarted) { + this.sendRequest(this.queue); + } + } else { + clearInterval(interval); + } + }, BulkAdd.ASYNC_REQUEST_DELAY); + } + + sendRequest(queue) { + this.setRequestStarted(true); + const items = {}; + + queue.forEach((queueItem) => { + items[parseInt(queueItem.id)] = queueItem.quantity; + }); + this.queue = this.queue.filter((queueElement) => !queue.includes(queueElement)); + + this.updateMultipleQty(items); + } + + setRequestStarted(requestStarted) { + this._requestStarted = requestStarted; + } + + get requestStarted() { + return this._requestStarted; + } + + resetQuantityInput(id) { + const input = this.querySelector(`#Quantity-${id}`); + input.value = input.getAttribute('value'); + this.isEnterPressed = false; + } + + setValidity(event, index, message) { + event.target.setCustomValidity(message); + event.target.reportValidity(); + this.resetQuantityInput(index); + event.target.select(); + } + + validateQuantity(event) { + const inputValue = parseInt(event.target.value); + const index = event.target.dataset.index; + + if (inputValue < event.target.dataset.min) { + this.setValidity(event, index, window.quickOrderListStrings.min_error.replace('[min]', event.target.dataset.min)); + } else if (inputValue > parseInt(event.target.max)) { + this.setValidity(event, index, window.quickOrderListStrings.max_error.replace('[max]', event.target.max)); + } else if (inputValue % parseInt(event.target.step) != 0) { + this.setValidity(event, index, window.quickOrderListStrings.step_error.replace('[step]', event.target.step)); + } else { + event.target.setCustomValidity(''); + event.target.reportValidity(); + event.target.setAttribute('value', inputValue); + this.startQueue(index, inputValue); + } + } + + getSectionInnerHTML(html, selector) { + return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML; + } +} + +if (!customElements.get('bulk-add')) { + customElements.define('bulk-add', BulkAdd); +} + +class CartPerformance { + static #metric_prefix = "cart-performance" + + static createStartingMarker(benchmarkName) { + const metricName = `${CartPerformance.#metric_prefix}:${benchmarkName}` + return performance.mark(`${metricName}:start`); + } + + static measureFromEvent(benchmarkName, event) { + const metricName = `${CartPerformance.#metric_prefix}:${benchmarkName}` + const startMarker = performance.mark(`${metricName}:start`, { + startTime: event.timeStamp + }); + + const endMarker = performance.mark(`${metricName}:end`); + + performance.measure( + metricName, + `${metricName}:start`, + `${metricName}:end` + ); + } + + static measureFromMarker(benchmarkName, startMarker) { + const metricName = `${CartPerformance.#metric_prefix}:${benchmarkName}` + const endMarker = performance.mark(`${metricName}:end`); + + performance.measure( + metricName, + startMarker.name, + `${metricName}:end` + ); + } + + static measure(benchmarkName, callback) { + const metricName = `${CartPerformance.#metric_prefix}:${benchmarkName}` + const startMarker = performance.mark(`${metricName}:start`); + + callback(); + + const endMarker = performance.mark(`${metricName}:end`); + + performance.measure( + metricName, + `${metricName}:start`, + `${metricName}:end` + ); + } +} diff --git a/Assets/assets/icon-3d-model.svg b/Assets/assets/icon-3d-model.svg new file mode 100644 index 0000000..0ed91d3 --- /dev/null +++ b/Assets/assets/icon-3d-model.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-account.svg b/Assets/assets/icon-account.svg new file mode 100644 index 0000000..31c7b28 --- /dev/null +++ b/Assets/assets/icon-account.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-apple.svg b/Assets/assets/icon-apple.svg new file mode 100644 index 0000000..f425681 --- /dev/null +++ b/Assets/assets/icon-apple.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-arrow.svg b/Assets/assets/icon-arrow.svg new file mode 100644 index 0000000..562b93d --- /dev/null +++ b/Assets/assets/icon-arrow.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-banana.svg b/Assets/assets/icon-banana.svg new file mode 100644 index 0000000..e891f6d --- /dev/null +++ b/Assets/assets/icon-banana.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-bottle.svg b/Assets/assets/icon-bottle.svg new file mode 100644 index 0000000..2b5c77c --- /dev/null +++ b/Assets/assets/icon-bottle.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-box.svg b/Assets/assets/icon-box.svg new file mode 100644 index 0000000..bf7ef88 --- /dev/null +++ b/Assets/assets/icon-box.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-caret.svg b/Assets/assets/icon-caret.svg new file mode 100644 index 0000000..47d0848 --- /dev/null +++ b/Assets/assets/icon-caret.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-carrot.svg b/Assets/assets/icon-carrot.svg new file mode 100644 index 0000000..0d79780 --- /dev/null +++ b/Assets/assets/icon-carrot.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-cart-empty.svg b/Assets/assets/icon-cart-empty.svg new file mode 100644 index 0000000..fb80f28 --- /dev/null +++ b/Assets/assets/icon-cart-empty.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-cart.svg b/Assets/assets/icon-cart.svg new file mode 100644 index 0000000..c662b14 --- /dev/null +++ b/Assets/assets/icon-cart.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-chat-bubble.svg b/Assets/assets/icon-chat-bubble.svg new file mode 100644 index 0000000..03511cb --- /dev/null +++ b/Assets/assets/icon-chat-bubble.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-check-mark.svg b/Assets/assets/icon-check-mark.svg new file mode 100644 index 0000000..f465434 --- /dev/null +++ b/Assets/assets/icon-check-mark.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-checkmark.svg b/Assets/assets/icon-checkmark.svg new file mode 100644 index 0000000..676f326 --- /dev/null +++ b/Assets/assets/icon-checkmark.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-clipboard.svg b/Assets/assets/icon-clipboard.svg new file mode 100644 index 0000000..f8c1944 --- /dev/null +++ b/Assets/assets/icon-clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/Assets/assets/icon-close-small.svg b/Assets/assets/icon-close-small.svg new file mode 100644 index 0000000..817bd56 --- /dev/null +++ b/Assets/assets/icon-close-small.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-close.svg b/Assets/assets/icon-close.svg new file mode 100644 index 0000000..0d9e486 --- /dev/null +++ b/Assets/assets/icon-close.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-copy.svg b/Assets/assets/icon-copy.svg new file mode 100644 index 0000000..c001fc9 --- /dev/null +++ b/Assets/assets/icon-copy.svg @@ -0,0 +1,12 @@ + diff --git a/Assets/assets/icon-dairy-free.svg b/Assets/assets/icon-dairy-free.svg new file mode 100644 index 0000000..30fe522 --- /dev/null +++ b/Assets/assets/icon-dairy-free.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-dairy.svg b/Assets/assets/icon-dairy.svg new file mode 100644 index 0000000..d53874b --- /dev/null +++ b/Assets/assets/icon-dairy.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-discount.svg b/Assets/assets/icon-discount.svg new file mode 100644 index 0000000..78c2be8 --- /dev/null +++ b/Assets/assets/icon-discount.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-dryer.svg b/Assets/assets/icon-dryer.svg new file mode 100644 index 0000000..04796df --- /dev/null +++ b/Assets/assets/icon-dryer.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-error.svg b/Assets/assets/icon-error.svg new file mode 100644 index 0000000..451c189 --- /dev/null +++ b/Assets/assets/icon-error.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-eye.svg b/Assets/assets/icon-eye.svg new file mode 100644 index 0000000..4bbfbc6 --- /dev/null +++ b/Assets/assets/icon-eye.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-facebook.svg b/Assets/assets/icon-facebook.svg new file mode 100644 index 0000000..e0e3ef2 --- /dev/null +++ b/Assets/assets/icon-facebook.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-filter.svg b/Assets/assets/icon-filter.svg new file mode 100644 index 0000000..69a7378 --- /dev/null +++ b/Assets/assets/icon-filter.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-fire.svg b/Assets/assets/icon-fire.svg new file mode 100644 index 0000000..f024000 --- /dev/null +++ b/Assets/assets/icon-fire.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-gluten-free.svg b/Assets/assets/icon-gluten-free.svg new file mode 100644 index 0000000..0213623 --- /dev/null +++ b/Assets/assets/icon-gluten-free.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-hamburger.svg b/Assets/assets/icon-hamburger.svg new file mode 100644 index 0000000..613bbb7 --- /dev/null +++ b/Assets/assets/icon-hamburger.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-heart.svg b/Assets/assets/icon-heart.svg new file mode 100644 index 0000000..7cb69e4 --- /dev/null +++ b/Assets/assets/icon-heart.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-info.svg b/Assets/assets/icon-info.svg new file mode 100644 index 0000000..031c0f0 --- /dev/null +++ b/Assets/assets/icon-info.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-instagram.svg b/Assets/assets/icon-instagram.svg new file mode 100644 index 0000000..af0c85e --- /dev/null +++ b/Assets/assets/icon-instagram.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-inventory-status.svg b/Assets/assets/icon-inventory-status.svg new file mode 100644 index 0000000..0228263 --- /dev/null +++ b/Assets/assets/icon-inventory-status.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-iron.svg b/Assets/assets/icon-iron.svg new file mode 100644 index 0000000..b3fcf0c --- /dev/null +++ b/Assets/assets/icon-iron.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-leaf.svg b/Assets/assets/icon-leaf.svg new file mode 100644 index 0000000..d41a5bf --- /dev/null +++ b/Assets/assets/icon-leaf.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-leather.svg b/Assets/assets/icon-leather.svg new file mode 100644 index 0000000..fe0e5bb --- /dev/null +++ b/Assets/assets/icon-leather.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-lightning-bolt.svg b/Assets/assets/icon-lightning-bolt.svg new file mode 100644 index 0000000..41f02b9 --- /dev/null +++ b/Assets/assets/icon-lightning-bolt.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-lipstick.svg b/Assets/assets/icon-lipstick.svg new file mode 100644 index 0000000..8c74b34 --- /dev/null +++ b/Assets/assets/icon-lipstick.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-lock.svg b/Assets/assets/icon-lock.svg new file mode 100644 index 0000000..fbf76ff --- /dev/null +++ b/Assets/assets/icon-lock.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-map-pin.svg b/Assets/assets/icon-map-pin.svg new file mode 100644 index 0000000..da0d520 --- /dev/null +++ b/Assets/assets/icon-map-pin.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-minus.svg b/Assets/assets/icon-minus.svg new file mode 100644 index 0000000..a1ec0d0 --- /dev/null +++ b/Assets/assets/icon-minus.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-nut-free.svg b/Assets/assets/icon-nut-free.svg new file mode 100644 index 0000000..b8fef8f --- /dev/null +++ b/Assets/assets/icon-nut-free.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-padlock.svg b/Assets/assets/icon-padlock.svg new file mode 100644 index 0000000..50a0af1 --- /dev/null +++ b/Assets/assets/icon-padlock.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-pants.svg b/Assets/assets/icon-pants.svg new file mode 100644 index 0000000..eef2414 --- /dev/null +++ b/Assets/assets/icon-pants.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-pause.svg b/Assets/assets/icon-pause.svg new file mode 100644 index 0000000..cb47bfb --- /dev/null +++ b/Assets/assets/icon-pause.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-paw-print.svg b/Assets/assets/icon-paw-print.svg new file mode 100644 index 0000000..e350a93 --- /dev/null +++ b/Assets/assets/icon-paw-print.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-pepper.svg b/Assets/assets/icon-pepper.svg new file mode 100644 index 0000000..f9bcea3 --- /dev/null +++ b/Assets/assets/icon-pepper.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-perfume.svg b/Assets/assets/icon-perfume.svg new file mode 100644 index 0000000..6110d20 --- /dev/null +++ b/Assets/assets/icon-perfume.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-pinterest.svg b/Assets/assets/icon-pinterest.svg new file mode 100644 index 0000000..ee69358 --- /dev/null +++ b/Assets/assets/icon-pinterest.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-plane.svg b/Assets/assets/icon-plane.svg new file mode 100644 index 0000000..c103694 --- /dev/null +++ b/Assets/assets/icon-plane.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-plant.svg b/Assets/assets/icon-plant.svg new file mode 100644 index 0000000..67307e3 --- /dev/null +++ b/Assets/assets/icon-plant.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-play.svg b/Assets/assets/icon-play.svg new file mode 100644 index 0000000..d7db603 --- /dev/null +++ b/Assets/assets/icon-play.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-plus.svg b/Assets/assets/icon-plus.svg new file mode 100644 index 0000000..e7f138b --- /dev/null +++ b/Assets/assets/icon-plus.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-price-tag.svg b/Assets/assets/icon-price-tag.svg new file mode 100644 index 0000000..f043668 --- /dev/null +++ b/Assets/assets/icon-price-tag.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-question-mark.svg b/Assets/assets/icon-question-mark.svg new file mode 100644 index 0000000..152f08d --- /dev/null +++ b/Assets/assets/icon-question-mark.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-recycle.svg b/Assets/assets/icon-recycle.svg new file mode 100644 index 0000000..fbf8a70 --- /dev/null +++ b/Assets/assets/icon-recycle.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-remove.svg b/Assets/assets/icon-remove.svg new file mode 100644 index 0000000..091fd03 --- /dev/null +++ b/Assets/assets/icon-remove.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-reset.svg b/Assets/assets/icon-reset.svg new file mode 100644 index 0000000..0c1aa0a --- /dev/null +++ b/Assets/assets/icon-reset.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-return.svg b/Assets/assets/icon-return.svg new file mode 100644 index 0000000..6a5c8f1 --- /dev/null +++ b/Assets/assets/icon-return.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-ruler.svg b/Assets/assets/icon-ruler.svg new file mode 100644 index 0000000..d427897 --- /dev/null +++ b/Assets/assets/icon-ruler.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-search.svg b/Assets/assets/icon-search.svg new file mode 100644 index 0000000..b747f54 --- /dev/null +++ b/Assets/assets/icon-search.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-share.svg b/Assets/assets/icon-share.svg new file mode 100644 index 0000000..84611d3 --- /dev/null +++ b/Assets/assets/icon-share.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-shirt.svg b/Assets/assets/icon-shirt.svg new file mode 100644 index 0000000..3281794 --- /dev/null +++ b/Assets/assets/icon-shirt.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-shoe.svg b/Assets/assets/icon-shoe.svg new file mode 100644 index 0000000..b097508 --- /dev/null +++ b/Assets/assets/icon-shoe.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-shopify.svg b/Assets/assets/icon-shopify.svg new file mode 100644 index 0000000..b6a58bf --- /dev/null +++ b/Assets/assets/icon-shopify.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-silhouette.svg b/Assets/assets/icon-silhouette.svg new file mode 100644 index 0000000..b2b32b4 --- /dev/null +++ b/Assets/assets/icon-silhouette.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-snapchat.svg b/Assets/assets/icon-snapchat.svg new file mode 100644 index 0000000..1509932 --- /dev/null +++ b/Assets/assets/icon-snapchat.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-snowflake.svg b/Assets/assets/icon-snowflake.svg new file mode 100644 index 0000000..afa0009 --- /dev/null +++ b/Assets/assets/icon-snowflake.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-star.svg b/Assets/assets/icon-star.svg new file mode 100644 index 0000000..0982e97 --- /dev/null +++ b/Assets/assets/icon-star.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-stopwatch.svg b/Assets/assets/icon-stopwatch.svg new file mode 100644 index 0000000..403adcf --- /dev/null +++ b/Assets/assets/icon-stopwatch.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-success.svg b/Assets/assets/icon-success.svg new file mode 100644 index 0000000..b4e2b95 --- /dev/null +++ b/Assets/assets/icon-success.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-tick.svg b/Assets/assets/icon-tick.svg new file mode 100644 index 0000000..5e24b1b --- /dev/null +++ b/Assets/assets/icon-tick.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-tiktok.svg b/Assets/assets/icon-tiktok.svg new file mode 100644 index 0000000..e4c2942 --- /dev/null +++ b/Assets/assets/icon-tiktok.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-truck.svg b/Assets/assets/icon-truck.svg new file mode 100644 index 0000000..731cce8 --- /dev/null +++ b/Assets/assets/icon-truck.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-tumblr.svg b/Assets/assets/icon-tumblr.svg new file mode 100644 index 0000000..df8c452 --- /dev/null +++ b/Assets/assets/icon-tumblr.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-twitter.svg b/Assets/assets/icon-twitter.svg new file mode 100644 index 0000000..2d9d4ea --- /dev/null +++ b/Assets/assets/icon-twitter.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-unavailable.svg b/Assets/assets/icon-unavailable.svg new file mode 100644 index 0000000..1c29a80 --- /dev/null +++ b/Assets/assets/icon-unavailable.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-vimeo.svg b/Assets/assets/icon-vimeo.svg new file mode 100644 index 0000000..a8c8c14 --- /dev/null +++ b/Assets/assets/icon-vimeo.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-washing.svg b/Assets/assets/icon-washing.svg new file mode 100644 index 0000000..365a961 --- /dev/null +++ b/Assets/assets/icon-washing.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-youtube.svg b/Assets/assets/icon-youtube.svg new file mode 100644 index 0000000..c2e2ee6 --- /dev/null +++ b/Assets/assets/icon-youtube.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/icon-zoom.svg b/Assets/assets/icon-zoom.svg new file mode 100644 index 0000000..f4ac1c7 --- /dev/null +++ b/Assets/assets/icon-zoom.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/loading-spinner.svg b/Assets/assets/loading-spinner.svg new file mode 100644 index 0000000..913484c --- /dev/null +++ b/Assets/assets/loading-spinner.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/localization-form.js b/Assets/assets/localization-form.js new file mode 100644 index 0000000..3eff4e4 --- /dev/null +++ b/Assets/assets/localization-form.js @@ -0,0 +1,206 @@ +if (!customElements.get('localization-form')) { + customElements.define( + 'localization-form', + class LocalizationForm extends HTMLElement { + constructor() { + super(); + this.mql = window.matchMedia('(min-width: 750px)'); + this.header = document.querySelector('.header-wrapper'); + this.elements = { + input: this.querySelector('input[name="locale_code"], input[name="country_code"]'), + button: this.querySelector('button.localization-form__select'), + panel: this.querySelector('.disclosure__list-wrapper'), + search: this.querySelector('input[name="country_filter"]'), + closeButton: this.querySelector('.country-selector__close-button'), + resetButton: this.querySelector('.country-filter__reset-button'), + searchIcon: this.querySelector('.country-filter__search-icon'), + liveRegion: this.querySelector('#sr-country-search-results'), + }; + this.addEventListener('keyup', this.onContainerKeyUp.bind(this)); + this.addEventListener('keydown', this.onContainerKeyDown.bind(this)); + this.addEventListener('focusout', this.closeSelector.bind(this)); + this.elements.button.addEventListener('click', this.openSelector.bind(this)); + + if (this.elements.search) { + this.elements.search.addEventListener('keyup', this.filterCountries.bind(this)); + this.elements.search.addEventListener('focus', this.onSearchFocus.bind(this)); + this.elements.search.addEventListener('blur', this.onSearchBlur.bind(this)); + this.elements.search.addEventListener('keydown', this.onSearchKeyDown.bind(this)); + } + if (this.elements.closeButton) { + this.elements.closeButton.addEventListener('click', this.hidePanel.bind(this)); + } + if (this.elements.resetButton) { + this.elements.resetButton.addEventListener('click', this.resetFilter.bind(this)); + this.elements.resetButton.addEventListener('mousedown', (event) => event.preventDefault()); + } + + 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); + if (this.elements.search) { + this.elements.search.value = ''; + this.filterCountries(); + this.elements.search.setAttribute('aria-activedescendant', ''); + } + document.body.classList.remove('overflow-hidden-mobile'); + document.querySelector('.menu-drawer').classList.remove('country-selector-open'); + this.header.preventHide = false; + } + + onContainerKeyDown(event) { + const focusableItems = Array.from(this.querySelectorAll('a')).filter( + (item) => !item.parentElement.classList.contains('hidden') + ); + let focusedItemIndex = focusableItems.findIndex((item) => item === document.activeElement); + let itemToFocus; + + switch (event.code.toUpperCase()) { + case 'ARROWUP': + event.preventDefault(); + itemToFocus = + focusedItemIndex > 0 ? focusableItems[focusedItemIndex - 1] : focusableItems[focusableItems.length - 1]; + itemToFocus.focus(); + break; + case 'ARROWDOWN': + event.preventDefault(); + itemToFocus = + focusedItemIndex < focusableItems.length - 1 ? focusableItems[focusedItemIndex + 1] : focusableItems[0]; + itemToFocus.focus(); + break; + } + + if (!this.elements.search) return; + + setTimeout(() => { + focusedItemIndex = focusableItems.findIndex((item) => item === document.activeElement); + if (focusedItemIndex > -1) { + this.elements.search.setAttribute('aria-activedescendant', focusableItems[focusedItemIndex].id); + } else { + this.elements.search.setAttribute('aria-activedescendant', ''); + } + }); + } + + onContainerKeyUp(event) { + event.preventDefault(); + + switch (event.code.toUpperCase()) { + case 'ESCAPE': + if (this.elements.button.getAttribute('aria-expanded') == 'false') return; + this.hidePanel(); + event.stopPropagation(); + this.elements.button.focus(); + break; + case 'SPACE': + if (this.elements.button.getAttribute('aria-expanded') == 'true') return; + this.openSelector(); + break; + } + } + + 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() + ); + if (!document.body.classList.contains('overflow-hidden-tablet')) { + document.body.classList.add('overflow-hidden-mobile'); + } + if (this.elements.search && this.mql.matches) { + this.elements.search.focus(); + } + if (this.hasAttribute('data-prevent-hide')) { + this.header.preventHide = true; + } + document.querySelector('.menu-drawer').classList.add('country-selector-open'); + } + + closeSelector(event) { + if ( + event.target.classList.contains('country-selector__overlay') || + !this.contains(event.target) || + !this.contains(event.relatedTarget) + ) { + this.hidePanel(); + } + } + + normalizeString(str) { + return str + .normalize('NFD') + .replace(/\p{Diacritic}/gu, '') + .toLowerCase(); + } + + filterCountries() { + const searchValue = this.normalizeString(this.elements.search.value); + const popularCountries = this.querySelector('.popular-countries'); + const allCountries = this.querySelectorAll('a'); + let visibleCountries = allCountries.length; + + this.elements.resetButton.classList.toggle('hidden', !searchValue); + + if (popularCountries) { + popularCountries.classList.toggle('hidden', searchValue); + } + + allCountries.forEach((item) => { + const countryName = this.normalizeString(item.querySelector('.country').textContent); + if (countryName.indexOf(searchValue) > -1) { + item.parentElement.classList.remove('hidden'); + visibleCountries++; + } else { + item.parentElement.classList.add('hidden'); + visibleCountries--; + } + }); + + if (this.elements.liveRegion) { + this.elements.liveRegion.innerHTML = window.accessibilityStrings.countrySelectorSearchCount.replace( + '[count]', + visibleCountries + ); + } + + this.querySelector('.country-selector').scrollTop = 0; + this.querySelector('.country-selector__list').scrollTop = 0; + } + + resetFilter(event) { + event.stopPropagation(); + this.elements.search.value = ''; + this.filterCountries(); + this.elements.search.focus(); + } + + onSearchFocus() { + this.elements.searchIcon.classList.add('country-filter__search-icon--hidden'); + } + + onSearchBlur() { + if (!this.elements.search.value) { + this.elements.searchIcon.classList.remove('country-filter__search-icon--hidden'); + } + } + + onSearchKeyDown(event) { + if (event.code.toUpperCase() === 'ENTER') { + event.preventDefault(); + } + } + } + ); +} diff --git a/Assets/assets/magnify.js b/Assets/assets/magnify.js new file mode 100644 index 0000000..11359d2 --- /dev/null +++ b/Assets/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/assets/main-search.js b/Assets/assets/main-search.js new file mode 100644 index 0000000..4e0e432 --- /dev/null +++ b/Assets/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/assets/mask-arch.svg b/Assets/assets/mask-arch.svg new file mode 100644 index 0000000..92e4e5b --- /dev/null +++ b/Assets/assets/mask-arch.svg @@ -0,0 +1,5 @@ + diff --git a/Assets/assets/mask-blobs.css b/Assets/assets/mask-blobs.css new file mode 100644 index 0000000..a1f5765 --- /dev/null +++ b/Assets/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/assets/media-gallery.js b/Assets/assets/media-gallery.js new file mode 100644 index 0000000..c59cd49 --- /dev/null +++ b/Assets/assets/media-gallery.js @@ -0,0 +1,117 @@ +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.querySelector('[data-media-id]'); + if (!activeMedia) { + return; + } + this.elements.viewer.querySelectorAll('[data-media-id]').forEach((element) => { + element.classList.remove('is-active'); + }); + activeMedia?.classList?.add('is-active'); + + if (prepend) { + activeMedia.parentElement.firstChild !== activeMedia && activeMedia.parentElement.prepend(activeMedia); + + if (this.elements.thumbnails) { + const activeThumbnail = this.elements.thumbnails.querySelector(`[data-target="${mediaId}"]`); + activeThumbnail.parentElement.firstChild !== activeThumbnail && activeThumbnail.parentElement.prepend(activeThumbnail); + } + + if (this.elements.viewer.slider) this.elements.viewer.resetPages(); + } + + this.preventStickyHeader(); + window.setTimeout(() => { + if (!this.mql.matches || this.elements.thumbnails) { + activeMedia.parentElement.scrollTo({ left: activeMedia.offsetLeft }); + } + const activeMediaRect = activeMedia.getBoundingClientRect(); + // Don't scroll if the image is already in view + if (activeMediaRect.top > -0.5) return; + const top = activeMediaRect.top + window.scrollY; + window.scrollTo({ top: top, 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/assets/newsletter-section.css b/Assets/assets/newsletter-section.css new file mode 100644 index 0000000..c84eb9f --- /dev/null +++ b/Assets/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/assets/password-modal.js b/Assets/assets/password-modal.js new file mode 100644 index 0000000..9df18f4 --- /dev/null +++ b/Assets/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/assets/pickup-availability.js b/Assets/assets/pickup-availability.js new file mode 100644 index 0000000..1b5ebd6 --- /dev/null +++ b/Assets/assets/pickup-availability.js @@ -0,0 +1,132 @@ +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) { + if (!variantId) return; + + 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() { + this.fetchAvailability(this.dataset.variantId); + } + + update(variant) { + if (variant?.available) { + this.fetchAvailability(variant.id); + } else { + this.removeAttribute('available'); + this.innerHTML = ''; + } + } + + 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/assets/predictive-search.js b/Assets/assets/predictive-search.js new file mode 100644 index 0000000..b30210b --- /dev/null +++ b/Assets/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/assets/price-per-item.js b/Assets/assets/price-per-item.js new file mode 100644 index 0000000..fdf37eb --- /dev/null +++ b/Assets/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/assets/product-form.js b/Assets/assets/product-form.js new file mode 100644 index 0000000..7e9b922 --- /dev/null +++ b/Assets/assets/product-form.js @@ -0,0 +1,142 @@ +if (!customElements.get('product-form')) { + customElements.define( + 'product-form', + class ProductForm extends HTMLElement { + constructor() { + super(); + + this.form = this.querySelector('form'); + this.variantIdInput.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"]'); + this.submitButtonText = this.submitButton.querySelector('span'); + + 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.submitButtonText.classList.add('hidden'); + soldOutMessage.classList.remove('hidden'); + this.error = true; + return; + } else if (!this.cart) { + window.location = window.routes.cart_url; + return; + } + + const startMarker = CartPerformance.createStartingMarker('add:wait-for-subscribers'); + if (!this.error) + publish(PUB_SUB_EVENTS.cartUpdate, { + source: 'product-form', + productVariantId: formData.get('id'), + cartData: response, + }).then(() => { + CartPerformance.measureFromMarker('add:wait-for-subscribers', startMarker); + }); + this.error = false; + const quickAddModal = this.closest('quick-add-modal'); + if (quickAddModal) { + document.body.addEventListener( + 'modalClosed', + () => { + setTimeout(() => { + CartPerformance.measure("add:paint-updated-sections", () => { + this.cart.renderContents(response); + }); + }); + }, + { once: true } + ); + quickAddModal.hide(true); + } else { + CartPerformance.measure("add:paint-updated-sections", () => { + 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'); + + CartPerformance.measureFromEvent("add:user-action", evt); + }); + } + + 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; + } + } + + toggleSubmitButton(disable = true, text) { + if (disable) { + this.submitButton.setAttribute('disabled', 'disabled'); + if (text) this.submitButtonText.textContent = text; + } else { + this.submitButton.removeAttribute('disabled'); + this.submitButtonText.textContent = window.variantStrings.addToCart; + } + } + + get variantIdInput() { + return this.form.querySelector('[name=id]'); + } + } + ); +} diff --git a/Assets/assets/product-info.js b/Assets/assets/product-info.js new file mode 100644 index 0000000..0efef79 --- /dev/null +++ b/Assets/assets/product-info.js @@ -0,0 +1,429 @@ +if (!customElements.get('product-info')) { + customElements.define( + 'product-info', + class ProductInfo extends HTMLElement { + quantityInput = undefined; + quantityForm = undefined; + onVariantChangeUnsubscriber = undefined; + cartUpdateUnsubscriber = undefined; + abortController = undefined; + pendingRequestUrl = null; + preProcessHtmlCallbacks = []; + postProcessHtmlCallbacks = []; + + constructor() { + super(); + + this.quantityInput = this.querySelector('.quantity__input'); + } + + connectedCallback() { + this.initializeProductSwapUtility(); + + this.onVariantChangeUnsubscriber = subscribe( + PUB_SUB_EVENTS.optionValueSelectionChange, + this.handleOptionValueChange.bind(this) + ); + + this.initQuantityHandlers(); + this.dispatchEvent(new CustomEvent('product-info:loaded', { bubbles: true })); + } + + addPreProcessCallback(callback) { + this.preProcessHtmlCallbacks.push(callback); + } + + initQuantityHandlers() { + if (!this.quantityInput) 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)); + } + } + + disconnectedCallback() { + this.onVariantChangeUnsubscriber(); + this.cartUpdateUnsubscriber?.(); + } + + initializeProductSwapUtility() { + this.preProcessHtmlCallbacks.push((html) => + html.querySelectorAll('.scroll-trigger').forEach((element) => element.classList.add('scroll-trigger--cancel')) + ); + this.postProcessHtmlCallbacks.push((newNode) => { + window?.Shopify?.PaymentButton?.init(); + window?.ProductModel?.loadShopifyXR(); + }); + } + + handleOptionValueChange({ data: { event, target, selectedOptionValues } }) { + if (!this.contains(event.target)) return; + + this.resetProductFormState(); + + const productUrl = target.dataset.productUrl || this.pendingRequestUrl || this.dataset.url; + this.pendingRequestUrl = productUrl; + const shouldSwapProduct = this.dataset.url !== productUrl; + const shouldFetchFullPage = this.dataset.updateUrl === 'true' && shouldSwapProduct; + + this.renderProductInfo({ + requestUrl: this.buildRequestUrlWithParams(productUrl, selectedOptionValues, shouldFetchFullPage), + targetId: target.id, + callback: shouldSwapProduct + ? this.handleSwapProduct(productUrl, shouldFetchFullPage) + : this.handleUpdateProductInfo(productUrl), + }); + } + + resetProductFormState() { + const productForm = this.productForm; + productForm?.toggleSubmitButton(true); + productForm?.handleErrorMessage(); + } + + handleSwapProduct(productUrl, updateFullPage) { + return (html) => { + this.productModal?.remove(); + + const selector = updateFullPage ? "product-info[id^='MainProduct']" : 'product-info'; + const variant = this.getSelectedVariant(html.querySelector(selector)); + this.updateURL(productUrl, variant?.id); + + if (updateFullPage) { + document.querySelector('head title').innerHTML = html.querySelector('head title').innerHTML; + + HTMLUpdateUtility.viewTransition( + document.querySelector('main'), + html.querySelector('main'), + this.preProcessHtmlCallbacks, + this.postProcessHtmlCallbacks + ); + } else { + HTMLUpdateUtility.viewTransition( + this, + html.querySelector('product-info'), + this.preProcessHtmlCallbacks, + this.postProcessHtmlCallbacks + ); + } + }; + } + + renderProductInfo({ requestUrl, targetId, callback }) { + this.abortController?.abort(); + this.abortController = new AbortController(); + + fetch(requestUrl, { signal: this.abortController.signal }) + .then((response) => response.text()) + .then((responseText) => { + this.pendingRequestUrl = null; + const html = new DOMParser().parseFromString(responseText, 'text/html'); + callback(html); + }) + .then(() => { + // set focus to last clicked option value + document.querySelector(`#${targetId}`)?.focus(); + }) + .catch((error) => { + if (error.name === 'AbortError') { + console.log('Fetch aborted by user'); + } else { + console.error(error); + } + }); + } + + getSelectedVariant(productInfoNode) { + const selectedVariant = productInfoNode.querySelector('variant-selects [data-selected-variant]')?.innerHTML; + return !!selectedVariant ? JSON.parse(selectedVariant) : null; + } + + buildRequestUrlWithParams(url, optionValues, shouldFetchFullPage = false) { + const params = []; + + !shouldFetchFullPage && params.push(`section_id=${this.sectionId}`); + + if (optionValues.length) { + params.push(`option_values=${optionValues.join(',')}`); + } + + return `${url}?${params.join('&')}`; + } + + updateOptionValues(html) { + const variantSelects = html.querySelector('variant-selects'); + if (variantSelects) { + HTMLUpdateUtility.viewTransition(this.variantSelectors, variantSelects, this.preProcessHtmlCallbacks); + } + } + + handleUpdateProductInfo(productUrl) { + return (html) => { + const variant = this.getSelectedVariant(html); + + this.pickupAvailability?.update(variant); + this.updateOptionValues(html); + this.updateURL(productUrl, variant?.id); + this.updateVariantInputs(variant?.id); + + if (!variant) { + this.setUnavailable(); + return; + } + + this.updateMedia(html, variant?.featured_media?.id); + + const updateSourceFromDestination = (id, shouldHide = (source) => false) => { + const source = html.getElementById(`${id}-${this.sectionId}`); + const destination = this.querySelector(`#${id}-${this.dataset.section}`); + if (source && destination) { + destination.innerHTML = source.innerHTML; + destination.classList.toggle('hidden', shouldHide(source)); + } + }; + + updateSourceFromDestination('price'); + updateSourceFromDestination('Sku', ({ classList }) => classList.contains('hidden')); + updateSourceFromDestination('Inventory', ({ innerText }) => innerText === ''); + updateSourceFromDestination('Volume'); + updateSourceFromDestination('Price-Per-Item', ({ classList }) => classList.contains('hidden')); + + this.updateQuantityRules(this.sectionId, html); + this.querySelector(`#Quantity-Rules-${this.dataset.section}`)?.classList.remove('hidden'); + this.querySelector(`#Volume-Note-${this.dataset.section}`)?.classList.remove('hidden'); + + this.productForm?.toggleSubmitButton( + html.getElementById(`ProductSubmitButton-${this.sectionId}`)?.hasAttribute('disabled') ?? true, + window.variantStrings.soldOut + ); + + publish(PUB_SUB_EVENTS.variantChange, { + data: { + sectionId: this.sectionId, + html, + variant, + }, + }); + }; + } + + updateVariantInputs(variantId) { + this.querySelectorAll( + `#product-form-${this.dataset.section}, #product-form-installment-${this.dataset.section}` + ).forEach((productForm) => { + const input = productForm.querySelector('input[name="id"]'); + input.value = variantId ?? ''; + input.dispatchEvent(new Event('change', { bubbles: true })); + }); + } + + updateURL(url, variantId) { + this.querySelector('share-button')?.updateUrl( + `${window.shopUrl}${url}${variantId ? `?variant=${variantId}` : ''}` + ); + + if (this.dataset.updateUrl === 'false') return; + window.history.replaceState({}, '', `${url}${variantId ? `?variant=${variantId}` : ''}`); + } + + setUnavailable() { + this.productForm?.toggleSubmitButton(true, window.variantStrings.unavailable); + + const selectors = ['price', 'Inventory', 'Sku', 'Price-Per-Item', 'Volume-Note', 'Volume', 'Quantity-Rules'] + .map((id) => `#${id}-${this.dataset.section}`) + .join(', '); + document.querySelectorAll(selectors).forEach(({ classList }) => classList.add('hidden')); + } + + updateMedia(html, variantFeaturedMediaId) { + if (!variantFeaturedMediaId) return; + + const mediaGallerySource = this.querySelector('media-gallery ul'); + const mediaGalleryDestination = html.querySelector(`media-gallery ul`); + + const refreshSourceData = () => { + if (this.hasAttribute('data-zoom-on-hover')) enableZoomOnHover(2); + const mediaGallerySourceItems = Array.from(mediaGallerySource.querySelectorAll('li[data-media-id]')); + const sourceSet = new Set(mediaGallerySourceItems.map((item) => item.dataset.mediaId)); + const sourceMap = new Map( + mediaGallerySourceItems.map((item, index) => [item.dataset.mediaId, { item, index }]) + ); + return [mediaGallerySourceItems, sourceSet, sourceMap]; + }; + + if (mediaGallerySource && mediaGalleryDestination) { + let [mediaGallerySourceItems, sourceSet, sourceMap] = refreshSourceData(); + const mediaGalleryDestinationItems = Array.from( + mediaGalleryDestination.querySelectorAll('li[data-media-id]') + ); + const destinationSet = new Set(mediaGalleryDestinationItems.map(({ dataset }) => dataset.mediaId)); + let shouldRefresh = false; + + // add items from new data not present in DOM + for (let i = mediaGalleryDestinationItems.length - 1; i >= 0; i--) { + if (!sourceSet.has(mediaGalleryDestinationItems[i].dataset.mediaId)) { + mediaGallerySource.prepend(mediaGalleryDestinationItems[i]); + shouldRefresh = true; + } + } + + // remove items from DOM not present in new data + for (let i = 0; i < mediaGallerySourceItems.length; i++) { + if (!destinationSet.has(mediaGallerySourceItems[i].dataset.mediaId)) { + mediaGallerySourceItems[i].remove(); + shouldRefresh = true; + } + } + + // refresh + if (shouldRefresh) [mediaGallerySourceItems, sourceSet, sourceMap] = refreshSourceData(); + + // if media galleries don't match, sort to match new data order + mediaGalleryDestinationItems.forEach((destinationItem, destinationIndex) => { + const sourceData = sourceMap.get(destinationItem.dataset.mediaId); + + if (sourceData && sourceData.index !== destinationIndex) { + mediaGallerySource.insertBefore( + sourceData.item, + mediaGallerySource.querySelector(`li:nth-of-type(${destinationIndex + 1})`) + ); + + // refresh source now that it has been modified + [mediaGallerySourceItems, sourceSet, sourceMap] = refreshSourceData(); + } + }); + } + + // set featured media as active in the media gallery + this.querySelector(`media-gallery`)?.setActiveMedia?.( + `${this.dataset.section}-${variantFeaturedMediaId}`, + true + ); + + // update media modal + const modalContent = this.productModal?.querySelector(`.product-media-modal__content`); + const newModalContent = html.querySelector(`product-modal .product-media-modal__content`); + if (modalContent && newModalContent) modalContent.innerHTML = newModalContent.innerHTML; + } + + setQuantityBoundries() { + const data = { + cartQuantity: this.quantityInput.dataset.cartQuantity ? parseInt(this.quantityInput.dataset.cartQuantity) : 0, + min: this.quantityInput.dataset.min ? parseInt(this.quantityInput.dataset.min) : 1, + max: this.quantityInput.dataset.max ? parseInt(this.quantityInput.dataset.max) : null, + step: this.quantityInput.step ? parseInt(this.quantityInput.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.quantityInput.min = min; + + if (max) { + this.quantityInput.max = max; + } else { + this.quantityInput.removeAttribute('max'); + } + this.quantityInput.value = min; + + publish(PUB_SUB_EVENTS.quantityUpdate, undefined); + } + + fetchQuantityRules() { + const currentVariantId = this.productForm?.variantIdInput?.value; + if (!currentVariantId) return; + + this.querySelector('.quantity__rules-cart .loading__spinner').classList.remove('hidden'); + return fetch(`${this.dataset.url}?variant=${currentVariantId}§ion_id=${this.dataset.section}`) + .then((response) => response.text()) + .then((responseText) => { + const html = new DOMParser().parseFromString(responseText, 'text/html'); + this.updateQuantityRules(this.dataset.section, html); + }) + .catch((e) => console.error(e)) + .finally(() => this.querySelector('.quantity__rules-cart .loading__spinner').classList.add('hidden')); + } + + updateQuantityRules(sectionId, html) { + if (!this.quantityInput) return; + this.setQuantityBoundries(); + + 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.removeAttribute(attribute); + } + } + } else { + current.innerHTML = updated.innerHTML; + if (selector === '.quantity__label') { + const updatedAriaLabelledBy = updated.getAttribute('aria-labelledby'); + if (updatedAriaLabelledBy) { + current.setAttribute('aria-labelledby', updatedAriaLabelledBy); + // Update the referenced visually hidden element + const labelId = updatedAriaLabelledBy; + const currentHiddenLabel = document.getElementById(labelId); + const updatedHiddenLabel = html.getElementById(labelId); + if (currentHiddenLabel && updatedHiddenLabel) { + currentHiddenLabel.textContent = updatedHiddenLabel.textContent; + } + } + } + } + } + } + + get productForm() { + return this.querySelector(`product-form`); + } + + get productModal() { + return document.querySelector(`#ProductModal-${this.dataset.section}`); + } + + get pickupAvailability() { + return this.querySelector(`pickup-availability`); + } + + get variantSelectors() { + return this.querySelector('variant-selects'); + } + + get relatedProducts() { + const relatedProductsSectionId = SectionId.getIdForSection( + SectionId.parseId(this.sectionId), + 'related-products' + ); + return document.querySelector(`product-recommendations[data-section-id^="${relatedProductsSectionId}"]`); + } + + get quickOrderList() { + const quickOrderListSectionId = SectionId.getIdForSection( + SectionId.parseId(this.sectionId), + 'quick_order_list' + ); + return document.querySelector(`quick-order-list[data-id^="${quickOrderListSectionId}"]`); + } + + get sectionId() { + return this.dataset.originalSection || this.dataset.section; + } + } + ); +} diff --git a/Assets/assets/product-modal.js b/Assets/assets/product-modal.js new file mode 100644 index 0000000..b35c7f4 --- /dev/null +++ b/Assets/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/assets/product-model.js b/Assets/assets/product-model.js new file mode 100644 index 0000000..db28d08 --- /dev/null +++ b/Assets/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/assets/pubsub.js b/Assets/assets/pubsub.js new file mode 100644 index 0000000..f3df64e --- /dev/null +++ b/Assets/assets/pubsub.js @@ -0,0 +1,25 @@ +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]) { + const promises = subscribers[eventName] + .map((callback) => callback(data)) + return Promise.all(promises); + } else { + return Promise.resolve() + } +} diff --git a/Assets/assets/quantity-popover.css b/Assets/assets/quantity-popover.css new file mode 100644 index 0000000..f42eef9 --- /dev/null +++ b/Assets/assets/quantity-popover.css @@ -0,0 +1,168 @@ +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.2rem; + 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: 3; + 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 { + text-align: left; +} + +.quantity-popover__info-button--icon-with-label svg { + flex-shrink: 0; + width: 15px; + height: 14px; +} + +.quantity-popover__info-button--open { + text-decoration: underline; +} + +.quantity-popover__info-button span { + padding-left: 1rem; +} + +.quantity-popover__info-button--icon-only--animation svg { + transform: scale(1.25); +} + +.quantity-popover__info-button--icon-only svg { + transition: transform var(--duration-default) ease; + width: 15px; + height: 14px; +} + +@media screen and (max-width: 989px) { + .quantity-popover__info.global-settings-popup { + left: 0; + top: 100%; + } + + .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--empty { + margin-right: 2.7rem; + } + + .quantity-popover__info.global-settings-popup { + width: 20rem; + } + + .quantity-popover-container { + width: auto; + max-width: 20rem; + } + + .quantity-popover__info.global-settings-popup { + transform: translateX(-100%); + top: 0.5rem; + } +} + +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/assets/quantity-popover.js b/Assets/assets/quantity-popover.js new file mode 100644 index 0000000..af45660 --- /dev/null +++ b/Assets/assets/quantity-popover.js @@ -0,0 +1,89 @@ +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.eventMouseEnterHappened = false; + + if (this.closeButton) { + this.closeButton.addEventListener('click', this.closePopover.bind(this)); + } + + if (this.popoverInfo && this.infoButtonDesktop && this.mqlTablet.matches) { + this.popoverInfo.addEventListener('mouseleave', 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)); + } + + if (this.infoButtonDesktop && this.mqlTablet.matches) { + this.infoButtonDesktop.addEventListener('mouseenter', this.togglePopover.bind(this)); + this.infoButtonDesktop.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'; + + if ((this.mql.matches && !isExpanded) || event.type === 'click') { + button.setAttribute('aria-expanded', !isExpanded); + + this.popoverInfo.toggleAttribute('hidden'); + + button.classList.toggle('quantity-popover__info-button--open'); + + this.infoButtonDesktop.classList.add('quantity-popover__info-button--icon-only--animation'); + } + + const isOpen = button.getAttribute('aria-expanded') === 'true'; + + if (isOpen && event.type !== 'mouseenter') { + button.focus(); + button.addEventListener('keyup', (e) => { + if (e.key === 'Escape') { + this.closePopover(e); + } + }); + } + } + + closePopover(event) { + event.preventDefault(); + const isButtonChild = this.infoButtonDesktop.contains(event.relatedTarget); + const isPopoverChild = this.popoverInfo.contains(event.relatedTarget); + + const button = this.infoButtonDesktop && this.mql.matches ? this.infoButtonDesktop : this.infoButtonMobile; + + if (!isButtonChild && !isPopoverChild) { + button.setAttribute('aria-expanded', 'false'); + button.classList.remove('quantity-popover__info-button--open'); + this.popoverInfo.setAttribute('hidden', ''); + this.infoButtonDesktop.classList.remove('quantity-popover__info-button--icon-only--animation'); + } + + this.eventMouseEnterHappened = false; + } + } + ); +} diff --git a/Assets/assets/quick-add-bulk.js b/Assets/assets/quick-add-bulk.js new file mode 100644 index 0000000..a3ec658 --- /dev/null +++ b/Assets/assets/quick-add-bulk.js @@ -0,0 +1,197 @@ +if (!customElements.get('quick-add-bulk')) { + customElements.define( + 'quick-add-bulk', + class QuickAddBulk extends BulkAdd { + constructor() { + super(); + this.quantity = this.querySelector('quantity-input'); + + const debouncedOnChange = debounce((event) => { + if (parseInt(event.target.value) === 0) { + this.startQueue(event.target.dataset.index, parseInt(event.target.value)); + } else { + this.validateQuantity(event); + } + }, ON_CHANGE_DEBOUNCE_TIMER); + + this.addEventListener('change', debouncedOnChange.bind(this)); + this.listenForActiveInput(); + this.listenForKeydown(); + this.lastActiveInputId = null; + } + + connectedCallback() { + this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (event) => { + if ( + event.source === 'quick-add' || + (event.cartData.items && !event.cartData.items.some((item) => item.id === parseInt(this.dataset.index))) || + (event.cartData.variant_id && !(event.cartData.variant_id === parseInt(this.dataset.index))) + ) { + return; + } + // If its another section that made the update + this.onCartUpdate().then(() => { + this.listenForActiveInput(); + this.listenForKeydown(); + }); + }); + } + + disconnectedCallback() { + if (this.cartUpdateUnsubscriber) { + this.cartUpdateUnsubscriber(); + } + } + + get input() { + return this.querySelector('quantity-input input'); + } + + selectProgressBar() { + return this.querySelector('.progress-bar-container'); + } + + listenForActiveInput() { + if (!this.classList.contains('hidden')) { + this.input?.addEventListener('focusin', (event) => event.target.select()); + } + this.isEnterPressed = false; + } + + listenForKeydown() { + this.input?.addEventListener('keydown', (event) => { + if (event.key === 'Enter') { + this.input?.blur(); + this.isEnterPressed = true; + } + }); + } + + cleanErrorMessageOnType(event) { + event.target.addEventListener( + 'keypress', + () => { + event.target.setCustomValidity(''); + }, + { once: true } + ); + } + + get sectionId() { + if (!this._sectionId) { + this._sectionId = this.closest('.collection-quick-add-bulk').dataset.id; + } + + return this._sectionId; + } + + onCartUpdate() { + return new Promise((resolve, reject) => { + fetch(`${this.getSectionsUrl()}?section_id=${this.sectionId}`) + .then((response) => response.text()) + .then((responseText) => { + const html = new DOMParser().parseFromString(responseText, 'text/html'); + const sourceQty = html.querySelector(`#quick-add-bulk-${this.dataset.index}-${this.sectionId}`); + if (sourceQty) { + this.innerHTML = sourceQty.innerHTML; + } + resolve(); + }) + .catch((e) => { + console.error(e); + reject(e); + }); + }); + } + + getSectionsUrl() { + const pageParams = new URLSearchParams(window.location.search); + const pageNumber = decodeURIComponent(pageParams.get('page') || ''); + + return `${window.location.pathname}${pageNumber ? `?page=${pageNumber}` : ''}`; + } + + updateMultipleQty(items) { + this.selectProgressBar().classList.remove('hidden'); + + const ids = Object.keys(items); + const body = JSON.stringify({ + updates: items, + sections: this.getSectionsToRender().map((section) => section.section), + sections_url: this.getSectionsUrl(), + }); + + fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } }) + .then((response) => { + return response.text(); + }) + .then((state) => { + const parsedState = JSON.parse(state); + this.renderSections(parsedState, ids); + publish(PUB_SUB_EVENTS.cartUpdate, { source: 'quick-add', cartData: parsedState }); + }) + .catch(() => { + // Commented out for now and will be fixed when BE issue is done https://github.com/Shopify/shopify/issues/440605 + // e.target.setCustomValidity(error); + // e.target.reportValidity(); + // this.resetQuantityInput(ids[index]); + // this.selectProgressBar().classList.add('hidden'); + // e.target.select(); + // this.cleanErrorMessageOnType(e); + }) + .finally(() => { + this.selectProgressBar().classList.add('hidden'); + this.setRequestStarted(false); + }); + } + + getSectionsToRender() { + return [ + { + id: `quick-add-bulk-${this.dataset.index}-${this.sectionId}`, + section: this.sectionId, + selector: `#quick-add-bulk-${this.dataset.index}-${this.sectionId}`, + }, + { + id: 'cart-icon-bubble', + section: 'cart-icon-bubble', + selector: '.shopify-section', + }, + { + id: 'CartDrawer', + selector: '.drawer__inner', + section: 'cart-drawer', + }, + ]; + } + + renderSections(parsedState, ids) { + const intersection = this.queue.filter((element) => ids.includes(element.id)); + if (intersection.length !== 0) return; + this.getSectionsToRender().forEach((section) => { + const sectionElement = document.getElementById(section.id); + if (section.section === 'cart-drawer') { + sectionElement.closest('cart-drawer')?.classList.toggle('is-empty', parsedState.items.length.length === 0); + } + const elementToReplace = + sectionElement && sectionElement.querySelector(section.selector) + ? sectionElement.querySelector(section.selector) + : sectionElement; + if (elementToReplace) { + elementToReplace.innerHTML = this.getSectionInnerHTML( + parsedState.sections[section.section], + section.selector + ); + } + }); + + if (this.isEnterPressed) { + this.querySelector(`#Quantity-${this.lastActiveInputId}`).select(); + } + + this.listenForActiveInput(); + this.listenForKeydown(); + } + } + ); +} diff --git a/Assets/assets/quick-add.css b/Assets/assets/quick-add.css new file mode 100644 index 0000000..1b4e301 --- /dev/null +++ b/Assets/assets/quick-add.css @@ -0,0 +1,406 @@ +.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; + transform: none; +} + +.quick-add-modal .quick-order-list__container { + padding-bottom: 1.5rem; +} + +.quick-add-modal__content.quick-add-modal__content--bulk { + width: 90%; +} + +.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.quick-add-modal__content-info--bulk { + padding-bottom: 0; +} + +.quick-add-modal__content-info--bulk h3 { + margin-bottom: 0.5rem; + margin-top: 0; +} + +.quick-add-modal__content-info--bulk .price, +.quick-add-modal__content-info--bulk .card__information-volume-pricing-note { + display: inline-block; +} + +.section-bulk-quick-order-list-padding { + padding-top: 2.7rem; + padding-bottom: 2.7rem; +} + +@media screen and (min-width: 750px) { + .section-bulk-quick-order-list-padding { + padding-top: 3.6rem; + padding-bottom: 3.6rem; + } + + .quick-add-modal__content-info--bulk .card__information-volume-pricing-note { + padding-left: 1.6rem; + } +} + +@media screen and (min-width: 990px) { + .quick-add-modal__content-info.quick-add-modal__content-info--bulk { + overflow-y: initial; + } + + .quick-add-modal__content-info--bulk .quick-order-list__table th { + padding-top: 2.5rem; + } + + .quick-add-modal__content-info--bulk thead { + position: sticky; + z-index: 3; + top: 0; + background-color: rgb(var(--color-background)); + } +} + +.quick-add-modal__content-info--bulk .quick-add__product-media, +.quick-add-modal__content-info--bulk .quick-add__product-container, +.quick-add-modal__content-info--bulk .quick-add__info { + width: 4.8rem; + height: 7rem; +} + +.quick-add-modal__content-info--bulk-details { + padding-left: 1rem; +} + +.quick-add-modal__content-info--bulk-details > a:hover { + text-decoration: underline; + text-underline-offset: 0.3rem; +} + +@media screen and (min-width: 990px) { + .quick-add-modal__content-info--bulk .quick-add__product-media, + .quick-add-modal__content-info--bulk .quick-add__product-container, + .quick-add-modal__content-info--bulk .quick-add__info { + width: 17rem; + height: 22rem; + } + + .quick-add-modal__content-info--bulk-details, + .quick-add-modal__content-info--bulk quick-order-list { + padding: 0 2.5rem; + } +} + +.quick-add__product-media { + margin-bottom: 1rem; +} + +.quick-add-modal__content-info--bulk .quick-add__product-container img { + width: 100%; + height: 100%; + object-fit: cover; +} + +.quick-add-modal__content-info--bulk .quick-add__info { + display: flex; +} + +.quick-add-modal__content-info--bulk .quick-add__content-info__media { + width: auto; +} + +@media screen and (max-width: 989px) { + .quick-add-modal__content-info--bulk .quick-add__content-info__media { + display: flex; + margin: 0; + } + + .quick-add-modal__content-info--bulk quick-order-list { + padding-left: 0; + padding-right: 0; + } + + .quick-add-modal__content-info.quick-add-modal__content-info--bulk { + --modal-padding: 1.5rem; + } +} + +@media screen and (min-width: 990px) { + .quick-add-modal__content-info--bulk .quick-add__info { + flex-direction: column; + position: sticky; + top: 0; + margin-top: -2.5rem; + padding-top: 2.5rem; + } +} + +@media screen and (max-width: 989px) { + .quick-add-modal__content-info--bulk { + flex-direction: column; + } +} + +.quick-add-modal__content-info { + --modal-padding: 2.5rem; + padding-right: 4.4rem; + display: flex; + overflow-y: auto; + overflow-x: hidden; + padding: var(--modal-padding); + height: 100%; +} + +.quick-add-modal__content-info > * { + height: auto; + margin: 0 auto; + max-width: 100%; + width: 100%; +} + +.quick-add-modal__content-info > product-info { + padding: 0; +} + +@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__content--bulk .product__view-details .icon { + margin-left: 1.2rem; +} + +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-top: 2rem; + 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; + } +} + +quick-add-bulk { + position: relative; + grid-row-start: 4; + margin: 0 0 1rem; + z-index: 1; +} + +.card__content quick-add-bulk .quantity { + width: 100%; +} + +quick-add-bulk .progress-bar-container { + position: absolute; + height: 100%; + display: flex; + overflow: hidden; + border-radius: var(--inputs-radius-outset); + border: var(--inputs-border-width) solid transparent; + z-index: -1; +} + +quick-add-bulk quantity-input { + justify-content: space-between; +} + +quick-add-bulk .quantity__input { + max-width: calc(6.5rem / var(--font-body-scale)); + flex-grow: 0; +} + +.quantity__input-disabled { + pointer-events: none; +} diff --git a/Assets/assets/quick-add.js b/Assets/assets/quick-add.js new file mode 100644 index 0000000..5125a97 --- /dev/null +++ b/Assets/assets/quick-add.js @@ -0,0 +1,122 @@ +if (!customElements.get('quick-add-modal')) { + customElements.define( + 'quick-add-modal', + class QuickAddModal extends ModalDialog { + constructor() { + super(); + this.modalContent = this.querySelector('[id^="QuickAddInfo-"]'); + + this.addEventListener('product-info:loaded', ({ target }) => { + target.addPreProcessCallback(this.preprocessHTML.bind(this)); + }); + } + + 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'); + const productElement = responseHTML.querySelector('product-info'); + + this.preprocessHTML(productElement); + HTMLUpdateUtility.setInnerHTML(this.modalContent, productElement.outerHTML); + + if (window.Shopify && Shopify.PaymentButton) { + Shopify.PaymentButton.init(); + } + if (window.ProductModel) window.ProductModel.loadShopifyXR(); + + super.show(opener); + }) + .finally(() => { + opener.removeAttribute('aria-disabled'); + opener.classList.remove('loading'); + opener.querySelector('.loading__spinner').classList.add('hidden'); + }); + } + + preprocessHTML(productElement) { + productElement.classList.forEach((classApplied) => { + if (classApplied.startsWith('color-') || classApplied === 'gradient') + this.modalContent.classList.add(classApplied); + }); + this.preventDuplicatedIDs(productElement); + this.removeDOMElements(productElement); + this.removeGalleryListSemantic(productElement); + this.updateImageSizes(productElement); + this.preventVariantURLSwitching(productElement); + } + + preventVariantURLSwitching(productElement) { + productElement.setAttribute('data-update-url', 'false'); + } + + removeDOMElements(productElement) { + const pickupAvailability = productElement.querySelector('pickup-availability'); + if (pickupAvailability) pickupAvailability.remove(); + + const productModal = productElement.querySelector('product-modal'); + if (productModal) productModal.remove(); + + const modalDialog = productElement.querySelectorAll('modal-dialog'); + if (modalDialog) modalDialog.forEach((modal) => modal.remove()); + } + + preventDuplicatedIDs(productElement) { + const sectionId = productElement.dataset.section; + + const oldId = sectionId; + const newId = `quickadd-${sectionId}`; + productElement.innerHTML = productElement.innerHTML.replaceAll(oldId, newId); + Array.from(productElement.attributes).forEach((attribute) => { + if (attribute.value.includes(oldId)) { + productElement.setAttribute(attribute.name, attribute.value.replace(oldId, newId)); + } + }); + + productElement.dataset.originalSection = sectionId; + } + + removeGalleryListSemantic(productElement) { + const galleryList = productElement.querySelector('[id^="Slider-Gallery"]'); + if (!galleryList) return; + + galleryList.setAttribute('role', 'presentation'); + galleryList.querySelectorAll('[id^="Slide-"]').forEach((li) => li.setAttribute('role', 'presentation')); + } + + updateImageSizes(productElement) { + const product = productElement.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/assets/quick-order-list.css b/Assets/assets/quick-order-list.css new file mode 100644 index 0000000..5b2df30 --- /dev/null +++ b/Assets/assets/quick-order-list.css @@ -0,0 +1,657 @@ +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 .pagination-wrapper { + margin-top: 2rem; +} + +.quick-order-list__contents { + position: relative; + padding-bottom: 2rem; +} + +.quick-order-list__container--disabled { + pointer-events: none; + opacity: 0.5; +} + +.quick-order-list__total { + padding-top: 2rem; + border-top: 0.1rem solid rgba(var(--color-foreground), 0.08); +} + +.variant-item__quantity .quantity:before { + z-index: 0; +} + +.variant-item__quantity .quantity__button { + z-index: 1; +} + +.variant-item__image-container.global-media-settings::after { + content: none; +} + +@media screen and (min-width: 990px) { + .quick-order-list__total { + position: sticky; + bottom: 0; + z-index: 2; + 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 + 0.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-total__column.large-up-hide .loading__spinner { + margin-top: 2.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-wrapper { + margin-right: 1rem; + width: 1.3rem; +} + +.quick-order-list-error { + margin-top: 1rem; + display: flex; +} + +.quick-order-list-error .svg-wrapper { + flex-shrink: 0; + margin-right: 0.7rem; + 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; + } + + .variant-remove-total--empty .loading__spinner { + top: -1rem; + } +} + +.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; +} + +.quick-order-list-total__info .loading__spinner:not(.hidden) + quick-order-list-remove-all-button { + 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-wrapper { + flex-shrink: 0; + width: 1.2rem; + margin-right: 0.5rem; + margin-top: 0.1rem; +} + +.variant-item__error-text:empty + .svg-wrapper { + 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__button-text { + text-align: center; +} + +.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 .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__column.large-up-hide .variant-remove-total { + display: flex; + justify-content: center; + margin: 0; + + .loading__spinner { + margin-top: 1.5rem; + } +} + +.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/assets/quick-order-list.js b/Assets/assets/quick-order-list.js new file mode 100644 index 0000000..ab5eb56 --- /dev/null +++ b/Assets/assets/quick-order-list.js @@ -0,0 +1,483 @@ +if (!customElements.get('quick-order-list')) { + customElements.define( + 'quick-order-list', + class QuickOrderList extends BulkAdd { + cartUpdateUnsubscriber = undefined; + hasPendingQuantityUpdate = false; + constructor() { + super(); + this.isListInsideModal = this.closest('bulk-modal'); + + this.stickyHeaderElement = document.querySelector('sticky-header'); + if (this.stickyHeaderElement) { + this.stickyHeader = { + height: this.stickyHeaderElement.offsetHeight, + type: `${this.stickyHeaderElement.getAttribute('data-sticky-type')}`, + }; + } + + this.totalBar = this.getTotalBar(); + if (this.totalBar) { + this.totalBarPosition = window.innerHeight - this.totalBar.offsetHeight; + + this.handleResize = this.handleResize.bind(this); + window.addEventListener('resize', this.handleResize); + } + + this.querySelector('form').addEventListener('submit', (event) => event.preventDefault()); + } + + connectedCallback() { + this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, async (event) => { + // skip if cart event was triggered by this section + if (event.source === this.id) return; + + this.toggleTableLoading(true); + await this.refresh(); + this.toggleTableLoading(false); + }); + + this.initEventListeners(); + } + + disconnectedCallback() { + this.cartUpdateUnsubscriber?.(); + window.removeEventListener('resize', this.handleResize); + } + + handleResize() { + this.totalBarPosition = window.innerHeight - this.totalBar.offsetHeight; + this.stickyHeader.height = this.stickyHeaderElement ? this.stickyHeaderElement.offsetHeight : 0; + } + + initEventListeners() { + this.querySelectorAll('.pagination__item').forEach((link) => { + link.addEventListener('click', async (event) => { + event.preventDefault(); + event.stopPropagation(); + + const url = new URL(event.currentTarget.href); + + this.toggleTableLoading(true); + await this.refresh(url.searchParams.get('page') || '1'); + this.scrollTop(); + this.toggleTableLoading(false); + }); + }); + + this.querySelector('.quick-order-list__contents').addEventListener( + 'keyup', + this.handleScrollIntoView.bind(this) + ); + + this.quickOrderListTable.addEventListener('keydown', this.handleSwitchVariantOnEnter.bind(this)); + + this.initVariantEventListeners(); + } + + initVariantEventListeners() { + this.allInputsArray = Array.from(this.querySelectorAll('input[type="number"]')); + + this.querySelectorAll('quantity-input').forEach((qty) => { + const debouncedOnChange = debounce(this.onChange.bind(this), BulkAdd.ASYNC_REQUEST_DELAY, true); + qty.addEventListener('change', (event) => { + this.hasPendingQuantityUpdate = true; + debouncedOnChange(event); + }); + }); + + this.querySelectorAll('.quick-order-list-remove-button').forEach((button) => { + button.addEventListener('click', (event) => { + event.preventDefault(); + this.toggleLoading(true); + this.startQueue(button.dataset.index, 0); + }); + }); + } + + get currentPage() { + return this.querySelector('.pagination-wrapper')?.dataset?.page ?? '1'; + } + + get cartVariantsForProduct() { + return JSON.parse(this.querySelector('[data-cart-contents]')?.innerHTML || '[]'); + } + + onChange(event) { + const inputValue = parseInt(event.target.value); + this.cleanErrorMessageOnType(event); + if (inputValue == 0) { + event.target.setAttribute('value', inputValue); + this.startQueue(event.target.dataset.index, inputValue); + } else { + this.validateQuantity(event); + } + } + + cleanErrorMessageOnType(event) { + const handleKeydown = () => { + event.target.setCustomValidity(' '); + event.target.reportValidity(); + event.target.removeEventListener('keydown', handleKeydown); + }; + + event.target.addEventListener('keydown', handleKeydown); + } + + validateInput(target) { + const targetValue = parseInt(target.value); + const targetMin = parseInt(target.dataset.min); + const targetStep = parseInt(target.step); + + if (target.max) { + return ( + targetValue == 0 || + (targetValue >= targetMin && targetValue <= parseInt(target.max) && targetValue % targetStep == 0) + ); + } else { + return targetValue == 0 || (targetValue >= targetMin && targetValue % targetStep == 0); + } + } + + get quickOrderListTable() { + return this.querySelector('.quick-order-list__table'); + } + + getSectionsToRender() { + return [ + { + id: this.id, + section: this.dataset.section, + selector: `#${this.id}`, + }, + { + id: 'cart-icon-bubble', + section: 'cart-icon-bubble', + selector: '#shopify-section-cart-icon-bubble', + }, + { + id: `quick-order-list-live-region-text-${this.dataset.productId}`, + section: 'cart-live-region-text', + selector: '.shopify-section', + }, + { + id: 'CartDrawer', + selector: '.drawer__inner', + section: 'cart-drawer', + }, + ]; + } + + toggleTableLoading(enable) { + this.quickOrderListTable.classList.toggle('quick-order-list__container--disabled', enable); + this.toggleLoading(enable); + } + + async refresh(pageNumber = null) { + const url = this.dataset.url || window.location.pathname; + + return fetch(`${url}?section_id=${this.dataset.section}&page=${pageNumber || this.currentPage}`) + .then((response) => response.text()) + .then((responseText) => { + const html = new DOMParser().parseFromString(responseText, 'text/html'); + const responseQuickOrderList = html.querySelector(`#${this.id}`); + + if (!responseQuickOrderList) { + return; + } + + this.innerHTML = responseQuickOrderList.innerHTML; + this.initEventListeners(); + }) + .catch((e) => { + console.error(e); + }); + } + + renderSections(parsedState) { + const { items, sections } = parsedState; + + this.getSectionsToRender().forEach(({ id, selector, section }) => { + const sectionElement = document.getElementById(id); + if (!sectionElement) return; + + const newSection = new DOMParser().parseFromString(sections[section], 'text/html').querySelector(selector); + + if (section === this.dataset.section) { + if (this.queue.length > 0 || this.hasPendingQuantityUpdate) return; + + const focusedElement = document.activeElement; + let focusTarget = focusedElement?.dataset?.target; + if (focusTarget?.includes('remove')) { + focusTarget = focusedElement.closest('quantity-popover')?.querySelector('[data-target*="increment-"]') + ?.dataset.target; + } + + const total = this.getTotalBar(); + if (total) { + total.innerHTML = newSection.querySelector('.quick-order-list__total').innerHTML; + } + + const table = this.quickOrderListTable; + const newTable = newSection.querySelector('.quick-order-list__table'); + + // only update variants if they are from the active page + const shouldUpdateVariants = + this.currentPage === (newSection.querySelector('.pagination-wrapper')?.dataset.page ?? '1'); + if (newTable && shouldUpdateVariants) { + table.innerHTML = newTable.innerHTML; + + const newFocusTarget = this.querySelector(`[data-target='${focusTarget}']`); + if (newFocusTarget) { + newFocusTarget?.focus({ preventScroll: true }); + } + + this.initVariantEventListeners(); + } + } else if (section === 'cart-drawer') { + sectionElement.closest('cart-drawer')?.classList.toggle('is-empty', items.length === 0); + sectionElement.querySelector(selector).innerHTML = newSection.innerHTML; + } else { + sectionElement.innerHTML = newSection.innerHTML; + } + }); + } + + getTotalBar() { + return this.querySelector('.quick-order-list__total'); + } + + scrollTop() { + const { top } = this.getBoundingClientRect(); + + if (this.isListInsideModal) { + this.scrollIntoView(); + } else { + window.scrollTo({ top: top + window.scrollY - (this.stickyHeader?.height || 0), behavior: 'instant' }); + } + } + + scrollQuickOrderListTable(target) { + const inputTopBorder = target.getBoundingClientRect().top; + const inputBottomBorder = target.getBoundingClientRect().bottom; + + if (this.isListInsideModal) { + const totalBarCrossesInput = inputBottomBorder > this.totalBar.getBoundingClientRect().top; + const tableHeadCrossesInput = + inputTopBorder < this.querySelector('.quick-order-list__table thead').getBoundingClientRect().bottom; + + if (totalBarCrossesInput || tableHeadCrossesInput) { + this.scrollToCenter(target); + } + } else { + const stickyHeaderBottomBorder = this.stickyHeaderElement?.getBoundingClientRect().bottom; + const totalBarCrossesInput = inputBottomBorder > this.totalBarPosition; + const inputOutsideOfViewPort = + inputBottomBorder < this.querySelector('.variant-item__quantity-wrapper').offsetHeight; + const stickyHeaderCrossesInput = + this.stickyHeaderElement && + this.stickyHeader.type !== 'on-scroll-up' && + this.stickyHeader.height > inputTopBorder; + const stickyHeaderScrollupCrossesInput = + this.stickyHeaderElement && + this.stickyHeader.type === 'on-scroll-up' && + this.stickyHeader.height > inputTopBorder && + stickyHeaderBottomBorder > 0; + + if ( + totalBarCrossesInput || + inputOutsideOfViewPort || + stickyHeaderCrossesInput || + stickyHeaderScrollupCrossesInput + ) { + this.scrollToCenter(target); + } + } + } + + scrollToCenter(target) { + target.scrollIntoView({ + block: 'center', + behavior: 'smooth', + }); + } + + handleScrollIntoView(event) { + if ((event.key === 'Tab' || event.key === 'Enter') && this.allInputsArray.length !== 1) { + this.scrollQuickOrderListTable(event.target); + } + } + + handleSwitchVariantOnEnter(event) { + if (event.key !== 'Enter' || event.target.tagName !== 'INPUT') return; + + event.preventDefault(); + event.target.blur(); + + if (!this.validateInput(event.target) || this.allInputsArray.length <= 1) return; + + const currentIndex = this.allInputsArray.indexOf(event.target); + const offset = event.shiftKey ? -1 : 1; + const nextIndex = (currentIndex + offset + this.allInputsArray.length) % this.allInputsArray.length; + + this.allInputsArray[nextIndex]?.select(); + } + + updateMultipleQty(items) { + if (this.queue.length == 0) this.hasPendingQuantityUpdate = false; + + this.toggleLoading(true); + const url = this.dataset.url || window.location.pathname; + + const body = JSON.stringify({ + updates: items, + sections: this.getSectionsToRender().map(({ section }) => section), + sections_url: `${url}?page=${this.currentPage}`, + }); + + this.updateMessage(); + this.setErrorMessage(); + + fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } }) + .then((response) => response.text()) + .then(async (state) => { + const parsedState = JSON.parse(state); + this.renderSections(parsedState); + publish(PUB_SUB_EVENTS.cartUpdate, { + source: this.id, + cartData: parsedState, + }); + }) + .catch((e) => { + console.error(e); + this.setErrorMessage(window.cartStrings.error); + }) + .finally(() => { + this.queue.length === 0 && this.toggleLoading(false); + this.setRequestStarted(false); + }); + } + + setErrorMessage(message = null) { + this.errorMessageTemplate = + this.errorMessageTemplate ?? + document.getElementById(`QuickOrderListErrorTemplate-${this.dataset.productId}`).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}`); + 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.querySelector('#shopping-cart-variant-item-status').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); + } + + toggleLoading(loading, target = this) { + target.querySelector('#shopping-cart-variant-item-status').toggleAttribute('aria-hidden', !loading); + target + .querySelectorAll('.variant-remove-total .loading__spinner') + ?.forEach((spinner) => spinner.classList.toggle('hidden', !loading)); + } + } + ); +} + +if (!customElements.get('quick-order-list-remove-all-button')) { + customElements.define( + 'quick-order-list-remove-all-button', + class QuickOrderListRemoveAllButton extends HTMLElement { + constructor() { + super(); + this.quickOrderList = this.closest('quick-order-list'); + + 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) { + const items = this.quickOrderList.cartVariantsForProduct.reduce( + (acc, variantId) => ({ ...acc, [variantId]: 0 }), + {} + ); + + 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); + } + } + ); +} diff --git a/Assets/assets/recipient-form.js b/Assets/assets/recipient-form.js new file mode 100644 index 0000000..71eb7a3 --- /dev/null +++ b/Assets/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/assets/search-form.js b/Assets/assets/search-form.js new file mode 100644 index 0000000..f95e8b7 --- /dev/null +++ b/Assets/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/assets/section-blog-post.css b/Assets/assets/section-blog-post.css new file mode 100644 index 0000000..7b87526 --- /dev/null +++ b/Assets/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/assets/section-collection-list.css b/Assets/assets/section-collection-list.css new file mode 100644 index 0000000..518e79a --- /dev/null +++ b/Assets/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/assets/section-contact-form.css b/Assets/assets/section-contact-form.css new file mode 100644 index 0000000..aae4e19 --- /dev/null +++ b/Assets/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/assets/section-email-signup-banner.css b/Assets/assets/section-email-signup-banner.css new file mode 100644 index 0000000..c6db657 --- /dev/null +++ b/Assets/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/assets/section-featured-blog.css b/Assets/assets/section-featured-blog.css new file mode 100644 index 0000000..26db6d7 --- /dev/null +++ b/Assets/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/assets/section-featured-product.css b/Assets/assets/section-featured-product.css new file mode 100644 index 0000000..b030d35 --- /dev/null +++ b/Assets/assets/section-featured-product.css @@ -0,0 +1,75 @@ +.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; +} + +.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; + } + + .product--right .product__media-wrapper { + order: 2; + } +} + +@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/assets/section-footer.css b/Assets/assets/section-footer.css new file mode 100644 index 0000000..e9fa17d --- /dev/null +++ b/Assets/assets/section-footer.css @@ -0,0 +1,508 @@ +.footer { + border-top: 0.1rem solid rgba(var(--color-foreground), 0.08); +} + +.footer:not(.color-scheme-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__content-bottom.scroll-trigger.animate--slide-in { + animation: none; + opacity: 1; + transform: inherit; + } +} + +.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 (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; +} + +.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/assets/section-image-banner.css b/Assets/assets/section-image-banner.css new file mode 100644 index 0000000..e446abe --- /dev/null +++ b/Assets/assets/section-image-banner.css @@ -0,0 +1,492 @@ +.banner { + display: flex; + position: relative; + flex-direction: column; + z-index: auto; + isolation: isolate; +} + +.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-scheme-1 { + background: transparent; + } +} + +.banner__box { + padding: 4rem 1.5rem; + position: relative; + height: fit-content; + align-items: center; + text-align: center; + width: 100%; + word-wrap: break-word; + z-index: 1; +} + +.banner--mobile-bottom .banner__box { + padding: 4rem 3.5rem; +} + +@media screen and (min-width: 750px) { + .banner__box { + padding: 4rem 3.5rem; + } + + .banner--desktop-transparent .banner__box { + padding: 4rem 0; + 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/assets/section-main-blog.css b/Assets/assets/section-main-blog.css new file mode 100644 index 0000000..ef1587e --- /dev/null +++ b/Assets/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/assets/section-main-page.css b/Assets/assets/section-main-page.css new file mode 100644 index 0000000..f193fd4 --- /dev/null +++ b/Assets/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/assets/section-main-product.css b/Assets/assets/section-main-product.css new file mode 100644 index 0000000..c9dfc58 --- /dev/null +++ b/Assets/assets/section-main-product.css @@ -0,0 +1,1494 @@ +product-info { + display: block; +} + +.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; + } + + .product--right .product__media-wrapper { + order: 2; + } +} + +@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 { + 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.3rem; + line-height: 1.4; + letter-spacing: 0.04rem; + margin-bottom: 1.5rem; +} + +.product-form__error-message-wrapper .svg-wrapper { + flex-shrink: 0; + width: 1.5rem; + height: 1.5rem; + margin-right: 0.7rem; + margin-top: 0.25rem; +} + +/* 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; +} + +.product-form__input .form__label { + padding-left: 0; +} + +.product-form__input .select { + max-width: 100%; +} + +.product-form__input .svg-wrapper { + right: 1.5rem; +} + +.product-form__submit { + margin-bottom: 1rem; +} + +.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 .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 .share-button { + max-width: 100%; +} + +.product--no-media .product-form__quantity, +.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 { + 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-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; + } +} + +@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 { + 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__inventory .svg-wrapper, +.product__inventory svg { + width: 15px; + height: 15px; +} + +.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: '#'; +} + +.product__inventory .icon-inventory-status circle:first-of-type { + opacity: .3; +} + +/* 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 .svg-wrapper { + fill: rgb(var(--color-foreground)); + height: var(--icon-size); + width: var(--icon-size); +} + +.icon-with-text--horizontal .svg-wrapper, +.icon-with-text--horizontal img { + margin-bottom: var(--icon-spacing); +} + +.icon-with-text--vertical .svg-wrapper { + 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-wrapper + .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; +} + +.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; + width: 10px; + height: 9px; +} + +.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 { + 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/assets/section-multicolumn.css b/Assets/assets/section-multicolumn.css new file mode 100644 index 0000000..bb40754 --- /dev/null +++ b/Assets/assets/section-multicolumn.css @@ -0,0 +1,233 @@ +.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; + } +} + +@media screen and (min-width: 750px) and (max-width: 989px) { + .multicolumn__title { + padding-left: 5rem; + padding-right: 5rem; + } +} + +@media screen and (max-width: 989px) { + .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) and (max-width: 989px) { + .multicolumn-list:not(.slider) { + padding-left: 5rem; + padding-right: 5rem; + } +} + +@media screen and (min-width: 750px) { + .multicolumn-list.slider { + 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/assets/section-password.css b/Assets/assets/section-password.css new file mode 100644 index 0000000..6e7ce05 --- /dev/null +++ b/Assets/assets/section-password.css @@ -0,0 +1,321 @@ +/* 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-wrapper { + 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; +} + +.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-wrapper { + 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; +} + +.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/assets/section-related-products.css b/Assets/assets/section-related-products.css new file mode 100644 index 0000000..f9d67e7 --- /dev/null +++ b/Assets/assets/section-related-products.css @@ -0,0 +1,7 @@ +.related-products { + display: block; +} + +.related-products__heading { + margin: 0 0 3rem; +} diff --git a/Assets/assets/section-rich-text.css b/Assets/assets/section-rich-text.css new file mode 100644 index 0000000..e2ac8c9 --- /dev/null +++ b/Assets/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/assets/share.js b/Assets/assets/share.js new file mode 100644 index 0000000..953c46e --- /dev/null +++ b/Assets/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/assets/show-more.js b/Assets/assets/show-more.js new file mode 100644 index 0000000..a67b400 --- /dev/null +++ b/Assets/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/assets/sparkle.gif b/Assets/assets/sparkle.gif new file mode 100644 index 0000000..0255c9a Binary files /dev/null and b/Assets/assets/sparkle.gif differ diff --git a/Assets/assets/square.svg b/Assets/assets/square.svg new file mode 100644 index 0000000..abf2ffa --- /dev/null +++ b/Assets/assets/square.svg @@ -0,0 +1 @@ + diff --git a/Assets/assets/template-collection.css b/Assets/assets/template-collection.css new file mode 100644 index 0000000..b820519 --- /dev/null +++ b/Assets/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/assets/template-giftcard.css b/Assets/assets/template-giftcard.css new file mode 100644 index 0000000..958db6c --- /dev/null +++ b/Assets/assets/template-giftcard.css @@ -0,0 +1,324 @@ +/* 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 { + 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); +} + +.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/assets/theme-editor.js b/Assets/assets/theme-editor.js new file mode 100644 index 0000000..d2f08bd --- /dev/null +++ b/Assets/assets/theme-editor.js @@ -0,0 +1,54 @@ +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:unload', (event) => { + document.querySelectorAll(`[data-section="${event.detail.sectionId}"]`).forEach((element) => { + element.remove(); + document.body.classList.remove('overflow-hidden'); + }); +}); + +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/assets/video-section.css b/Assets/assets/video-section.css new file mode 100644 index 0000000..a662ebc --- /dev/null +++ b/Assets/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..d66c110 --- /dev/null +++ b/config/settings_data.json @@ -0,0 +1 @@ +{"current":"Dawn","presets":{"Dawn":{"logo_width":90,"color_schemes":{"scheme-1":{"settings":{"background":"#FFFFFF","background_gradient":"","text":"#121212","button":"#121212","button_label":"#FFFFFF","secondary_button_label":"#121212","shadow":"#121212"}},"scheme-2":{"settings":{"background":"#F3F3F3","background_gradient":"","text":"#121212","button":"#121212","button_label":"#F3F3F3","secondary_button_label":"#121212","shadow":"#121212"}},"scheme-3":{"settings":{"background":"#242833","background_gradient":"","text":"#FFFFFF","button":"#FFFFFF","button_label":"#000000","secondary_button_label":"#FFFFFF","shadow":"#121212"}},"scheme-4":{"settings":{"background":"#121212","background_gradient":"","text":"#FFFFFF","button":"#FFFFFF","button_label":"#121212","secondary_button_label":"#FFFFFF","shadow":"#121212"}},"scheme-5":{"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,"animations_reveal_on_scroll":true,"animations_hover_elements":"none","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":"scheme-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":"scheme-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":"scheme-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":"scheme-4","sold_out_badge_color_scheme":"scheme-3","brand_headline":"","brand_description":"
<\/p>","brand_image_width":100,"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":"","cart_color_scheme":"scheme-1","sections":{"main-password-header":{"type":"main-password-header","settings":{"color_scheme":"scheme-1"}},"main-password-footer":{"type":"main-password-footer","settings":{"color_scheme":"scheme-1"}}}}}} \ No newline at end of file diff --git a/config/settings_schema.json b/config/settings_schema.json new file mode 100644 index 0000000..0ea602a --- /dev/null +++ b/config/settings_schema.json @@ -0,0 +1,1455 @@ +[ + { + "name": "theme_info", + "theme_name": "Dawn", + "theme_version": "15.4.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" + }, + { + "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" + }, + { + "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": "scheme-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": "scheme-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": "scheme-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": "scheme-5" + }, + { + "type": "color_scheme", + "id": "sold_out_badge_color_scheme", + "label": "t:settings_schema.badges.settings.sold_out_badge_color_scheme.label", + "default": "scheme-3" + } + ] + }, + { + "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": "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": "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": "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": "scheme-1" + } + ] + } +] diff --git a/layout/password.liquid b/layout/password.liquid new file mode 100644 index 0000000..9bae7f5 --- /dev/null +++ b/layout/password.liquid @@ -0,0 +1,214 @@ + + +
+ + + + + + + {%- if settings.favicon != blank -%} + + {%- endif -%} + + {%- unless settings.type_header_font.system? -%} + + {%- endunless -%} + +Uveďte pro zákazníky kontaktní informace a popište jim podrobně svůj obchod a značky nabízeného zboží.
" + } + } + }, + "brand_information": { + "name": "Informace o značce", + "settings": { + "paragraph": { + "content": "Spravovat informace o značce v [nastavení motivu](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Ikony sociálních sítí", + "info": "[Správa sociálních účtů](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Přihlášení k odběru e-mailů" + }, + "newsletter_heading": { + "label": "Nadpis", + "default": "Přihlaste se k odběru našich e-mailů" + }, + "header__1": { + "content": "Přihlášení k odběru e-mailů", + "info": "Registrace přidat [profily zákazníků](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Ikony sociálních sítí", + "info": "[Správa účtů na sociálních sítích](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selektor země/oblasti", + "info": "[Spravovat země/oblasti](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selektor jazyka", + "info": "[Spravovat jazyky](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ikony platebních metod" + }, + "margin_top": { + "label": "Horní okraj" + }, + "show_policy": { + "label": "Odkazy na zásady", + "info": "[Spravovat zásady](/admin/settings/legal)" + }, + "header__9": { + "content": "Veřejné služby" + }, + "enable_follow_on_shop": { + "label": "Sledování v aplikaci Shop", + "info": "Služba Shop Pay musí být povolena. [Zjistit více](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Záhlaví", + "settings": { + "logo_position": { + "label": "Pozice loga", + "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": "Oddělovací linka" + }, + "margin_bottom": { + "label": "Dolní okraj" + }, + "menu_type_desktop": { + "label": "Typ nabídky", + "options__1": { + "label": "Rozevírací nabídka" + }, + "options__2": { + "label": "Mega nabídka" + }, + "options__3": { + "label": "Výsuvný panel" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Selektor země/oblasti", + "info": "[Spravovat země/oblasti](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selektor jazyka", + "info": "[Spravovat jazyky](/admin/settings/languages)" + }, + "header__1": { + "content": "Barva" + }, + "menu_color_scheme": { + "label": "Barevné schéma nabídky" + }, + "enable_customer_avatar": { + "label": "Avatar zákaznického účtu", + "info": "Viditelné pouze v případě, kdy jsou zákazníci přihlášeni přes Shop. [Spravovat zákaznické účty](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Veřejné služby" + } + } + }, + "image-banner": { + "name": "Obrázkový banner", + "settings": { + "image": { + "label": "Obrázek 1" + }, + "image_2": { + "label": "Obrázek 2" + }, + "stack_images_on_mobile": { + "label": "Vrstvit obrázky" + }, + "show_text_box": { + "label": "Kontejner" + }, + "image_overlay_opacity": { + "label": "Neprůhlednost překryvu" + }, + "show_text_below": { + "label": "Kontejner" + }, + "image_height": { + "label": "Výška", + "options__1": { + "label": "Přizpůsobení prvnímu obrázku" + }, + "options__2": { + "label": "Malý" + }, + "options__3": { + "label": "Střední" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + }, + "label": "Zarovnání" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + }, + "label": "Zarovnání" + }, + "mobile": { + "content": "Mobilní rozvržení" + }, + "content": { + "content": "obsah" + } + }, + "blocks": { + "heading": { + "name": "Nadpis", + "settings": { + "heading": { + "label": "Nadpis", + "default": "Obrázkový banner" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Poskytněte zákazníkům podrobnosti o obrázcích banneru nebo obsahu v šabloně." + }, + "text_style": { + "options__1": { + "label": "Hlavní část" + }, + "options__2": { + "label": "Podtitul" + }, + "options__3": { + "label": "Velká písmena" + }, + "label": "Styl" + } + } + }, + "buttons": { + "name": "Tlačítka", + "settings": { + "button_label_1": { + "label": "Štítek", + "info": "Pro skrytí nechte prázdné", + "default": "Text tlačítka" + }, + "button_link_1": { + "label": "Odkaz" + }, + "button_style_secondary_1": { + "label": "Styl osnovy" + }, + "button_label_2": { + "label": "Štítek", + "info": "Pro skrytí nechte prázdné", + "default": "Text tlačítka" + }, + "button_link_2": { + "label": "Odkaz" + }, + "button_style_secondary_2": { + "label": "Styl osnovy" + }, + "header_1": { + "content": "Tlačítko 1" + }, + "header_2": { + "content": "Tlačítko 2" + } + } + } + }, + "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", + "options__4": { + "label": "Velký" + } + }, + "layout": { + "options__1": { + "label": "Obrázek jako první" + }, + "options__2": { + "label": "Druhý obrázek" + }, + "label": "Umístění" + }, + "desktop_image_width": { + "options__1": { + "label": "Malá" + }, + "options__2": { + "label": "Střední" + }, + "options__3": { + "label": "Velká" + }, + "label": "Šířka" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + }, + "label": "Zarovnání" + }, + "desktop_content_position": { + "options__1": { + "label": "Nahoře" + }, + "options__2": { + "label": "Uprostřed" + }, + "options__3": { + "label": "Dole" + }, + "label": "Pozice" + }, + "content_layout": { + "options__1": { + "label": "Bez překrytí" + }, + "options__2": { + "label": "S překrytím" + }, + "label": "Rozvržení" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + }, + "label": "Vyrovnání mobilních zařízení" + }, + "header": { + "content": "obsah" + }, + "header_colors": { + "content": "Barvy" + } + }, + "blocks": { + "heading": { + "name": "Nadpis", + "settings": { + "heading": { + "label": "Nadpis", + "default": "Obrázek s textem" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Zkombinujte text a obrázek, abyste zaměřili pozornost návštěvníků na zvolený produkt, kolekci či blogový příspěvek. Pak můžete připojit podrobnosti o dostupnosti a stylu, nebo dokonce recenzi.
" + }, + "text_style": { + "label": "Styl", + "options__1": { + "label": "Hlavní část" + }, + "options__2": { + "label": "Podtitul" + } + } + } + }, + "button": { + "name": "Tlačítko", + "settings": { + "button_label": { + "label": "Štítek", + "info": "Pro skrytí nechte prázdné", + "default": "Text tlačítka" + }, + "button_link": { + "label": "Odkaz" + }, + "outline_button": { + "label": "Styl osnovy" + } + } + }, + "caption": { + "name": "Titulek", + "settings": { + "text": { + "label": "Text", + "default": "Přidejte slogan" + }, + "text_style": { + "label": "Styl", + "options__1": { + "label": "Podtitul" + }, + "options__2": { + "label": "Velká písmena" + } + }, + "caption_size": { + "label": "Velikost", + "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 obrázku", + "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": "Datum" + }, + "blog_show_author": { + "label": "Autor" + } + } + }, + "content": { + "name": "Obsah" + }, + "share": { + "name": "Sdílet", + "settings": { + "text": { + "label": "Text", + "default": "Sdílet" + } + } + } + } + }, + "main-blog": { + "name": "Blogové příspěvky", + "settings": { + "show_image": { + "label": "Propagovaný obrázek" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Autor" + }, + "layout": { + "label": "Rozvržení", + "options__1": { + "label": "Mřížka" + }, + "options__2": { + "label": "Koláž" + } + }, + "image_height": { + "label": "Výška obrázku", + "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": "Podrobnosti o sbírce jsou [spravovány ve správci](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Popis" + }, + "show_collection_image": { + "label": "Obrázek" + } + } + }, + "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": "Dodavatel" + }, + "enable_tags": { + "label": "Filtry", + "info": "Přizpůsobte si filtry pomocí aplikace [Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)." + }, + "enable_filtering": { + "label": "Filtry", + "info": "Přizpůsobte si filtry pomocí aplikace [Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Řazení" + }, + "header__1": { + "content": "Filtrování a řazení" + }, + "header__3": { + "content": "Karta produktu" + }, + "show_rating": { + "label": "Hodnocení produktu", + "info": "Pro hodnocení produktů je nutná aplikace. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Sloupce" + }, + "columns_mobile": { + "label": "Mobilní sloupce", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Rozvržení filtru", + "options__1": { + "label": "Vodorovně" + }, + "options__2": { + "label": "Svisle" + }, + "options__3": { + "label": "Výsuvný panel" + } + }, + "quick_add": { + "label": "Rychlé přidání", + "options": { + "option_1": "Žádné", + "option_2": "Standardní", + "option_3": "Hromadné" + } + } + } + }, + "main-list-collections": { + "name": "Stránka se seznamem kolekcí", + "settings": { + "title": { + "label": "Nadpis", + "default": "Kolekce" + }, + "sort": { + "label": "Třídění kolekcí", + "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", + "options__1": { + "label": "Přizpůsobení obrázku" + }, + "options__2": { + "label": "Na výšku" + }, + "options__3": { + "label": "Čtverec" + } + }, + "columns_desktop": { + "label": "Sloupce" + }, + "header_mobile": { + "content": "Mobilní rozvržení" + }, + "columns_mobile": { + "label": "Mobilní sloupce", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Stránka" + }, + "main-password-footer": { + "name": "Zápatí hesla" + }, + "main-password-header": { + "name": "Záhlaví hesla", + "settings": { + "logo_help": { + "content": "Logo upravíte v [nastavení motivu](/editor?context=theme&category=logo)." + } + } + }, + "main-product": { + "name": "Informace o produktu", + "blocks": { + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Textový blok" + }, + "text_style": { + "label": "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": "Styl", + "options__1": { + "label": "Rozevírací nabídka" + }, + "options__2": { + "label": "Kulaté přepínače" + } + }, + "swatch_shape": { + "label": "Vzorník", + "info": "Zjistěte více o [vzornících](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) v možnostech produktu", + "options__1": { + "label": "Kruh" + }, + "options__2": { + "label": "Čtverec" + }, + "options__3": { + "label": "Žádný" + } + } + } + }, + "buy_buttons": { + "name": "Tlačítka nákupu", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamická tlačítka pokladny", + "info": "Zákazníci uvidí preferovanou možnost platby. [Zjistit více](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Možnosti zasílání dárkových karet", + "info": "Zákazníci mohou přidat osobní zprávu a naplánovat datum odeslání. [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": { + "text": { + "label": "Text", + "default": "Sdílet" + } + } + }, + "collapsible_tab": { + "name": "Sbalitelný řádek", + "settings": { + "heading": { + "label": "Nadpis", + "default": "Sbalitelný řádek" + }, + "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", + "default": "Text odkazu automaticky otevíraného okna" + }, + "page": { + "label": "Stránka" + } + } + }, + "rating": { + "name": "Hodnocení produktů", + "settings": { + "paragraph": { + "content": "Pro hodnocení produktů je nutná aplikace. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Doplňkové produkty", + "settings": { + "paragraph": { + "content": "Správa doplňkových produktů v aplikaci [Search & Discovery ](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Nadpis", + "default": "Vhodná kombinace:" + }, + "make_collapsible_row": { + "label": "Sbalitelný řádek" + }, + "icon": { + "info": "Zobrazuje se, když je vybrán sbalitelný řádek" + }, + "product_list_limit": { + "label": "Počet produktů" + }, + "products_per_page": { + "label": "Počet produktů na stránku" + }, + "pagination_style": { + "label": "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": "Rychlé přidání" + } + } + }, + "icon_with_text": { + "name": "Ikona s textem", + "settings": { + "layout": { + "label": "Rozvržení", + "options__1": { + "label": "Vodorovně" + }, + "options__2": { + "label": "Svisle" + } + }, + "heading": { + "info": "Pro skrytí tohoto párování ponechte prázdné místo" + }, + "icon_1": { + "label": "Ikona" + }, + "image_1": { + "label": "Obrázek" + }, + "heading_1": { + "label": "Nadpis", + "default": "Nadpis" + }, + "icon_2": { + "label": "Ikona" + }, + "image_2": { + "label": "Obrázek" + }, + "heading_2": { + "label": "nadpisu", + "default": "Nadpis" + }, + "icon_3": { + "label": "Ikona" + }, + "image_3": { + "label": "Obrázek" + }, + "heading_3": { + "label": "nadpisu", + "default": "Nadpis" + }, + "pairing_1": { + "label": "Párování 1", + "info": "Vyberte si ikonu nebo přidejte obrázek pro každé párování" + }, + "pairing_2": { + "label": "Párování 2" + }, + "pairing_3": { + "label": "Párování 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Objem skladových zásob" + } + } + } + }, + "settings": { + "header": { + "content": "Multimédia" + }, + "enable_video_looping": { + "label": "Smyčka videa" + }, + "enable_sticky_info": { + "label": "Plovoucí obsah" + }, + "hide_variants": { + "label": "Skrytí ostatních variant médií po výběru jedné z nich" + }, + "gallery_layout": { + "label": "Rozvržení", + "options__1": { + "label": "Nad sebou" + }, + "options__2": { + "label": "2 sloupce" + }, + "options__3": { + "label": "Miniatury" + }, + "options__4": { + "label": "Karusel miniatur" + } + }, + "media_size": { + "label": "Šířka", + "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", + "options__1": { + "label": "Vlevo" + }, + "options__2": { + "label": "Vpravo" + } + }, + "image_zoom": { + "label": "Lupa", + "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": "Omezit na výšku obrazovky" + }, + "media_fit": { + "label": "Přizpůsobení", + "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": "Dodavatel" + }, + "header__1": { + "content": "Karta produktu" + }, + "header__2": { + "content": "Karta blogu" + }, + "article_show_date": { + "label": "Datum" + }, + "article_show_author": { + "label": "Autor" + }, + "show_rating": { + "label": "Hodnocení produktu", + "info": "Pro hodnocení produktů je nutná aplikace. [Zjistit více](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Sloupce" + }, + "columns_mobile": { + "label": "Mobilní sloupce", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Více sloupců", + "settings": { + "title": { + "label": "Nadpis", + "default": "Více sloupců" + }, + "image_width": { + "label": "Šířka", + "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", + "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": "Štítek", + "default": "Text tlačítka", + "info": "Pro skrytí nechte prázdné" + }, + "button_link": { + "label": "Odkaz" + }, + "swipe_on_mobile": { + "label": "Karusel" + }, + "columns_desktop": { + "label": "Sloupce" + }, + "header_mobile": { + "content": "Mobilní rozvržení" + }, + "columns_mobile": { + "label": "Sloupce", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Nadpis" + }, + "header_image": { + "content": "Obrázek" + }, + "header_layout": { + "content": "Rozvržení" + }, + "header_button": { + "content": "Tlačítko" + } + }, + "blocks": { + "column": { + "name": "Sloupec", + "settings": { + "image": { + "label": "Obrázek" + }, + "title": { + "label": "Nadpis", + "default": "Sloupec" + }, + "text": { + "label": "Popis", + "default": "Zkombinujte text a obrázek, abyste zaměřili pozornost návštěvníků na zvolený produkt, kolekci či blogový příspěvek. Pak můžete připojit podrobnosti o dostupnosti a stylu, nebo dokonce recenzi.
" + }, + "link_label": { + "label": "Text odkazu", + "info": "Pro skrytí nechte prázdné" + }, + "link": { + "label": "Odkaz" + } + } + } + }, + "presets": { + "name": "Více sloupců" + } + }, + "newsletter": { + "name": "Přihlášení k odběru e-mailů", + "settings": { + "full_width": { + "label": "Plná šířka" + }, + "paragraph": { + "content": "Registrace přidat [profily zákazníků](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Nadpis", + "settings": { + "heading": { + "label": "Nadpis", + "default": "Přihlaste se k odběru našich e-mailů" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Získejte jako první informace o nových kolekcích a exkluzivních nabídkách.
" + } + } + }, + "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": "Plná šířka" + }, + "desktop_content_position": { + "options__1": { + "label": "Vlevo" + }, + "options__2": { + "label": "Uprostřed" + }, + "options__3": { + "label": "Vpravo" + }, + "label": "Pozice obsahu" + }, + "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", + "default": "Informujte o své značce" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Informujte zákazníky o své značce. Zároveň můžete popsat některý z produktů, oznámit důležité informace nebo přivítat zákazníky ve svém obchodě.
" + } + } + }, + "buttons": { + "name": "Tlačítka", + "settings": { + "button_label_1": { + "label": "Štítek", + "info": "Pro skrytí nechte prázdné", + "default": "Text tlačítka" + }, + "button_link_1": { + "label": "Odkaz" + }, + "button_style_secondary_1": { + "label": "Styl osnovy" + }, + "button_label_2": { + "label": "Štítek", + "info": "Pokud chcete štítek skrýt, nezadávejte žádný text." + }, + "button_link_2": { + "label": "Odkaz" + }, + "button_style_secondary_2": { + "label": "Styl osnovy" + }, + "header_button1": { + "content": "Tlačítko 1" + }, + "header_button2": { + "content": "Tlačítko 2" + } + } + }, + "caption": { + "name": "Titulek", + "settings": { + "text": { + "label": "Text", + "default": "Přidejte slogan" + }, + "text_style": { + "label": "Styl", + "options__1": { + "label": "Podtitul" + }, + "options__2": { + "label": "Velká písmena" + } + }, + "caption_size": { + "label": "Velikost", + "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í", + "default": "Video" + }, + "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." + }, + "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": "Plná šířka" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Smyčka videa" + }, + "header__1": { + "content": "Video hostované Shopify" + }, + "header__2": { + "content": "Nebo vložte video přes URL" + }, + "header__3": { + "content": "Rozvržení" + }, + "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", + "default": "Textový blok" + }, + "text_style": { + "label": "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": "Styl", + "options__1": { + "label": "Rozevírací nabídka" + }, + "options__2": { + "label": "Kulaté přepínače" + } + }, + "swatch_shape": { + "label": "Vzorník", + "info": "Zjistěte více o [vzornících](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) v možnostech produktu", + "options__1": { + "label": "Kruh" + }, + "options__2": { + "label": "Čtverec" + }, + "options__3": { + "label": "Žádný" + } + } + } + }, + "buy_buttons": { + "name": "Tlačítka nákupu", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamická tlačítka pokladny", + "info": "Zákazníci uvidí preferovanou možnost platby. [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", + "default": "Sdílet" + } + } + }, + "rating": { + "name": "Hodnocení produktů", + "settings": { + "paragraph": { + "content": "Pro hodnocení produktů je nutná aplikace. [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": "Sekundární pozadí" + }, + "header": { + "content": "Multimédia" + }, + "enable_video_looping": { + "label": "Smyčka videa" + }, + "hide_variants": { + "label": "Skrýt v počítači multimédia nevybraných variant" + }, + "media_position": { + "label": "Pozice", + "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": "Registrace přidat [profily zákazníků](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Obrázek na pozadí" + }, + "show_background_image": { + "label": "Zobrazit obrázek na pozadí" + }, + "show_text_box": { + "label": "Kontejner" + }, + "image_overlay_opacity": { + "label": "Neprůhlednost překryvu" + }, + "show_text_below": { + "label": "Text pod obrázkem" + }, + "image_height": { + "label": "Výška", + "options__1": { + "label": "Přizpůsobit velikosti obrázku" + }, + "options__2": { + "label": "Malá" + }, + "options__3": { + "label": "Střední" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + }, + "label": "Zarovnání" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + }, + "label": "Zarovnání" + }, + "header": { + "content": "Mobilní rozvržení" + }, + "color_scheme": { + "info": "Zobrazuje se v případě, že se zobrazuje kontejner." + }, + "content_header": { + "content": "obsah" + } + }, + "blocks": { + "heading": { + "name": "Záhlaví", + "settings": { + "heading": { + "label": "Záhlaví", + "default": "Brzy otevíráme" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Zjistěte jako první, kdy začínáme prodávat.
" + }, + "text_style": { + "options__1": { + "label": "Hlavní část" + }, + "options__2": { + "label": "Podtitul" + }, + "label": "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": "stránka" + } + }, + "slide_height": { + "label": "Výška", + "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": "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": "Text pod obrázkem" + }, + "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.", + "default": "Prezentace o značce" + } + }, + "blocks": { + "slide": { + "name": "Snímek", + "settings": { + "image": { + "label": "Obrázek" + }, + "heading": { + "label": "Nadpis", + "default": "Obrázkový snímek" + }, + "subheading": { + "label": "Podnadpis", + "default": "Představte příběh své značky prostřednictvím obrázků" + }, + "button_label": { + "label": "Štítek", + "info": "Pro skrytí nechte prázdné", + "default": "Text tlačítka" + }, + "link": { + "label": "Odkaz" + }, + "secondary_style": { + "label": "Styl osnovy" + }, + "box_align": { + "label": "Pozice obsahu", + "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" + } + }, + "show_text_box": { + "label": "Kontejner" + }, + "text_alignment": { + "label": "Zarovnání obsahu", + "option_1": { + "label": "Doleva" + }, + "option_2": { + "label": "Na střed" + }, + "option_3": { + "label": "Doprava" + } + }, + "image_overlay_opacity": { + "label": "Neprůhlednost překryvu" + }, + "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" + } + }, + "header_button": { + "content": "Tlačítko" + }, + "header_layout": { + "content": "Rozvržení" + }, + "header_text": { + "content": "Text" + }, + "header_colors": { + "content": "Barvy" + } + } + } + }, + "presets": { + "name": "Prezentace" + } + }, + "collapsible_content": { + "name": "Sbalitelný obsah", + "settings": { + "caption": { + "label": "Titulek" + }, + "heading": { + "label": "Nadpis", + "default": "Sbalitelný obsah" + }, + "heading_alignment": { + "label": "Zarovnání nadpisu", + "options__1": { + "label": "Doleva" + }, + "options__2": { + "label": "Na střed" + }, + "options__3": { + "label": "Doprava" + } + }, + "layout": { + "label": "Kontejner", + "options__1": { + "label": "Žádný kontejner" + }, + "options__2": { + "label": "Kontejner řádků" + }, + "options__3": { + "label": "Kontejner sekcí" + } + }, + "open_first_collapsible_row": { + "label": "Otevřít první řádek" + }, + "header": { + "content": "Obrázek" + }, + "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": "Umístění", + "options__1": { + "label": "Obrázek jako první" + }, + "options__2": { + "label": "Obrázek jako druhý" + } + }, + "container_color_scheme": { + "label": "Barevné schéma kontejneru" + }, + "layout_header": { + "content": "Rozvržení" + }, + "section_color_scheme": { + "label": "Barevné schéma sekce" + } + }, + "blocks": { + "collapsible_row": { + "name": "Sbalitelný řádek", + "settings": { + "heading": { + "label": "Nadpis", + "default": "Sbalitelný řádek" + }, + "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í", + "shop_login_button": { + "enable": "Povolit přihlášení přes Shop" + } + }, + "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": "Počet produktů" + }, + "columns_desktop": { + "label": "Sloupce" + }, + "paragraph__1": { + "content": "Související produkty lze spravovat v aplikaci [Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Mohlo by se vám také líbit" + }, + "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": "Dodavatel" + }, + "show_rating": { + "label": "Hodnocení produktu", + "info": "Pro hodnocení produktů je nutná aplikace. [Zjistit více](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobilní sloupce", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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" + }, + "desktop_image_width": { + "options__1": { + "label": "Malý" + }, + "options__2": { + "label": "Střední" + }, + "options__3": { + "label": "Velký" + }, + "label": "Šířka" + }, + "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í" + }, + "desktop_content_position": { + "options__1": { + "label": "Nahoře" + }, + "options__2": { + "label": "Uprostřed" + }, + "options__3": { + "label": "Dole" + }, + "label": "Pozice" + }, + "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": "Umístění" + }, + "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í pro mobilní zařízení" + }, + "header": { + "content": "Obrázek" + }, + "header_2": { + "content": "obsah" + }, + "header_3": { + "content": "Barvy" + } + }, + "blocks": { + "row": { + "name": "Řádek", + "settings": { + "image": { + "label": "Obrázek" + }, + "caption": { + "label": "Titulek", + "default": "Titulek" + }, + "heading": { + "label": "Nadpis", + "default": "Řádek" + }, + "text": { + "label": "Text", + "default": "Zkombinujte text a obrázek, abyste zaměřili pozornost návštěvníků na zvolený produkt, kolekci či blogový příspěvek. Pak můžete připojit podrobnosti o dostupnosti a stylu, nebo dokonce recenzi.
" + }, + "button_label": { + "label": "Text tlačítka", + "default": "Text tlačítka", + "info": "Pro skrytí nechte prázdné" + }, + "button_link": { + "label": "Tlačítkový odkaz" + } + } + } + }, + "presets": { + "name": "Více řádků" + } + }, + "quick-order-list": { + "name": "Seznam pro rychlé objednávky", + "settings": { + "show_image": { + "label": "Obrázky" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "Varianty na stránku" + } + }, + "presets": { + "name": "Seznam pro rychlé objednávky" + } + } + } +} diff --git a/locales/da.json b/locales/da.json new file mode 100644 index 0000000..eb6db4b --- /dev/null +++ b/locales/da.json @@ -0,0 +1,530 @@ +{ + "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": "Del på X", + "share_on_pinterest": "Pin på Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Maks. {{ quantity }}", + "in_cart_aria_label": "Antal ({{ quantity }} i indkøbskurv)" + }, + "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" + }, + "nested_label": "{{ title }} for {{ parent_title }}", + "view_full_details": "Se komplette oplysninger", + "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_range": "{{ minimum }} – {{ maximum }}", + "price_at_each_html": "til {{ price }} pr. stk." + }, + "product_variants": "Produktvarianter", + "taxes_included": "Inklusive skatter.", + "duties_included": "Inklusive told.", + "duties_and_taxes_included": "Inklusive told og skatter." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Inklusive told og skatter. Rabatter og levering beregnes ved betaling.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Inklusive told og skatter. Rabatter og levering beregnes ved betaling.", + "taxes_included_shipping_at_checkout_with_policy_html": "Inklusive skatter. Rabatter og levering beregnes ved betaling.", + "taxes_included_shipping_at_checkout_without_policy": "Inklusive skatter. Rabatter og levering beregnes ved betaling.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Inklusive told. Skatter, rabatter og levering beregnes ved betaling.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Inklusive told. Skatter, rabatter og levering beregnes ved betaling.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Skatter, rabatter og levering beregnes ved betaling.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Skatter, rabatter og levering beregnes ved betaling." + }, + "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", + "remove_all_single_item_confirmation": "Vil du fjerne 1 vare fra din indkøbskurv?", + "min_error": "Denne vare har en minimumsgrænse på {{ min }}", + "max_error": "Denne vare har en maksimumgrænse på {{ max }}", + "step_error": "Du kan kun tilføje denne vare i intervaller på {{ step }}" + } + }, + "localization": { + "country_label": "Land/område", + "language_label": "Sprog", + "update_language": "Opdater sprog", + "update_country": "Opdater land/område", + "search": "Søg", + "popular_countries_regions": "Populære lande/områder", + "country_results_count": "{{ count }} lande/områder er fundet" + }, + "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", + "alternate_provider_separator": "eller" + }, + "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..6425ca6 --- /dev/null +++ b/locales/da.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Overskrifter" + }, + "header__2": { + "content": "Brødtekst" + }, + "type_body_font": { + "label": "Skrifttype" + }, + "heading_scale": { + "label": "Skalering" + }, + "body_scale": { + "label": "Skalering" + } + } + }, + "social-media": { + "name": "Sociale medier", + "settings": { + "social_twitter_link": { + "label": "X/Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Valutakoder" + }, + "paragraph": "Priser i indkøbskurv og betalingsproces viser altid valutakoder" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Søgeforslag" + }, + "predictive_search_show_vendor": { + "label": "Produktforhandler", + "info": "Vises, når søgeforslag er aktiveret" + }, + "predictive_search_show_price": { + "label": "Produktpris", + "info": "Vises, når søgeforslag 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 visning af dine [produktvarianter](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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": "Type", + "drawer": { + "label": "Skuffe" + }, + "page": { + "label": "Side" + }, + "notification": { + "label": "Pop op-meddelelse" + } + }, + "show_vendor": { + "label": "Forhandler" + }, + "show_cart_note": { + "label": "Bemærkning til indkøbskurv" + }, + "cart_drawer": { + "header": "Indkøbskurvskuffe", + "collection": { + "label": "Kollektion", + "info": "Vises, 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": "Bredde" + }, + "favicon": { + "label": "Favoritikon", + "info": "Vises i 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": "Vises i sidefodens blok til brandoplysninger" + } + } + }, + "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": "Margen", + "padding_top": "Top", + "padding_bottom": "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" + }, + "options__5": { + "label": "Ekstra, 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" + }, + "animation": { + "content": "Animationer", + "image_behavior": { + "options__1": { + "label": "Ingen" + }, + "options__2": { + "label": "Omgivende bevægelse" + }, + "label": "Animation", + "options__3": { + "label": "Fast baggrundsplacering" + }, + "options__4": { + "label": "Zoom ind på rullefelt" + } + } + } + }, + "announcement-bar": { + "name": "Meddelelseslinje", + "blocks": { + "announcement": { + "name": "Meddelelse", + "settings": { + "text": { + "label": "Tekstfarve", + "default": "Velkommen til vores butik" + }, + "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" + }, + "show_social": { + "label": "Ikoner for sociale medier", + "info": "[Administrer SoMe-konti](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Lande-/områdevælger", + "info": "[Adminstrer lande/områder](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sprogvælger", + "info": "[Administrer sprog](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Forsyning" + }, + "paragraph": { + "content": "Vises kun på store skærme" + } + }, + "presets": { + "name": "Meddelelseslinje" + } + }, + "collage": { + "name": "Collage", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Multimedie-kollage" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Stor blok først" + }, + "options__2": { + "label": "Stor blok sidst" + } + }, + "mobile_layout": { + "label": "Mobillayout", + "options__1": { + "label": "Collage" + }, + "options__2": { + "label": "Kolonne" + } + }, + "card_styles": { + "label": "Kortstilart", + "info": "Administer individuelle kortstilarter i [temaindstillinger](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Brug individuel kortstil" + }, + "options__2": { + "label": "Style alle som produktkort" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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)", + "default": "Beskriv videoen" + } + } + } + }, + "presets": { + "name": "Collage" + } + }, + "collection-list": { + "name": "Kollektionsliste", + "settings": { + "title": { + "label": "Overskrift", + "default": "Kollektioner" + }, + "image_ratio": { + "label": "Billedforhold", + "options__1": { + "label": "Tilpas til billede" + }, + "options__2": { + "label": "Stående" + }, + "options__3": { + "label": "Kvadrat" + } + }, + "swipe_on_mobile": { + "label": "Karrusel" + }, + "show_view_all": { + "label": "Knappen \"Se alle\"", + "info": "Synlig, hvis en liste indeholder flere kollektioner end vist" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Kolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "blocks": { + "featured_collection": { + "name": "Kollektion", + "settings": { + "collection": { + "label": "Kollektion" + } + } + } + }, + "presets": { + "name": "Kollektionsliste" + } + }, + "contact-form": { + "name": "Kontaktformular", + "presets": { + "name": "Kontaktformular" + }, + "settings": { + "title": { + "default": "Kontaktformular", + "label": "Overskrift" + } + } + }, + "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", + "default": "Blogopslag" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Antal opslag" + }, + "show_view_all": { + "label": "Knappen \"Se alle\"", + "info": "Synlig, hvis en blog har flere opslag end vist" + }, + "show_image": { + "label": "Udvalgt billede" + }, + "show_date": { + "label": "Dato" + }, + "show_author": { + "label": "Forfatter" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Tekst" + } + }, + "presets": { + "name": "Blogopslag" + } + }, + "featured-collection": { + "name": "Udvalgt kollektion", + "settings": { + "title": { + "label": "Overskrift", + "default": "Udvalgt kollektion" + }, + "collection": { + "label": "Kollektion" + }, + "products_to_show": { + "label": "Produktantal" + }, + "show_view_all": { + "label": "Knappen \"Se alle\"", + "info": "Synlig, hvis en kollektion har flere produkter end vist" + }, + "header": { + "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ær baggrund, når der peges" + }, + "show_vendor": { + "label": "Forhandler" + }, + "show_rating": { + "label": "Produktbedømmelse", + "info": "Der kræves en app til bedømmelser. [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": "Tilføj hurtigt" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "description": { + "label": "Beskrivelse" + }, + "show_description": { + "label": "Vis kollektionsbeskrivelse fra administrator" + }, + "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": "Karrusel" + }, + "full_width": { + "label": "Produkter i fuld bredde" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Kolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Karrusel" + }, + "header_text": { + "content": "Tekst" + }, + "header_collection": { + "content": "Kollektionens layout" + } + }, + "presets": { + "name": "Udvalgt kollektion" + } + }, + "footer": { + "name": "Sidefod", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Genvejslinks" + }, + "menu": { + "label": "Menu" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Overskrift" + }, + "subtext": { + "label": "Undertekst", + "default": "Del kontaktoplysninger, butiksoplysninger og brandindhold med dine kunder.
" + } + } + }, + "brand_information": { + "name": "Brandoplysninger", + "settings": { + "paragraph": { + "content": "Administrer brandoplysninger i [temaindstillinger](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Ikoner for sociale medier", + "info": "[Administrer SoMe-konti](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Tilmelding med mail" + }, + "newsletter_heading": { + "label": "Overskrift", + "default": "Tilmeld dig vores mails" + }, + "header__1": { + "content": "Tilmelding med mail", + "info": "Tilføjelse af tilmeldinger [kundeprofiler](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Ikoner for sociale medier", + "info": "[Administrer SoMe-konti](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Lande-/områdevælger", + "info": "[Adminstrer lande/områder](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sprogvælger", + "info": "[Administrer sprog](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ikoner for betalingsmetoder" + }, + "margin_top": { + "label": "Øverste margen" + }, + "show_policy": { + "label": "Links til politikker", + "info": "[Administer politikker](/admin/settings/legal)" + }, + "header__9": { + "content": "Forsyning" + }, + "enable_follow_on_shop": { + "label": "Følg på Shop", + "info": "Shop Pay skal være aktiveret. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Sidehoved", + "settings": { + "logo_position": { + "label": "Logoplacering", + "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": "Adskillelseslinje" + }, + "margin_bottom": { + "label": "Nederste margen" + }, + "menu_type_desktop": { + "label": "Menutype", + "options__1": { + "label": "Rullemenu" + }, + "options__2": { + "label": "Megamenu" + }, + "options__3": { + "label": "Skuffe" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Lande-/områdevælger", + "info": "[Adminstrer lande/områder](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sprogvælger", + "info": "[Administrer sprog](/admin/settings/languages)" + }, + "header__1": { + "content": "Farve" + }, + "menu_color_scheme": { + "label": "Farveskema for menu" + }, + "enable_customer_avatar": { + "label": "Kundekontos avatar", + "info": "Kun synlig, når kunder er logget ind med Shop. [Administrer kundekonti](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Forsyning" + } + } + }, + "image-banner": { + "name": "Billedbanner", + "settings": { + "image": { + "label": "Billede 1" + }, + "image_2": { + "label": "Billede 2" + }, + "stack_images_on_mobile": { + "label": "Stabl billeder" + }, + "show_text_box": { + "label": "Beholder" + }, + "image_overlay_opacity": { + "label": "Overlejringens uigennemsigtighed" + }, + "show_text_below": { + "label": "Beholder" + }, + "image_height": { + "label": "Højde", + "options__1": { + "label": "Tilpas til første billede" + }, + "options__2": { + "label": "Lille" + }, + "options__3": { + "label": "Mellem" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + }, + "label": "Justering" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + }, + "label": "Justering" + }, + "mobile": { + "content": "Mobillayout" + }, + "content": { + "content": "Indhold" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Billedbanner" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Giv kunder oplysninger om bannerbillederne eller indholdet i skabelonen." + }, + "text_style": { + "options__1": { + "label": "Brødtekst" + }, + "options__2": { + "label": "Undertekst" + }, + "options__3": { + "label": "Store bogstaver" + }, + "label": "Stil" + } + } + }, + "buttons": { + "name": "Knapper", + "settings": { + "button_label_1": { + "label": "Etiket", + "info": "Lad stå tom for at skjule", + "default": "Knaptekst" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Rammetypografi" + }, + "button_label_2": { + "label": "Etiket", + "info": "Lad stå tom for at skjule", + "default": "Knaptekst" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Rammetypografi" + }, + "header_1": { + "content": "Knap 1" + }, + "header_2": { + "content": "Knap 2" + } + } + } + }, + "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": "Højde", + "options__4": { + "label": "Stor" + } + }, + "layout": { + "options__1": { + "label": "Billede først" + }, + "options__2": { + "label": "Andet billede" + }, + "label": "Placering" + }, + "desktop_image_width": { + "options__1": { + "label": "Lille" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Stor" + }, + "label": "Bredde" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__3": { + "label": "Højre" + }, + "label": "Justering", + "options__2": { + "label": "Centreret" + } + }, + "desktop_content_position": { + "options__1": { + "label": "Top" + }, + "options__2": { + "label": "I midten" + }, + "options__3": { + "label": "Bund" + }, + "label": "Placering" + }, + "content_layout": { + "options__1": { + "label": "Ingen overlapning" + }, + "options__2": { + "label": "Overlapning" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__3": { + "label": "Højre" + }, + "label": "Justering af mobil", + "options__2": { + "label": "Centreret" + } + }, + "header": { + "content": "Indhold" + }, + "header_colors": { + "content": "Farver" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Billede med tekst" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Kombiner tekst med et billede for at fokusere på dit valgte produkt, din valgte kollektion eller dit valgte blogopslag. Tilføj oplysninger om tilgængelighed, stil og eventuelt også en anmeldelse.
" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Brødtekst" + }, + "options__2": { + "label": "Undertekst" + } + } + } + }, + "button": { + "name": "Knap", + "settings": { + "button_label": { + "label": "Etiket", + "info": "Lad stå tom for at skjule", + "default": "Knaptekst" + }, + "button_link": { + "label": "Link" + }, + "outline_button": { + "label": "Rammetypografi" + } + } + }, + "caption": { + "name": "Billedtekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Tilføj et slogan" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Underoverskrift" + }, + "options__2": { + "label": "Store bogstaver" + } + }, + "caption_size": { + "label": "Stø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": "Billedets højde", + "options__1": { + "label": "Tilpas til billede" + }, + "options__2": { + "label": "Lille" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Stor" + } + } + } + }, + "title": { + "name": "Titel", + "settings": { + "blog_show_date": { + "label": "Dato" + }, + "blog_show_author": { + "label": "Forfatter" + } + } + }, + "content": { + "name": "Indhold" + }, + "share": { + "name": "Del", + "settings": { + "text": { + "label": "Tekst", + "default": "Del" + } + } + } + } + }, + "main-blog": { + "name": "Blogopslag", + "settings": { + "show_image": { + "label": "Udvalgt billede" + }, + "show_date": { + "label": "Dato" + }, + "show_author": { + "label": "Forfatter" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Gitter" + }, + "options__2": { + "label": "Kollage" + } + }, + "image_height": { + "label": "Billedets højde", + "options__1": { + "label": "Tilpas til billede" + }, + "options__2": { + "label": "Lille" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Stor" + } + } + } + }, + "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": "Kollektionsoplysninger [administreres i din administrator](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Beskrivelse" + }, + "show_collection_image": { + "label": "Billede" + } + } + }, + "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": "Kvadrat" + } + }, + "show_secondary_image": { + "label": "Vis sekundær baggrund, når der peges" + }, + "show_vendor": { + "label": "Forhandler" + }, + "enable_tags": { + "label": "Filtre", + "info": "Tilpas filtre med [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filtre", + "info": "Tilpas filtre med [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Sortering" + }, + "header__1": { + "content": "Filtrering og sortering" + }, + "header__3": { + "content": "Produktkort" + }, + "show_rating": { + "label": "Produktbedømmelse", + "info": "Der kræves en app til produktbedømmelser. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Filterlayout", + "options__1": { + "label": "Vandret" + }, + "options__2": { + "label": "Lodret" + }, + "options__3": { + "label": "Skuffe" + } + }, + "quick_add": { + "label": "Hurtig tilføjelse", + "options": { + "option_1": "Ingen", + "option_2": "Standard", + "option_3": "Masse" + } + } + } + }, + "main-list-collections": { + "name": "Siden Kollektionsliste", + "settings": { + "title": { + "label": "Overskrift", + "default": "Kollektioner" + }, + "sort": { + "label": "Sortér kollektioner", + "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": "Kvadrat" + } + }, + "columns_desktop": { + "label": "Kolonner" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Side" + }, + "main-password-footer": { + "name": "Sidefod på adgangskodeside" + }, + "main-password-header": { + "name": "Sidehoved på adgangskodesiden", + "settings": { + "logo_help": { + "content": "Rediger dit logo i [temaindstillinger](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Produktoplysninger", + "blocks": { + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekstfarve", + "default": "Tekstblok" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Rullemenu" + }, + "options__2": { + "label": "Etiketter" + } + }, + "swatch_shape": { + "label": "Prøve", + "info": "Få mere at vide om [prøver](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) på produktmuligheder", + "options__1": { + "label": "Cirkel" + }, + "options__2": { + "label": "Kvadrat" + }, + "options__3": { + "label": "Ingen" + } + } + } + }, + "buy_buttons": { + "name": "Køb-knapper", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamiske betalingsknapper", + "info": "Kunderne vil se deres foretrukne betalingsmetode. [Få mere at vide](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Muligheder for afsendelse af gavekort", + "info": "Kunder kan tilføje en personlig besked og planlægge afsendelsesdatoen. [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": { + "text": { + "label": "Tekst", + "default": "Del" + } + } + }, + "collapsible_tab": { + "name": "Række, der kan skjules", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Række, der kan skjules" + }, + "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", + "default": "Pop op-linktekst" + }, + "page": { + "label": "Side" + } + } + }, + "rating": { + "name": "Produktvurdering", + "settings": { + "paragraph": { + "content": "Der kræves en app til produktbedømmelser. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Supplerende produkter", + "settings": { + "paragraph": { + "content": "Administrer supplerende produkter i [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Overskrift", + "default": "Kan kombineres med" + }, + "make_collapsible_row": { + "label": "Række, der kan skjules" + }, + "icon": { + "info": "Vises, når rækken, der kan skjules, er valgt." + }, + "product_list_limit": { + "label": "Produktantal" + }, + "products_per_page": { + "label": "Produkter pr. side" + }, + "pagination_style": { + "label": "Sideinddeling", + "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": "Tilføj hurtigt" + } + } + }, + "icon_with_text": { + "name": "Ikon med tekst", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Vandret" + }, + "options__2": { + "label": "Lodret" + } + }, + "heading": { + "info": "Lad stå tomt for at skjule denne parring" + }, + "icon_1": { + "label": "Ikon" + }, + "image_1": { + "label": "Billede" + }, + "heading_1": { + "label": "Overskrift", + "default": "Overskrift" + }, + "icon_2": { + "label": "Ikon" + }, + "image_2": { + "label": "Billede" + }, + "heading_2": { + "label": "Overskrift", + "default": "Overskrift" + }, + "icon_3": { + "label": "Ikon" + }, + "image_3": { + "label": "Billede" + }, + "heading_3": { + "label": "Overskrift", + "default": "Overskrift" + }, + "pairing_1": { + "label": "Parring 1", + "info": "Vælg et ikon, eller tilføj et billede for hver parring" + }, + "pairing_2": { + "label": "Parring 2" + }, + "pairing_3": { + "label": "Parring 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Lagerantal" + } + } + } + }, + "settings": { + "header": { + "content": "Medie" + }, + "enable_video_looping": { + "label": "Videoloop" + }, + "enable_sticky_info": { + "label": "Fastgjort indhold" + }, + "hide_variants": { + "label": "Skjul andre variantmedier, når der vælges en" + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Stablet" + }, + "options__2": { + "label": "2 kolonner" + }, + "options__3": { + "label": "Miniaturer" + }, + "options__4": { + "label": "Miniaturekarussel" + } + }, + "media_size": { + "label": "Bredde", + "options__1": { + "label": "Lille" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Stor" + } + }, + "mobile_thumbnails": { + "label": "Mobillayout", + "options__1": { + "label": "2 kolonner" + }, + "options__2": { + "label": "Vis miniaturer" + }, + "options__3": { + "label": "Skjul miniaturer" + } + }, + "media_position": { + "label": "Placering", + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Højre" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Åbn lightbox" + }, + "options__2": { + "label": "Klik og hold musen over" + }, + "options__3": { + "label": "Ingen zoom" + } + }, + "constrain_to_viewport": { + "label": "Begræns til skærmhøjden" + }, + "media_fit": { + "label": "Tilpasning", + "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": "Kvadrat" + } + }, + "show_secondary_image": { + "label": "Vis sekundær baggrund, når der peges" + }, + "show_vendor": { + "label": "Forhandler" + }, + "header__1": { + "content": "Produktkort" + }, + "header__2": { + "content": "Blogkort" + }, + "article_show_date": { + "label": "Dato" + }, + "article_show_author": { + "label": "Forfatter" + }, + "show_rating": { + "label": "Produktbedømmelse", + "info": "Der kræves en app til produktbedømmelser. [Få mere at vide](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Flere kolonner", + "settings": { + "title": { + "label": "Overskrift", + "default": "Flere kolonner" + }, + "image_width": { + "label": "Bredde", + "options__1": { + "label": "En tredjedel af kolonnens bredde" + }, + "options__2": { + "label": "Halvdelen af kolonnens bredde" + }, + "options__3": { + "label": "Hele kolonnens bredde" + } + }, + "image_ratio": { + "label": "Forhold", + "options__1": { + "label": "Tilpas til billede" + }, + "options__2": { + "label": "Stående" + }, + "options__3": { + "label": "Kvadrat" + }, + "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": "Etiket", + "default": "Knaptekst", + "info": "Lad stå tom for at skjule" + }, + "button_link": { + "label": "Link" + }, + "swipe_on_mobile": { + "label": "Karrusel" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Kolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Overskrift" + }, + "header_image": { + "content": "Billede" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Knap" + } + }, + "blocks": { + "column": { + "name": "Kolonne", + "settings": { + "image": { + "label": "Billede" + }, + "title": { + "label": "Overskrift", + "default": "Kolonne" + }, + "text": { + "label": "Beskrivelse", + "default": "Kombiner tekst med et billede for at fokusere på dit valgte produkt, din valgte kollektion eller dit valgte blogopslag. Tilføj oplysninger om tilgængelighed, stil og eventuelt også en anmeldelse.
" + }, + "link_label": { + "label": "Navn på link", + "info": "Lad stå tom for at skjule" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Flere kolonner" + } + }, + "newsletter": { + "name": "Tilmelding med mail", + "settings": { + "full_width": { + "label": "Fuld bredde" + }, + "paragraph": { + "content": "Tilføjelse af tilmeldinger [kundeprofiler](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Tilmeld dig vores mails" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Vær blandt de første til at få besked om nye kollektioner og eksklusive tilbud.
" + } + } + }, + "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": "Fuld bredde" + }, + "desktop_content_position": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + }, + "label": "Indholdets placering" + }, + "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", + "default": "Fortæl om dit brand" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Del oplysninger om dit brand med dine kunder. Beskriv et produkt, del meddelelser, eller byd velkommen til din butik.
" + } + } + }, + "buttons": { + "name": "Knapper", + "settings": { + "button_label_1": { + "label": "Etiket", + "info": "Lad stå tom for at skjule", + "default": "Knaptekst" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Rammetypografi" + }, + "button_label_2": { + "label": "Etiket", + "info": "Lad etiket være tom for at skjule" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Rammetypografi" + }, + "header_button1": { + "content": "Knap 1" + }, + "header_button2": { + "content": "Knap 2" + } + } + }, + "caption": { + "name": "Billedtekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Tilføj et slogan" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Underoverskrift" + }, + "options__2": { + "label": "Store bogstaver" + } + }, + "caption_size": { + "label": "Stø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", + "default": "Video" + }, + "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 brugere med skærmlæser" + }, + "image_padding": { + "label": "Tilføj billedmargen", + "info": "Vælg billedmargen, hvis du ikke vil have, at dit coverbillede bliver beskåret." + }, + "full_width": { + "label": "Fuld bredde" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Videoloop" + }, + "header__1": { + "content": "Video hostet af Shopify" + }, + "header__2": { + "content": "Eller integrer video fra webadresse" + }, + "header__3": { + "content": "Layout" + }, + "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", + "default": "Tekstblok" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Rullemenu" + }, + "options__2": { + "label": "Etiketter" + } + }, + "swatch_shape": { + "label": "Prøve", + "info": "Få mere at vide om [prøver](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) på produktmuligheder", + "options__1": { + "label": "Cirkel" + }, + "options__2": { + "label": "Kvadrat" + }, + "options__3": { + "label": "Ingen" + } + } + } + }, + "buy_buttons": { + "name": "Køb-knapper", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamiske betalingsknapper", + "info": "Kunderne vil se deres foretrukne betalingsmetode. [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", + "default": "Del" + } + } + }, + "rating": { + "name": "Produktbedømmelser", + "settings": { + "paragraph": { + "content": "Der kræves en app til produktbedømmelser. [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": "Sekundær baggrund" + }, + "header": { + "content": "Medie" + }, + "enable_video_looping": { + "label": "Videoloop" + }, + "hide_variants": { + "label": "Skjul medier for ikke-valgte varianter på computer" + }, + "media_position": { + "label": "Placering", + "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": "Tilføjelse af tilmeldinger [kundeprofiler](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Baggrundsbillede" + }, + "show_background_image": { + "label": "Vis baggrundsbillede" + }, + "show_text_box": { + "label": "Beholder" + }, + "image_overlay_opacity": { + "label": "Overlejringens uigennemsigtighed" + }, + "show_text_below": { + "label": "Stabl tekst under billede" + }, + "image_height": { + "label": "Højde", + "options__1": { + "label": "Tilpas til billede" + }, + "options__2": { + "label": "Lille" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Stor" + } + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + }, + "label": "Justering" + }, + "header": { + "content": "Mobillayout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + }, + "label": "Justering" + }, + "color_scheme": { + "info": "Synlig, når objektbeholderen vises." + }, + "content_header": { + "content": "Indhold" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Åbner snart" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Vær blandt de første til at få besked ved lancering.
" + }, + "text_style": { + "options__1": { + "label": "Brødtekst" + }, + "options__2": { + "label": "Undertekst" + }, + "label": "Stil" + } + } + }, + "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": "Side" + } + }, + "slide_height": { + "label": "Hø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", + "options__1": { + "label": "Tæller" + }, + "options__2": { + "label": "Prikker" + }, + "options__3": { + "label": "Tal" + } + }, + "auto_rotate": { + "label": "Roter slides automatisk" + }, + "change_slides_speed": { + "label": "Skift slide hver" + }, + "mobile": { + "content": "Mobillayout" + }, + "show_text_below": { + "label": "Stabl tekst under billede" + }, + "accessibility": { + "content": "Tilgængelighed", + "label": "Beskrivelse af diasshow", + "info": "Beskriv diasshowet for brugere med skærmlæser", + "default": "Diasshow om vores brand" + } + }, + "blocks": { + "slide": { + "name": "Slide", + "settings": { + "image": { + "label": "Billede" + }, + "heading": { + "label": "Overskrift", + "default": "Billeddias" + }, + "subheading": { + "label": "Underoverskrift", + "default": "Fortæl dit brands historie gennem billeder" + }, + "button_label": { + "label": "Etiket", + "info": "Lad stå tom for at skjule", + "default": "Knaptekst" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Rammetypografi" + }, + "box_align": { + "label": "Indholdets placering", + "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" + } + }, + "show_text_box": { + "label": "Beholder" + }, + "text_alignment": { + "label": "Indholdets justering", + "option_1": { + "label": "Venstre" + }, + "option_2": { + "label": "Centreret" + }, + "option_3": { + "label": "Højre" + } + }, + "image_overlay_opacity": { + "label": "Overlejringens uigennemsigtighed" + }, + "text_alignment_mobile": { + "label": "Justering af indhold på mobil", + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + } + }, + "header_button": { + "content": "Knap" + }, + "header_layout": { + "content": "Layout" + }, + "header_text": { + "content": "Tekst" + }, + "header_colors": { + "content": "Farver" + } + } + } + }, + "presets": { + "name": "Diasshow" + } + }, + "collapsible_content": { + "name": "Indhold, der kan skjules", + "settings": { + "caption": { + "label": "Billedtekst" + }, + "heading": { + "label": "Overskrift", + "default": "Indhold, der kan skjules" + }, + "heading_alignment": { + "label": "Justering af overskrift", + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Centreret" + }, + "options__3": { + "label": "Højre" + } + }, + "layout": { + "label": "Beholder", + "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" + }, + "header": { + "content": "Billede" + }, + "image": { + "label": "Billede" + }, + "image_ratio": { + "label": "Billedforhold", + "options__1": { + "label": "Tilpas til billede" + }, + "options__2": { + "label": "Lille" + }, + "options__3": { + "label": "Stor" + } + }, + "desktop_layout": { + "label": "Placering", + "options__1": { + "label": "Billede først" + }, + "options__2": { + "label": "Billede efterfølgende" + } + }, + "container_color_scheme": { + "label": "Objektbeholder til farveskema" + }, + "layout_header": { + "content": "Layout" + }, + "section_color_scheme": { + "label": "Sektionens farveskema" + } + }, + "blocks": { + "collapsible_row": { + "name": "Række, der kan skjules", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Række, der kan skjules" + }, + "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", + "shop_login_button": { + "enable": "Aktivér Log ind med shop" + } + }, + "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": "Produktantal" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "paragraph__1": { + "content": "Relaterede produkter kan administreres i [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Du vil muligvis også synes om" + }, + "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": "Forhandler" + }, + "show_rating": { + "label": "Produktbedømmelse", + "info": "Der kræves en app til produktbedømmelser. [Få mere at vide](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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": "Højde" + }, + "desktop_image_width": { + "options__1": { + "label": "Lille" + }, + "options__2": { + "label": "Mellem" + }, + "options__3": { + "label": "Stor" + }, + "label": "Bredde" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Top" + }, + "options__2": { + "label": "I midten" + }, + "options__3": { + "label": "Bund" + }, + "label": "Placering" + }, + "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": "Placering" + }, + "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 mobil" + }, + "header": { + "content": "Billede" + }, + "header_2": { + "content": "Indhold" + }, + "header_3": { + "content": "Farver" + } + }, + "blocks": { + "row": { + "name": "Række", + "settings": { + "image": { + "label": "Billede" + }, + "caption": { + "label": "Billedtekst", + "default": "Billedtekst" + }, + "heading": { + "label": "Overskrift", + "default": "Række" + }, + "text": { + "label": "Sms", + "default": "Kombiner tekst med et billede for at fokusere på dit valgte produkt, din valgte kollektion eller dit valgte blogopslag. Tilføj oplysninger om tilgængelighed, stil og eventuelt også en anmeldelse.
" + }, + "button_label": { + "label": "Knaptekst", + "default": "Knaptekst", + "info": "Lad stå tom for at skjule" + }, + "button_link": { + "label": "Knaplink" + } + } + } + }, + "presets": { + "name": "Flere rækker" + } + }, + "quick-order-list": { + "name": "Hurtig ordreliste", + "settings": { + "show_image": { + "label": "Billeder" + }, + "show_sku": { + "label": "SKU'er" + }, + "variants_per_page": { + "label": "Varianter pr. side" + } + }, + "presets": { + "name": "Hurtig ordreliste" + } + } + } +} diff --git a/locales/de.json b/locales/de.json new file mode 100644 index 0000000..3084491 --- /dev/null +++ b/locales/de.json @@ -0,0 +1,530 @@ +{ + "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 X teilen", + "share_on_pinterest": "Auf Pinterest pinnen" + }, + "links": { + "twitter": "X (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 Kollektion" + }, + "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", + "min_of": "Mindestens {{ quantity }}", + "max_of": "Höchstens {{ quantity }}", + "in_cart_aria_label": "Menge ({{ quantity }} im Warenkorb)" + }, + "price": { + "from_price_html": "Von {{ price }}", + "regular_price": "Normaler Preis", + "sale_price": "Verkaufspreis", + "unit_price": "Grundpreis" + }, + "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" + }, + "nested_label": "{{ title }} für {{ parent_title }}", + "view_full_details": "Vollständige Details anzeigen", + "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_range": "{{ minimum }}–{{ maximum }}", + "price_at_each_html": "bei {{ price }}/Stück" + }, + "product_variants": "Produktvarianten", + "taxes_included": "Inkl. Steuern.", + "duties_included": "Inkl. Zollgebühren.", + "duties_and_taxes_included": "Inkl. Zollgebühren und Steuern." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Inkl. Zollgebühren und Steuern. Rabatte und Versand werden beim Checkout berechnet.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Inkl. Zollgebühren und Steuern. Rabatte und Versand werden beim Checkout berechnet.", + "taxes_included_shipping_at_checkout_with_policy_html": "Inkl. Steuern. Rabatte und Versand werden beim Checkout berechnet.", + "taxes_included_shipping_at_checkout_without_policy": "Inkl. Steuern. Rabatte und Versand werden beim Checkout berechnet.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Inkl. Zollgebühren. Steuern, Rabatte und Versand werden beim Checkout berechnet.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Inkl. Zollgebühren. Steuern, Rabatte und Versand werden beim Checkout berechnet.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Steuern, Rabatte und Versand werden beim Checkout berechnet.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Steuern, Rabatte und Versand werden beim Checkout berechnet." + }, + "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 Kollektion {{ 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", + "remove_all_single_item_confirmation": "1 Artikel aus dem Warenkorb entfernen?", + "min_error": "Dieser Artikel hat ein Minimum von {{ min }}", + "max_error": "Dieser Artikel hat ein Maximum von {{ max }}", + "step_error": "Du kannst diesen Artikel nur in Abstufungen von {{ step }} hinzufügen." + } + }, + "localization": { + "country_label": "Land/Region", + "language_label": "Sprache", + "update_language": "Sprache aktualisieren", + "update_country": "Land/Region aktualisieren", + "search": "Suchen", + "popular_countries_regions": "Beliebte Länder/Regionen", + "country_results_count": "{{ count }} Länder/Regionen gefunden" + }, + "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", + "alternate_provider_separator": "oder" + }, + "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 }}-Gutschein für {{ shop }}!", + "subtext": "Dein Gutschein", + "gift_card_code": "Gutscheincode", + "shop_link": "Onlineshop besuchen", + "add_to_apple_wallet": "Zu Apple Wallet hinzufügen", + "qr_image_alt": "QR-Code – Scannen, um Gutschein 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 Gutscheins erweitert", + "collapsed": "Formular für den Empfänger des Gutscheins minimiert" + } + } +} diff --git a/locales/de.schema.json b/locales/de.schema.json new file mode 100644 index 0000000..ec02e67 --- /dev/null +++ b/locales/de.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Überschriften" + }, + "header__2": { + "content": "Nachricht" + }, + "type_body_font": { + "label": "Schriftart" + }, + "heading_scale": { + "label": "Maßstab" + }, + "body_scale": { + "label": "Maßstab" + } + } + }, + "social-media": { + "name": "Social Media", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Währungscodes" + }, + "paragraph": "Warenkorb- und Checkout-Preise zeigen immer Währungscodes an" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Suchvorschläge" + }, + "predictive_search_show_vendor": { + "label": "Produktanbieter", + "info": "Wird angezeigt, wenn Suchvorschläge aktiviert sind" + }, + "predictive_search_show_price": { + "label": "Produktpreis", + "info": "Wird angezeigt, 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](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#variant-picker-block) zu präsentieren" + }, + "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": "Art", + "drawer": { + "label": "Einschub" + }, + "page": { + "label": "Seite" + }, + "notification": { + "label": "Pop-up-Benachrichtigung" + } + }, + "show_vendor": { + "label": "Anbieter" + }, + "show_cart_note": { + "label": "Warenkorbanmerkung" + }, + "cart_drawer": { + "header": "Warenkorbeinschub", + "collection": { + "label": "Kollektion", + "info": "Wird angezeigt, wenn der Warenkorbeinschub leer ist" + } + } + } + }, + "cards": { + "name": "Produktkarten", + "settings": { + "style": { + "options__1": { + "label": "Standard" + }, + "options__2": { + "label": "Karte" + }, + "label": "Optik" + } + } + }, + "collection_cards": { + "name": "Kollektionskarten", + "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": "Breite" + }, + "favicon": { + "label": "Favicon", + "info": "Mit 32 px x 32 px angezeigt" + } + } + }, + "brand_information": { + "name": "Markeninformationen", + "settings": { + "brand_headline": { + "label": "Überschrift" + }, + "brand_description": { + "label": "Beschreibung" + }, + "brand_image": { + "label": "Bild" + }, + "brand_image_width": { + "label": "Bildbreite" + }, + "paragraph": { + "content": "Wird in der Fußzeile des Markeninfoblocks angezeigt" + } + } + }, + "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": "Padding", + "padding_top": "Oben", + "padding_bottom": "Unten" + }, + "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ß" + }, + "options__5": { + "label": "Extra, 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" + }, + "animation": { + "content": "Animationen", + "image_behavior": { + "options__1": { + "label": "Keine(r)" + }, + "options__2": { + "label": "Atmosphärische Bewegung" + }, + "label": "Animation", + "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", + "default": "Willkommen in unserem Shop" + }, + "link": { + "label": "Link" + }, + "text_alignment": { + "label": "Textausrichtung", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + } + } + } + } + }, + "settings": { + "auto_rotate": { + "label": "Automatisch rotierende Ankündigungen" + }, + "change_slides_speed": { + "label": "Ändern alle" + }, + "show_social": { + "label": "Social Media-Symbole", + "info": "[Social-Media-Konten verwalten](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Auswahl für Land/Region", + "info": "[Länder/Regionen verwalten](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sprachauswahl", + "info": "[Sprachen verwalten](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Versorgungsunternehmen" + }, + "paragraph": { + "content": "Wird nur auf großen Bildschirmen angezeigt" + } + }, + "presets": { + "name": "Ankündigungsleiste" + } + }, + "collage": { + "name": "Collage", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Multimedia-Collage" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Großer Block zuerst" + }, + "options__2": { + "label": "Großer Block zuletzt" + } + }, + "mobile_layout": { + "label": "Mobiles Layout", + "options__1": { + "label": "Collage" + }, + "options__2": { + "label": "Spalte" + } + }, + "card_styles": { + "label": "Kartendesign", + "info": "Individuelle Kartendesigns verwalten [Theme-Einstellungen](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Individuelle Kartendesigns verwenden" + }, + "options__2": { + "label": "Alle als Produktkarten gestalten" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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)", + "default": "Beschreibe das Video" + } + } + } + }, + "presets": { + "name": "Collage" + } + }, + "collection-list": { + "name": "Kollektionsliste", + "settings": { + "title": { + "label": "Überschrift", + "default": "Kollektionen" + }, + "image_ratio": { + "label": "Bildverhältnis", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Porträt" + }, + "options__3": { + "label": "Quadrat" + } + }, + "swipe_on_mobile": { + "label": "Karussell" + }, + "show_view_all": { + "label": "Schaltfläche \"Alle anzeigen\"", + "info": "Sichtbar, wenn die Liste mehr als die angezeigten Kollektionen enthält" + }, + "columns_desktop": { + "label": "Spalten" + }, + "header_mobile": { + "content": "Mobiles Layout" + }, + "columns_mobile": { + "label": "Spalten", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "blocks": { + "featured_collection": { + "name": "Kategorie", + "settings": { + "collection": { + "label": "Kategorie" + } + } + } + }, + "presets": { + "name": "Kollektionsliste" + } + }, + "contact-form": { + "name": "Kontaktformular", + "presets": { + "name": "Kontaktformular" + }, + "settings": { + "title": { + "default": "Kontaktformular", + "label": "Titel" + } + } + }, + "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", + "default": "Blog-Beiträge" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Beitragsanzahl" + }, + "show_view_all": { + "label": "Schaltfläche \"Alle anzeigen\"", + "info": "Sichtbar, wenn der Blog mehr als die angezeigten Beiträge enthält" + }, + "show_image": { + "label": "Feature-Bild" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Autor" + }, + "columns_desktop": { + "label": "Spalten" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Text" + } + }, + "presets": { + "name": "Blog-Beiträge" + } + }, + "featured-collection": { + "name": "Vorgestellte Kollektion", + "settings": { + "title": { + "label": "Überschrift", + "default": "Vorgestellte Kollektion" + }, + "collection": { + "label": "Kategorie" + }, + "products_to_show": { + "label": "Produktanzahl" + }, + "show_view_all": { + "label": "Schaltfläche \"Alle anzeigen\"", + "info": "Sichtbar, wenn die Kollektion mehr als die angezeigten Produkte enthält" + }, + "header": { + "content": "Produktkarte" + }, + "image_ratio": { + "label": "Bildverhältnis", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Porträt" + }, + "options__3": { + "label": "Quadrat" + } + }, + "show_secondary_image": { + "label": "Hover-Effekt mit zweitem Bild" + }, + "show_vendor": { + "label": "Anbieter" + }, + "show_rating": { + "label": "Produktbewertung", + "info": "Für Bewertungen wird eine App benötigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Schnelles Hinzufügen" + }, + "columns_desktop": { + "label": "Spalten" + }, + "description": { + "label": "Beschreibung" + }, + "show_description": { + "label": "Kollektionsbeschreibung im Admin-Panel 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" + }, + "full_width": { + "label": "Produkte mit voller Breite" + }, + "header_mobile": { + "content": "Mobiles Layout" + }, + "columns_mobile": { + "label": "Spalten", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Karussell" + }, + "header_text": { + "content": "Text" + }, + "header_collection": { + "content": "Kollektions-Layout" + } + }, + "presets": { + "name": "Vorgestellte Kollektion" + } + }, + "footer": { + "name": "Fußzeile", + "blocks": { + "link_list": { + "name": "Menü", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Quick-Links" + }, + "menu": { + "label": "Menü" + } + } + }, + "text": { + "name": "Text", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Titel" + }, + "subtext": { + "label": "Subtext", + "default": "Teile Kontaktinformationen, Shop-Details und Markeninhalte mit deinen Kunden.
" + } + } + }, + "brand_information": { + "name": "Markeninformationen", + "settings": { + "paragraph": { + "content": "Markeninfos verwalten in [Theme-Einstellungen](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Social Media-Symbole", + "info": "[Social-Media-Konten verwalten](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "E-Mail-Anmeldung" + }, + "newsletter_heading": { + "label": "Überschrift", + "default": "Abonniere unsere E-Mails" + }, + "header__1": { + "content": "E-Mail-Anmeldung", + "info": "Registrierungen hinzufügen [Kundenprofile](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Social Media-Symbole", + "info": "[Social-Media-Konten verwalten](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Auswahl für Land/Region", + "info": "[Länder/Regionen verwalten](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sprachauswahl", + "info": "[Sprachen verwalten](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Symbole für Zahlungsmethode" + }, + "margin_top": { + "label": "Oberer Rand" + }, + "show_policy": { + "label": "Links zu Richtlinien", + "info": "[Richtlinien verwalten](/admin/settings/legal)" + }, + "header__9": { + "content": "Versorgungsunternehmen" + }, + "enable_follow_on_shop": { + "label": "In Shop folgen", + "info": "Shop Pay muss aktiviert sein. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Header", + "settings": { + "logo_position": { + "label": "Logo-Position", + "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" + }, + "margin_bottom": { + "label": "Unterer Rand" + }, + "menu_type_desktop": { + "label": "Menütyp", + "options__1": { + "label": "Dropdown" + }, + "options__2": { + "label": "Mega-Menü" + }, + "options__3": { + "label": "Einschub" + } + }, + "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-Einstellungen](/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" + } + }, + "enable_country_selector": { + "label": "Auswahl für Land/Region", + "info": "[Länder/Regionen verwalten](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sprachauswahl", + "info": "[Sprachen verwalten](/admin/settings/languages)" + }, + "header__1": { + "content": "Farbe" + }, + "menu_color_scheme": { + "label": "Menü-Farbschema" + }, + "enable_customer_avatar": { + "label": "Avatar für Kundenkonto", + "info": "Nur sichtbar, wenn Kunden mit Shop angemeldet sind. [Kundenkonten verwalten](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Versorgungsunternehmen" + } + } + }, + "image-banner": { + "name": "Bild-Banner", + "settings": { + "image": { + "label": "Bild 1" + }, + "image_2": { + "label": "Bild 2" + }, + "stack_images_on_mobile": { + "label": "Gestapelte Bilder" + }, + "show_text_box": { + "label": "Container" + }, + "image_overlay_opacity": { + "label": "Überlagerungsdeckkraft" + }, + "show_text_below": { + "label": "Container" + }, + "image_height": { + "label": "Höhe", + "options__1": { + "label": "An erstes Bild anpassen" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Mittel" + }, + "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": "Position" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung" + }, + "mobile": { + "content": "Mobiles Layout" + }, + "content": { + "content": "Inhalt" + } + }, + "blocks": { + "heading": { + "name": "Titel", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Bild-Banner" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Stelle Kunden Details zu Banner-Bildern oder Inhalt auf der Vorlage zur Verfügung." + }, + "text_style": { + "options__1": { + "label": "Nachricht" + }, + "options__2": { + "label": "Untertitel" + }, + "options__3": { + "label": "Großbuchstaben" + }, + "label": "Optik" + } + } + }, + "buttons": { + "name": "Schaltflächen", + "settings": { + "button_label_1": { + "label": "Etikett", + "info": "Zum Ausblenden leer lassen", + "default": "Schaltflächenbeschriftung" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Umriss-Stil" + }, + "button_label_2": { + "label": "Etikett", + "info": "Zum Ausblenden leer lassen", + "default": "Schaltflächenbeschriftung" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Umriss-Stil" + }, + "header_1": { + "content": "Schaltfläche 1" + }, + "header_2": { + "content": "Schaltfläche 2" + } + } + } + }, + "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": "Höhe", + "options__4": { + "label": "Groß" + } + }, + "layout": { + "options__1": { + "label": "Bild zuerst" + }, + "options__2": { + "label": "Zweites Bild" + }, + "label": "Platzierung" + }, + "desktop_image_width": { + "options__1": { + "label": "Klein" + }, + "options__2": { + "label": "Mittel" + }, + "options__3": { + "label": "Groß" + }, + "label": "Breite" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung" + }, + "desktop_content_position": { + "options__1": { + "label": "Oben" + }, + "options__2": { + "label": "Mitte" + }, + "options__3": { + "label": "Unten" + }, + "label": "Position" + }, + "content_layout": { + "options__1": { + "label": "Keine Überlappung" + }, + "options__2": { + "label": "Überlappung" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung Mobilgerät" + }, + "header": { + "content": "Inhalt" + }, + "header_colors": { + "content": "Farben" + } + }, + "blocks": { + "heading": { + "name": "Titel", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Bild mit Text" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Kombiniere Text mit einem Bild, um den Fokus auf dein Produkt, deine Kollektion oder deinen Blog-Beitrag zu richten. Du kannst außerdem weitere Details über die Verfügbarkeit oder den Stil und sogar eine Bewertung hinzufügen.
" + }, + "text_style": { + "label": "Optik", + "options__1": { + "label": "Nachricht" + }, + "options__2": { + "label": "Untertitel" + } + } + } + }, + "button": { + "name": "Schaltfläche", + "settings": { + "button_label": { + "label": "Etikett", + "info": "Zum Ausblenden leer lassen", + "default": "Schaltflächenbeschriftung" + }, + "button_link": { + "label": "Link" + }, + "outline_button": { + "label": "Umriss-Stil" + } + } + }, + "caption": { + "name": "Bildtext", + "settings": { + "text": { + "label": "Text", + "default": "Tagline hinzufügen" + }, + "text_style": { + "label": "Optik", + "options__1": { + "label": "Untertitel" + }, + "options__2": { + "label": "Großbuchstaben" + } + }, + "caption_size": { + "label": "Größ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": "Bildhöhe", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Mittel" + }, + "options__4": { + "label": "Groß" + } + } + } + }, + "title": { + "name": "Titel", + "settings": { + "blog_show_date": { + "label": "Datum" + }, + "blog_show_author": { + "label": "Autor" + } + } + }, + "content": { + "name": "Inhalt" + }, + "share": { + "name": "Teilen", + "settings": { + "text": { + "label": "Text", + "default": "Teilen" + } + } + } + } + }, + "main-blog": { + "name": "Blog-Beiträge", + "settings": { + "show_image": { + "label": "Feature-Bild" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Autor" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Raster" + }, + "options__2": { + "label": "Collage" + } + }, + "image_height": { + "label": "Bildhöhe", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Mittel" + }, + "options__4": { + "label": "Groß" + } + } + } + }, + "main-cart-footer": { + "name": "Zwischensumme", + "blocks": { + "subtotal": { + "name": "Zwischensumme" + }, + "buttons": { + "name": "Checkout-Schaltfläche" + } + } + }, + "main-cart-items": { + "name": "Artikel" + }, + "main-collection-banner": { + "name": "Kollektionsbanner", + "settings": { + "paragraph": { + "content": "Kollektionsdetails werden [in deinem Admin-Panel verwaltet](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Beschreibung" + }, + "show_collection_image": { + "label": "Bild" + } + } + }, + "main-collection-product-grid": { + "name": "Produktraster", + "settings": { + "products_per_page": { + "label": "Produkte pro Seite" + }, + "enable_filtering": { + "label": "Filter", + "info": "Individualisiere Filter mit der [Search & Discovery-App](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Sortierung" + }, + "image_ratio": { + "label": "Bildverhältnis", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Porträt" + }, + "options__3": { + "label": "Quadrat" + } + }, + "show_secondary_image": { + "label": "Hover-Effekt mit zweitem Bild" + }, + "show_vendor": { + "label": "Anbieter" + }, + "header__1": { + "content": "Filtern und Sortieren" + }, + "header__3": { + "content": "Produktkarte" + }, + "enable_tags": { + "label": "Filter", + "info": "Individualisiere Filter mit der [Search & Discovery-App](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "show_rating": { + "label": "Produktbewertung", + "info": "Für Produktbewertungen wird eine App benötigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Spalten" + }, + "columns_mobile": { + "label": "Spalten Mobilgeräte", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Layout filtern", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertikal" + }, + "options__3": { + "label": "Einschub" + } + }, + "quick_add": { + "label": "Schnelles Hinzufügen", + "options": { + "option_1": "Keine", + "option_2": "Standard", + "option_3": "Sammelaktion" + } + } + } + }, + "main-list-collections": { + "name": "Listenseite für Kollektionen", + "settings": { + "title": { + "label": "Überschrift", + "default": "Kollektionen" + }, + "sort": { + "label": "Kollektionen sortieren", + "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": "Quadrat" + } + }, + "columns_desktop": { + "label": "Spalten" + }, + "header_mobile": { + "content": "Mobiles Layout" + }, + "columns_mobile": { + "label": "Spalten Mobilgeräte", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Seite" + }, + "main-password-footer": { + "name": "Passwort-Fußzeile" + }, + "main-password-header": { + "name": "Passwort-Header", + "settings": { + "logo_help": { + "content": "Bearbeite dein Logo in den [Theme-Einstellungen](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "blocks": { + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Textblock" + }, + "text_style": { + "label": "Optik", + "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": "Optik", + "options__1": { + "label": "Dropdown" + }, + "options__2": { + "label": "Kapseln" + } + }, + "swatch_shape": { + "label": "Farbfeld", + "info": "Mehr Informationen zu [Farbfelder ](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) für Produktoptionen", + "options__1": { + "label": "Kreis" + }, + "options__2": { + "label": "Quadrat" + }, + "options__3": { + "label": "Keine" + } + } + } + }, + "buy_buttons": { + "name": "Buy Buttons", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamische Checkout-Buttons", + "info": "Kunden wird die bevorzugte Zahlungsmethode angezeigt. [Mehr Informationen](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Optionen für Gutscheinversand", + "info": "Kunden können eine persönliche Nachricht hinzufügen und den Versand planen. [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": { + "text": { + "label": "Text", + "default": "Teilen" + } + } + }, + "collapsible_tab": { + "name": "Einklappbare Reihe", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Einklappbare Reihe" + }, + "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", + "default": "Pop-up-Linktext" + }, + "page": { + "label": "Seite" + } + } + }, + "rating": { + "name": "Produktbewertung", + "settings": { + "paragraph": { + "content": "Für Produktbewertungen wird eine App benötigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Ergänzende Produkte", + "settings": { + "paragraph": { + "content": "Verwalte ergänzende Produkte in der [Search & Discovery-App](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Überschrift", + "default": "Passt gut zu" + }, + "make_collapsible_row": { + "label": "Einklappbare Reihe" + }, + "icon": { + "info": "Angezeigt, wenn einklappbare Reihe ausgewählt ist" + }, + "product_list_limit": { + "label": "Produktanzahl" + }, + "products_per_page": { + "label": "Produkte pro Seite" + }, + "pagination_style": { + "label": "Seitennummerierung", + "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": "Quadrat" + } + }, + "enable_quick_add": { + "label": "Schnelles Hinzufügen" + } + } + }, + "icon_with_text": { + "name": "Symbol mit Text", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertikal" + } + }, + "heading": { + "info": "Zum Ausblenden dieser Kombination leer lassen" + }, + "icon_1": { + "label": "Symbol" + }, + "image_1": { + "label": "Bild" + }, + "heading_1": { + "label": "Überschrift", + "default": "Titel" + }, + "icon_2": { + "label": "Symbol" + }, + "image_2": { + "label": "Bild" + }, + "heading_2": { + "label": "Überschrift", + "default": "Titel" + }, + "icon_3": { + "label": "Symbol" + }, + "image_3": { + "label": "Bild" + }, + "heading_3": { + "label": "Überschrift", + "default": "Titel" + }, + "pairing_1": { + "label": "Kombination 1", + "info": "Wähle für jede Kombination ein Symbol oder ein Bild aus" + }, + "pairing_2": { + "label": "Kombination 2" + }, + "pairing_3": { + "label": "Kombination 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Inventarbestand" + } + } + } + }, + "settings": { + "header": { + "content": "Medien" + }, + "enable_video_looping": { + "label": "Video in Dauerschleife" + }, + "enable_sticky_info": { + "label": "Fixierter Inhalt" + }, + "hide_variants": { + "label": "Andere Variantmedien ausblenden, nachdem eine ausgewählt wurde." + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Gestapelt" + }, + "options__2": { + "label": "2 Spalten" + }, + "options__3": { + "label": "Vorschaubilder" + }, + "options__4": { + "label": "Karussell mit Vorschaubildern" + } + }, + "media_size": { + "label": "Breite", + "options__1": { + "label": "Klein" + }, + "options__2": { + "label": "Mittel" + }, + "options__3": { + "label": "Groß" + } + }, + "mobile_thumbnails": { + "label": "Mobiles Layout", + "options__1": { + "label": "2 Spalten" + }, + "options__2": { + "label": "Vorschaubilder anzeigen" + }, + "options__3": { + "label": "Vorschaubilder ausblenden" + } + }, + "media_position": { + "label": "Position", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Rechts" + } + }, + "image_zoom": { + "label": "Zoom", + "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": "Auf Bildschirmhöhe beschränken" + }, + "media_fit": { + "label": "Passform", + "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": "Quadrat" + } + }, + "show_secondary_image": { + "label": "Hover-Effekt mit zweitem Bild" + }, + "show_vendor": { + "label": "Anbieter" + }, + "header__1": { + "content": "Produktkarte" + }, + "header__2": { + "content": "Blog-Karte" + }, + "article_show_date": { + "label": "Datum" + }, + "article_show_author": { + "label": "Autor" + }, + "show_rating": { + "label": "Produktbewertung", + "info": "Für Produktbewertungen wird eine App benötigt. [Mehr Informationen](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Spalten" + }, + "columns_mobile": { + "label": "Spalten Mobilgeräte", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Mit mehreren Spalten", + "settings": { + "title": { + "label": "Überschrift", + "default": "Mit mehreren Spalten" + }, + "image_width": { + "label": "Breite", + "options__1": { + "label": "Drittelbreite der Spalte" + }, + "options__2": { + "label": "Halbe Breite der Spalte" + }, + "options__3": { + "label": "Ganze Breite der Spalte" + } + }, + "image_ratio": { + "label": "Verhältnis", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Porträt" + }, + "options__3": { + "label": "Quadrat" + }, + "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": "Etikett", + "default": "Schaltflächenbeschriftung", + "info": "Zum Ausblenden leer lassen" + }, + "button_link": { + "label": "Link" + }, + "swipe_on_mobile": { + "label": "Karussell" + }, + "columns_desktop": { + "label": "Spalten" + }, + "header_mobile": { + "content": "Mobiles Layout" + }, + "columns_mobile": { + "label": "Spalten", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Überschrift" + }, + "header_image": { + "content": "Bild" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Schaltfläche" + } + }, + "blocks": { + "column": { + "name": "Spalte", + "settings": { + "image": { + "label": "Bild" + }, + "title": { + "label": "Überschrift", + "default": "Spalte" + }, + "text": { + "label": "Beschreibung", + "default": "Kombiniere Text mit einem Bild, um den Fokus auf dein Produkt, deine Kollektion oder deinen Blog-Beitrag zu richten. Du kannst außerdem weitere Details über die Verfügbarkeit oder den Stil und sogar eine Bewertung hinzufügen.
" + }, + "link_label": { + "label": "Link-Label", + "info": "Zum Ausblenden leer lassen" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Mit mehreren Spalten" + } + }, + "newsletter": { + "name": "E-Mail-Anmeldung", + "settings": { + "full_width": { + "label": "Volle Breite" + }, + "paragraph": { + "content": "Registrierungen hinzufügen [Kundenprofile](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Titel", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Abonniere unsere E-Mails" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Erfahre als Erster von neuen Kollektionen und exklusiven Angeboten.
" + } + } + }, + "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": "Volle Breite" + }, + "desktop_content_position": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Inhaltsposition" + }, + "content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Inhaltsausrichtung" + } + }, + "blocks": { + "heading": { + "name": "Titel", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Erzähle etwas über deine Marke" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Teile Infos über deine Marke mit deinen Kunden. Beschreibe ein Produkt, kündige etwas an oder heiße Kunden willkommen.
" + } + } + }, + "buttons": { + "name": "Schaltflächen", + "settings": { + "button_label_1": { + "label": "Etikett", + "info": "Zum Ausblenden leer lassen", + "default": "Schaltflächenbeschriftung" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Umriss-Stil" + }, + "button_label_2": { + "label": "Etikett", + "info": "Leer lassen, um Etikett auszublenden" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Umriss-Stil" + }, + "header_button1": { + "content": "Schaltfläche 1" + }, + "header_button2": { + "content": "Schaltfläche 2" + } + } + }, + "caption": { + "name": "Bildtext", + "settings": { + "text": { + "label": "Text", + "default": "Tagline hinzufügen" + }, + "text_style": { + "label": "Optik", + "options__1": { + "label": "Untertitel" + }, + "options__2": { + "label": "Großbuchstaben" + } + }, + "caption_size": { + "label": "Größ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", + "default": "Video" + }, + "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 Nutzer von Bildschirmlesegeräten" + }, + "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": "Volle Breite" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Video in Dauerschleife" + }, + "header__1": { + "content": "Von Shopify gehostetes Video" + }, + "header__2": { + "content": "Oder Video von URL einbetten" + }, + "header__3": { + "content": "Layout" + }, + "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", + "default": "Textblock" + }, + "text_style": { + "label": "Optik", + "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": "Optik", + "options__1": { + "label": "Dropdown" + }, + "options__2": { + "label": "Kapseln" + } + }, + "swatch_shape": { + "label": "Farbfeld", + "info": "Mehr Informationen zu [Farbfelder ](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) für Produktoptionen", + "options__1": { + "label": "Kreis" + }, + "options__2": { + "label": "Quadrat" + }, + "options__3": { + "label": "Keine" + } + } + } + }, + "buy_buttons": { + "name": "Buy Buttons", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamische Checkout-Buttons", + "info": "Kunden wird die bevorzugte Zahlungsmethode angezeigt. [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", + "default": "Teilen" + } + } + }, + "rating": { + "name": "Produktbewertung", + "settings": { + "paragraph": { + "content": "Für Produktbewertungen wird eine App benötigt. [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ärer Hintergrund" + }, + "header": { + "content": "Medien" + }, + "enable_video_looping": { + "label": "Video in Dauerschleife" + }, + "hide_variants": { + "label": "Medien von nicht ausgewählten Varianten auf dem Desktop ausblenden" + }, + "media_position": { + "label": "Position", + "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": "Registrierungen hinzufügen [Kundenprofile](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Hintergrundbild" + }, + "show_background_image": { + "label": "Hintergrundbild anzeigen" + }, + "show_text_box": { + "label": "Container" + }, + "image_overlay_opacity": { + "label": "Überlagerungsdeckkraft" + }, + "show_text_below": { + "label": "Text unter Bild stapeln" + }, + "image_height": { + "label": "Höhe", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Mittel" + }, + "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": "Position" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung" + }, + "header": { + "content": "Mobiles Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung" + }, + "color_scheme": { + "info": "Sichtbar, wenn Container angezeigt wird." + }, + "content_header": { + "content": "Inhalt" + } + }, + "blocks": { + "heading": { + "name": "Titel", + "settings": { + "heading": { + "label": "Titel", + "default": "Eröffnet demnächst" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Erfahre als Erster von unserem Launch.
" + }, + "text_style": { + "options__1": { + "label": "Nachricht" + }, + "options__2": { + "label": "Untertitel" + }, + "label": "Optik" + } + } + }, + "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": "Seite" + } + }, + "slide_height": { + "label": "Höhe", + "options__1": { + "label": "An erstes Bild anpassen" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Mittel" + }, + "options__4": { + "label": "Groß" + } + }, + "slider_visual": { + "label": "Seitennummerierung", + "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": "Text unter Bild stapeln" + }, + "mobile": { + "content": "Mobiles Layout" + }, + "accessibility": { + "content": "Barrierefreiheit", + "label": "Slideshow-Beschreibung", + "info": "Beschreibe die Slideshow für Nutzer von Bildschirmlesegeräten", + "default": "Slideshow zu deiner Marke" + } + }, + "blocks": { + "slide": { + "name": "Folie", + "settings": { + "image": { + "label": "Bild" + }, + "heading": { + "label": "Titel", + "default": "Slideshow" + }, + "subheading": { + "label": "Unter-Überschrift", + "default": "Erzähle deine Geschichte mit Fotos" + }, + "button_label": { + "label": "Etikett", + "info": "Zum Ausblenden leer lassen", + "default": "Schaltflächenbeschriftung" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Umriss-Stil" + }, + "box_align": { + "label": "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" + } + }, + "show_text_box": { + "label": "Container" + }, + "text_alignment": { + "label": "Inhaltsausrichtung", + "option_1": { + "label": "Links" + }, + "option_2": { + "label": "Zentriert" + }, + "option_3": { + "label": "Rechts" + } + }, + "image_overlay_opacity": { + "label": "Überlagerungsdeckkraft" + }, + "text_alignment_mobile": { + "label": "Mobile Inhaltsausrichtung", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + } + }, + "header_button": { + "content": "Schaltfläche" + }, + "header_layout": { + "content": "Layout" + }, + "header_text": { + "content": "Text" + }, + "header_colors": { + "content": "Farben" + } + } + } + }, + "presets": { + "name": "Slideshow" + } + }, + "collapsible_content": { + "name": "Einklappbarer Inhalt", + "settings": { + "caption": { + "label": "Bildtext" + }, + "heading": { + "label": "Überschrift", + "default": "Einklappbarer Inhalt" + }, + "heading_alignment": { + "label": "Ausrichtung der Überschrift", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + } + }, + "layout": { + "label": "Container", + "options__1": { + "label": "Kein Container" + }, + "options__2": { + "label": "Reihencontainer" + }, + "options__3": { + "label": "Abschnittscontainer" + } + }, + "open_first_collapsible_row": { + "label": "Erste Reihe öffnen" + }, + "header": { + "content": "Bild" + }, + "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": "Platzierung", + "options__1": { + "label": "Bild zuerst" + }, + "options__2": { + "label": "Bild an zweiter Stelle" + } + }, + "container_color_scheme": { + "label": "Farbschema für Container" + }, + "layout_header": { + "content": "Layout" + }, + "section_color_scheme": { + "label": "Farbschema des Abschnitts" + } + }, + "blocks": { + "collapsible_row": { + "name": "Einklappbare Reihe", + "settings": { + "heading": { + "label": "Überschrift", + "default": "Einklappbare Reihe" + }, + "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", + "shop_login_button": { + "enable": "Schaltfläche „Mit Shop anmelden“ aktivieren" + } + }, + "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": "Produktanzahl" + }, + "columns_desktop": { + "label": "Spalten" + }, + "paragraph__1": { + "content": "Ergänzende Produkte können in der [Search & Discovery-App](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations) verwaltet werden", + "default": "Das könnte dir auch gefallen" + }, + "header__2": { + "content": "Produktkarte" + }, + "image_ratio": { + "label": "Bildverhältnis", + "options__1": { + "label": "An Bild anpassen" + }, + "options__2": { + "label": "Hochformat" + }, + "options__3": { + "label": "Quadrat" + } + }, + "show_secondary_image": { + "label": "Hover-Effekt mit zweitem Bild" + }, + "show_vendor": { + "label": "Anbieter" + }, + "show_rating": { + "label": "Produktbewertung", + "info": "Für Produktbewertungen wird eine App benötigt. [Mehr Informationen](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Spalten Mobilgeräte", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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": "Höhe" + }, + "desktop_image_width": { + "options__1": { + "label": "Klein" + }, + "options__2": { + "label": "Mittel" + }, + "options__3": { + "label": "Groß" + }, + "label": "Breite" + }, + "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": "Ausrichtung" + }, + "desktop_content_position": { + "options__1": { + "label": "Oben" + }, + "options__2": { + "label": "Mitte" + }, + "options__3": { + "label": "Unten" + }, + "label": "Position" + }, + "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": "Platzierung" + }, + "container_color_scheme": { + "label": "Farbschema für Container" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Zentriert" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Ausrichtung Mobilgerät" + }, + "header": { + "content": "Bild" + }, + "header_2": { + "content": "Inhalt" + }, + "header_3": { + "content": "Farben" + } + }, + "blocks": { + "row": { + "name": "Reihe", + "settings": { + "image": { + "label": "Bild" + }, + "caption": { + "label": "Bildtext", + "default": "Bildtext" + }, + "heading": { + "label": "Überschrift", + "default": "Reihe" + }, + "text": { + "label": "Text", + "default": "Kombiniere Text mit einem Bild, um den Fokus auf dein Produkt, deine Kollektion oder deinen Blog-Beitrag zu richten. Du kannst außerdem weitere Details über die Verfügbarkeit oder den Stil und sogar eine Bewertung hinzufügen.
" + }, + "button_label": { + "label": "Schaltflächenbeschriftung", + "default": "Schaltflächenbeschriftung", + "info": "Zum Ausblenden leer lassen" + }, + "button_link": { + "label": "Schaltflächenlink" + } + } + } + }, + "presets": { + "name": "Mehrreihig" + } + }, + "quick-order-list": { + "name": "Schnelle Bestellliste", + "settings": { + "show_image": { + "label": "Bilder" + }, + "show_sku": { + "label": "SKUs" + }, + "variants_per_page": { + "label": "Varianten pro Seite" + } + }, + "presets": { + "name": "Schnelle Bestellliste" + } + } + } +} diff --git a/locales/el.json b/locales/el.json new file mode 100644 index 0000000..124dcee --- /dev/null +++ b/locales/el.json @@ -0,0 +1,530 @@ +{ + "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": "Κοινοποίηση στο X", + "share_on_pinterest": "Καρφίτσωμα στο Pinterest" + }, + "links": { + "twitter": "X (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": "Προβολή κανόνων ποσότητας", + "min_of": "Ελάχ. {{ quantity }}", + "max_of": "Μέγ. {{ quantity }}", + "in_cart_aria_label": "Ποσότητα ({{ quantity }} στο καλάθι)" + }, + "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 }} είναι τώρα διαθέσιμη στην προβολή συλλογής" + }, + "nested_label": "{{ title }} για {{ parent_title }}", + "view_full_details": "Προβολή όλων των λεπτομερειών", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "στα {{ price }}/τμχ" + }, + "taxes_included": "Οι φόροι συμπεριλαμβάνονται.", + "duties_included": "Οι δασμοί συμπεριλαμβάνονται.", + "duties_and_taxes_included": "Οι δασμοί και οι φόροι συμπεριλαμβάνονται." + }, + "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 }} από αυτό το προϊόν στο καλάθι σας.", + "headings": { + "product": "Προϊόν", + "price": "Τιμή", + "total": "Σύνολο", + "quantity": "Ποσότητα", + "image": "Εικόνα προϊόντος" + }, + "update": "Ενημέρωση", + "login": { + "title": "Έχετε λογαριασμό;", + "paragraph_html": "Συνδεθείτε για ταχύτερη ολοκλήρωση των αγορών σας." + }, + "estimated_total": "Εκτιμώμενο σύνολο", + "new_estimated_total": "Νέο εκτιμώμενο σύνολο", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Οι δασμοί και οι φόροι συμπεριλαμβάνονται. Οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Οι δασμοί και οι φόροι συμπεριλαμβάνονται. Οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς", + "taxes_included_shipping_at_checkout_with_policy_html": "Οι φόροι συμπεριλαμβάνονται. Οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", + "taxes_included_shipping_at_checkout_without_policy": "Οι φόροι συμπεριλαμβάνονται. Οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Οι δασμοί συμπεριλαμβάνονται. Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Οι δασμοί συμπεριλαμβάνονται. Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς." + }, + "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": "Ακύρωση", + "remove_all_single_item_confirmation": "Να καταργηθεί 1 προϊόν από το καλάθι σας;", + "min_error": "Αυτό το προϊόν έχει ελάχιστο όριο {{ min }}", + "max_error": "Αυτό το προϊόν έχει μέγιστο όριο {{ max }}", + "step_error": "Μπορείτε να προσθέσετε αυτό το προϊόν μόνο κατά βήματα των {{ step }}" + } + }, + "localization": { + "country_label": "Χώρα/περιοχή", + "language_label": "Γλώσσα", + "update_language": "Ενημέρωση γλώσσας", + "update_country": "Ενημερώστε τη χώρα/περιοχή", + "search": "Αναζήτηση", + "popular_countries_regions": "Δημοφιλείς χώρες/περιοχές", + "country_results_count": "Βρέθηκαν {{ count }} χώρες/περιοχές" + }, + "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": "Υποβολή", + "alternate_provider_separator": "ή" + }, + "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..6e008e7 --- /dev/null +++ b/locales/en.default.json @@ -0,0 +1,531 @@ +{ + "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": "Share on X", + "share_on_pinterest": "Pin on Pinterest" + }, + "links": { + "twitter": "X (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" + }, + "nested_label": "{{ title }} for {{ parent_title }}", + "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 }}", + "min_of": "Min {{ quantity }}", + "max_of": "Max {{ quantity }}", + "in_cart_html": "{{ quantity }} in cart", + "in_cart_aria_label": "Quantity ({{ quantity }} in cart)", + "note": "View quantity rules" + }, + "volume_pricing": { + "title": "Volume Pricing", + "note": "Volume pricing available", + "minimum": "{{ quantity }}+", + "price_at_each_html": "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", + "taxes_included": "Taxes included.", + "duties_included": "Duties included.", + "duties_and_taxes_included": "Duties and taxes 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.", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Duties and taxes included. Discounts and shipping calculated at checkout.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Duties and taxes included. Discounts and shipping calculated at checkout.", + "taxes_included_shipping_at_checkout_with_policy_html": "Taxes included. Discounts and shipping calculated at checkout.", + "taxes_included_shipping_at_checkout_without_policy": "Taxes included. Discounts and shipping calculated at checkout.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Duties included. Taxes, discounts and shipping calculated at checkout.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Duties included. Taxes, discounts and shipping calculated at checkout.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Taxes, discounts and shipping calculated at checkout.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "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_single_item_confirmation": "Remove 1 item from your cart?", + "remove_all_items_confirmation": "Remove all {{ quantity }} items from your cart?", + "remove_all": "Remove all", + "cancel": "Cancel", + "min_error": "This item has a minimum of {{ min }}", + "max_error": "This item has a maximum of {{ max }}", + "step_error": "You can only add this item in increments of {{ step }}" + } + }, + "localization": { + "country_label": "Country/region", + "language_label": "Language", + "update_language": "Update language", + "update_country": "Update country/region", + "search": "Search", + "popular_countries_regions": "Popular countries/regions", + "country_results_count": "{{ count }} countries/regions found" + }, + "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", + "alternate_provider_separator": "or" + }, + "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)" + } + } +} \ No newline at end of file diff --git a/locales/en.default.schema.json b/locales/en.default.schema.json new file mode 100644 index 0000000..8a0ca35 --- /dev/null +++ b/locales/en.default.schema.json @@ -0,0 +1,3401 @@ +{ + "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": "Width" + }, + "favicon": { + "label": "Favicon", + "info": "Displayed at 32 x 32px" + } + } + }, + "brand_information": { + "name": "Brand information", + "settings": { + "paragraph": { + "content": "Displays in the footer's brand information block" + }, + "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" + }, + "heading_scale": { + "label": "Scale" + }, + "header__1": { + "content": "Headings" + }, + "header__2": { + "content": "Body" + }, + "type_body_font": { + "label": "Font" + }, + "body_scale": { + "label": "Scale" + } + } + }, + "buttons": { + "name": "Buttons" + }, + "variant_pills": { + "name": "Variant pills", + "paragraph": "Variant pills are one way of displaying your [product variants](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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": "X / Twitter", + "info": "https://x.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": { + "predictive_search_enabled": { + "label": "Search suggestions" + }, + "predictive_search_show_vendor": { + "label": "Product vendor", + "info": "Shown when search suggestions enabled" + }, + "predictive_search_show_price": { + "label": "Product price", + "info": "Shown when search suggestions enabled" + } + } + }, + "currency_format": { + "name": "Currency format", + "settings": { + "paragraph": "Cart and checkout prices always show currency codes", + "currency_code_enabled": { + "label": "Currency codes" + } + } + }, + "cart": { + "name": "Cart", + "settings": { + "cart_type": { + "label": "Type", + "drawer": { + "label": "Drawer" + }, + "page": { + "label": "Page" + }, + "notification": { + "label": "Popup notification" + } + }, + "show_vendor": { + "label": "Vendor" + }, + "show_cart_note": { + "label": "Cart note" + }, + "cart_drawer": { + "header": "Cart drawer", + "collection": { + "label": "Collection", + "info": "Shown 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": "Animation" + } + }, + "padding": { + "section_padding_heading": "Padding", + "padding_top": "Top", + "padding_bottom": "Bottom" + }, + "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" + }, + "options__5": { + "label": "Extra 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" + } + }, + "announcement-bar": { + "name": "Announcement bar", + "settings": { + "auto_rotate": { + "label": "Auto rotate announcements" + }, + "change_slides_speed": { + "label": "Change every" + }, + "heading_utilities": { + "content": "Utilities" + }, + "paragraph": { + "content": "Appear only on large screens" + }, + "show_social": { + "label": "Social media icons", + "info": "[Manage social accounts](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Country/region selector", + "info": "[Manage countries/regions](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Language selector", + "info": "[Manage languages](/admin/settings/languages)" + } + }, + "blocks": { + "announcement": { + "name": "Announcement", + "settings": { + "text": { + "label": "Text", + "default": "Welcome to our store" + }, + "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": { + "default": "Multimedia collage", + "label": "Heading" + }, + "header_layout": { + "content": "Layout" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Large block first" + }, + "options__2": { + "label": "Large block last" + } + }, + "mobile_layout": { + "label": "Mobile layout", + "options__1": { + "label": "Collage" + }, + "options__2": { + "label": "Column" + } + }, + "card_styles": { + "label": "Card style", + "info": "Manage individual card styles in [theme settings](/editor?context=theme&category=product%20cards)", + "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": { + "default": "Describe the video", + "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": { + "default": "Collections", + "label": "Heading" + }, + "header_layout": { + "content": "Layout" + }, + "image_ratio": { + "label": "Image ratio", + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Portrait" + }, + "options__3": { + "label": "Square" + } + }, + "columns_desktop": { + "label": "Columns" + }, + "show_view_all": { + "label": "\"View all\" button", + "info": "Visible if list has more collections than shown" + }, + "header_mobile": { + "content": "Mobile layout" + }, + "columns_mobile": { + "label": "Columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carousel" + } + }, + "blocks": { + "featured_collection": { + "name": "Collection", + "settings": { + "collection": { + "label": "Collection" + } + } + } + }, + "presets": { + "name": "Collection list" + } + }, + "contact-form": { + "name": "Contact Form", + "presets": { + "name": "Contact form" + }, + "settings": { + "title": { + "default": "Contact form", + "label": "Heading" + } + } + }, + "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": { + "default": "Blog posts", + "label": "Heading" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Text" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Post count" + }, + "columns_desktop": { + "label": "Columns" + }, + "show_view_all": { + "label": "\"View all\" button", + "info": "Visible if blog has more posts than shown" + }, + "show_image": { + "label": "Featured image" + }, + "show_date": { + "label": "Date" + }, + "show_author": { + "label": "Author" + } + }, + "presets": { + "name": "Blog posts" + } + }, + "featured-collection": { + "name": "Featured collection", + "settings": { + "header_text": { + "content": "Text" + }, + "title": { + "label": "Heading", + "default": "Featured collection" + }, + "description": { + "label": "Description" + }, + "show_description": { + "label": "Show collection description from admin" + }, + "description_style": { + "label": "Description style", + "options__1": { + "label": "Body" + }, + "options__2": { + "label": "Subtitle" + }, + "options__3": { + "label": "Uppercase" + } + }, + "header_collection": { + "content": "Collection layout" + }, + "header_mobile": { + "content": "Mobile layout" + }, + "collection": { + "label": "Collection" + }, + "products_to_show": { + "label": "Product count" + }, + "columns_desktop": { + "label": "Columns" + }, + "show_view_all": { + "label": "\"View all\" button", + "info": "Visible 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": "Carousel" + }, + "full_width": { + "label": "Full width products" + }, + "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": "Vendor" + }, + "show_rating": { + "label": "Product rating", + "info": "An app is required for ratings. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Quick add" + }, + "columns_mobile": { + "label": "Columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carousel" + } + }, + "presets": { + "name": "Featured collection" + } + }, + "featured-product": { + "name": "Featured product", + "blocks": { + "text": { + "name": "Text", + "settings": { + "text": { + "default": "Text block", + "label": "Text" + }, + "text_style": { + "label": "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": "Style", + "options__1": { + "label": "Dropdown" + }, + "options__2": { + "label": "Pills" + } + }, + "swatch_shape": { + "label": "Swatch", + "info": "Learn more about [swatches](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) on product options", + "options__1": { + "label": "Circle" + }, + "options__2": { + "label": "Square" + }, + "options__3": { + "label": "None" + } + } + } + }, + "buy_buttons": { + "name": "Buy buttons", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamic checkout buttons", + "info": "Customers will see their preferred payment option. [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", + "default": "Share" + }, + "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": "An app is required for product ratings. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-product-rating)" + } + } + } + }, + "settings": { + "product": { + "label": "Product" + }, + "secondary_background": { + "label": "Secondary background" + }, + "header": { + "content": "Media" + }, + "media_position": { + "label": "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": "Loop video" + } + }, + "presets": { + "name": "Featured product" + } + }, + "footer": { + "name": "Footer", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "Heading", + "default": "Quick links" + }, + "menu": { + "label": "Menu" + } + } + }, + "brand_information": { + "name": "Brand information", + "settings": { + "paragraph": { + "content": "Manage brand info in [theme settings](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Social media icons", + "info": "[Manage social accounts](/editor?context=theme&category=social%20media)" + } + } + }, + "text": { + "name": "Text", + "settings": { + "heading": { + "label": "Heading", + "default": "Heading" + }, + "subtext": { + "label": "Subtext", + "default": "Share contact information, store details, and brand content with your customers.
" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Email signup" + }, + "newsletter_heading": { + "label": "Heading", + "default": "Subscribe to our emails" + }, + "header__1": { + "content": "Email signup", + "info": "Signups add [customer profiles](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Social media icons", + "info": "[Manage social accounts](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Country/region selector", + "info": "[Manage countries/regions](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Language selector", + "info": "[Manage languages](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Payment method icons" + }, + "show_policy": { + "label": "Policy links", + "info": "[Manage policies](/admin/settings/legal)" + }, + "margin_top": { + "label": "Top margin" + }, + "header__9": { + "content": "Utilities" + }, + "enable_follow_on_shop": { + "label": "Follow on Shop", + "info": "Shop Pay must be enabled. [Learn more](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Header", + "settings": { + "logo_help": { + "content": "Edit your logo in [theme settings](/editor?context=theme&category=logo)" + }, + "logo_position": { + "label": "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": "Menu type", + "options__1": { + "label": "Dropdown" + }, + "options__2": { + "label": "Mega menu" + }, + "options__3": { + "label": "Drawer" + } + }, + "show_line_separator": { + "label": "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__utilities": { + "content": "Utilities" + }, + "enable_country_selector": { + "label": "Country/region selector", + "info": "[Manage countries/regions](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Language selector", + "info": "[Manage languages](/admin/settings/languages)" + }, + "margin_bottom": { + "label": "Bottom margin" + }, + "mobile_logo_position": { + "label": "Mobile logo position", + "options__1": { + "label": "Center" + }, + "options__2": { + "label": "Left" + } + }, + "enable_customer_avatar": { + "label": "Customer account avatar", + "info": "Only visible when customers are signed in with Shop. [Manage customer accounts](/admin/settings/customer_accounts)" + } + } + }, + "image-banner": { + "name": "Image banner", + "settings": { + "image": { + "label": "Image 1" + }, + "image_2": { + "label": "Image 2" + }, + "image_overlay_opacity": { + "label": "Overlay opacity" + }, + "image_height": { + "label": "Height", + "options__1": { + "label": "Adapt to first image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + } + }, + "content": { + "content": "Content" + }, + "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": "Position" + }, + "show_text_box": { + "label": "Container" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Alignment" + }, + "mobile": { + "content": "Mobile layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Alignment" + }, + "stack_images_on_mobile": { + "label": "Stack images" + }, + "show_text_below": { + "label": "Container" + } + }, + "blocks": { + "heading": { + "name": "Heading", + "settings": { + "heading": { + "label": "Heading", + "default": "Image banner" + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Give customers details about the banner image(s) or content on the template." + }, + "text_style": { + "options__1": { + "label": "Body" + }, + "options__2": { + "label": "Subtitle" + }, + "options__3": { + "label": "Uppercase" + }, + "label": "Style" + } + } + }, + "buttons": { + "name": "Buttons", + "settings": { + "header_1":{ + "content": "Button 1" + }, + "button_label_1": { + "label": "Label", + "info": "Leave blank to hide", + "default": "Button label" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Outline style" + }, + "header_2":{ + "content": "Button 2" + }, + "button_label_2": { + "label": "Label", + "info": "Leave blank to hide", + "default": "Button label" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Outline style" + } + } + } + }, + "presets": { + "name": "Image banner" + } + }, + "image-with-text": { + "name": "Image with text", + "settings": { + "header": { + "content": "Content" + }, + "header_colors": { + "content": "Colors" + }, + "image": { + "label": "Image" + }, + "height": { + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + }, + "label": "Height" + }, + "desktop_image_width": { + "options__1": { + "label": "Small" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Large" + }, + "label": "Width" + }, + "layout": { + "options__1": { + "label": "Image first" + }, + "options__2": { + "label": "Image second" + }, + "label": "Placement" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Alignment" + }, + "desktop_content_position": { + "options__1": { + "label": "Top" + }, + "options__2": { + "label": "Middle" + }, + "options__3": { + "label": "Bottom" + }, + "label": "Position" + }, + "content_layout": { + "options__1": { + "label": "No overlap" + }, + "options__2": { + "label": "Overlap" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Mobile alignment" + } + }, + "blocks": { + "heading": { + "name": "Heading", + "settings": { + "heading": { + "label": "Heading", + "default": "Image with text" + } + } + }, + "caption": { + "name": "Caption", + "settings": { + "text": { + "label": "Text", + "default": "Add a tagline" + }, + "text_style": { + "label": "Style", + "options__1": { + "label": "Subtitle" + }, + "options__2": { + "label": "Uppercase" + } + }, + "caption_size": { + "label": "Size", + "options__1": { + "label": "Small" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Large" + } + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "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.
" + }, + "text_style": { + "label": "Style", + "options__1": { + "label": "Body" + }, + "options__2": { + "label": "Subtitle" + } + } + } + }, + "button": { + "name": "Button", + "settings": { + "button_label": { + "label": "Label", + "info": "Leave blank to hide", + "default": "Button label" + }, + "button_link": { + "label": "Link" + }, + "outline_button": { + "label": "Outline style" + } + } + } + }, + "presets": { + "name": "Image with text" + } + }, + "multirow": { + "name": "Multirow", + "settings": { + "image": { + "label": "Image" + }, + "header":{ + "content": "Image" + }, + "header_2":{ + "content": "Content" + }, + "header_3":{ + "content": "Colors" + }, + "image_height": { + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + }, + "label": "Height" + }, + "desktop_image_width": { + "options__1": { + "label": "Small" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Large" + }, + "label": "Width" + }, + "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": "Alignment" + }, + "desktop_content_position": { + "options__1": { + "label": "Top" + }, + "options__2": { + "label": "Middle" + }, + "options__3": { + "label": "Bottom" + }, + "label": "Position" + }, + "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": "Placement" + }, + "container_color_scheme": { + "label": "Container color scheme" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Mobile alignment" + } + }, + "blocks": { + "row": { + "name": "Row", + "settings": { + "image": { + "label": "Image" + }, + "caption": { + "label": "Caption", + "default": "Caption" + }, + "heading": { + "label": "Heading", + "default": "Row" + }, + "text": { + "label": "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.
" + }, + "button_label": { + "label": "Button label", + "info": "Leave blank to hide", + "default": "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": "Image height", + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + } + } + } + }, + "title": { + "name": "Title", + "settings": { + "blog_show_date": { + "label": "Date" + }, + "blog_show_author": { + "label": "Author" + } + } + }, + "content": { + "name": "Content" + }, + "share": { + "name": "Share", + "settings": { + "text": { + "label": "Text", + "default": "Share" + } + } + } + } + }, + "main-blog": { + "name": "Blog posts", + "settings": { + "show_image": { + "label": "Featured image" + }, + "show_date": { + "label": "Date" + }, + "show_author": { + "label": "Author" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Grid" + }, + "options__2": { + "label": "Collage" + } + }, + "image_height": { + "label": "Image height", + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + } + } + } + }, + "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": "Collection details are [managed in your admin](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Description" + }, + "show_collection_image": { + "label": "Image" + } + } + }, + "main-collection-product-grid": { + "name": "Product grid", + "settings": { + "products_per_page": { + "label": "Products per page" + }, + "columns_desktop": { + "label": "Columns" + }, + "enable_filtering": { + "label": "Filters", + "info": "Customize filters with the [Search & Discovery app](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "filter_type": { + "label": "Filter layout", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + }, + "options__3": { + "label": "Drawer" + } + }, + "enable_sorting": { + "label": "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": "Vendor" + }, + "show_rating": { + "label": "Product rating", + "info": "An app is required for product ratings. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "header__1": { + "content": "Filtering and sorting" + }, + "header__3": { + "content": "Product card" + }, + "enable_tags": { + "label": "Filters", + "info": "Customize filters with the [Search & Discovery app](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "quick_add": { + "label": "Quick add", + "options": { + "option_1": "None", + "option_2": "Standard", + "option_3": "Bulk" + } + }, + "columns_mobile": { + "label": "Mobile columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-list-collections": { + "name": "Collections list page", + "settings": { + "title": { + "label": "Heading", + "default": "Collections" + }, + "sort": { + "label": "Sort collections", + "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" + } + }, + "columns_desktop": { + "label": "Columns" + }, + "header_mobile": { + "content": "Mobile layout" + }, + "columns_mobile": { + "label": "Mobile columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-login": { + "name": "Login", + "shop_login_button": { + "enable": "Enable Sign in with Shop" + } + }, + "main-order": { + "name": "Order" + }, + "main-page": { + "name": "Page" + }, + "main-password-footer": { + "name": "Password footer" + }, + "main-password-header": { + "name": "Password header", + "settings": { + "logo_help": { + "content": "Edit your logo in [theme settings](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Product information", + "blocks": { + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Text block" + }, + "text_style": { + "label": "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" + }, + "show_inventory_quantity": { + "label": "Inventory count" + } + } + }, + "quantity_selector": { + "name": "Quantity selector" + }, + "variant_picker": { + "name": "Variant picker", + "settings": { + "picker_type": { + "label": "Style", + "options__1": { + "label": "Dropdown" + }, + "options__2": { + "label": "Pills" + } + }, + "swatch_shape": { + "label": "Swatch", + "info": "Learn more about [swatches](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) on product options", + "options__1": { + "label": "Circle" + }, + "options__2": { + "label": "Square" + }, + "options__3": { + "label": "None" + } + } + } + }, + "buy_buttons": { + "name": "Buy buttons", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamic checkout buttons", + "info": "Customers will see their preferred payment option. [Learn more](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Gift card sending options", + "info": "Customers can add a personal message and schedule the send date. [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", + "default": "Share" + } + } + }, + "collapsible_tab": { + "name": "Collapsible row", + "settings": { + "heading": { + "label": "Heading", + "default": "Collapsible 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" + } + } + } + }, + "popup": { + "name": "Pop-up", + "settings": { + "link_label": { + "label": "Link label", + "default": "Pop-up link text" + }, + "page": { + "label": "Page" + } + } + }, + "rating": { + "name": "Product rating", + "settings": { + "paragraph": { + "content": "An app is required for product ratings. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Complementary products", + "settings": { + "paragraph": { + "content": "Manage complementary products in the [Search & Discovery app](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Heading", + "default": "Pairs well with" + }, + "make_collapsible_row": { + "label": "Collapsible row" + }, + "icon": { + "info": "Shown when collapsible row is selected" + }, + "product_list_limit": { + "label": "Product count" + }, + "products_per_page": { + "label": "Products per page" + }, + "pagination_style": { + "label": "Pagination", + "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": "Quick add" + } + } + }, + "icon_with_text": { + "name": "Icon with text", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + } + }, + "pairing_1": { + "label": "Pairing 1", + "info": "Choose an icon or add an image for each pairing" + }, + "heading": { + "info": "Leave blank to hide this pairing" + }, + "icon_1": { + "label": "Icon" + }, + "image_1": { + "label": "Image" + }, + "heading_1": { + "label": "Heading", + "default": "Heading" + }, + "pairing_2": { + "label": "Pairing 2" + }, + "icon_2": { + "label": "Icon" + }, + "image_2": { + "label": "Image" + }, + "heading_2": { + "label": "Heading", + "default": "Heading" + }, + "pairing_3": { + "label": "Pairing 3" + }, + "icon_3": { + "label": "Icon" + }, + "image_3": { + "label": "Image" + }, + "heading_3": { + "label": "Heading", + "default": "Heading" + } + } + } + }, + "settings": { + "header": { + "content": "Media" + }, + "enable_sticky_info": { + "label": "Sticky content" + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Stacked" + }, + "options__2": { + "label": "2 columns" + }, + "options__3": { + "label": "Thumbnails" + }, + "options__4": { + "label": "Thumbnail carousel" + } + }, + "constrain_to_viewport": { + "label": "Constrain to screen height" + }, + "media_size": { + "label": "Width", + "options__1": { + "label": "Small" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Large" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Open lightbox" + }, + "options__2": { + "label": "Click and hover" + }, + "options__3": { + "label": "No zoom" + } + }, + "media_position": { + "label": "Position", + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Right" + } + }, + "media_fit": { + "label": "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 variant media after one is selected" + }, + "enable_video_looping": { + "label": "Loop video" + } + } + }, + "main-register": { + "name": "Registration" + }, + "main-reset-password": { + "name": "Password reset" + }, + "main-search": { + "name": "Search results", + "settings": { + "columns_desktop": { + "label": "Columns" + }, + "columns_mobile": { + "label": "Mobile columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "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": "Vendor" + }, + "show_rating": { + "label": "Product rating", + "info": "An app is required for product ratings. [Learn more](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "header__1": { + "content": "Product card" + }, + "header__2": { + "content": "Blog card" + }, + "article_show_date": { + "label": "Date" + }, + "article_show_author": { + "label": "Author" + } + } + }, + "multicolumn": { + "name": "Multicolumn", + "settings": { + "title": { + "label": "Heading", + "default": "Multicolumn" + }, + "header_text": { + "content": "Heading" + }, + "header_image": { + "content": "Image" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Button" + }, + "image_width": { + "label": "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": "Ratio", + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Portrait" + }, + "options__3": { + "label": "Square" + }, + "options__4": { + "label": "Circle" + } + }, + "columns_desktop": { + "label": "Columns" + }, + "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": "Label", + "default": "Button label", + "info": "Leave blank to hide" + }, + "button_link": { + "label": "Link" + }, + "header_mobile": { + "content": "Mobile layout" + }, + "columns_mobile": { + "label": "Columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carousel" + } + }, + "blocks": { + "column": { + "name": "Column", + "settings": { + "image": { + "label": "Image" + }, + "title": { + "label": "Heading", + "default": "Column" + }, + "text": { + "label": "Description", + "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.
" + }, + "link_label": { + "label": "Link label", + "info": "Leave blank to hide" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Multicolumn" + } + }, + "newsletter": { + "name": "Email signup", + "settings": { + "full_width": { + "label": "Full width" + }, + "paragraph": { + "content": "Signups add [customer profiles](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Heading", + "settings": { + "heading": { + "label": "Heading", + "default": "Subscribe to our emails" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Be the first to know about new collections and exclusive offers.
" + } + } + }, + "email_form": { + "name": "Email form" + } + }, + "presets": { + "name": "Email signup" + } + }, + "email-signup-banner": { + "name": "Email signup banner", + "settings": { + "paragraph": { + "content": "Signups add [customer profiles](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Background image" + }, + "image_overlay_opacity": { + "label": "Overlay opacity" + }, + "show_background_image": { + "label": "Show background image" + }, + "show_text_box": { + "label": "Container" + }, + "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": "Position" + }, + "color_scheme": { + "info": "Visible when container displayed." + }, + "image_height": { + "label": "Height", + "options__1": { + "label": "Adapt to image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + } + }, + "content_header": { + "content": "Content" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Alignment" + }, + "header": { + "content": "Mobile layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Alignment" + }, + "show_text_below": { + "label": "Stack text below image" + } + }, + "blocks": { + "heading": { + "name": "Heading", + "settings": { + "heading": { + "label": "Heading", + "default": "Opening soon" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Be the first to know when we launch.
" + }, + "text_style": { + "options__1": { + "label": "Body" + }, + "options__2": { + "label": "Subtitle" + }, + "label": "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": { + "variants_per_page": { + "label": "Variants per page" + }, + "show_image": { + "label": "Images" + }, + "show_sku": { + "label": "SKUs" + } + }, + "presets": { + "name": "Quick order list" + } + }, + "related-products": { + "name": "Related products", + "settings": { + "heading": { + "label": "Heading" + }, + "products_to_show": { + "label": "Product count" + }, + "columns_desktop": { + "label": "Columns" + }, + "paragraph__1": { + "content": "Related products can be managed in the [Search & Discovery app](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "You may also like" + }, + "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": "Vendor" + }, + "show_rating": { + "label": "Product rating", + "info": "An app is required for product ratings. [Learn more](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobile columns", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "rich-text": { + "name": "Rich text", + "settings": { + "desktop_content_position": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Content position" + }, + "content_alignment": { + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + }, + "label": "Content alignment" + }, + "full_width": { + "label": "Full width" + } + }, + "blocks": { + "heading": { + "name": "Heading", + "settings": { + "heading": { + "label": "Heading", + "default": "Talk about your brand" + } + } + }, + "caption": { + "name": "Caption", + "settings": { + "text": { + "label": "Text", + "default": "Add a tagline" + }, + "text_style": { + "label": "Style", + "options__1": { + "label": "Subtitle" + }, + "options__2": { + "label": "Uppercase" + } + }, + "caption_size": { + "label": "Size", + "options__1": { + "label": "Small" + }, + "options__2": { + "label": "Medium" + }, + "options__3": { + "label": "Large" + } + } + } + }, + "text": { + "name": "Text", + "settings": { + "text": { + "label": "Text", + "default": "Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.
" + } + } + }, + "buttons": { + "name": "Buttons", + "settings": { + "header_button1": { + "content": "Button 1" + }, + "button_label_1": { + "label": "Label", + "info": "Leave blank to hide", + "default": "Button label" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Outline style" + }, + "header_button2": { + "content": "Button 2" + }, + "button_label_2": { + "label": "Label", + "info": "Leave label blank to hide" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Outline style" + } + } + } + }, + "presets": { + "name": "Rich text" + } + }, + "video": { + "name": "Video", + "settings": { + "heading": { + "label": "Heading", + "default": "Video" + }, + "cover_image": { + "label": "Cover image" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Loop video" + }, + "header__1": { + "content": "Shopify-hosted video" + }, + "header__2": { + "content": "Or embed video from URL" + }, + "header__3": { + "content": "Layout" + }, + "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 those using screen readers" + }, + "image_padding": { + "label": "Add image padding", + "info": "Select image padding if you don't want your cover image to be cropped." + }, + "full_width": { + "label": "Full width" + } + }, + "presets": { + "name": "Video" + } + }, + "slideshow": { + "name": "Slideshow", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Full width" + }, + "options__2": { + "label": "Page" + } + }, + "slide_height": { + "label": "Height", + "options__1": { + "label": "Adapt to first image" + }, + "options__2": { + "label": "Small" + }, + "options__3": { + "label": "Medium" + }, + "options__4": { + "label": "Large" + } + }, + "slider_visual": { + "label": "Pagination", + "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": "Stack text below image" + }, + "accessibility": { + "content": "Accessibility", + "label": "Slideshow description", + "info": "Describe the slideshow for those using screen readers", + "default": "Slideshow about our brand" + } + }, + "blocks": { + "slide": { + "name": "Slide", + "settings": { + "image": { + "label": "Image" + }, + "heading": { + "label": "Heading", + "default": "Image slide" + }, + "subheading": { + "label": "Subheading", + "default": "Tell your brand's story through images" + }, + "header_button": { + "content": "Button" + }, + "button_label": { + "label": "Label", + "default": "Button label", + "info": "Leave blank to hide" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Outline style" + }, + "box_align": { + "label": "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" + } + }, + "header_layout": { + "content": "Layout" + }, + "show_text_box": { + "label": "Container" + }, + "text_alignment": { + "label": "Content alignment", + "option_1": { + "label": "Left" + }, + "option_2": { + "label": "Center" + }, + "option_3": { + "label": "Right" + } + }, + "image_overlay_opacity": { + "label": "Overlay opacity" + }, + "header_text": { + "content": "Text" + }, + "header_colors": { + "content": "Colors" + }, + "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", + "default": "Collapsible content" + }, + "heading_alignment": { + "label": "Heading alignment", + "options__1": { + "label": "Left" + }, + "options__2": { + "label": "Center" + }, + "options__3": { + "label": "Right" + } + }, + "layout_header": { + "content": "Layout" + }, + "layout": { + "label": "Container", + "options__1": { + "label": "No container" + }, + "options__2": { + "label": "Row container" + }, + "options__3": { + "label": "Section container" + } + }, + "container_color_scheme": { + "label": "Container color scheme" + }, + "section_color_scheme": { + "label": "Section color scheme" + }, + "open_first_collapsible_row": { + "label": "Open first row" + }, + "header": { + "content": "Image" + }, + "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": "Placement", + "options__1": { + "label": "Image first" + }, + "options__2": { + "label": "Image second" + } + } + }, + "blocks": { + "collapsible_row": { + "name": "Collapsible row", + "settings": { + "heading": { + "default": "Collapsible row", + "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..efcef51 --- /dev/null +++ b/locales/es.json @@ -0,0 +1,542 @@ +{ + "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 X", + "share_on_pinterest": "Guardar en Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Mín.: {{ quantity }}", + "max_of": "Máx.: {{ quantity }}", + "in_cart_aria_label": "Cantidad ({{ quantity }} en el carrito)" + }, + "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" + }, + "nested_label": "{{ title }} para {{ parent_title }}", + "view_full_details": "Ver todos los detalles", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "a {{ price }} por unidad" + }, + "product_variants": "Variantes de producto", + "taxes_included": "Impuestos incluidos.", + "duties_included": "Aranceles incluidos.", + "duties_and_taxes_included": "Aranceles e impuestos incluidos." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Aranceles e impuestos incluidos. Descuentos y envío calculados en la pantalla de pago.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Aranceles e impuestos incluidos. Descuentos y envío calculados en la pantalla de pago.", + "taxes_included_shipping_at_checkout_with_policy_html": "Impuestos incluidos. Descuentos y envío calculados en la pantalla de pago.", + "taxes_included_shipping_at_checkout_without_policy": "Impuestos incluidos. Descuentos y envío calculados en la pantalla de pago.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Aranceles incluidos. Impuestos, descuentos y envío calculados en la pantalla de pago.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Aranceles incluidos. Impuestos, descuentos y envío calculados en la pantalla de pago.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Impuestos, descuentos y envío calculados en la pantalla de pago.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Impuestos, descuentos y envío calculados en la pantalla de pago." + }, + "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", + "remove_all_single_item_confirmation": "¿Eliminar 1 artículo de tu carrito?", + "min_error": "Este artículo tiene un mínimo de {{ min }}.", + "max_error": "Este artículo tiene un máximo de {{ max }}.", + "step_error": "Solo puedes agregar este artículo en incrementos de {{ step }}" + } + }, + "localization": { + "country_label": "País/región", + "language_label": "Idioma", + "update_language": "Actualizar idioma", + "update_country": "Actualizar país/región", + "search": "Buscar", + "popular_countries_regions": "Países o regiones populares", + "country_results_count": "{{ count }} países o regiones encontrados" + }, + "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", + "alternate_provider_separator": "o" + }, + "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..4a526fc --- /dev/null +++ b/locales/es.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Títulos" + }, + "header__2": { + "content": "Cuerpo" + }, + "type_body_font": { + "label": "Fuente" + }, + "heading_scale": { + "label": "Escala" + }, + "body_scale": { + "label": "Escala" + } + } + }, + "social-media": { + "name": "Redes sociales", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Códigos de moneda" + }, + "paragraph": "Los precios en el carrito y la página de pago siempre muestran códigos de moneda" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Sugerencias de búsqueda" + }, + "predictive_search_show_vendor": { + "label": "Proveedor de producto", + "info": "Se muestra cuando las sugerencias de búsqueda están activadas" + }, + "predictive_search_show_price": { + "label": "Precio del producto", + "info": "Se muestra 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](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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, los modales emergentes y los carritos emergentes" + }, + "media": { + "name": "Multimedia" + }, + "drawers": { + "name": "Cajones" + }, + "cart": { + "name": "Carrito", + "settings": { + "cart_type": { + "label": "Tipo", + "drawer": { + "label": "Lateral" + }, + "page": { + "label": "Página" + }, + "notification": { + "label": "Notificación emergente" + } + }, + "show_vendor": { + "label": "Proveedor" + }, + "show_cart_note": { + "label": "Nota del carrito" + }, + "cart_drawer": { + "header": "Carrito lateral", + "collection": { + "label": "Colección", + "info": "Se muestra 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" + }, + "favicon": { + "label": "Favicon", + "info": "Se muestra en 32 x 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": "Se muestra en el bloque de información de marca del pie de página" + } + } + }, + "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": "Elevación 3D" + } + } + } + } + }, + "sections": { + "all": { + "padding": { + "section_padding_heading": "Relleno", + "padding_top": "Arriba", + "padding_bottom": "Abajo" + }, + "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" + }, + "options__5": { + "label": "Superextragrande" + } + }, + "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" + }, + "animation": { + "content": "Animaciones", + "image_behavior": { + "options__1": { + "label": "Ninguna" + }, + "options__2": { + "label": "Movimiento de ambiente" + }, + "label": "Animación", + "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", + "default": "Te damos la bienvenida a nuestra tienda" + }, + "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 los anuncios automáticamente" + }, + "change_slides_speed": { + "label": "Cambiar cada" + }, + "show_social": { + "label": "Íconos de redes sociales", + "info": "[Gestionar cuentas de redes sociales](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selector de país o región", + "info": "[Gestionar países o regiones](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selector de idioma", + "info": "[Gestionar idiomas](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Utilidades" + }, + "paragraph": { + "content": "Aparece solo en pantallas grandes" + } + }, + "presets": { + "name": "Barra de anuncios" + } + }, + "collage": { + "name": "Collage", + "settings": { + "heading": { + "label": "Título", + "default": "Collage multimedia" + }, + "desktop_layout": { + "label": "Diseño", + "options__1": { + "label": "Bloque grande primero" + }, + "options__2": { + "label": "Bloque grande último" + } + }, + "mobile_layout": { + "label": "Diseño para móviles", + "options__1": { + "label": "Collage" + }, + "options__2": { + "label": "Columna" + } + }, + "card_styles": { + "label": "Estilo de tarjeta", + "info": "Gestionar estilos de tarjetas individuales en [configuración de temas](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Usar estilos de tarjeta individuales" + }, + "options__2": { + "label": "Definir todos los estilos como tarjetas de producto" + } + }, + "header_layout": { + "content": "Diseño" + } + }, + "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)", + "default": "Describir el video" + } + } + } + }, + "presets": { + "name": "Collage" + } + }, + "collection-list": { + "name": "Lista de colecciones", + "settings": { + "title": { + "label": "Título", + "default": "Colecciones" + }, + "image_ratio": { + "label": "Relación de aspecto de imagen", + "options__1": { + "label": "Adaptar a la imagen" + }, + "options__2": { + "label": "Retrato" + }, + "options__3": { + "label": "Cuadrado" + } + }, + "swipe_on_mobile": { + "label": "Carrusel" + }, + "show_view_all": { + "label": "Botón \"Ver todo\"", + "info": "Visible si la lista tiene más colecciones que las que se muestran" + }, + "columns_desktop": { + "label": "Columnas" + }, + "header_mobile": { + "content": "Diseño móvil" + }, + "columns_mobile": { + "label": "Columnas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Diseño" + } + }, + "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" + }, + "settings": { + "title": { + "default": "Formulario de contacto", + "label": "Encabezado" + } + } + }, + "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", + "default": "Artículos del blog" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Publicar recuento" + }, + "show_view_all": { + "label": "Botón \"Ver todo\"", + "info": "Visible si el blog tiene más publicaciones de las que se muestran" + }, + "show_image": { + "label": "Imagen destacada" + }, + "show_date": { + "label": "Fecha" + }, + "show_author": { + "label": "Autor" + }, + "columns_desktop": { + "label": "Columnas" + }, + "layout_header": { + "content": "Diseño" + }, + "text_header": { + "content": "Texto" + } + }, + "presets": { + "name": "Artículos de blog" + } + }, + "featured-collection": { + "name": "Colección destacada", + "settings": { + "title": { + "label": "Título", + "default": "Colección destacada" + }, + "collection": { + "label": "Colección" + }, + "products_to_show": { + "label": "Recuento de productos" + }, + "show_view_all": { + "label": "Botón \"Ver todo\"", + "info": "Visible si la colección tiene más productos que 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": "Proveedor" + }, + "show_rating": { + "label": "Calificación del producto", + "info": "Se requiere una aplicación para las calificaciones. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "columns_desktop": { + "label": "Columnas" + }, + "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": "Carrusel" + }, + "full_width": { + "label": "Productos de ancho completo" + }, + "header_mobile": { + "content": "Diseño móvil" + }, + "columns_mobile": { + "label": "Columnas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carrusel" + }, + "enable_quick_buy": { + "label": "Agregado rápido" + }, + "header_text": { + "content": "Texto" + }, + "header_collection": { + "content": "Diseño de colección" + } + }, + "presets": { + "name": "Colección destacada" + } + }, + "footer": { + "name": "Pie de página", + "blocks": { + "link_list": { + "name": "Menú", + "settings": { + "heading": { + "label": "Encabezado", + "default": "Enlaces rápidos" + }, + "menu": { + "label": "Menú" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "heading": { + "label": "Encabezado", + "default": "Encabezado" + }, + "subtext": { + "label": "Subtexto", + "default": "Comparte la información de contacto, los detalles de la tienda y el contenido de la marca con tus clientes.
" + } + } + }, + "brand_information": { + "name": "Información de marca", + "settings": { + "paragraph": { + "content": "Gestionar información de marcas en [configuración de tema](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Íconos de redes sociales", + "info": "[Gestionar cuentas de redes sociales](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Suscriptor de correo electrónico" + }, + "newsletter_heading": { + "label": "Encabezado", + "default": "Suscribirse a nuestros correos electrónicos" + }, + "header__1": { + "content": "Suscriptor de correo electrónico", + "info": "Suscriptores agregados [perfiles de clientes](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Íconos de redes sociales", + "info": "[Gestionar cuentas de redes sociales](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selector de país o región", + "info": "[Gestionar países o regiones](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selector de idioma", + "info": "[Gestionar idiomas](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Íconos de forma de pago" + }, + "margin_top": { + "label": "Margen superior" + }, + "show_policy": { + "label": "Enlaces a las políticas", + "info": "[Gestionar políticas](/admin/settings/legal)" + }, + "header__9": { + "content": "Utilidades" + }, + "enable_follow_on_shop": { + "label": "Seguir en Shop", + "info": "Shop Pay debe estar activado. [Más información](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Encabezado", + "settings": { + "logo_position": { + "label": "Posición del logo", + "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": "Línea separadora" + }, + "margin_bottom": { + "label": "Margen inferior" + }, + "menu_type_desktop": { + "label": "Tipo de menú", + "options__1": { + "label": "Desplegable" + }, + "options__2": { + "label": "Mega menú" + }, + "options__3": { + "label": "Menú lateral" + } + }, + "mobile_logo_position": { + "label": "Posición del logo en dispositivo móvil", + "options__1": { + "label": "Centro" + }, + "options__2": { + "label": "Izquierda" + } + }, + "logo_help": { + "content": "Editar tu logo 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" + } + }, + "enable_country_selector": { + "label": "Selector de país o región", + "info": "[Gestionar países o regiones](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selector de idioma", + "info": "[Gestionar idiomas](/admin/settings/languages)" + }, + "header__1": { + "content": "Color" + }, + "menu_color_scheme": { + "label": "Esquema de colores del menú" + }, + "enable_customer_avatar": { + "label": "Avatar de cuenta de cliente", + "info": "Solo visible cuando los clientes iniciaron sesión con Shop. [Gestionar cuentas de clientes](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Utilidades" + } + } + }, + "image-banner": { + "name": "Banner de imagen", + "settings": { + "image": { + "label": "Imagen 1" + }, + "image_2": { + "label": "Imagen 2" + }, + "stack_images_on_mobile": { + "label": "Apilar imágenes" + }, + "show_text_box": { + "label": "Contenedor" + }, + "image_overlay_opacity": { + "label": "Opacidad de sobreposición" + }, + "show_text_below": { + "label": "Contenedor" + }, + "image_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar a la primera imagen" + }, + "options__2": { + "label": "Pequeño" + }, + "options__3": { + "label": "Mediano" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Alineación" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Alineación" + }, + "mobile": { + "content": "Diseño móvil" + }, + "content": { + "content": "Contenido" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Banner de imagen" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Ofrece a los clientes información sobre las imágenes del banner o el contenido de la plantilla." + }, + "text_style": { + "options__1": { + "label": "Cuerpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "options__3": { + "label": "Mayúscula" + }, + "label": "Estilo" + } + } + }, + "buttons": { + "name": "Botones", + "settings": { + "button_label_1": { + "label": "Etiqueta", + "info": "Dejar en blanco para ocultar", + "default": "Etiqueta de botón" + }, + "button_link_1": { + "label": "Enlace" + }, + "button_style_secondary_1": { + "label": "Estilo de contorno" + }, + "button_label_2": { + "label": "Etiqueta", + "info": "Dejar en blanco para ocultar", + "default": "Etiqueta de botón" + }, + "button_link_2": { + "label": "Enlace" + }, + "button_style_secondary_2": { + "label": "Estilo de contorno" + }, + "header_1": { + "content": "Botón 1" + }, + "header_2": { + "content": "Botón 2" + } + } + } + }, + "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", + "options__4": { + "label": "Grande" + } + }, + "layout": { + "options__1": { + "label": "Imagen primero" + }, + "options__2": { + "label": "Imagen segunda" + }, + "label": "Colocación" + }, + "desktop_image_width": { + "options__1": { + "label": "Pequeña" + }, + "options__2": { + "label": "Mediana" + }, + "options__3": { + "label": "Grande" + }, + "label": "Ancho" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centrado" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Alineación" + }, + "desktop_content_position": { + "options__1": { + "label": "Arriba" + }, + "options__2": { + "label": "Centrada" + }, + "options__3": { + "label": "Abajo" + }, + "label": "Posición" + }, + "content_layout": { + "options__1": { + "label": "Sin solapamiento" + }, + "options__2": { + "label": "Solapamiento" + }, + "label": "Diseño" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centrado" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Alineación móvil" + }, + "header": { + "content": "Contenido" + }, + "header_colors": { + "content": "Colores" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Imagen con texto" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Vincula un texto con una imagen para atraer la atención hacia tu producto, colección o artículo de blog seleccionados. Agrega detalles sobre disponibilidad y estilo, o incluso ofrece una reseña.
" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Cuerpo" + }, + "options__2": { + "label": "Subtítulo" + } + } + } + }, + "button": { + "name": "Botón", + "settings": { + "button_label": { + "label": "Etiqueta", + "info": "Dejar en blanco para ocultar", + "default": "Etiqueta de botón" + }, + "button_link": { + "label": "Enlace" + }, + "outline_button": { + "label": "Estilo de contorno" + } + } + }, + "caption": { + "name": "Leyenda", + "settings": { + "text": { + "label": "Texto", + "default": "Agregar un eslogan" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Subtítulo" + }, + "options__2": { + "label": "Mayúscula" + } + }, + "caption_size": { + "label": "Talla", + "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", + "options__1": { + "label": "Adaptar a la imagen" + }, + "options__2": { + "label": "Pequeña" + }, + "options__3": { + "label": "Mediana" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "title": { + "name": "Título", + "settings": { + "blog_show_date": { + "label": "Fecha" + }, + "blog_show_author": { + "label": "Autor" + } + } + }, + "content": { + "name": "Contenido" + }, + "share": { + "name": "Compartir", + "settings": { + "text": { + "label": "texto", + "default": "Compartir" + } + } + } + } + }, + "main-blog": { + "name": "Artículos de blog", + "settings": { + "show_image": { + "label": "Imagen destacada" + }, + "show_date": { + "label": "Fecha" + }, + "show_author": { + "label": "Autor" + }, + "layout": { + "label": "Diseño", + "options__1": { + "label": "Cuadrícula" + }, + "options__2": { + "label": "Collage" + } + }, + "image_height": { + "label": "Altura de imagen", + "options__1": { + "label": "Adaptar a la imagen" + }, + "options__2": { + "label": "Pequeña" + }, + "options__3": { + "label": "Mediana" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "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": "La información de la colección se [gestiona en tu panel de control](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Descripción" + }, + "show_collection_image": { + "label": "Imagen" + } + } + }, + "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": "Proveedor" + }, + "enable_tags": { + "label": "Filtros", + "info": "Personalizar los filtros con la [aplicación Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filtros", + "info": "Personalizar los filtros con la [aplicación Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Ordenación" + }, + "header__1": { + "content": "Filtrado y ordenado" + }, + "header__3": { + "content": "Tarjeta de producto" + }, + "show_rating": { + "label": "Calificación del producto", + "info": "Se requiere una aplicación para las calificaciones de productos. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Columnas" + }, + "columns_mobile": { + "label": "Columnas móviles", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Diseño de filtro", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + }, + "options__3": { + "label": "Cajón" + } + }, + "quick_add": { + "label": "Agregado rápido", + "options": { + "option_1": "Ninguno", + "option_2": "Estándar", + "option_3": "Masivo" + } + } + } + }, + "main-list-collections": { + "name": "Página de lista de colecciones", + "settings": { + "title": { + "label": "Título", + "default": "Colecciones" + }, + "sort": { + "label": "Ordenar colecciones", + "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" + } + }, + "columns_desktop": { + "label": "Columnas" + }, + "header_mobile": { + "content": "Diseño móvil" + }, + "columns_mobile": { + "label": "Columnas móviles", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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_help": { + "content": "Editar tu logo en [configuración del tema](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Información de producto", + "blocks": { + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Bloque de texto" + }, + "text_style": { + "label": "Estilo", + "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": "Estilo", + "options__1": { + "label": "Desplegable" + }, + "options__2": { + "label": "Miniaturas" + } + }, + "swatch_shape": { + "label": "Muestra", + "info": "Obtén más información acerca de las [muestras](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) en las opciones de producto", + "options__1": { + "label": "Círculo" + }, + "options__2": { + "label": "Cuadrado" + }, + "options__3": { + "label": "Ninguna" + } + } + } + }, + "buy_buttons": { + "name": "Botones de compras", + "settings": { + "show_dynamic_checkout": { + "label": "Botones de pago dinámico", + "info": "Los clientes verán su opción de pago preferida. [Más información](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Opciones de envío de tarjeta de regalo", + "info": "Los clientes pueden agregar un mensaje personal y programar la fecha de envío. [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": { + "text": { + "label": "texto", + "default": "Compartir" + } + } + }, + "collapsible_tab": { + "name": "Fila desplegable", + "settings": { + "heading": { + "label": "Título", + "default": "Fila desplegable" + }, + "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", + "default": "Texto del enlace emergente" + }, + "page": { + "label": "Página" + } + } + }, + "rating": { + "name": "Calificación de los productos", + "settings": { + "paragraph": { + "content": "Se requiere una aplicación para las calificaciones de productos. [Más información](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Productos complementarios", + "settings": { + "paragraph": { + "content": "Gestionar productos complementarios en la [aplicación Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Encabezado", + "default": "Combina bien con" + }, + "make_collapsible_row": { + "label": "Fila desplegable" + }, + "icon": { + "info": "Se muestra cuando se selecciona una fila desplegable" + }, + "product_list_limit": { + "label": "Recuento de productos" + }, + "products_per_page": { + "label": "Productos por página" + }, + "pagination_style": { + "label": "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": "Agregado rápido" + } + } + }, + "icon_with_text": { + "name": "Ícono con texto", + "settings": { + "layout": { + "label": "Diseño", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + } + }, + "heading": { + "info": "Dejar en blanco para ocultar este emparejamiento" + }, + "icon_1": { + "label": "Ícono" + }, + "image_1": { + "label": "Imagen" + }, + "heading_1": { + "label": "Encabezado", + "default": "Encabezado" + }, + "icon_2": { + "label": "Ícono" + }, + "image_2": { + "label": "Imagen" + }, + "heading_2": { + "label": "Encabezado", + "default": "Encabezado" + }, + "icon_3": { + "label": "Ícono" + }, + "image_3": { + "label": "Imagen" + }, + "heading_3": { + "label": "Encabezado", + "default": "Encabezado" + }, + "pairing_1": { + "label": "Emparejamiento 1", + "info": "Elegir un ícono o agregar una imagen para cada emparejamiento" + }, + "pairing_2": { + "label": "Emparejamiento 2" + }, + "pairing_3": { + "label": "Emparejamiento 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Recuento de inventario" + } + } + } + }, + "settings": { + "header": { + "content": "Multimedia" + }, + "enable_video_looping": { + "label": "Video en bucle" + }, + "enable_sticky_info": { + "label": "Contenido fijo" + }, + "hide_variants": { + "label": "Ocultar otros elementos multimedia de variante después de que se selecciona uno" + }, + "gallery_layout": { + "label": "Diseño", + "options__1": { + "label": "Apilado" + }, + "options__2": { + "label": "Dos columnas" + }, + "options__3": { + "label": "Miniaturas" + }, + "options__4": { + "label": "Carrusel de miniaturas" + } + }, + "media_size": { + "label": "Ancho", + "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", + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Derecha" + } + }, + "image_zoom": { + "label": "Ampliar", + "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 a la altura de la pantalla" + }, + "media_fit": { + "label": "Ajustar", + "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": "Proveedor" + }, + "header__1": { + "content": "Tarjeta de producto" + }, + "header__2": { + "content": "Tarjeta de blog" + }, + "article_show_date": { + "label": "Fecha" + }, + "article_show_author": { + "label": "Autor" + }, + "show_rating": { + "label": "Calificación del producto", + "info": "Se requiere una aplicación para las calificaciones de productos. [Más información](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Columnas" + }, + "columns_mobile": { + "label": "Columnas móviles", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Multicolumna", + "settings": { + "title": { + "label": "Título", + "default": "Varias columnas" + }, + "image_width": { + "label": "Ancho", + "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": "Proporción", + "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", + "default": "Etiqueta de botón", + "info": "Dejar en blanco para ocultar" + }, + "button_link": { + "label": "Enlace" + }, + "swipe_on_mobile": { + "label": "Carrusel" + }, + "columns_desktop": { + "label": "Columnas" + }, + "header_mobile": { + "content": "Diseño móvil" + }, + "columns_mobile": { + "label": "Columnas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Encabezado" + }, + "header_image": { + "content": "Imagen" + }, + "header_layout": { + "content": "Diseño" + }, + "header_button": { + "content": "Botón" + } + }, + "blocks": { + "column": { + "name": "Columna", + "settings": { + "image": { + "label": "Imagen" + }, + "title": { + "label": "Título", + "default": "Columna" + }, + "text": { + "label": "Descripción", + "default": "Vincula un texto con una imagen para atraer la atención hacia tu producto, colección o artículo de blog seleccionados. Agrega detalles sobre disponibilidad y estilo, o incluso ofrece una reseña.
" + }, + "link_label": { + "label": "Vincular etiqueta", + "info": "Dejar en blanco para ocultar" + }, + "link": { + "label": "Enlace" + } + } + } + }, + "presets": { + "name": "Multicolumna" + } + }, + "newsletter": { + "name": "Suscriptor de correo electrónico", + "settings": { + "full_width": { + "label": "Ancho completo" + }, + "paragraph": { + "content": "Suscriptores agregados [perfiles de clientes](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Suscribirse a nuestros correos electrónicos" + } + } + }, + "paragraph": { + "name": "Texto", + "settings": { + "paragraph": { + "label": "Texto", + "default": "Conoce las nuevas colecciones y las ofertas exclusivas antes que nadie.
" + } + } + }, + "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": "Ancho completo" + }, + "desktop_content_position": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centrado" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Posición de contenido" + }, + "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", + "default": "Coméntanos sobre tu marca" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Comparte información sobre tu marca con los clientes. Describe un producto, comparte anuncios o da la bienvenida a los clientes a tu tienda.
" + } + } + }, + "buttons": { + "name": "Botones", + "settings": { + "button_label_1": { + "label": "Etiqueta", + "info": "Dejar en blanco para ocultar", + "default": "Etiqueta de botón" + }, + "button_link_1": { + "label": "Enlace" + }, + "button_style_secondary_1": { + "label": "Estilo de contorno" + }, + "button_label_2": { + "label": "Etiqueta", + "info": "Deja la etiqueta en blanco para ocultar" + }, + "button_link_2": { + "label": "Enlace" + }, + "button_style_secondary_2": { + "label": "Estilo de contorno" + }, + "header_button1": { + "content": "Botón 1" + }, + "header_button2": { + "content": "Botón 2" + } + } + }, + "caption": { + "name": "Leyenda", + "settings": { + "text": { + "label": "Texto", + "default": "Agregar un eslogan" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Subtítulo" + }, + "options__2": { + "label": "Mayúscula" + } + }, + "caption_size": { + "label": "Talla", + "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", + "default": "Video" + }, + "cover_image": { + "label": "Imagen de portada" + }, + "video_url": { + "label": "URL", + "info": "Usar URL de YouTube o Vimeo" + }, + "description": { + "label": "Texto alternativo del video", + "info": "Describir el video para quienes usan lectores de pantalla" + }, + "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": "Ancho completo" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Video en bucle" + }, + "header__1": { + "content": "Video alojado en Shopify" + }, + "header__2": { + "content": "O incrustar video a partir de una URL" + }, + "header__3": { + "content": "Diseño" + }, + "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", + "default": "Bloque de texto" + }, + "text_style": { + "label": "Estilo", + "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": "Estilo", + "options__1": { + "label": "Desplegable" + }, + "options__2": { + "label": "Botones" + } + }, + "swatch_shape": { + "label": "Muestra", + "info": "Obtén más información acerca de las [muestras](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) en las opciones de producto", + "options__1": { + "label": "Círculo" + }, + "options__2": { + "label": "Cuadrado" + }, + "options__3": { + "label": "Ninguna" + } + } + } + }, + "buy_buttons": { + "name": "Botones de compras", + "settings": { + "show_dynamic_checkout": { + "label": "Botones de pago dinámico", + "info": "Los clientes verán su opción de pago preferida. [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", + "default": "Compartir" + } + } + }, + "rating": { + "name": "Calificación de productos", + "settings": { + "paragraph": { + "content": "Se requiere una aplicación para las calificaciones de 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": "Fondo secundario" + }, + "header": { + "content": "Multimedia" + }, + "enable_video_looping": { + "label": "Video en bucle" + }, + "hide_variants": { + "label": "Ocultar elementos multimedia de variantes no seleccionadas en el escritorio" + }, + "media_position": { + "label": "Posición", + "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": "Suscriptores agregados [perfiles de clientes](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Imagen de fondo" + }, + "show_background_image": { + "label": "Mostrar imagen de fondo" + }, + "show_text_box": { + "label": "Contenedor" + }, + "image_overlay_opacity": { + "label": "Opacidad de sobreposición" + }, + "show_text_below": { + "label": "Apilar el texto debajo de la imagen" + }, + "image_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar a la imagen" + }, + "options__2": { + "label": "Pequeña" + }, + "options__3": { + "label": "Mediana" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Alineación" + }, + "header": { + "content": "Diseño móvil" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Derecha" + }, + "label": "Alineación" + }, + "color_scheme": { + "info": "Visible cuando se muestre el contenedor." + }, + "content_header": { + "content": "Contenido" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Apertura próximamente" + } + } + }, + "paragraph": { + "name": "Texto", + "settings": { + "paragraph": { + "label": "Texto", + "default": "Entérate de nuestros lanzamientos antes que los demás.
" + }, + "text_style": { + "options__1": { + "label": "Cuerpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "label": "Estilo" + } + } + }, + "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": "Página" + } + }, + "slide_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar a la primera imagen" + }, + "options__2": { + "label": "Pequeña" + }, + "options__3": { + "label": "Mediana" + }, + "options__4": { + "label": "Grande" + } + }, + "slider_visual": { + "label": "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": "Apilar el texto debajo de la imagen" + }, + "accessibility": { + "content": "Accesibilidad", + "label": "Descripción de la presentación de diapositivas", + "info": "Describir la presentación de diapositivas para quienes usan lectores de pantalla", + "default": "Presentación de diapositivas sobre tu marca" + } + }, + "blocks": { + "slide": { + "name": "Diapositiva", + "settings": { + "image": { + "label": "Imagen" + }, + "heading": { + "label": "Título", + "default": "Diapositiva de imagen" + }, + "subheading": { + "label": "Subtítulo", + "default": "Cuenta la historia de tu marca a través de imágenes" + }, + "button_label": { + "label": "Etiqueta", + "info": "Dejar en blanco para ocultar", + "default": "Etiqueta de botón" + }, + "link": { + "label": "Enlace" + }, + "secondary_style": { + "label": "Estilo de contorno" + }, + "box_align": { + "label": "Posición de contenido", + "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" + } + }, + "show_text_box": { + "label": "Contenedor" + }, + "text_alignment": { + "label": "Alineación de contenido", + "option_1": { + "label": "Izquierda" + }, + "option_2": { + "label": "Centrado" + }, + "option_3": { + "label": "Derecha" + } + }, + "image_overlay_opacity": { + "label": "Opacidad de sobreposición" + }, + "text_alignment_mobile": { + "label": "Alineación del contenido en dispositivos móviles", + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centrado" + }, + "options__3": { + "label": "Derecha" + } + }, + "header_button": { + "content": "Botón" + }, + "header_layout": { + "content": "Diseño" + }, + "header_text": { + "content": "Texto" + }, + "header_colors": { + "content": "Colores" + } + } + } + }, + "presets": { + "name": "Presentación de diapositivas" + } + }, + "collapsible_content": { + "name": "Contenido desplegable", + "settings": { + "caption": { + "label": "Leyenda" + }, + "heading": { + "label": "Encabezado", + "default": "Contenido desplegable" + }, + "heading_alignment": { + "label": "Alineación del encabezado", + "options__1": { + "label": "Izquierda" + }, + "options__2": { + "label": "Centrado" + }, + "options__3": { + "label": "Derecha" + } + }, + "layout": { + "label": "Contenedor", + "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" + }, + "open_first_collapsible_row": { + "label": "Abrir la primera fila" + }, + "header": { + "content": "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": "Colocación", + "options__1": { + "label": "Imagen primero" + }, + "options__2": { + "label": "Imagen de segundo" + } + }, + "layout_header": { + "content": "Diseño" + }, + "section_color_scheme": { + "label": "Esquema de colores para la sección" + } + }, + "blocks": { + "collapsible_row": { + "name": "Fila desplegable", + "settings": { + "heading": { + "label": "Encabezado", + "default": "Fila desplegable" + }, + "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", + "shop_login_button": { + "enable": "Habilitar Iniciar sesión con Shop" + } + }, + "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": "Recuento de productos" + }, + "columns_desktop": { + "label": "Columnas" + }, + "paragraph__1": { + "content": "Los productos relacionados se pueden gestionar en la [aplicación Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "También te puede interesar" + }, + "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": "Proveedor" + }, + "show_rating": { + "label": "Calificación del producto", + "info": "Se requiere una aplicación para las calificaciones de productos. [Más información](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Columnas móviles", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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" + }, + "desktop_image_width": { + "options__1": { + "label": "Pequeña" + }, + "options__2": { + "label": "Mediana" + }, + "options__3": { + "label": "Grande" + }, + "label": "Ancho" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Arriba" + }, + "options__2": { + "label": "Centrado" + }, + "options__3": { + "label": "Abajo" + }, + "label": "Posición" + }, + "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": "Colocación" + }, + "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 móvil" + }, + "header": { + "content": "Imagen" + }, + "header_2": { + "content": "Contenido" + }, + "header_3": { + "content": "Colores" + } + }, + "blocks": { + "row": { + "name": "Fila", + "settings": { + "image": { + "label": "Imagen" + }, + "caption": { + "label": "Leyenda", + "default": "Leyenda" + }, + "heading": { + "label": "Encabezado", + "default": "Fila" + }, + "text": { + "label": "Texto", + "default": "Vincula un texto con una imagen para atraer la atención hacia tu producto, colección o artículo de blog seleccionados. Agrega detalles sobre disponibilidad y estilo, o incluso ofrece una reseña.
" + }, + "button_label": { + "label": "Etiqueta de botón", + "default": "Etiqueta de botón", + "info": "Dejar en blanco para ocultar" + }, + "button_link": { + "label": "Enlace de botón" + } + } + } + }, + "presets": { + "name": "Varias filas" + } + }, + "quick-order-list": { + "name": "Lista de pedidos rápidos", + "settings": { + "show_image": { + "label": "Imágenes" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "Variantes por página" + } + }, + "presets": { + "name": "Lista de pedidos rápidos" + } + } + } +} diff --git a/locales/fi.json b/locales/fi.json new file mode 100644 index 0000000..759050e --- /dev/null +++ b/locales/fi.json @@ -0,0 +1,530 @@ +{ + "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": "Jaa X:ssä", + "share_on_pinterest": "Pinnaa Pinterestissä" + }, + "links": { + "twitter": "X (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", + "min_of": "Väh. {{ quantity }}", + "max_of": "Enint. {{ quantity }}", + "in_cart_aria_label": "Määrä ({{ quantity }} ostoskorissa)" + }, + "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ä" + }, + "nested_label": "{{ title }} – {{ parent_title }}", + "view_full_details": "Näytä kaikki tiedot", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "{{ price }}/kpl" + }, + "product_variants": "Tuoteversiot", + "taxes_included": "Sisältää verot.", + "duties_included": "Sisältää tullit.", + "duties_and_taxes_included": "Sisältää tullit ja verot." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Sisältää tullit ja verot. Alennukset ja toimituskulut lasketaan kassalla.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Sisältää tullit ja verot. Alennukset ja toimituskulut lasketaan kassalla.", + "taxes_included_shipping_at_checkout_with_policy_html": "Sisältää verot. Alennukset ja toimituskulut lasketaan kassalla.", + "taxes_included_shipping_at_checkout_without_policy": "Sisältää verot. Alennukset ja toimituskulut lasketaan kassalla.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Sisältää tullit. Verot, alennukset ja toimituskulut lasketaan kassalla.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Sisältää tullit. Verot, alennukset ja toimituskulut lasketaan kassalla.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Verot, alennukset ja toimituskulut lasketaan kassalla.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Verot, alennukset ja toimituskulut lasketaan kassalla." + }, + "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", + "remove_all_single_item_confirmation": "Poistetaanko 1 tuote ostoskorista?", + "min_error": "Tämän tuotteen vähimmäisarvo on {{ min }}", + "max_error": "Tämän tuotteen enimmäisarvo on {{ max }}", + "step_error": "Voit lisätä tätä tuotetta vain {{ step }}:n lisäyksinä" + } + }, + "localization": { + "country_label": "Maa/alue", + "language_label": "Kieli", + "update_language": "Päivitä kieli", + "update_country": "Päivitä maa/alue", + "search": "Hae", + "popular_countries_regions": "Suositut maat/alueet", + "country_results_count": "{{ count }} maata/aluetta löytyi" + }, + "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ä", + "alternate_provider_separator": "tai" + }, + "orders": { + "title": "Tilaushistoria", + "order_number": "Tilaus", + "order_number_link": "Tilausnumero {{ number }}", + "date": "Päivämäärä", + "payment_status": "Maksun tila", + "fulfillment_status": "Tilauksen täyttämisen 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": "Tilauksen täyttämisen 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..7e613ac --- /dev/null +++ b/locales/fi.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Otsikot" + }, + "header__2": { + "content": "Leipäteksti" + }, + "type_body_font": { + "label": "Fontti" + }, + "heading_scale": { + "label": "Skaalaa" + }, + "body_scale": { + "label": "Skaalaa" + } + } + }, + "social-media": { + "name": "Sosiaalinen media", + "settings": { + "social_twitter_link": { + "label": "X (Twitter)", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Valuuttakoodit" + }, + "paragraph": "Ostoskorin ja kassan hinnat näyttävät aina valuuttakoodit" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Hakuehdotukset" + }, + "predictive_search_show_vendor": { + "label": "Tuotteen myyjä", + "info": "Näytetään, kun hakuehdotukset ovat käytössä" + }, + "predictive_search_show_price": { + "label": "Tuotteen hinta", + "info": "Näytetään, 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": "Versiokuvakkeet ovat yksi tapa näyttää [tuoteversiot](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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": "Tyyppi", + "drawer": { + "label": "Laatikko" + }, + "page": { + "label": "Sivu" + }, + "notification": { + "label": "Ponnahdusikkunailmoitukset" + } + }, + "show_vendor": { + "label": "Myyjä" + }, + "show_cart_note": { + "label": "Tilauskommentti" + }, + "cart_drawer": { + "header": "Veto-ostoskori", + "collection": { + "label": "Kokoelma", + "info": "Näytetään, 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": "Leveys" + }, + "favicon": { + "label": "Favicon", + "info": "Näytetään koossa 32 x 32px" + } + } + }, + "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": "Näytetään alatunnisteen bränditietolohkossa" + } + } + }, + "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": "Puskuri", + "padding_top": "Yläreuna", + "padding_bottom": "Alareuna" + }, + "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" + }, + "options__5": { + "label": "XXL" + } + }, + "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" + }, + "animation": { + "content": "Animaatiot", + "image_behavior": { + "options__1": { + "label": "Ei mitään" + }, + "options__2": { + "label": "Ympäristön liike" + }, + "label": "Animaatio", + "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", + "default": "Tervetuloa kauppaamme" + }, + "text_alignment": { + "label": "Tekstin tasaus", + "options__1": { + "label": "Vasen" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikea" + } + }, + "link": { + "label": "Linkki" + } + } + } + }, + "settings": { + "auto_rotate": { + "label": "Käännä ilmoitukset automaattisesti" + }, + "change_slides_speed": { + "label": "Vaihda joka" + }, + "show_social": { + "label": "Somekuvakkeet", + "info": "[Hallinnoi sometilejä](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Maa-/aluevalitsin", + "info": "[Hallinnoi maita/alueita](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Kielivalitsin", + "info": "[Hallinnoi kieliä](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Apuohjelmat" + }, + "paragraph": { + "content": "Näytetään vain suurilla näytöillä" + } + }, + "presets": { + "name": "Ilmoituspalkki" + } + }, + "collage": { + "name": "Kollaasi", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Multimediakollaasi" + }, + "desktop_layout": { + "label": "Asettelu", + "options__1": { + "label": "Suuri lohko ensimmäisenä" + }, + "options__2": { + "label": "Suuri lohko viimeisenä" + } + }, + "mobile_layout": { + "label": "Mobiiliasettelu", + "options__1": { + "label": "Kollaasi" + }, + "options__2": { + "label": "Sarake" + } + }, + "card_styles": { + "label": "Kortin tyyli", + "info": "Hallinnoi yksittäisiä korttityylejä [teema-asetuksissa](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Käytä yksittäisiä korttityylejä" + }, + "options__2": { + "label": "Muuta kaikki tuotekorteiksi" + } + }, + "header_layout": { + "content": "Asettelu" + } + }, + "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)", + "default": "Kuvaile videota" + } + } + } + }, + "presets": { + "name": "Kollaasi" + } + }, + "collection-list": { + "name": "Kokoelmaluettelo", + "settings": { + "title": { + "label": "Otsikko", + "default": "Kokoelmat" + }, + "image_ratio": { + "label": "Kuvasuhde", + "options__1": { + "label": "Sovita kuvaan" + }, + "options__2": { + "label": "Muotokuva" + }, + "options__3": { + "label": "Neliö" + } + }, + "swipe_on_mobile": { + "label": "Karuselli" + }, + "show_view_all": { + "label": "Näytä kaikki ‑painike", + "info": "Näkyvissä, jos luettelossa on näytettyä enemmän kokoelmia" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "header_mobile": { + "content": "Mobiiliasettelu" + }, + "columns_mobile": { + "label": "Sarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Asettelu" + } + }, + "blocks": { + "featured_collection": { + "name": "Kokoelma", + "settings": { + "collection": { + "label": "Kokoelma" + } + } + } + }, + "presets": { + "name": "Kokoelmaluettelo" + } + }, + "contact-form": { + "name": "Yhteydenottolomake", + "presets": { + "name": "Yhteydenottolomake" + }, + "settings": { + "title": { + "default": "Yhteydenottolomake", + "label": "Otsikko" + } + } + }, + "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", + "default": "Blogipostaukset" + }, + "blog": { + "label": "Blogi" + }, + "post_limit": { + "label": "Postausten määrä" + }, + "show_view_all": { + "label": "Näytä kaikki ‑painike", + "info": "Näkyvissä, jos blogissa on näytettyä enemmän postauksia" + }, + "show_image": { + "label": "Esittelykuva" + }, + "show_date": { + "label": "Päivämäärä" + }, + "show_author": { + "label": "Tekijä" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "layout_header": { + "content": "Asettelu" + }, + "text_header": { + "content": "Teksti" + } + }, + "presets": { + "name": "Blogipostaukset" + } + }, + "featured-collection": { + "name": "Esittelykokoelma", + "settings": { + "title": { + "label": "Otsikko", + "default": "Esittelykokoelma" + }, + "collection": { + "label": "Kokoelma" + }, + "products_to_show": { + "label": "Tuotemäärä" + }, + "show_view_all": { + "label": "Näytä kaikki ‑painike", + "info": "Näkyvissä, jos kokoelmassa on näytettyä enemmän tuotteita" + }, + "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": "Myyjä" + }, + "show_rating": { + "label": "Tuotearvio", + "info": "Arviot edellyttävät sovellusta. [Lue lisää:](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "description": { + "label": "Kuvaus" + }, + "show_description": { + "label": "Näytä kokoelman kuvaus Administa" + }, + "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": "Karuselli" + }, + "full_width": { + "label": "Täyden leveyden tuotteet" + }, + "header_mobile": { + "content": "Mobiiliasettelu" + }, + "columns_mobile": { + "label": "Sarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Karuselli" + }, + "enable_quick_buy": { + "label": "Pikalisäys" + }, + "header_text": { + "content": "Teksti" + }, + "header_collection": { + "content": "Kokoelma-asettelu" + } + }, + "presets": { + "name": "Esittelykokoelma" + } + }, + "footer": { + "name": "Alatunniste", + "blocks": { + "link_list": { + "name": "Valikko", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Pikalinkit" + }, + "menu": { + "label": "Valikko" + } + } + }, + "text": { + "name": "Teksti", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Otsikko" + }, + "subtext": { + "label": "Alateksti", + "default": "Jaa asiakkaillesi yhteystiedot, kaupan tiedot ja brändin sisältöä.
" + } + } + }, + "brand_information": { + "name": "Bränditiedot", + "settings": { + "paragraph": { + "content": "Hallinnoi bränditietoja [teema-asetuksissa](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Somekuvakkeet", + "info": "[Hallinnoi sometilejä](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Sähköpostirekisteröityminen" + }, + "newsletter_heading": { + "label": "Otsikko", + "default": "Tilaa sähköpostiviestejämme" + }, + "header__1": { + "content": "Sähköpostirekisteröityminen", + "info": "Rekisteröitymiset lisäävät [asiakasprofiilit](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Somekuvakkeet", + "info": "[Hallinnoi sometilejä](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Maa-/aluevalitsin", + "info": "[Hallinnoi maita/alueita](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Kielivalitsin", + "info": "[Hallinnoi kieliä](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Maksutapakuvakkeet" + }, + "margin_top": { + "label": "Yläreunus" + }, + "show_policy": { + "label": "Käytäntöjen linkit", + "info": "[Hallinnoi käytäntöjä](/admin/settings/legal)" + }, + "header__9": { + "content": "Apuohjelmat" + }, + "enable_follow_on_shop": { + "label": "Seuraa Shopissa", + "info": "Shop Payn täytyy olla käytössä [Lue lisää:](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Ylätunniste", + "settings": { + "logo_position": { + "label": "Logon sijainti", + "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": "Erotinviiva" + }, + "margin_bottom": { + "label": "Alareunus" + }, + "menu_type_desktop": { + "label": "Valikkotyyppi", + "options__1": { + "label": "Pudotusvalikko" + }, + "options__2": { + "label": "Mega-valikko" + }, + "options__3": { + "label": "Laatikko" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Maa-/aluevalitsin", + "info": "[Hallinnoi maita/alueita](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Kielivalitsin", + "info": "[Hallinnoi kieliä](/admin/settings/languages)" + }, + "header__1": { + "content": "Väri" + }, + "menu_color_scheme": { + "label": "Värimallivalikko" + }, + "enable_customer_avatar": { + "label": "Asiakastilin avatar", + "info": "Näkyvissä vain, kun asiakkaat ovat kirjautuneet Shopiin. [Hallinnoi asiakastilejä](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Apuohjelmat" + } + } + }, + "image-banner": { + "name": "Kuvabanneri", + "settings": { + "image": { + "label": "Kuva 1" + }, + "image_2": { + "label": "Kuva 2" + }, + "stack_images_on_mobile": { + "label": "Pinoa kuvat" + }, + "show_text_box": { + "label": "Säiliö" + }, + "image_overlay_opacity": { + "label": "Peittokuvan läpikuultavuus" + }, + "show_text_below": { + "label": "Säiliö" + }, + "image_height": { + "label": "Korkeus", + "options__1": { + "label": "Mukauta ensimmäisen kuvan mukaan" + }, + "options__2": { + "label": "Pieni" + }, + "options__3": { + "label": "Keskisuuri" + }, + "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": "Sijainti" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Vasemmalla" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikealla" + }, + "label": "Tasaus" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Vasemmalla" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikealla" + }, + "label": "Tasaus" + }, + "mobile": { + "content": "Mobiiliasettelu" + }, + "content": { + "content": "Sisältö" + } + }, + "blocks": { + "heading": { + "name": "Otsikko", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Kuvabanneri" + } + } + }, + "text": { + "name": "Teksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Anna asiakkaille tietoa bannerin kuvista tai sisällöstä mallissa." + }, + "text_style": { + "options__1": { + "label": "Leipäteksti" + }, + "options__2": { + "label": "Alaotsikko" + }, + "options__3": { + "label": "Isot kirjaimet" + }, + "label": "Tyyli" + } + } + }, + "buttons": { + "name": "Painikkeet", + "settings": { + "button_label_1": { + "label": "Merkintä", + "info": "Jos haluat piilottaa, jätä tyhjäksi", + "default": "Tekstipainike" + }, + "button_link_1": { + "label": "Linkki" + }, + "button_style_secondary_1": { + "label": "Ääriviivatyyli" + }, + "button_label_2": { + "label": "Merkintä", + "info": "Jos haluat piilottaa, jätä tyhjäksi", + "default": "Tekstipainike" + }, + "button_link_2": { + "label": "Linkki" + }, + "button_style_secondary_2": { + "label": "Ääriviivatyyli" + }, + "header_1": { + "content": "Painike 1" + }, + "header_2": { + "content": "Painike 2" + } + } + } + }, + "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": "Korkeus", + "options__4": { + "label": "Suuri" + } + }, + "layout": { + "options__1": { + "label": "Kuva ensin" + }, + "options__2": { + "label": "Toinen kuva" + }, + "label": "Sijoitus" + }, + "desktop_image_width": { + "options__1": { + "label": "Pieni" + }, + "options__2": { + "label": "Keskisuuri" + }, + "options__3": { + "label": "Suuri" + }, + "label": "Leveys" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Vasemmalla" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikealla" + }, + "label": "Tasaus" + }, + "desktop_content_position": { + "options__1": { + "label": "Ylös" + }, + "options__2": { + "label": "Keskelle" + }, + "options__3": { + "label": "Alas" + }, + "label": "Sijainti" + }, + "content_layout": { + "options__1": { + "label": "Ei päällekkäisyyksiä" + }, + "options__2": { + "label": "Päällekkäisyys" + }, + "label": "Asettelu" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Vasemmalla" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikealla" + }, + "label": "Mobiilitasaus" + }, + "header": { + "content": "Sisältö" + }, + "header_colors": { + "content": "Värit" + } + }, + "blocks": { + "heading": { + "name": "Otsikko", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Kuva tekstillä" + } + } + }, + "text": { + "name": "Teksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Korosta valitsemaasi tuotetta, kokoelmaa tai blogipostausta lisäämällä kuvaan teksti. Lisää tietoa saatavuudesta tai tyylistä tai näytä vaikkapa arvostelu.
" + }, + "text_style": { + "label": "Tyyli", + "options__1": { + "label": "Leipäteksti" + }, + "options__2": { + "label": "Alaotsikko" + } + } + } + }, + "button": { + "name": "Painike", + "settings": { + "button_label": { + "label": "Merkintä", + "info": "Jos haluat piilottaa, jätä tyhjäksi", + "default": "Tekstipainike" + }, + "button_link": { + "label": "Linkki" + }, + "outline_button": { + "label": "Ääriviivatyyli" + } + } + }, + "caption": { + "name": "Kuvateksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Lisää iskulause" + }, + "text_style": { + "label": "Tyyli", + "options__1": { + "label": "Alaotsikko" + }, + "options__2": { + "label": "Isot kirjaimet" + } + }, + "caption_size": { + "label": "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": "Kuvan korkeus", + "options__1": { + "label": "Sovita kuvaan" + }, + "options__2": { + "label": "Pieni" + }, + "options__3": { + "label": "Keskisuuri" + }, + "options__4": { + "label": "Suuri" + } + } + } + }, + "title": { + "name": "Otsikko", + "settings": { + "blog_show_date": { + "label": "Päivämäärä" + }, + "blog_show_author": { + "label": "Tekijä" + } + } + }, + "content": { + "name": "Sisältö" + }, + "share": { + "name": "Jaa", + "settings": { + "text": { + "label": "Teksti", + "default": "Jaa" + } + } + } + } + }, + "main-blog": { + "name": "Blogipostaukset", + "settings": { + "show_image": { + "label": "Esittelykuva" + }, + "show_date": { + "label": "Päivämäärä" + }, + "show_author": { + "label": "Tekijä" + }, + "layout": { + "label": "Asettelu", + "options__1": { + "label": "Ruudukko" + }, + "options__2": { + "label": "Kollaasi" + } + }, + "image_height": { + "label": "Kuvan korkeus", + "options__1": { + "label": "Sovita kuvaan" + }, + "options__2": { + "label": "Pieni" + }, + "options__3": { + "label": "Keskisuuri" + }, + "options__4": { + "label": "Suuri" + } + } + } + }, + "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": "Kokoelman tietoja [hallinnoidaan Adminissa](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Kuvaus" + }, + "show_collection_image": { + "label": "Kuva" + } + } + }, + "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": "Myyjä" + }, + "enable_tags": { + "label": "Suodattimet", + "info": "Mukauta suodattimia [Search & Discovery ‑sovelluksella](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Suodattimet", + "info": "Mukauta suodattimia [Search & Discovery ‑sovelluksella](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Lajittelu" + }, + "header__1": { + "content": "Suodatus ja lajittelu" + }, + "header__3": { + "content": "Tuotekortti" + }, + "show_rating": { + "label": "Tuotearvio", + "info": "Tuotearviot edellyttävät sovellusta. [Lue lisää:](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "columns_mobile": { + "label": "Mobiilisarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Suodatinasettelu", + "options__1": { + "label": "Vaaka" + }, + "options__2": { + "label": "Pysty" + }, + "options__3": { + "label": "Laatikko" + } + }, + "quick_add": { + "label": "Pikalisäys", + "options": { + "option_1": "Ei ole", + "option_2": "Vakio", + "option_3": "Erä" + } + } + } + }, + "main-list-collections": { + "name": "Kokoelmaluettelosivu", + "settings": { + "title": { + "label": "Otsikko", + "default": "Kokoelmat" + }, + "sort": { + "label": "Lajittele kokoelmat", + "options__1": { + "label": "Aakkosjärjestyksessä A–Ö" + }, + "options__2": { + "label": "Aakkosjärjestyksessä Ö–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ö" + } + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "header_mobile": { + "content": "Mobiiliasettelu" + }, + "columns_mobile": { + "label": "Mobiilisarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Sivu" + }, + "main-password-footer": { + "name": "Salasana-alatunniste" + }, + "main-password-header": { + "name": "Salasanaylätunniste", + "settings": { + "logo_help": { + "content": "Muokkaa logoa [teeman asetuksissa](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "blocks": { + "text": { + "name": "Teksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Tekstilohko" + }, + "text_style": { + "label": "Tyyli", + "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": "Tyyli", + "options__1": { + "label": "Pudotusvalikko" + }, + "options__2": { + "label": "Pillerit" + } + }, + "swatch_shape": { + "label": "Väriruutu", + "info": "Lue lisää tuotevaihtoehtojen [väriruuduista](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)", + "options__1": { + "label": "Ympyrä" + }, + "options__2": { + "label": "Neliö" + }, + "options__3": { + "label": "Ei mitään" + } + } + } + }, + "buy_buttons": { + "name": "Osta-painikkeet", + "settings": { + "show_dynamic_checkout": { + "label": "Dynaamiset kassapainikkeet", + "info": "Asiakkaat näkevät ensisijaisen maksutapansa. [Lue lisää:](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Lahjakortin lähetysasetukset", + "info": "Asiakkaat voivat lisätä henkilökohtaisen viestin ja sopia lähetyspäivän. [Lue lisää:](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": { + "text": { + "label": "Teksti", + "default": "Jaa" + } + } + }, + "collapsible_tab": { + "name": "Pienenettävä rivi", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Pienenettävä rivi" + }, + "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", + "default": "Ponnahduslinkin teksti" + }, + "page": { + "label": "Sivu" + } + } + }, + "rating": { + "name": "Tuotearvio", + "settings": { + "paragraph": { + "content": "Tuotearviot edellyttävät sovellusta. [Lue lisää:](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Täydentävät tuotteet", + "settings": { + "paragraph": { + "content": "Hallinnoi täydentäviä tuotteita [Search & Discovery ‑sovelluksessa](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Otsikko", + "default": "Sopii yhteen seuraavien kanssa" + }, + "make_collapsible_row": { + "label": "Pienennettävä rivi" + }, + "icon": { + "info": "Näytetään, kun pienennettävä rivi valitaan" + }, + "product_list_limit": { + "label": "Tuotemäärä" + }, + "products_per_page": { + "label": "Tuotteita sivulla" + }, + "pagination_style": { + "label": "Sivunumerointi", + "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": "Pikalisäys" + } + } + }, + "icon_with_text": { + "name": "Kuvake johon liittyy teksti", + "settings": { + "layout": { + "label": "Asettelu", + "options__1": { + "label": "Vaaka" + }, + "options__2": { + "label": "Pysty" + } + }, + "heading": { + "info": "Jos haluat piilottaa tämän parin, jätä tyhjäksi" + }, + "icon_1": { + "label": "Kuvake" + }, + "image_1": { + "label": "Kuva" + }, + "heading_1": { + "label": "Otsikko", + "default": "Otsikko" + }, + "icon_2": { + "label": "Kuvake" + }, + "image_2": { + "label": "Kuva" + }, + "heading_2": { + "label": "Otsikko", + "default": "Otsikko" + }, + "icon_3": { + "label": "Kuvake" + }, + "image_3": { + "label": "Kuva" + }, + "heading_3": { + "label": "Otsikko", + "default": "Otsikko" + }, + "pairing_1": { + "label": "Pari 1", + "info": "Valitse kuvake tai lisää kuva jokaiselle parille" + }, + "pairing_2": { + "label": "Pari 2" + }, + "pairing_3": { + "label": "Pari 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Varastomäärä" + } + } + } + }, + "settings": { + "header": { + "content": "Media" + }, + "enable_video_looping": { + "label": "Jatkuvasti toistuva video" + }, + "enable_sticky_info": { + "label": "Kiinnitetty sisältö" + }, + "hide_variants": { + "label": "Piilota toinen mediaversio, kun yksi valitaan" + }, + "gallery_layout": { + "label": "Asettelu", + "options__1": { + "label": "Päällekkäin" + }, + "options__2": { + "label": "2 saraketta" + }, + "options__3": { + "label": "Pikkukuvat" + }, + "options__4": { + "label": "Pikkukuvien karuselli" + } + }, + "media_size": { + "label": "Leveys", + "options__1": { + "label": "Pieni" + }, + "options__2": { + "label": "Keskisuuri" + }, + "options__3": { + "label": "Suuri" + } + }, + "mobile_thumbnails": { + "label": "Mobiiliasettelu", + "options__1": { + "label": "2 saraketta" + }, + "options__2": { + "label": "Näytä pikkukuvat" + }, + "options__3": { + "label": "Piilota pikkukuvat" + } + }, + "media_position": { + "label": "Sijainti", + "options__1": { + "label": "Vasen" + }, + "options__2": { + "label": "Oikea" + } + }, + "image_zoom": { + "label": "Lähennä", + "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 näytön korkeuteen" + }, + "media_fit": { + "label": "Sovita", + "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": "Myyjä" + }, + "header__1": { + "content": "Tuotekortti" + }, + "header__2": { + "content": "Blogikortti" + }, + "article_show_date": { + "label": "Päivämäärä" + }, + "article_show_author": { + "label": "Tekijä" + }, + "show_rating": { + "label": "Tuotearvio", + "info": "Tuotearviot edellyttävät sovellusta. [Lue lisää:](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "columns_mobile": { + "label": "Mobiilisarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Monisarakkeinen", + "settings": { + "title": { + "label": "Otsikko", + "default": "Monisarakkeinen" + }, + "image_width": { + "label": "Leveys", + "options__1": { + "label": "Kolmasosa sarakkeen leveydestä" + }, + "options__2": { + "label": "Puolet sarakkeen leveydestä" + }, + "options__3": { + "label": "Sarakkeen levyinen" + } + }, + "image_ratio": { + "label": "Suhde", + "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": "Merkintä", + "default": "Tekstipainike", + "info": "Jos haluat piilottaa, jätä tyhjäksi" + }, + "button_link": { + "label": "Linkki" + }, + "swipe_on_mobile": { + "label": "Karuselli" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "header_mobile": { + "content": "Mobiiliasettelu" + }, + "columns_mobile": { + "label": "Sarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Otsikko" + }, + "header_image": { + "content": "Kuva" + }, + "header_layout": { + "content": "Asettelu" + }, + "header_button": { + "content": "Painike" + } + }, + "blocks": { + "column": { + "name": "Sarake", + "settings": { + "image": { + "label": "Kuva" + }, + "title": { + "label": "Otsikko", + "default": "Sarake" + }, + "text": { + "label": "Kuvaus", + "default": "Korosta valitsemaasi tuotetta, kokoelmaa tai blogipostausta lisäämällä kuvaan teksti. Lisää tietoa saatavuudesta tai tyylistä tai näytä vaikkapa arvostelu.
" + }, + "link_label": { + "label": "Linkin teksti", + "info": "Jos haluat piilottaa, jätä tyhjäksi" + }, + "link": { + "label": "Linkki" + } + } + } + }, + "presets": { + "name": "Monisarakkeinen" + } + }, + "newsletter": { + "name": "Sähköpostirekisteröityminen", + "settings": { + "full_width": { + "label": "Täysi leveys" + }, + "paragraph": { + "content": "Rekisteröitymiset lisäävät [asiakasprofiilit](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Otsikko", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Tilaa sähköpostiviestejämme" + } + } + }, + "paragraph": { + "name": "Teksti", + "settings": { + "paragraph": { + "label": "Teksti", + "default": "Saa ensimmäisten joukossa tietoa uusista kokoelmista ja ainutlaatuisista tarjouksista.
" + } + } + }, + "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": "Täysi leveys" + }, + "desktop_content_position": { + "options__1": { + "label": "Vasen" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikea" + }, + "label": "Sisällön sijainti" + }, + "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", + "default": "Kerro brändistäsi" + } + } + }, + "text": { + "name": "Teksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Kerro brändiäsi koskevia tietoja asiakkaillesi. Kuvaile tuotetta, jaa ilmoituksia tai toivota asiakkaat tervetulleiksi kauppaasi.
" + } + } + }, + "buttons": { + "name": "Painikkeet", + "settings": { + "button_label_1": { + "label": "Merkintä", + "info": "Jos haluat piilottaa, jätä tyhjäksi", + "default": "Tekstipainike" + }, + "button_link_1": { + "label": "Linkki" + }, + "button_style_secondary_1": { + "label": "Ääriviivatyyli" + }, + "button_label_2": { + "label": "Merkintä", + "info": "Jos haluat piilottaa, jätä merkintä tyhjäksi" + }, + "button_link_2": { + "label": "Linkki" + }, + "button_style_secondary_2": { + "label": "Ääriviivatyyli" + }, + "header_button1": { + "content": "Painike 1" + }, + "header_button2": { + "content": "Painike 2" + } + } + }, + "caption": { + "name": "Kuvateksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Lisää iskulause" + }, + "text_style": { + "label": "Tyyli", + "options__1": { + "label": "Alaotsikko" + }, + "options__2": { + "label": "Isot kirjaimet" + } + }, + "caption_size": { + "label": "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", + "default": "Video" + }, + "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äville" + }, + "image_padding": { + "label": "Lisää kuvan täyttö", + "info": "Valitse kuvan täyttäminen, jos et halua, että kansikuvaasi rajataan." + }, + "full_width": { + "label": "Täysi leveys" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Jatkuvasti toistuva video" + }, + "header__1": { + "content": "Shopifyn isännöimä video" + }, + "header__2": { + "content": "Tai sulauta video URL-osoitteesta" + }, + "header__3": { + "content": "Asettelu" + }, + "paragraph": { + "content": "Näytetään, kun mitään Shopifyssä isännöityä videota ei ole valittu" + } + }, + "presets": { + "name": "Video" + } + }, + "featured-product": { + "name": "Esittelyssä oleva tuote", + "blocks": { + "text": { + "name": "Teksti", + "settings": { + "text": { + "label": "Teksti", + "default": "Tekstilohko" + }, + "text_style": { + "label": "Tyyli", + "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": "Tyyli", + "options__1": { + "label": "Pudotusvalikko" + }, + "options__2": { + "label": "Kuvakkeet" + } + }, + "swatch_shape": { + "label": "Väriruutu", + "info": "Lue lisää tuotevaihtoehtojen [väriruuduista](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)", + "options__1": { + "label": "Ympyrä" + }, + "options__2": { + "label": "Neliö" + }, + "options__3": { + "label": "Ei mitään" + } + } + } + }, + "buy_buttons": { + "name": "Osta-painikkeet", + "settings": { + "show_dynamic_checkout": { + "label": "Dynaamiset kassapainikkeet", + "info": "Asiakkaat näkevät ensisijaisen maksutapansa. [Lue lisää:](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", + "default": "Jaa" + } + } + }, + "rating": { + "name": "Tuotearvio", + "settings": { + "paragraph": { + "content": "Tuotearviot edellyttävät sovellusta. [Lue lisää:](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": "Toissijainen tausta" + }, + "header": { + "content": "Media" + }, + "enable_video_looping": { + "label": "Jatkuvasti toistuva video" + }, + "hide_variants": { + "label": "Piilota valitsemattomien versioiden media tietokoneversiossa" + }, + "media_position": { + "label": "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": "Rekisteröitymiset lisäävät [asiakasprofiilit](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Taustakuva" + }, + "show_background_image": { + "label": "Näytä taustakuva" + }, + "show_text_box": { + "label": "Säiliö" + }, + "image_overlay_opacity": { + "label": "Peittokuvan läpikuultavuus" + }, + "show_text_below": { + "label": "Pinoa teksti kuvan alle" + }, + "image_height": { + "label": "Korkeus", + "options__1": { + "label": "Sovita kuvaan" + }, + "options__2": { + "label": "Pieni" + }, + "options__3": { + "label": "Keskisuuri" + }, + "options__4": { + "label": "Suuri" + } + }, + "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": "Sijainti" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Vasemmalla" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikealla" + }, + "label": "Tasaus" + }, + "header": { + "content": "Mobiiliasettelu" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Vasemmalla" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikealla" + }, + "label": "Tasaus" + }, + "color_scheme": { + "info": "Näkyvissä, kun säilö on esillä." + }, + "content_header": { + "content": "Sisältö" + } + }, + "blocks": { + "heading": { + "name": "Otsikko", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Avataan pian" + } + } + }, + "paragraph": { + "name": "Teksti", + "settings": { + "paragraph": { + "label": "Teksti", + "default": "Saa tietoa avaamisesta ensimmäisten joukossa.
" + }, + "text_style": { + "options__1": { + "label": "Leipäteksti" + }, + "options__2": { + "label": "Alaotsikko" + }, + "label": "Tyyli" + } + } + }, + "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": "Sivu" + } + }, + "slide_height": { + "label": "Korkeus", + "options__1": { + "label": "Mukauta ensimmäisen kuvan mukaan" + }, + "options__2": { + "label": "Pieni" + }, + "options__3": { + "label": "Keskisuuri" + }, + "options__4": { + "label": "Suuri" + } + }, + "slider_visual": { + "label": "Sivunumerointi", + "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": "Pinoa teksti kuvan alle" + }, + "mobile": { + "content": "Mobiiliasettelu" + }, + "accessibility": { + "content": "Käytettävyys", + "label": "Diaesityksen kuvaus", + "info": "Kuvaile diaesitystä näytönlukijoita käyttäville", + "default": "Diaesitys brändistäsi" + } + }, + "blocks": { + "slide": { + "name": "Dia", + "settings": { + "image": { + "label": "Kuva" + }, + "heading": { + "label": "Otsikko", + "default": "Kuvadia" + }, + "subheading": { + "label": "Alaotsikko", + "default": "Kerro brändisi tarina kuvilla" + }, + "button_label": { + "label": "Merkintä", + "info": "Jos haluat piilottaa, jätä tyhjäksi", + "default": "Tekstipainike" + }, + "link": { + "label": "Linkki" + }, + "secondary_style": { + "label": "Ääriviivatyyli" + }, + "box_align": { + "label": "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" + } + }, + "show_text_box": { + "label": "Säiliö" + }, + "text_alignment": { + "label": "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" + } + }, + "header_button": { + "content": "Painike" + }, + "header_layout": { + "content": "Asettelu" + }, + "header_text": { + "content": "Teksti" + }, + "header_colors": { + "content": "Värit" + } + } + } + }, + "presets": { + "name": "Diaesitys" + } + }, + "collapsible_content": { + "name": "Pienenettävä sisältö", + "settings": { + "caption": { + "label": "Kuvateksti" + }, + "heading": { + "label": "Otsikko", + "default": "Pienenettävä sisältö" + }, + "heading_alignment": { + "label": "Otsikon tasaus", + "options__1": { + "label": "Vasen" + }, + "options__2": { + "label": "Keskitetty" + }, + "options__3": { + "label": "Oikea" + } + }, + "layout": { + "label": "Säiliö", + "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 rivi" + }, + "header": { + "content": "Kuva" + }, + "image": { + "label": "Kuva" + }, + "image_ratio": { + "label": "Kuvasuhde", + "options__1": { + "label": "Sovita kuvaan" + }, + "options__2": { + "label": "Pieni" + }, + "options__3": { + "label": "Suuri" + } + }, + "desktop_layout": { + "label": "Sijoitus", + "options__1": { + "label": "Ensimmäinen kuva" + }, + "options__2": { + "label": "Toinen kuva" + } + }, + "container_color_scheme": { + "label": "Säiliön värimalli" + }, + "layout_header": { + "content": "Asettelu" + }, + "section_color_scheme": { + "label": "Osion värimalli" + } + }, + "blocks": { + "collapsible_row": { + "name": "Pienenettävä rivi", + "settings": { + "heading": { + "label": "Otsikko", + "default": "Pienenettävä rivi" + }, + "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", + "shop_login_button": { + "enable": "Ota käyttöön kirjautuminen Shopilla" + } + }, + "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": "Tuotemäärä" + }, + "columns_desktop": { + "label": "Sarakkeet" + }, + "paragraph__1": { + "content": "Liittyviä tuotteita voi hallinnoida [Search & Discovery ‑sovelluksessa](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Saatat pitää myös näistä" + }, + "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": "Myyjä" + }, + "show_rating": { + "label": "Tuotearvio", + "info": "Tuotearviot edellyttävät sovellusta. [Lue lisää:](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobiilisarakkeet", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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": "Korkeus" + }, + "desktop_image_width": { + "options__1": { + "label": "Pieni" + }, + "options__2": { + "label": "Keskisuuri" + }, + "options__3": { + "label": "Suuri" + }, + "label": "Leveys" + }, + "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": "Tasaus" + }, + "desktop_content_position": { + "options__1": { + "label": "Ylös" + }, + "options__2": { + "label": "Keskelle" + }, + "options__3": { + "label": "Alas" + }, + "label": "Sijainti" + }, + "image_layout": { + "options__1": { + "label": "Vuorottelu vasemmalta" + }, + "options__2": { + "label": "Vuorottelu oikealta" + }, + "options__3": { + "label": "Tasattu vasemmalle" + }, + "options__4": { + "label": "Tasattu oikealle" + }, + "label": "Sijoitus" + }, + "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": "Mobiilitasaus" + }, + "header": { + "content": "Kuva" + }, + "header_2": { + "content": "Sisältö" + }, + "header_3": { + "content": "Värit" + } + }, + "blocks": { + "row": { + "name": "Rivi", + "settings": { + "image": { + "label": "Kuva" + }, + "caption": { + "label": "Kuvateksti", + "default": "Kuvateksti" + }, + "heading": { + "label": "Otsikko", + "default": "Rivi" + }, + "text": { + "label": "Teksti", + "default": "Korosta valitsemaasi tuotetta, kokoelmaa tai blogipostausta lisäämällä kuvaan teksti. Lisää tietoa saatavuudesta tai tyylistä tai näytä vaikkapa arvostelu.
" + }, + "button_label": { + "label": "Tekstipainike", + "default": "Tekstipainike", + "info": "Jos haluat piilottaa, jätä tyhjäksi" + }, + "button_link": { + "label": "Painikelinkki" + } + } + } + }, + "presets": { + "name": "Monirivinen" + } + }, + "quick-order-list": { + "name": "Pikatilausluettelo", + "settings": { + "show_image": { + "label": "Kuvat" + }, + "show_sku": { + "label": "SKU-koodit" + }, + "variants_per_page": { + "label": "Versioita sivulla" + } + }, + "presets": { + "name": "Pikatilausluettelo" + } + } + } +} diff --git a/locales/fr.json b/locales/fr.json new file mode 100644 index 0000000..1aa38a1 --- /dev/null +++ b/locales/fr.json @@ -0,0 +1,542 @@ +{ + "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": "Partager sur X", + "share_on_pinterest": "Épingler sur Pinterest" + }, + "links": { + "twitter": "X (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": "Promotion", + "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é", + "min_of": "Min. {{ quantity }}", + "max_of": "Max. {{ quantity }}", + "in_cart_aria_label": "Quantité ({{ quantity }} dans le panier)" + }, + "price": { + "from_price_html": "À partir de {{ price }}", + "regular_price": "Prix habituel", + "sale_price": "Prix promotionnel", + "unit_price": "Prix unitaire" + }, + "share": "Partager ce produit", + "sold_out": "Épuisé", + "unavailable": "Non disponible(s)", + "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" + }, + "nested_label": "{{ title }} pour {{ parent_title }}", + "view_full_details": "Afficher tous les détails", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "à {{ price }}/pièce" + }, + "taxes_included": "Taxes incluses.", + "duties_included": "Frais de douane inclus.", + "duties_and_taxes_included": "Frais de douane et taxes inclus." + }, + "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": "Destination", + "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.", + "headings": { + "product": "Produit", + "price": "Prix", + "total": "Total", + "quantity": "Quantité", + "image": "Image de produit" + }, + "update": "Mise à 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é", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Frais de douane et taxes inclus. Réductions et frais d’expédition calculés à l’étape du paiement.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Frais de douane et taxes inclus. Réductions et frais d’expédition calculés à l’étape du paiement.", + "taxes_included_shipping_at_checkout_with_policy_html": "Taxes incluses. Réductions et frais d’expédition calculés à l’étape du paiement.", + "taxes_included_shipping_at_checkout_without_policy": "Taxes incluses. Réductions et frais d’expédition calculés à l’étape du paiement.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Frais de douane inclus. Taxes, réductions et frais d’expédition calculés à l’étape du paiement.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Frais de douane inclus. Taxes, réductions et frais d’expédition calculés à l’étape du paiement.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Taxes, réductions et frais d’expédition calculés à l’étape du paiement.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Taxes, réductions et frais d’expédition calculés à l’étape du paiement." + }, + "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", + "remove_all_single_item_confirmation": "Supprimer 1 article de votre panier ?", + "min_error": "Cet article a un minimum de {{ min }}", + "max_error": "Cet article a un maximum de {{ max }}", + "step_error": "Vous pouvez ajouter cet article uniquement par incréments de {{ step }}" + } + }, + "localization": { + "country_label": "Pays/région", + "language_label": "Langue", + "update_language": "Mettre à jour la langue", + "update_country": "Mettre à jour le pays/la région", + "search": "Rechercher", + "popular_countries_regions": "Pays/régions populaires", + "country_results_count": "{{ count }} pays/régions trouvés" + }, + "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", + "alternate_provider_separator": "ou" + }, + "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 du traitement de la commande", + "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 du traitement de la commande", + "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..510c166 --- /dev/null +++ b/locales/fr.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Titres" + }, + "header__2": { + "content": "Corps" + }, + "type_body_font": { + "label": "Police" + }, + "heading_scale": { + "label": "Échelle" + }, + "body_scale": { + "label": "Échelle" + } + } + }, + "social-media": { + "name": "Médias sociaux", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Codes de devises" + }, + "paragraph": "Les prix affichés dans le panier et sur la page de paiement indiquent toujours les codes de devises" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Suggestions de recherche" + }, + "predictive_search_show_vendor": { + "label": "Fournisseur de produit", + "info": "Affiché lorsque les suggestions de recherche sont activées" + }, + "predictive_search_show_price": { + "label": "Prix du produit", + "info": "Affiché 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 sont un moyen d’afficher vos [variantes de produit](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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", + "drawer": { + "label": "Tiroir" + }, + "page": { + "label": "Page" + }, + "notification": { + "label": "Notification contextuelle" + } + }, + "show_vendor": { + "label": "Fournisseur" + }, + "show_cart_note": { + "label": "Note de panier" + }, + "cart_drawer": { + "header": "Panier coulissant", + "collection": { + "label": "Collection", + "info": "Affiché 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" + }, + "favicon": { + "label": "Favicon", + "info": "Affiché à 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": "S’affiche dans le bloc d’informations de marque du pied de page" + } + } + }, + "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": "Affecte les cartes et les boutons", + "options__3": { + "label": "3D Levée" + } + } + } + } + }, + "sections": { + "all": { + "padding": { + "section_padding_heading": "Remplissage", + "padding_top": "Haut", + "padding_bottom": "Bas" + }, + "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": "Moyenne" + }, + "options__3": { + "label": "Grand" + }, + "options__4": { + "label": "Très grand" + }, + "options__5": { + "label": "Très 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" + }, + "animation": { + "content": "Animations", + "image_behavior": { + "options__1": { + "label": "Aucun" + }, + "options__2": { + "label": "Mouvement ambiant" + }, + "label": "Animations", + "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", + "default": "Bienvenue dans notre boutique" + }, + "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" + }, + "show_social": { + "label": "Icônes de médias sociaux", + "info": "[Gérer les comptes sociaux](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Sélecteur de pays/région", + "info": "[Gérer les pays/régions](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sélecteur de langue", + "info": "[Gérer les langues](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Utilitaires" + }, + "paragraph": { + "content": "Apparaît uniquement sur les grands écrans" + } + }, + "presets": { + "name": "Barre d’annonces" + } + }, + "collage": { + "name": "Collage", + "settings": { + "heading": { + "label": "Titre", + "default": "Collage multimédia" + }, + "desktop_layout": { + "label": "Mise en page", + "options__1": { + "label": "Grand bloc en premier" + }, + "options__2": { + "label": "Grand bloc en dernier" + } + }, + "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": "Gérer les styles de cartes individuels dans [paramètres du thème](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Utiliser des styles de cartes individuels" + }, + "options__2": { + "label": "Style pour toutes en tant que cartes de produits" + } + }, + "header_layout": { + "content": "Mise en page" + } + }, + "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)", + "default": "Description de la vidéo" + } + } + } + }, + "presets": { + "name": "Collage" + } + }, + "collection-list": { + "name": "Liste des collections", + "settings": { + "title": { + "label": "Titre", + "default": "Collections" + }, + "image_ratio": { + "label": "Rapport d'image", + "options__1": { + "label": "Adapter à l'image" + }, + "options__2": { + "label": "Portrait" + }, + "options__3": { + "label": "Carré" + } + }, + "swipe_on_mobile": { + "label": "Carrousel" + }, + "show_view_all": { + "label": "Bouton « Tout afficher »", + "info": "Visible si la liste comprend plus de collections que celles affichées" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "header_mobile": { + "content": "Mise en page sur mobile" + }, + "columns_mobile": { + "label": "Colonnes", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Mise en page" + } + }, + "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" + }, + "settings": { + "title": { + "default": "Formulaire de contact", + "label": "Titre" + } + } + }, + "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", + "default": "Articles de blog" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Nombre d’articles" + }, + "show_view_all": { + "label": "Bouton « Tout afficher »", + "info": "Visible si le blog comprend plus d’articles que ceux affichés" + }, + "show_image": { + "label": "Image vedette" + }, + "show_date": { + "label": "Date" + }, + "show_author": { + "label": "Auteur" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "layout_header": { + "content": "Mise en page" + }, + "text_header": { + "content": "Texte" + } + }, + "presets": { + "name": "Articles de blog" + } + }, + "featured-collection": { + "name": "Collection en vedette", + "settings": { + "title": { + "label": "Titre", + "default": "Collection en vedette" + }, + "collection": { + "label": "Collection" + }, + "products_to_show": { + "label": "Nombre de produits" + }, + "show_view_all": { + "label": "Bouton « Tout afficher »", + "info": "Visible si la collection comprend plus de produits que ceux affichés" + }, + "header": { + "content": "Carte de produit" + }, + "image_ratio": { + "label": "Rapport d'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": "Fournisseur" + }, + "show_rating": { + "label": "Évaluation de produit", + "info": "Une application est requise pour les évaluations. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Ajout rapide" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "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": "Carrousel" + }, + "full_width": { + "label": "Produits pleine largeur" + }, + "header_mobile": { + "content": "Mise en page sur mobile" + }, + "columns_mobile": { + "label": "Colonnes", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carrousel" + }, + "header_text": { + "content": "Texte" + }, + "header_collection": { + "content": "Mise en page de la collection" + } + }, + "presets": { + "name": "Collection en vedette" + } + }, + "footer": { + "name": "Pied de page", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "En-tête", + "default": "Liens rapides" + }, + "menu": { + "label": "Menu" + } + } + }, + "text": { + "name": "Texte", + "settings": { + "heading": { + "label": "En-tête", + "default": "Titre" + }, + "subtext": { + "label": "Sous-texte", + "default": "Partagez les coordonnées, les détails de la boutique, les promotions ou le contenu de la marque avec vos clients.
" + } + } + }, + "brand_information": { + "name": "Informations sur la marque", + "settings": { + "paragraph": { + "content": "Gérer les informations de marque dans [paramètres du thème](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Icônes de médias sociaux", + "info": "[Gérer les comptes sociaux](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Inscription à la liste de diffusion" + }, + "newsletter_heading": { + "label": "En-tête", + "default": "S’abonner à nos e-mails" + }, + "header__1": { + "content": "Inscription à la liste de diffusion", + "info": "Ajout d’inscriptions [profils clients](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Icônes de médias sociaux", + "info": "[Gérer les comptes sociaux](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Sélecteur de pays/région", + "info": "[Gérer les pays/régions](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sélecteur de langue", + "info": "[Gérer les langues](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Icônes de moyens de paiement" + }, + "margin_top": { + "label": "Marge supérieure" + }, + "show_policy": { + "label": "Liens des politiques", + "info": "[Gérer les politiques](/admin/settings/legal)" + }, + "header__9": { + "content": "Utilitaires" + }, + "enable_follow_on_shop": { + "label": "Suivre sur Shop", + "info": "Shop Pay doit être activé. [En savoir plus](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "En-tête", + "settings": { + "logo_position": { + "label": "Position du logo", + "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": "Ligne de séparation" + }, + "margin_bottom": { + "label": "Marge inférieure" + }, + "menu_type_desktop": { + "label": "Type de menu", + "options__1": { + "label": "Menu déroulant" + }, + "options__2": { + "label": "Méga menu" + }, + "options__3": { + "label": "Tiroir" + } + }, + "mobile_logo_position": { + "label": "Position du logo sur mobile", + "options__1": { + "label": "Centre" + }, + "options__2": { + "label": "Gauche" + } + }, + "logo_help": { + "content": "Modifier votre logo dans [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" + } + }, + "enable_country_selector": { + "label": "Sélecteur de pays/région", + "info": "[Gérer les pays/régions](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Sélecteur de langue", + "info": "[Gérer les langues](/admin/settings/languages)" + }, + "header__1": { + "content": "Couleur" + }, + "menu_color_scheme": { + "label": "Nuancier de couleurs de menu" + }, + "enable_customer_avatar": { + "label": "Avatar de compte client", + "info": "Visible uniquement lorsque les clients sont connectés avec Shop. [Gérer les comptes clients](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Utilitaires" + } + } + }, + "image-banner": { + "name": "Bannière avec image", + "settings": { + "image": { + "label": "Image 1" + }, + "image_2": { + "label": "Image 2" + }, + "stack_images_on_mobile": { + "label": "Empiler les images" + }, + "show_text_box": { + "label": "Conteneur" + }, + "image_overlay_opacity": { + "label": "Opacité de la superposition" + }, + "show_text_below": { + "label": "Conteneur" + }, + "image_height": { + "label": "Hauteur", + "options__1": { + "label": "Adapter à la première image" + }, + "options__2": { + "label": "Petit" + }, + "options__3": { + "label": "Moyenne" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Alignement" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Alignement" + }, + "mobile": { + "content": "Mise en page sur mobile" + }, + "content": { + "content": "Contenu" + } + }, + "blocks": { + "heading": { + "name": "Titre", + "settings": { + "heading": { + "label": "Titre", + "default": "Bannière avec image" + } + } + }, + "text": { + "name": "Texte", + "settings": { + "text": { + "label": "Texte", + "default": "Fournissez des détails à votre clientèle sur l’image/les images ou le contenu de la bannière du modèle." + }, + "text_style": { + "options__1": { + "label": "Corps" + }, + "options__2": { + "label": "Sous-titre" + }, + "options__3": { + "label": "Majuscule" + }, + "label": "Style" + } + } + }, + "buttons": { + "name": "Boutons", + "settings": { + "button_label_1": { + "label": "Étiquette", + "info": "Laisser vide pour masquer", + "default": "Texte du bouton" + }, + "button_link_1": { + "label": "Lien" + }, + "button_style_secondary_1": { + "label": "Style de contour" + }, + "button_label_2": { + "label": "Étiquette", + "info": "Laisser vide pour masquer", + "default": "Texte du bouton" + }, + "button_link_2": { + "label": "Lien" + }, + "button_style_secondary_2": { + "label": "Style de contour" + }, + "header_1": { + "content": "Bouton 1" + }, + "header_2": { + "content": "Bouton 2" + } + } + } + }, + "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": "Moyenne" + }, + "label": "Hauteur", + "options__4": { + "label": "Grand" + } + }, + "layout": { + "options__1": { + "label": "L'image en premier" + }, + "options__2": { + "label": "Deuxième image" + }, + "label": "Placement" + }, + "desktop_image_width": { + "options__1": { + "label": "Petit" + }, + "options__2": { + "label": "Moyenne" + }, + "options__3": { + "label": "Grand" + }, + "label": "Largeur" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Alignement" + }, + "desktop_content_position": { + "options__1": { + "label": "Haut" + }, + "options__2": { + "label": "Milieu" + }, + "options__3": { + "label": "Bas" + }, + "label": "Position" + }, + "content_layout": { + "options__1": { + "label": "Aucun chevauchement" + }, + "options__2": { + "label": "Chevauchement" + }, + "label": "Mise en page" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Alignement sur mobile" + }, + "header": { + "content": "Contenu" + }, + "header_colors": { + "content": "Couleurs" + } + }, + "blocks": { + "heading": { + "name": "Titre", + "settings": { + "heading": { + "label": "Titre", + "default": "Image avec texte" + } + } + }, + "text": { + "name": "Texte", + "settings": { + "text": { + "label": "Texte", + "default": "Associez un texte à une image pour mettre en avant le produit, la collection ou l’article de blog de votre choix. Ajoutez des informations sur la disponibilité ou le style. Vous pouvez même fournir un avis.
" + }, + "text_style": { + "label": "Style", + "options__1": { + "label": "Corps" + }, + "options__2": { + "label": "Sous-titre" + } + } + } + }, + "button": { + "name": "Bouton", + "settings": { + "button_label": { + "label": "Étiquette", + "info": "Laisser vide pour masquer", + "default": "Texte du bouton" + }, + "button_link": { + "label": "Lien" + }, + "outline_button": { + "label": "Style de contour" + } + } + }, + "caption": { + "name": "Légende", + "settings": { + "text": { + "label": "Texte", + "default": "Ajouter un slogan" + }, + "text_style": { + "label": "Style", + "options__1": { + "label": "Sous-titre" + }, + "options__2": { + "label": "Majuscule" + } + }, + "caption_size": { + "label": "Taille", + "options__1": { + "label": "Petit" + }, + "options__2": { + "label": "Moyenne" + }, + "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", + "options__1": { + "label": "Adapter à l'image" + }, + "options__2": { + "label": "Petit" + }, + "options__3": { + "label": "Moyenne" + }, + "options__4": { + "label": "Grand" + } + } + } + }, + "title": { + "name": "Titre", + "settings": { + "blog_show_date": { + "label": "Date" + }, + "blog_show_author": { + "label": "Auteur" + } + } + }, + "content": { + "name": "Contenu" + }, + "share": { + "name": "Partager", + "settings": { + "text": { + "label": "Texte", + "default": "Partager" + } + } + } + } + }, + "main-blog": { + "name": "Articles de blog", + "settings": { + "show_image": { + "label": "Image vedette" + }, + "show_date": { + "label": "Date" + }, + "show_author": { + "label": "Auteur" + }, + "layout": { + "label": "Mise en page", + "options__1": { + "label": "Grille" + }, + "options__2": { + "label": "Collage" + } + }, + "image_height": { + "label": "Hauteur de l’image", + "options__1": { + "label": "Adapter à l'image" + }, + "options__2": { + "label": "Petit" + }, + "options__3": { + "label": "Moyenne" + }, + "options__4": { + "label": "Grand" + } + } + } + }, + "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": "Les détails de la collection details sont [gérés dans votre interface administrateur](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Description" + }, + "show_collection_image": { + "label": "Image" + } + } + }, + "main-collection-product-grid": { + "name": "Grille de produit", + "settings": { + "products_per_page": { + "label": "Produits par page" + }, + "enable_filtering": { + "label": "Filtres", + "info": "Personnaliser les filtres avec l’[application Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Trier" + }, + "image_ratio": { + "label": "Rapport d'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": "Fournisseur" + }, + "header__1": { + "content": "Filtrage et tri" + }, + "header__3": { + "content": "Carte de produit" + }, + "enable_tags": { + "label": "Filtres", + "info": "Personnaliser les filtres avec l’[application Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "show_rating": { + "label": "Évaluation de produit", + "info": "Une application est requise pour les évaluations de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "columns_mobile": { + "label": "Colonnes sur mobile", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Mise en page du filtre", + "options__1": { + "label": "Horizontale" + }, + "options__2": { + "label": "Verticale" + }, + "options__3": { + "label": "Tiroir" + } + }, + "quick_add": { + "label": "Ajout rapide", + "options": { + "option_1": "Aucun", + "option_2": "Standard", + "option_3": "En gros" + } + } + } + }, + "main-list-collections": { + "name": "Page de liste des collections", + "settings": { + "title": { + "label": "Titre", + "default": "Collections" + }, + "sort": { + "label": "Trier les collections", + "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": "Carré" + } + }, + "columns_desktop": { + "label": "Colonnes" + }, + "header_mobile": { + "content": "Mise en page sur mobile" + }, + "columns_mobile": { + "label": "Colonnes sur mobile", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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_help": { + "content": "Modifier votre logo dans [paramètres du thème](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "blocks": { + "text": { + "name": "Texte", + "settings": { + "text": { + "label": "Texte", + "default": "Bloc de texte" + }, + "text_style": { + "label": "Style", + "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": "Style", + "options__1": { + "label": "Menu déroulant" + }, + "options__2": { + "label": "Comprimés" + } + }, + "swatch_shape": { + "label": "Échantillon", + "info": "En savoir plus sur [échantillons](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) sur les options de produits", + "options__1": { + "label": "Cercle" + }, + "options__2": { + "label": "Carré" + }, + "options__3": { + "label": "Aucun" + } + } + } + }, + "buy_buttons": { + "name": "Boutons d'achat", + "settings": { + "show_dynamic_checkout": { + "label": "Boutons de paiement dynamique", + "info": "Les clients verront leur option de paiement préférée. [En savoir plus](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Options d’envoi de carte-cadeau", + "info": "Les clients peuvent ajouter un message personnel et programmer la date d’envoi. [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": { + "text": { + "label": "Texte", + "default": "Partager" + } + } + }, + "collapsible_tab": { + "name": "Rangée réductible", + "settings": { + "heading": { + "label": "Titre", + "default": "Rangée réductible" + }, + "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", + "default": "Lien texte pop-up" + }, + "page": { + "label": "Page" + } + } + }, + "rating": { + "name": "Note de produit", + "settings": { + "paragraph": { + "content": "Une application est requise pour les évaluations de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Produits complémentaires", + "settings": { + "paragraph": { + "content": "Gérer les produits complémentaires dans l’[application Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "En-tête", + "default": "S’associe bien avec" + }, + "make_collapsible_row": { + "label": "Rangée réductible" + }, + "icon": { + "info": "Affiché lorsqu’une rangée réductible est sélectionnée" + }, + "product_list_limit": { + "label": "Nombre de produits" + }, + "products_per_page": { + "label": "Produits par page" + }, + "pagination_style": { + "label": "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é" + } + }, + "enable_quick_add": { + "label": "Ajout rapide" + } + } + }, + "icon_with_text": { + "name": "Icône avec texte", + "settings": { + "layout": { + "label": "Mise en page", + "options__1": { + "label": "Horizontale" + }, + "options__2": { + "label": "Verticale" + } + }, + "heading": { + "info": "Laisser vide pour masquer ce jumelage" + }, + "icon_1": { + "label": "Icône" + }, + "image_1": { + "label": "Image" + }, + "heading_1": { + "label": "Titre", + "default": "Titre" + }, + "icon_2": { + "label": "Icône" + }, + "image_2": { + "label": "Image" + }, + "heading_2": { + "label": "Titre", + "default": "Titre" + }, + "icon_3": { + "label": "Icône" + }, + "image_3": { + "label": "Image" + }, + "heading_3": { + "label": "Titre", + "default": "Titre" + }, + "pairing_1": { + "label": "Jumelage 1", + "info": "Choisir une icône ou ajouter une image pour chaque jumelage" + }, + "pairing_2": { + "label": "Jumelage 2" + }, + "pairing_3": { + "label": "Jumelage 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Inventaire" + } + } + } + }, + "settings": { + "header": { + "content": "Support multimédia" + }, + "enable_video_looping": { + "label": "Lire la vidéo en boucle" + }, + "enable_sticky_info": { + "label": "Contenu fixe" + }, + "hide_variants": { + "label": "Masquer le support multimédia des autres variantes après en avoir sélectionné une" + }, + "gallery_layout": { + "label": "Mise en page", + "options__1": { + "label": "Empilé" + }, + "options__2": { + "label": "2 colonnes" + }, + "options__3": { + "label": "Vignettes" + }, + "options__4": { + "label": "Carrousel de vignettes" + } + }, + "media_size": { + "label": "Largeur", + "options__1": { + "label": "Petit" + }, + "options__2": { + "label": "Moyenne" + }, + "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", + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Droite" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Ouvrir lightbox" + }, + "options__2": { + "label": "Cliquer et passer la souris" + }, + "options__3": { + "label": "Pas de zoom" + } + }, + "constrain_to_viewport": { + "label": "Limiter à la hauteur de l’écran" + }, + "media_fit": { + "label": "Ajuster", + "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": "Carré" + } + }, + "show_secondary_image": { + "label": "Afficher la deuxième image en survol" + }, + "show_vendor": { + "label": "Fournisseur" + }, + "header__1": { + "content": "Carte de produit" + }, + "header__2": { + "content": "Carte de blog" + }, + "article_show_date": { + "label": "Date" + }, + "article_show_author": { + "label": "Auteur" + }, + "show_rating": { + "label": "Évaluation de produit", + "info": "Une application est requise pour les évaluations de produits. [En savoir plus](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "columns_mobile": { + "label": "Colonnes sur mobile", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Multicolonne", + "settings": { + "title": { + "label": "Titre", + "default": "Multicolonne" + }, + "image_width": { + "label": "Largeur", + "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", + "options__1": { + "label": "Adapter à l'image" + }, + "options__2": { + "label": "Portrait" + }, + "options__3": { + "label": "Carré" + }, + "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": "Étiquette", + "default": "Texte du bouton", + "info": "Laisser vide pour masquer" + }, + "button_link": { + "label": "Lien" + }, + "swipe_on_mobile": { + "label": "Carrousel" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "header_mobile": { + "content": "Mise en page sur mobile" + }, + "columns_mobile": { + "label": "Colonnes", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Titre" + }, + "header_image": { + "content": "Image" + }, + "header_layout": { + "content": "Mise en page" + }, + "header_button": { + "content": "Bouton" + } + }, + "blocks": { + "column": { + "name": "Colonne", + "settings": { + "image": { + "label": "Image" + }, + "title": { + "label": "Titre", + "default": "Colonne" + }, + "text": { + "label": "Description", + "default": "Associez un texte à une image pour mettre en avant le produit, la collection ou l’article de blog de votre choix. Ajoutez des informations sur la disponibilité ou le style. Vous pouvez même fournir un avis.
" + }, + "link_label": { + "label": "Étiquette de lien", + "info": "Laisser vide pour masquer" + }, + "link": { + "label": "Lien" + } + } + } + }, + "presets": { + "name": "Multicolonne" + } + }, + "newsletter": { + "name": "Inscription à la liste de diffusion", + "settings": { + "full_width": { + "label": "Pleine largeur" + }, + "paragraph": { + "content": "Ajout d’inscriptions [profils clients](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Titre", + "settings": { + "heading": { + "label": "Titre", + "default": "S’abonner à nos e-mails" + } + } + }, + "paragraph": { + "name": "Texte", + "settings": { + "paragraph": { + "label": "Texte", + "default": "Faites partie des premières personnes à être informées des nouvelles collections et des offres exclusives.
" + } + } + }, + "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": "Pleine largeur" + }, + "desktop_content_position": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Position du contenu" + }, + "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", + "default": "Parler de sa marque" + } + } + }, + "text": { + "name": "Texte", + "settings": { + "text": { + "label": "Texte", + "default": "Partagez des informations sur votre marque. Décrivez un produit, partagez des annonces ou souhaitez la bienvenue à vos clients dans votre boutique.
" + } + } + }, + "buttons": { + "name": "Boutons", + "settings": { + "button_label_1": { + "label": "Étiquette", + "info": "Laisser vide pour masquer", + "default": "Texte du bouton" + }, + "button_link_1": { + "label": "Lien" + }, + "button_style_secondary_1": { + "label": "Style de contour" + }, + "button_label_2": { + "label": "Étiquette", + "info": "Laisser l’étiquette vide pour masquer" + }, + "button_link_2": { + "label": "Lien" + }, + "button_style_secondary_2": { + "label": "Style de contour" + }, + "header_button1": { + "content": "Bouton 1" + }, + "header_button2": { + "content": "Bouton 2" + } + } + }, + "caption": { + "name": "Légende", + "settings": { + "text": { + "label": "Texte", + "default": "Ajouter un slogan" + }, + "text_style": { + "label": "Style", + "options__1": { + "label": "Sous‑titre" + }, + "options__2": { + "label": "Majuscule" + } + }, + "caption_size": { + "label": "Taille", + "options__1": { + "label": "Petit" + }, + "options__2": { + "label": "Moyenne" + }, + "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", + "default": "Vidéo" + }, + "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écrire la vidéo pour celles et ceux qui utilisent des lecteurs d’écran" + }, + "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": "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": "Mise en page" + }, + "paragraph": { + "content": "S’affiche 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", + "default": "Bloc de texte" + }, + "text_style": { + "label": "Style", + "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": "Style", + "options__1": { + "label": "Menu déroulant" + }, + "options__2": { + "label": "Pilules" + } + }, + "swatch_shape": { + "label": "Échantillon", + "info": "En savoir plus sur [échantillons](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) sur les options de produits", + "options__1": { + "label": "Cercle" + }, + "options__2": { + "label": "Carré" + }, + "options__3": { + "label": "Aucun" + } + } + } + }, + "buy_buttons": { + "name": "Boutons d'achat", + "settings": { + "show_dynamic_checkout": { + "label": "Boutons de paiement dynamique", + "info": "Les clients verront leur option de paiement préférée. [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", + "default": "Partager" + } + } + }, + "rating": { + "name": "Évaluation de produit", + "settings": { + "paragraph": { + "content": "Une application est requise pour les évaluations 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": "Arrière-plan secondaire" + }, + "header": { + "content": "Support multimédia" + }, + "enable_video_looping": { + "label": "Lire 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", + "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": "Ajout d’inscriptions [profils clients](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Image de fond" + }, + "show_background_image": { + "label": "Afficher l'image de fond" + }, + "show_text_box": { + "label": "Conteneur" + }, + "image_overlay_opacity": { + "label": "Opacité de la superposition" + }, + "show_text_below": { + "label": "Empiler le texte sous l’image" + }, + "image_height": { + "label": "Hauteur", + "options__1": { + "label": "Adapter à l'image" + }, + "options__2": { + "label": "Petit" + }, + "options__3": { + "label": "Moyenne" + }, + "options__4": { + "label": "Grand" + } + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Alignement" + }, + "header": { + "content": "Mise en page sur mobile" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + }, + "label": "Alignement" + }, + "color_scheme": { + "info": "Visible lorsque le conteneur est affiché." + }, + "content_header": { + "content": "Contenu" + } + }, + "blocks": { + "heading": { + "name": "En-tête", + "settings": { + "heading": { + "label": "En-tête", + "default": "Ouverture prochaine" + } + } + }, + "paragraph": { + "name": "Texte", + "settings": { + "paragraph": { + "label": "Texte", + "default": "Faites partie des premières personnes à être informées de notre lancement.
" + }, + "text_style": { + "options__1": { + "label": "Corps" + }, + "options__2": { + "label": "Sous-titre" + }, + "label": "Style" + } + } + }, + "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": "Page" + } + }, + "slide_height": { + "label": "Hauteur", + "options__1": { + "label": "Adapter à la première image" + }, + "options__2": { + "label": "Petit" + }, + "options__3": { + "label": "Moyenne" + }, + "options__4": { + "label": "Grand" + } + }, + "slider_visual": { + "label": "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": "Empiler le texte sous l’image" + }, + "mobile": { + "content": "Mise en page sur mobile" + }, + "accessibility": { + "content": "Accessibilité", + "label": "Description du diaporama", + "info": "Décrire le diaporama pour celles et ceux qui utilisent des lecteurs d’écran", + "default": "Diaporama sur votre marque" + } + }, + "blocks": { + "slide": { + "name": "Diapositive", + "settings": { + "image": { + "label": "Image" + }, + "heading": { + "label": "En-tête", + "default": "Diapositive (image)" + }, + "subheading": { + "label": "Sous-titre", + "default": "Racontez votre histoire avec des images" + }, + "button_label": { + "label": "Étiquette", + "info": "Laisser vide pour masquer", + "default": "Texte du bouton" + }, + "link": { + "label": "Lien" + }, + "secondary_style": { + "label": "Style de contour" + }, + "box_align": { + "label": "Position du contenu", + "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" + } + }, + "show_text_box": { + "label": "Conteneur" + }, + "text_alignment": { + "label": "Alignement du contenu", + "option_1": { + "label": "Gauche" + }, + "option_2": { + "label": "Centre" + }, + "option_3": { + "label": "Droite" + } + }, + "image_overlay_opacity": { + "label": "Opacité de la superposition" + }, + "text_alignment_mobile": { + "label": "Alignement du contenu sur mobile", + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + } + }, + "header_button": { + "content": "Bouton" + }, + "header_layout": { + "content": "Mise en page" + }, + "header_text": { + "content": "Texte" + }, + "header_colors": { + "content": "Couleurs" + } + } + } + }, + "presets": { + "name": "Diaporama" + } + }, + "collapsible_content": { + "name": "Contenu réductible", + "settings": { + "caption": { + "label": "Légende" + }, + "heading": { + "label": "Titre", + "default": "Contenu réductible" + }, + "heading_alignment": { + "label": "Alignement des titres", + "options__1": { + "label": "Gauche" + }, + "options__2": { + "label": "Centre" + }, + "options__3": { + "label": "Droite" + } + }, + "layout": { + "label": "Conteneur", + "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" + }, + "open_first_collapsible_row": { + "label": "Ouvrir la première rangée" + }, + "header": { + "content": "Image" + }, + "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": "Placement", + "options__1": { + "label": "L'image en premier" + }, + "options__2": { + "label": "L'image en deuxième" + } + }, + "layout_header": { + "content": "Mise en page" + }, + "section_color_scheme": { + "label": "Nuancier de couleurs de la section" + } + }, + "blocks": { + "collapsible_row": { + "name": "Rangée réductible", + "settings": { + "heading": { + "label": "Titre", + "default": "Rangée réductible" + }, + "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", + "shop_login_button": { + "enable": "Activer la connexion avec Shop" + } + }, + "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": "Nombre de produits" + }, + "columns_desktop": { + "label": "Colonnes" + }, + "paragraph__1": { + "content": "Les produits associés peuvent être gérés dans l’[application Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Vous aimerez peut-être aussi" + }, + "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": "Fournisseur" + }, + "show_rating": { + "label": "Évaluation de produit", + "info": "Une application est requise pour les évaluations de produits. [En savoir plus](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Colonnes sur mobile", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multirow": { + "name": "Multiligne", + "settings": { + "image": { + "label": "Image" + }, + "image_height": { + "options__1": { + "label": "Adapter à l’image" + }, + "options__2": { + "label": "Petit" + }, + "options__3": { + "label": "Moyenne" + }, + "options__4": { + "label": "Grand" + }, + "label": "Hauteur" + }, + "desktop_image_width": { + "options__1": { + "label": "Petit" + }, + "options__2": { + "label": "Moyenne" + }, + "options__3": { + "label": "Grand" + }, + "label": "Largeur" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "En haut" + }, + "options__2": { + "label": "Au milieu" + }, + "options__3": { + "label": "En bas" + }, + "label": "Position" + }, + "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" + }, + "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 sur mobile" + }, + "header": { + "content": "Image" + }, + "header_2": { + "content": "Contenu" + }, + "header_3": { + "content": "Couleurs" + } + }, + "blocks": { + "row": { + "name": "Rangé", + "settings": { + "image": { + "label": "Image" + }, + "caption": { + "label": "Légende", + "default": "Légende" + }, + "heading": { + "label": "En-tête", + "default": "Rangée" + }, + "text": { + "label": "Texte", + "default": "Associez un texte à une image pour mettre en avant le produit, la collection ou l’article de blog de votre choix. Ajoutez des informations sur la disponibilité ou le style. Vous pouvez même fournir un avis.
" + }, + "button_label": { + "label": "Texte du bouton", + "default": "Texte du bouton", + "info": "Laisser vide pour masquer" + }, + "button_link": { + "label": "Lien du bouton" + } + } + } + }, + "presets": { + "name": "Multiligne" + } + }, + "quick-order-list": { + "name": "Liste rapide des commandes", + "settings": { + "show_image": { + "label": "Images" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "Variantes par page" + } + }, + "presets": { + "name": "Liste rapide des commandes" + } + } + } +} diff --git a/locales/hr.json b/locales/hr.json new file mode 100644 index 0000000..4b84b68 --- /dev/null +++ b/locales/hr.json @@ -0,0 +1,542 @@ +{ + "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": "Podijeli na mreži X", + "share_on_pinterest": "Prikvači na Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Maks. {{ quantity }}", + "in_cart_aria_label": "Količina ({{ quantity }} u košarici)" + }, + "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" + }, + "nested_label": "{{ title }} za {{ parent_title }}", + "view_full_details": "Prikaži sve pojedinosti", + "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_range": "{{ minimum }} – {{ maximum }}", + "price_at_each_html": "po cijeni od {{ price }}/ea" + }, + "taxes_included": "Porezi su uključeni.", + "duties_included": "Carina je uključena.", + "duties_and_taxes_included": "Carina i porezi su uključeni." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Carina i porezi su uključeni. Popusti i poštarina obračunavaju se prilikom plaćanja.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Carina i porezi su uključeni. Popusti i poštarina obračunavaju se prilikom plaćanja.", + "taxes_included_shipping_at_checkout_with_policy_html": "Porezi su uključeni. Popusti i poštarina obračunavaju se prilikom plaćanja.", + "taxes_included_shipping_at_checkout_without_policy": "Porezi su uključeni. Popusti i poštarina obračunavaju se prilikom plaćanja.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Carina je uključena. Porezi, popusti i poštarina obračunavaju se prilikom plaćanja.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Carina je uključena. Porezi, popusti i poštarina obračunavaju se prilikom plaćanja.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Porezi, popusti i poštarina obračunavaju se prilikom plaćanja.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Porezi, popusti i poštarina obračunavaju se prilikom plaćanja." + }, + "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", + "remove_all_single_item_confirmation": "Želite li ukloniti 1 artikl iz košarice?", + "min_error": "Minimum za ovaj artikl iznosi {{ min }}", + "max_error": "Maksimum za ovaj artikl iznosi {{ max }}", + "step_error": "Ovaj artikl možete dodavati samo u rasponima povećanja od {{ step }}" + } + }, + "localization": { + "country_label": "Država/regija", + "language_label": "Jezik", + "update_language": "Ažuriraj jezik", + "update_country": "Ažuriraj državu/regiju", + "search": "Traži", + "popular_countries_regions": "Popularne zemlje/regije", + "country_results_count": "Pronađen je sljedeći broj zemalja/regija: {{ count }}" + }, + "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", + "alternate_provider_separator": "ili" + }, + "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..9212196 --- /dev/null +++ b/locales/hu.json @@ -0,0 +1,530 @@ +{ + "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": "Megosztás az X-en", + "share_on_pinterest": "Közzététel a Pinteresten" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Max. {{ quantity }}", + "in_cart_aria_label": "Mennyiség ({{ quantity }} a kosárban)" + }, + "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" + }, + "nested_label": "{{ title }} – {{ parent_title }}", + "view_full_details": "Minden részlet megtekintése", + "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_range": "{{ minimum }} – {{ maximum }}", + "price_at_each_html": "{{ price }}/db" + }, + "taxes_included": "Tartalmazza az adókat.", + "duties_included": "Tartalmazza a vámokat.", + "duties_and_taxes_included": "Tartalmazza a vámokat és az adókat." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Tartalmazza a vámokat és az adókat. A kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Tartalmazza a vámokat és az adókat. A kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki.", + "taxes_included_shipping_at_checkout_with_policy_html": "Tartalmazza az adókat. A kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki.", + "taxes_included_shipping_at_checkout_without_policy": "Tartalmazza az adókat. A kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Tartalmazza a vámokat. Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Tartalmazza a vámokat. Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki" + }, + "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", + "remove_all_single_item_confirmation": "Eltávolítod ezt a(z) 1 terméket a kosárból?", + "min_error": "A termék minimális mennyisége {{ min }}", + "max_error": "A termék maximális mennyisége {{ max }}", + "step_error": "A termék mennyisége csak {{ step }} darabos lépésekben növelhető" + } + }, + "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", + "search": "Keresés", + "popular_countries_regions": "Népszerű országok/régiók", + "country_results_count": "{{ count }} ország/régió található" + }, + "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", + "alternate_provider_separator": "vagy" + }, + "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..3f3c0fc --- /dev/null +++ b/locales/id.json @@ -0,0 +1,530 @@ +{ + "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": "Bagikan di X", + "share_on_pinterest": "Pin di Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Maks. {{ quantity }}", + "in_cart_aria_label": "Jumlah ({{ quantity }} di keranjang)" + }, + "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" + }, + "nested_label": "{{ title }} untuk {{ parent_title }}", + "view_full_details": "Lihat detail lengkap", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "di {{ price }}/satuan" + }, + "taxes_included": "Termasuk pajak.", + "duties_included": "Termasuk bea cukai.", + "duties_and_taxes_included": "Termasuk bea cukai dan pajak." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Termasuk bea cukai dan pajak. Diskon dan biaya pengiriman dihitung saat checkout.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Termasuk bea cukai dan pajak. Diskon dan biaya pengiriman dihitung saat checkout.", + "taxes_included_shipping_at_checkout_with_policy_html": "Termasuk pajak. Diskon dan biaya pengiriman dihitung saat checkout.", + "taxes_included_shipping_at_checkout_without_policy": "Termasuk pajak. Diskon dan biaya pengiriman dihitung saat checkout.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Termasuk bea cukai. Pajak, diskon, dan biaya pengiriman dihitung saat checkout.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Termasuk bea cukai. Pajak, diskon, dan biaya pengiriman dihitung saat checkout.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Pajak, diskon, dan biaya pengiriman dihitung saat checkout.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Pajak, diskon, dan biaya pengiriman dihitung saat checkout." + }, + "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", + "remove_all_single_item_confirmation": "Hapus 1 item dari keranjang Anda?", + "min_error": "Item ini memiliki minimal {{ min }}", + "max_error": "Item ini memiliki maksimum {{ max }}", + "step_error": "Anda hanya dapat menambahkan item ini secara inkremental sebesar {{ step }}" + } + }, + "localization": { + "country_label": "Negara/Wilayah", + "language_label": "Bahasa", + "update_language": "Perbarui bahasa", + "update_country": "Perbarui negara/wilayah", + "search": "Cari", + "popular_countries_regions": "Negara/wilayah populer", + "country_results_count": "{{ count }} negara/wilayah ditemukan" + }, + "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", + "alternate_provider_separator": "atau" + }, + "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..2a2872a --- /dev/null +++ b/locales/it.json @@ -0,0 +1,542 @@ +{ + "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": "Condividi su X", + "share_on_pinterest": "Aggiungi un pin su Pinterest" + }, + "links": { + "twitter": "X (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à", + "min_of": "Min {{ quantity }}", + "max_of": "Max {{ quantity }}", + "in_cart_aria_label": "Quantità ({{ quantity }} nel carrello)" + }, + "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" + }, + "nested_label": "{{ title }} per {{ parent_title }}", + "view_full_details": "Visualizza dettagli completi", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "a {{ price }}/ciascuno" + }, + "product_variants": "Varianti di prodotto", + "taxes_included": "Imposte incluse.", + "duties_included": "Dazi inclusi.", + "duties_and_taxes_included": "Dazi e imposte inclusi." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Dazi e imposte inclusi. Sconti e spedizione calcolati al check-out.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Dazi e imposte inclusi. Sconti e spedizione calcolati al check-out.", + "taxes_included_shipping_at_checkout_with_policy_html": "Imposte incluse. Sconti e spedizione calcolati al check-out.", + "taxes_included_shipping_at_checkout_without_policy": "Imposte incluse. Sconti e spedizione calcolati al check-out.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Dazi inclusi. Imposte, sconti e spedizione calcolati al check-out.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Dazi inclusi. Imposte, sconti e spedizione calcolati al check-out.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Imposte, sconti e spedizione calcolati al check-out.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Imposte, sconti e spedizione calcolati al check-out." + }, + "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", + "remove_all_single_item_confirmation": "Rimuovere un articolo dal carrello?", + "min_error": "Questo articolo ha un minimo di {{ min }}", + "max_error": "Questo articolo ha un massimo di {{ max }}", + "step_error": "Puoi aggiungere questo articolo solo in incrementi di {{ step }}" + } + }, + "localization": { + "country_label": "Paese/Area geografica", + "language_label": "Lingua", + "update_language": "Aggiorna lingua", + "update_country": "Aggiorna paese/area geografica", + "search": "Cerca", + "popular_countries_regions": "Paesi/aree geografiche popolari", + "country_results_count": "{{ count }} paesi/aree geografiche trovati" + }, + "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", + "alternate_provider_separator": "oppure" + }, + "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 tracciamento", + "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..5d6a4b2 --- /dev/null +++ b/locales/it.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Titoli" + }, + "header__2": { + "content": "Testo" + }, + "type_body_font": { + "label": "Font" + }, + "heading_scale": { + "label": "Ridimensionamento" + }, + "body_scale": { + "label": "Ridimensionamento" + } + } + }, + "social-media": { + "name": "Social media", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Codici valuta" + }, + "paragraph": "I prezzi del carrello e del check-out mostrano sempre i codici valuta" + } + }, + "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": "Interessa le 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": { + "predictive_search_enabled": { + "label": "Suggerimenti di ricerca" + }, + "predictive_search_show_vendor": { + "label": "Venditore del prodotto", + "info": "Visibile quando i suggerimenti di ricerca sono abilitati" + }, + "predictive_search_show_price": { + "label": "Prezzo del 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](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#variant-picker-block)" + }, + "inputs": { + "name": "Input" + }, + "content_containers": { + "name": "Contenitori contenuto" + }, + "popups": { + "name": "Menu a discesa e pop up", + "paragraph": "Interessa 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", + "drawer": { + "label": "Finestra" + }, + "page": { + "label": "Pagina" + }, + "notification": { + "label": "Notifica pop up" + } + }, + "show_vendor": { + "label": "Venditore" + }, + "show_cart_note": { + "label": "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" + }, + "favicon": { + "label": "Favicon", + "info": "Visualizzato a 32 x 32 px" + } + } + }, + "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": "Viene visualizzato nel blocco delle informazioni sul brand del footer" + } + } + }, + "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": "Interessa schede e pulsanti", + "options__3": { + "label": "3D kaldırma" + } + } + } + } + }, + "sections": { + "all": { + "padding": { + "section_padding_heading": "Spaziatura", + "padding_top": "In alto", + "padding_bottom": "In basso" + }, + "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" + }, + "options__5": { + "label": "Extra 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" + }, + "animation": { + "content": "Animazioni", + "image_behavior": { + "options__1": { + "label": "Nessuno" + }, + "options__2": { + "label": "Scorrimento lento" + }, + "label": "Animazione", + "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", + "default": "Ti diamo il benvenuto nel nostro negozio" + }, + "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" + }, + "show_social": { + "label": "Icone dei social media", + "info": "[Gestisci account social](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selettore Paese/area geografica", + "info": "[Gestisci Paesi/aree geografiche](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selettore lingua", + "info": "[Gestisci lingue](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Utility" + }, + "paragraph": { + "content": "Visibile solo su schermi grandi" + } + }, + "presets": { + "name": "Barra degli annunci" + } + }, + "collage": { + "name": "Collage", + "settings": { + "heading": { + "label": "Titolo", + "default": "Collage multimediale" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Primo blocco grande" + }, + "options__2": { + "label": "Ultimo Blocco grande" + } + }, + "mobile_layout": { + "label": "Layout dispositivo mobile", + "options__1": { + "label": "Collage" + }, + "options__2": { + "label": "Colonna" + } + }, + "card_styles": { + "label": "Stile scheda", + "info": "Gestisci gli stili delle singole schede nelle [impostazioni tema](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Utilizza stili delle schede personali" + }, + "options__2": { + "label": "Assimila tutti gli stili a quelli delle schede di prodotto" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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)", + "default": "Descrivi il video" + } + } + } + }, + "presets": { + "name": "Collage" + } + }, + "collection-list": { + "name": "Elenco delle collezioni", + "settings": { + "title": { + "label": "Titolo", + "default": "Collezioni" + }, + "image_ratio": { + "label": "Proporzioni delle immagini", + "options__1": { + "label": "Adatta all'immagine" + }, + "options__2": { + "label": "Ritratto" + }, + "options__3": { + "label": "Quadrate" + } + }, + "swipe_on_mobile": { + "label": "Carousel" + }, + "show_view_all": { + "label": "Pulsante \"Visualizza tutto\"", + "info": "Visibile se l'elenco contiene più collezioni di quelle mostrate" + }, + "columns_desktop": { + "label": "Colonne" + }, + "header_mobile": { + "content": "Layout dispositivo mobile" + }, + "columns_mobile": { + "label": "Colonne", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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" + }, + "settings": { + "title": { + "default": "Modulo di contatto", + "label": "Titolo" + } + } + }, + "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", + "default": "Articoli del blog" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Conteggio post" + }, + "show_view_all": { + "label": "Pulsante \"Visualizza tutto\"", + "info": "Visibile se il blog contiene più post di quelli mostrati" + }, + "show_image": { + "label": "Immagine in evidenza" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autore" + }, + "columns_desktop": { + "label": "Colonne" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Testo" + } + }, + "presets": { + "name": "Articoli del blog" + } + }, + "featured-collection": { + "name": "Collezione in evidenza", + "settings": { + "title": { + "label": "Titolo", + "default": "Collezione in evidenza" + }, + "collection": { + "label": "Collezione" + }, + "products_to_show": { + "label": "Conteggio prodotti" + }, + "show_view_all": { + "label": "Pulsante \"Visualizza tutto\"", + "info": "Visibile se la collezione contiene 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": "Venditore" + }, + "show_rating": { + "label": "Valutazione del prodotto", + "info": "Per le valutazioni è necessaria un'app. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Aggiunta rapida" + }, + "columns_desktop": { + "label": "Colonne" + }, + "description": { + "label": "Descrizione" + }, + "show_description": { + "label": "Mostra descrizione collezione dal pannello di controllo" + }, + "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": "Carousel" + }, + "full_width": { + "label": "Prodotti a larghezza intera" + }, + "header_mobile": { + "content": "Layout dispositivo mobile" + }, + "columns_mobile": { + "label": "Colonne", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carousel" + }, + "header_text": { + "content": "Testo" + }, + "header_collection": { + "content": "Layout collezione" + } + }, + "presets": { + "name": "Collezione in evidenza" + } + }, + "footer": { + "name": "Footer", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "Titolo", + "default": "Link rapidi" + }, + "menu": { + "label": "Menu" + } + } + }, + "text": { + "name": "Testo", + "settings": { + "heading": { + "label": "Titolo", + "default": "Titolo" + }, + "subtext": { + "label": "Sottotesto", + "default": "Condividi informazioni di contatto, dettagli del negozio e contenuti del brand con i clienti.
" + } + } + }, + "brand_information": { + "name": "Informazioni sul brand", + "settings": { + "paragraph": { + "content": "Gestisci le informazioni sul brand nelle [impostazioni tema](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Icone dei social media", + "info": "[Gestisci account social ](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Iscrizione alla newsletter" + }, + "newsletter_heading": { + "label": "Titolo", + "default": "Iscriviti alle nostre email" + }, + "header__1": { + "content": "Iscrizione alla newsletter", + "info": "Aggiunta di iscrizioni [profili cliente](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Icone dei social media", + "info": "[Gestisci account social ](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selettore Paese/area geografica", + "info": "[Gestisci Paesi/aree geografiche](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selettore lingua", + "info": "[Gestisci lingue](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Icone dei metodi di pagamento" + }, + "margin_top": { + "label": "Margine superiore" + }, + "show_policy": { + "label": "Link alle informative", + "info": "[Gestisci informative](/admin/settings/legal)" + }, + "header__9": { + "content": "Utility" + }, + "enable_follow_on_shop": { + "label": "Segui su Shop", + "info": "Shop Pay deve essere abilitato. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Header", + "settings": { + "logo_position": { + "label": "Posizione del logo", + "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": "Linea di separazione" + }, + "margin_bottom": { + "label": "Margine inferiore" + }, + "menu_type_desktop": { + "label": "Tipo di menu", + "options__1": { + "label": "Menu a discesa" + }, + "options__2": { + "label": "Mega menu" + }, + "options__3": { + "label": "Finestra" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Selettore Paese/area geografica", + "info": "[Gestisci Paesi/aree geografiche](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selettore lingua", + "info": "[Gestisci lingue](/admin/settings/languages)" + }, + "header__1": { + "content": "Colore" + }, + "menu_color_scheme": { + "label": "Schema di colori del menu" + }, + "enable_customer_avatar": { + "label": "Avatar account cliente", + "info": "Visibile solo quando i clienti hanno effettuato l'accesso con Shop. [Gestisci account cliente](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Utility" + } + } + }, + "image-banner": { + "name": "Immagine banner", + "settings": { + "image": { + "label": "Immagine 1" + }, + "image_2": { + "label": "Immagine 2" + }, + "stack_images_on_mobile": { + "label": "Elenca immagini" + }, + "show_text_box": { + "label": "Contenitore" + }, + "image_overlay_opacity": { + "label": "Opacità della sovrapposizione" + }, + "show_text_below": { + "label": "Contenitore" + }, + "image_height": { + "label": "Altezza", + "options__1": { + "label": "Adatta alla prima immagine" + }, + "options__2": { + "label": "Piccola" + }, + "options__3": { + "label": "Media" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "A destra" + }, + "label": "Allineamento" + }, + "mobile_content_alignment": { + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "A destra" + }, + "label": "Allineamento" + }, + "mobile": { + "content": "Layout dispositivo mobile" + }, + "content": { + "content": "Contenuto" + } + }, + "blocks": { + "heading": { + "name": "Titolo", + "settings": { + "heading": { + "label": "Titolo", + "default": "Immagine banner" + } + } + }, + "text": { + "name": "Testo", + "settings": { + "text": { + "label": "Testo", + "default": "Fornisci ai clienti dettagli sulle immagini del banner o sul contenuto del modello." + }, + "text_style": { + "options__1": { + "label": "Testo" + }, + "options__2": { + "label": "Sottotitolo" + }, + "options__3": { + "label": "Maiuscolo" + }, + "label": "Stile" + } + } + }, + "buttons": { + "name": "Pulsanti", + "settings": { + "button_label_1": { + "label": "Etichetta", + "info": "Lascia vuoto per nascondere", + "default": "Etichetta pulsante" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Stile contorno" + }, + "button_label_2": { + "label": "Etichetta", + "info": "Lascia vuoto per nascondere", + "default": "Etichetta pulsante" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Stile contorno" + }, + "header_1": { + "content": "Pulsante 1" + }, + "header_2": { + "content": "Pulsante 2" + } + } + } + }, + "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", + "options__4": { + "label": "Grande" + } + }, + "layout": { + "options__1": { + "label": "Prima l'immagine" + }, + "options__2": { + "label": "Seconda immagine" + }, + "label": "Posizionamento" + }, + "desktop_image_width": { + "options__1": { + "label": "Piccola" + }, + "options__2": { + "label": "Media" + }, + "options__3": { + "label": "Grande" + }, + "label": "Larghezza" + }, + "desktop_content_alignment": { + "options__1": { + "label": "A sinistra" + }, + "options__3": { + "label": "A destra" + }, + "label": "Allineamento", + "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" + }, + "content_layout": { + "options__1": { + "label": "Non sovrapporre" + }, + "options__2": { + "label": "Sovrapponi" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "A sinistra" + }, + "options__3": { + "label": "A destra" + }, + "label": "Allineamento su dispositivi mobili", + "options__2": { + "label": "Al centro" + } + }, + "header": { + "content": "Contenuto" + }, + "header_colors": { + "content": "Colori" + } + }, + "blocks": { + "heading": { + "name": "Titolo", + "settings": { + "heading": { + "label": "Titolo", + "default": "Immagine con testo" + } + } + }, + "text": { + "name": "Testo", + "settings": { + "text": { + "label": "Testo", + "default": "Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.
" + }, + "text_style": { + "label": "Stile", + "options__1": { + "label": "Testo" + }, + "options__2": { + "label": "Sottotitolo" + } + } + } + }, + "button": { + "name": "Pulsante", + "settings": { + "button_label": { + "label": "Etichetta", + "info": "Lascia vuoto per nascondere", + "default": "Etichetta pulsante" + }, + "button_link": { + "label": "Link" + }, + "outline_button": { + "label": "Stile contorno" + } + } + }, + "caption": { + "name": "Didascalia", + "settings": { + "text": { + "label": "Testo", + "default": "Aggiungi una tagline" + }, + "text_style": { + "label": "Stile", + "options__1": { + "label": "Sottotitolo" + }, + "options__2": { + "label": "Maiuscolo" + } + }, + "caption_size": { + "label": "Dimensione", + "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", + "options__1": { + "label": "Adatta all'immagine" + }, + "options__2": { + "label": "Piccola" + }, + "options__3": { + "label": "Media" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "title": { + "name": "Titolo", + "settings": { + "blog_show_date": { + "label": "Data" + }, + "blog_show_author": { + "label": "Autore" + } + } + }, + "content": { + "name": "Contenuto" + }, + "share": { + "name": "Condividi", + "settings": { + "text": { + "label": "Testo", + "default": "Condividi" + } + } + } + } + }, + "main-blog": { + "name": "Articoli del blog", + "settings": { + "show_image": { + "label": "Immagine in evidenza" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autore" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Griglia" + }, + "options__2": { + "label": "Collage" + } + }, + "image_height": { + "label": "Altezza immagine", + "options__1": { + "label": "Adatta all'immagine" + }, + "options__2": { + "label": "Piccola" + }, + "options__3": { + "label": "Media" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "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": "I dettagli delle collezioni sono [gestiti nel tuo pannello di controllo](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Descrizione" + }, + "show_collection_image": { + "label": "Immagine" + } + } + }, + "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": "Venditore" + }, + "enable_tags": { + "label": "Filtri", + "info": "Personalizza i filtri con l'[app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filtri", + "info": "Personalizza i filtri con l'[app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Ordinamento" + }, + "header__1": { + "content": "Filtri e ordinamento" + }, + "header__3": { + "content": "Scheda prodotto" + }, + "show_rating": { + "label": "Valutazione del prodotto", + "info": "Per le valutazioni dei prodotti è necessaria un'app. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Colonne" + }, + "columns_mobile": { + "label": "Colonne su dispositivi mobili", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Layout dei filtri", + "options__1": { + "label": "Orizzontale" + }, + "options__2": { + "label": "Verticale" + }, + "options__3": { + "label": "Finestra" + } + }, + "quick_add": { + "label": "Aggiunta rapida", + "options": { + "option_1": "Nessuna", + "option_2": "Standard", + "option_3": "Blocco" + } + } + } + }, + "main-list-collections": { + "name": "Pagina con l'elenco delle collezioni", + "settings": { + "title": { + "label": "Titolo", + "default": "Collezioni" + }, + "sort": { + "label": "Ordina collezioni", + "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" + } + }, + "columns_desktop": { + "label": "Colonne" + }, + "header_mobile": { + "content": "Layout dispositivo mobile" + }, + "columns_mobile": { + "label": "Colonne su dispositivi mobili", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Pagina" + }, + "main-password-footer": { + "name": "Footer della password" + }, + "main-password-header": { + "name": "Header della password", + "settings": { + "logo_help": { + "content": "Modifica il tuo logo nelle [impostazioni tema](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Informazioni di prodotto", + "blocks": { + "text": { + "name": "Testo", + "settings": { + "text": { + "label": "Testo", + "default": "Blocco di testo" + }, + "text_style": { + "label": "Stile", + "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": "Stile", + "options__1": { + "label": "Menu a discesa" + }, + "options__2": { + "label": "\"A pillole\"" + } + }, + "swatch_shape": { + "label": "Campione di colore", + "info": "Maggiori informazioni sui [campioni di colore](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) nelle opzioni del prodotto", + "options__1": { + "label": "Tondo" + }, + "options__2": { + "label": "Quadrato" + }, + "options__3": { + "label": "Nessuno" + } + } + } + }, + "buy_buttons": { + "name": "Buy button", + "settings": { + "show_dynamic_checkout": { + "label": "Pulsanti di check-out dinamico", + "info": "I clienti vedranno la loro opzione di pagamento preferita. [Maggiori informazioni](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Opzioni di invio del buono regalo", + "info": "I clienti possono aggiungere un messaggio personale e pianificare la data di invio. [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": { + "text": { + "label": "Testo", + "default": "Condividi" + } + } + }, + "collapsible_tab": { + "name": "Riga comprimibile", + "settings": { + "heading": { + "label": "Titolo", + "default": "Riga comprimibile" + }, + "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", + "default": "Link pop-up con testo" + }, + "page": { + "label": "Pagina" + } + } + }, + "rating": { + "name": "Valutazione del prodotto", + "settings": { + "paragraph": { + "content": "Per le valutazioni dei prodotti è necessaria un'app. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Prodotti complementari", + "settings": { + "paragraph": { + "content": "Gestisci i prodotti complementari nell'[app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Titolo", + "default": "Si abbina con" + }, + "make_collapsible_row": { + "label": "Riga comprimibile" + }, + "icon": { + "info": "Visibile quando è selezionata la riga comprimibile" + }, + "product_list_limit": { + "label": "Conteggio prodotti" + }, + "products_per_page": { + "label": "Prodotti per pagina" + }, + "pagination_style": { + "label": "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": "Quadrate" + } + }, + "enable_quick_add": { + "label": "Aggiunta rapida" + } + } + }, + "icon_with_text": { + "name": "Icona con testo", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Orizzontale" + }, + "options__2": { + "label": "Verticale" + } + }, + "heading": { + "info": "Lascia vuoto per nascondere questa associazione" + }, + "icon_1": { + "label": "Icona" + }, + "image_1": { + "label": "Immagine" + }, + "heading_1": { + "label": "Titolo", + "default": "Titolo" + }, + "icon_2": { + "label": "Icona" + }, + "image_2": { + "label": "Immagine" + }, + "heading_2": { + "label": "Titolo", + "default": "Titolo" + }, + "icon_3": { + "label": "Icona" + }, + "image_3": { + "label": "Immagine" + }, + "heading_3": { + "label": "Titolo", + "default": "Titolo" + }, + "pairing_1": { + "label": "Associazione 1", + "info": "Scegli un'icona o aggiungi un'immagine per ogni associazione" + }, + "pairing_2": { + "label": "Associazione 2" + }, + "pairing_3": { + "label": "Associazione 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Conteggio delle scorte" + } + } + } + }, + "settings": { + "header": { + "content": "Contenuti multimediali" + }, + "enable_video_looping": { + "label": "Video in loop" + }, + "enable_sticky_info": { + "label": "Contenuto fisso" + }, + "hide_variants": { + "label": "Nascondi i contenuti multimediali delle altre varianti dopo averne selezionata una" + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Elencato" + }, + "options__2": { + "label": "2 colonne" + }, + "options__3": { + "label": "Miniature" + }, + "options__4": { + "label": "Carosello miniature" + } + }, + "media_size": { + "label": "Larghezza", + "options__1": { + "label": "Piccola" + }, + "options__2": { + "label": "Media" + }, + "options__3": { + "label": "Grande" + } + }, + "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", + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "A destra" + } + }, + "image_zoom": { + "label": "Zoom", + "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 all'altezza dello schermo" + }, + "media_fit": { + "label": "Adatta", + "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": "Venditore" + }, + "header__1": { + "content": "Scheda prodotto" + }, + "header__2": { + "content": "Scheda del blog" + }, + "article_show_date": { + "label": "Data" + }, + "article_show_author": { + "label": "Autore" + }, + "show_rating": { + "label": "Valutazione del prodotto", + "info": "Per le valutazioni dei prodotti è necessaria un'app. [Maggiori informazioni](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Colonne" + }, + "columns_mobile": { + "label": "Colonne su dispositivi mobili", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Multicolonna", + "settings": { + "title": { + "label": "Titolo", + "default": "Multicolonna" + }, + "image_width": { + "label": "Larghezza", + "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", + "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", + "default": "Etichetta pulsante", + "info": "Lascia vuoto per nascondere" + }, + "button_link": { + "label": "Link" + }, + "swipe_on_mobile": { + "label": "Carousel" + }, + "columns_desktop": { + "label": "Colonne" + }, + "header_mobile": { + "content": "Layout dispositivo mobile" + }, + "columns_mobile": { + "label": "Colonne", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Titolo" + }, + "header_image": { + "content": "Immagine" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Pulsante" + } + }, + "blocks": { + "column": { + "name": "Colonna", + "settings": { + "image": { + "label": "Immagine" + }, + "title": { + "label": "Titolo", + "default": "Colonna" + }, + "text": { + "label": "Descrizione", + "default": "Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.
" + }, + "link_label": { + "label": "Etichetta link", + "info": "Lascia vuoto per nascondere" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Multicolonna" + } + }, + "newsletter": { + "name": "Iscrizione alla newsletter", + "settings": { + "full_width": { + "label": "Larghezza intera" + }, + "paragraph": { + "content": "Aggiunta di iscrizioni [profili cliente](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Titolo", + "settings": { + "heading": { + "label": "Titolo", + "default": "Iscriviti alle nostre email" + } + } + }, + "paragraph": { + "name": "Testo", + "settings": { + "paragraph": { + "label": "Testo", + "default": "Sii tra i primi a scoprire le nuove collezioni e le offerte esclusive.
" + } + } + }, + "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": "Larghezza intera" + }, + "desktop_content_position": { + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "A destra" + }, + "label": "Posizione contenuto" + }, + "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", + "default": "Parla del tuo brand" + } + } + }, + "text": { + "name": "Testo", + "settings": { + "text": { + "label": "Testo", + "default": "Condividi informazioni sul tuo brand con i clienti. Descrivi un prodotto, condividi gli annunci o dai il benvenuto ai clienti nel tuo negozio.
" + } + } + }, + "buttons": { + "name": "Pulsanti", + "settings": { + "button_label_1": { + "label": "Etichetta", + "info": "Lascia vuoto per nascondere", + "default": "Etichetta pulsante" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Stile contorno" + }, + "button_label_2": { + "label": "Etichetta", + "info": "Lascia vuota l'etichetta per nascondere" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Stile contorno" + }, + "header_button1": { + "content": "Pulsante 1" + }, + "header_button2": { + "content": "Pulsante 2" + } + } + }, + "caption": { + "name": "Didascalia", + "settings": { + "text": { + "label": "Testo", + "default": "Aggiungi una tagline" + }, + "text_style": { + "label": "Stile", + "options__1": { + "label": "Sottotitolo" + }, + "options__2": { + "label": "Maiuscolo" + } + }, + "caption_size": { + "label": "Dimensione", + "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", + "default": "Video" + }, + "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 gli utenti che utilizzano i lettori di schermo" + }, + "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": "Larghezza intera" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Video in loop" + }, + "header__1": { + "content": "Video ospitato da Shopify" + }, + "header__2": { + "content": "Oppure incorpora il video da URL" + }, + "header__3": { + "content": "Layout" + }, + "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", + "default": "Blocco di testo" + }, + "text_style": { + "label": "Stile", + "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": "Stile", + "options__1": { + "label": "Menu a discesa" + }, + "options__2": { + "label": "\"A pillole\"" + } + }, + "swatch_shape": { + "label": "Campione di colore", + "info": "Maggiori informazioni sui [campioni di colore](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) nelle opzioni del prodotto", + "options__1": { + "label": "Tondo" + }, + "options__2": { + "label": "Quadrato" + }, + "options__3": { + "label": "Nessuno" + } + } + } + }, + "buy_buttons": { + "name": "Buy button", + "settings": { + "show_dynamic_checkout": { + "label": "Pulsanti di check-out dinamico", + "info": "I clienti vedranno la loro opzione di pagamento preferita. [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", + "default": "Condividi" + } + } + }, + "rating": { + "name": "Valutazione del prodotto", + "settings": { + "paragraph": { + "content": "Per le valutazioni dei prodotti è necessaria un'app. [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": "Sfondo secondario" + }, + "header": { + "content": "Contenuti multimediali" + }, + "enable_video_looping": { + "label": "Video in loop" + }, + "hide_variants": { + "label": "Nascondi contenuti multimediali delle varianti non selezionate sul desktop" + }, + "media_position": { + "label": "Posizione", + "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": "Aggiunta di iscrizioni [profili cliente](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Immagine di sfondo" + }, + "show_background_image": { + "label": "Mostra immagine di sfondo" + }, + "show_text_box": { + "label": "Contenitore" + }, + "image_overlay_opacity": { + "label": "Opacità della sovrapposizione" + }, + "show_text_below": { + "label": "Elenca testo sotto l'immagine" + }, + "image_height": { + "label": "Altezza", + "options__1": { + "label": "Adatta all'immagine" + }, + "options__2": { + "label": "Piccola" + }, + "options__3": { + "label": "Media" + }, + "options__4": { + "label": "Grande" + } + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "A destra" + }, + "label": "Allineamento" + }, + "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" + }, + "color_scheme": { + "info": "Visibile quando è visualizzato il contenitore." + }, + "content_header": { + "content": "Contenuto" + } + }, + "blocks": { + "heading": { + "name": "Titolo", + "settings": { + "heading": { + "label": "Titolo", + "default": "Prossima apertura" + } + } + }, + "paragraph": { + "name": "Testo", + "settings": { + "paragraph": { + "label": "Testo", + "default": "Sii tra i primi a sapere quando apriremo.
" + }, + "text_style": { + "options__1": { + "label": "Testo" + }, + "options__2": { + "label": "Sottotitolo" + }, + "label": "Stile" + } + } + }, + "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": "Pagina" + } + }, + "slide_height": { + "label": "Altezza", + "options__1": { + "label": "Adatta alla prima immagine" + }, + "options__2": { + "label": "Piccola" + }, + "options__3": { + "label": "Media" + }, + "options__4": { + "label": "Grande" + } + }, + "slider_visual": { + "label": "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": "Elenca testo sotto l'immagine" + }, + "accessibility": { + "content": "Accessibilità", + "label": "Descrizione presentazione", + "info": "Descrivi la presentazione per gli utenti che utilizzano i lettori di schermo", + "default": "Presentazione sul nostro brand" + } + }, + "blocks": { + "slide": { + "name": "Scorrimento", + "settings": { + "image": { + "label": "Image" + }, + "heading": { + "label": "Titolo", + "default": "Slide immagine" + }, + "subheading": { + "label": "Sottotitolo", + "default": "Racconta la storia del tuo brand con video e immagini" + }, + "button_label": { + "label": "Etichetta", + "info": "Lascia vuoto per nascondere", + "default": "Etichetta pulsante" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Stile contorno" + }, + "box_align": { + "label": "Posizione contenuto", + "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" + } + }, + "show_text_box": { + "label": "Contenitore" + }, + "text_alignment": { + "label": "Allineamento contenuto", + "option_1": { + "label": "A sinistra" + }, + "option_2": { + "label": "Al centro" + }, + "option_3": { + "label": "A destra" + } + }, + "image_overlay_opacity": { + "label": "Opacità della sovrapposizione" + }, + "text_alignment_mobile": { + "label": "Allineamento contenuto su dispositivi mobili", + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "A destra" + } + }, + "header_button": { + "content": "Pulsante" + }, + "header_layout": { + "content": "Layout" + }, + "header_text": { + "content": "Testo" + }, + "header_colors": { + "content": "Colori" + } + } + } + }, + "presets": { + "name": "Presentazione" + } + }, + "collapsible_content": { + "name": "Contenuto comprimibile", + "settings": { + "caption": { + "label": "Didascalia" + }, + "heading": { + "label": "Titolo", + "default": "Contenuto comprimibile" + }, + "heading_alignment": { + "label": "Allineamento titolo", + "options__1": { + "label": "A sinistra" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "A destra" + } + }, + "layout": { + "label": "Contenitore", + "options__1": { + "label": "Nessun contenitore" + }, + "options__2": { + "label": "Contenitore riga" + }, + "options__3": { + "label": "Contenitore sezione" + } + }, + "container_color_scheme": { + "label": "Schema di colori dei contenitori" + }, + "open_first_collapsible_row": { + "label": "Apri prima riga" + }, + "header": { + "content": "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": "Posizionamento", + "options__1": { + "label": "Prima l'immagine" + }, + "options__2": { + "label": "L'immagine dopo" + } + }, + "layout_header": { + "content": "Layout" + }, + "section_color_scheme": { + "label": "Schema colori della sezione" + } + }, + "blocks": { + "collapsible_row": { + "name": "Riga comprimibile", + "settings": { + "heading": { + "label": "Titolo", + "default": "Riga comprimibile" + }, + "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", + "shop_login_button": { + "enable": "Abilita Accedi con Shop" + } + }, + "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": "Conteggio prodotti" + }, + "columns_desktop": { + "label": "Colonne" + }, + "paragraph__1": { + "content": "I prodotti correlati possono essere gestiti nell'[app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Potrebbero interessarti anche" + }, + "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": "Venditore" + }, + "show_rating": { + "label": "Valutazione del prodotto", + "info": "Per le valutazioni dei prodotti è necessaria un'app. [Maggiori informazioni](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Colonne su dispositivi mobili", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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" + }, + "desktop_image_width": { + "options__1": { + "label": "Piccola" + }, + "options__2": { + "label": "Media" + }, + "options__3": { + "label": "Grande" + }, + "label": "Larghezza" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "In alto" + }, + "options__2": { + "label": "Al centro" + }, + "options__3": { + "label": "In basso" + }, + "label": "Posizione" + }, + "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" + }, + "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 su dispositivi mobili" + }, + "header": { + "content": "Immagine" + }, + "header_2": { + "content": "Contenuto" + }, + "header_3": { + "content": "Colori" + } + }, + "blocks": { + "row": { + "name": "Riga", + "settings": { + "image": { + "label": "Immagine" + }, + "caption": { + "label": "Didascalia", + "default": "Didascalia" + }, + "heading": { + "label": "Titolo", + "default": "Riga" + }, + "text": { + "label": "Testo", + "default": "Associa un testo a un'immagine per dare importanza al prodotto, alla collezione o all'articolo del blog di tua scelta. Aggiungi dettagli sulla disponibilità, sullo stile o fornisci una recensione.
" + }, + "button_label": { + "label": "Etichetta pulsante", + "default": "Etichetta pulsante", + "info": "Lascia vuoto per nascondere" + }, + "button_link": { + "label": "Link pulsante" + } + } + } + }, + "presets": { + "name": "Riga multipla" + } + }, + "quick-order-list": { + "name": "Elenco ordini rapido", + "settings": { + "show_image": { + "label": "Immagini" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "Varianti per pagina" + } + }, + "presets": { + "name": "Elenco ordini rapido" + } + } + } +} diff --git a/locales/ja.json b/locales/ja.json new file mode 100644 index 0000000..62bc973 --- /dev/null +++ b/locales/ja.json @@ -0,0 +1,530 @@ +{ + "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": "Xで共有する", + "share_on_pinterest": "Pinterestでピンする" + }, + "links": { + "twitter": "X (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": "数量ルールを見る", + "min_of": "最小:{{ quantity }}", + "max_of": "最大: {{ quantity }}", + "in_cart_aria_label": "カート内の数量 ({{ quantity }}個)" + }, + "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 }}) が利用できるようになりました" + }, + "nested_label": "{{ parent_title }}向けの{{ title }}", + "view_full_details": "詳細を表示する", + "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_range": "{{ minimum }}~{{ maximum }}", + "price_at_each_html": "{{ price }}/ユニットで" + }, + "taxes_included": "税込。", + "duties_included": "関税込。", + "duties_and_taxes_included": "関税と税金が含まれます。" + }, + "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 }}個しかカートに追加することができません。", + "headings": { + "product": "商品", + "price": "価格", + "total": "合計", + "quantity": "数量", + "image": "商品画像" + }, + "update": "アップデート", + "login": { + "title": "アカウントをお持ちですか?", + "paragraph_html": "ログインすることで、チェックアウトがスピーディーに行えます。" + }, + "estimated_total": "見積もり合計", + "new_estimated_total": "新たな推定総額", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "関税と税金が含まれます。ディスカウントと配送料はチェックアウト時に計算されます。", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "関税と税金が含まれます。ディスカウントと配送料はチェックアウト時に計算されます。", + "taxes_included_shipping_at_checkout_with_policy_html": "税込。ディスカウントと配送料はチェックアウト時に計算されます。", + "taxes_included_shipping_at_checkout_without_policy": "税込。ディスカウントと配送料はチェックアウト時に計算されます。", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "関税込。税、ディスカウント、および配送料はチェックアウト時に計算されます。", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "関税込。税、ディスカウント、および配送料はチェックアウト時に計算されます。", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "税、ディスカウント、および配送料はチェックアウト時に計算されます。", + "taxes_at_checkout_shipping_at_checkout_without_policy": "税、ディスカウント、および配送料はチェックアウト時に計算されます。" + }, + "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": "キャンセル", + "remove_all_single_item_confirmation": "カートからアイテムを1個削除しますか?", + "min_error": "このアイテムの最小値は{{ min }}です", + "max_error": "このアイテムの最大値は{{ max }}です", + "step_error": "このアイテムは、{{ step }}の増分でのみ追加できます" + } + }, + "localization": { + "country_label": "国/地域", + "language_label": "言語", + "update_language": "言語を更新する", + "update_country": "国/地域を更新する", + "search": "検索", + "popular_countries_regions": "人気のある国/地域", + "country_results_count": "{{ count }}の国/地域が見つかりました" + }, + "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": "送信", + "alternate_provider_separator": "または" + }, + "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..96e0599 --- /dev/null +++ b/locales/ja.schema.json @@ -0,0 +1,3401 @@ +{ + "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": "フォント" + }, + "header__1": { + "content": "見出し" + }, + "header__2": { + "content": "本文" + }, + "type_body_font": { + "label": "フォント" + }, + "heading_scale": { + "label": "拡大" + }, + "body_scale": { + "label": "拡大" + } + } + }, + "social-media": { + "name": "SNS", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "paragraph": "カート価格とチェックアウト価格には常に通貨コードが表示されます。", + "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": { + "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/manual/online-store/themes/theme-structure/page-types/product-pages#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": "幅" + }, + "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": "特大" + }, + "options__5": { + "label": "4L" + } + }, + "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": "画像の形状" + }, + "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": "テキスト", + "default": "ストアへようこそ" + }, + "text_alignment": { + "label": "テキストアラインメント", + "options__1": { + "label": "左" + }, + "options__2": { + "label": "中央" + }, + "options__3": { + "label": "右" + } + }, + "link": { + "label": "リンク" + } + }, + "name": "告知" + } + }, + "settings": { + "auto_rotate": { + "label": "自動切り替えのお知らせ" + }, + "change_slides_speed": { + "label": "変更する間隔" + }, + "show_social": { + "label": "SNSのアイコン", + "info": "[ソーシャルアカウントの管理](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "国/地域セレクター", + "info": "[国/地域の管理](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "言語セレクター", + "info": "[言語の管理](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "ユーティリティー" + }, + "paragraph": { + "content": "大画面にのみ表示される" + } + }, + "presets": { + "name": "告知バー" + } + }, + "collage": { + "name": "コラージュ", + "settings": { + "heading": { + "label": "見出し", + "default": "マルチメディアコラージュ" + }, + "desktop_layout": { + "label": "レイアウト", + "options__1": { + "label": "大きなブロックを先に" + }, + "options__2": { + "label": "大きなブロックを最後に" + } + }, + "mobile_layout": { + "label": "モバイルのレイアウト", + "options__1": { + "label": "コラージュ" + }, + "options__2": { + "label": "列" + } + }, + "card_styles": { + "label": "カードスタイル", + "info": "[テーマ設定] で個別のカードスタイルを管理する](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "個別のカードスタイルを使用する" + }, + "options__2": { + "label": "すべてを商品カードとする" + } + }, + "header_layout": { + "content": "レイアウト" + } + }, + "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)", + "default": "動画の説明をする" + } + }, + "name": "ビデオ" + } + }, + "presets": { + "name": "コラージュ" + } + }, + "collection-list": { + "name": "コレクションリスト", + "settings": { + "title": { + "label": "見出し", + "default": "コレクション" + }, + "image_ratio": { + "label": "画像比", + "options__1": { + "label": "画像に合わせる" + }, + "options__2": { + "label": "ポートレート" + }, + "options__3": { + "label": "正方形" + } + }, + "swipe_on_mobile": { + "label": "カルーセル" + }, + "show_view_all": { + "label": "「すべて表示」ボタン", + "info": "リストに表示されている以上のコレクションがある場合に表示されます" + }, + "columns_desktop": { + "label": "列" + }, + "header_mobile": { + "content": "モバイルのレイアウト" + }, + "columns_mobile": { + "label": "列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "レイアウト" + } + }, + "blocks": { + "featured_collection": { + "settings": { + "collection": { + "label": "コレクション" + } + }, + "name": "コレクション" + } + }, + "presets": { + "name": "コレクションリスト" + } + }, + "contact-form": { + "name": "お問い合わせフォーム", + "presets": { + "name": "お問い合わせフォーム" + }, + "settings": { + "title": { + "default": "お問い合わせフォーム", + "label": "見出し" + } + } + }, + "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": "見出し", + "default": "ブログ記事" + }, + "blog": { + "label": "ブログ" + }, + "post_limit": { + "label": "投稿数" + }, + "show_view_all": { + "label": "「すべて表示」ボタン", + "info": "ブログに表示されている投稿数よりも多くの投稿がある場合に表示されます" + }, + "show_image": { + "label": "記事のサムネイル" + }, + "show_date": { + "label": "日付" + }, + "show_author": { + "label": "作成者" + }, + "columns_desktop": { + "label": "列" + }, + "layout_header": { + "content": "レイアウト" + }, + "text_header": { + "content": "テキスト" + } + }, + "presets": { + "name": "ブログ記事" + } + }, + "featured-collection": { + "name": "特集コレクション", + "settings": { + "title": { + "label": "見出し", + "default": "特集コレクション" + }, + "collection": { + "label": "コレクション" + }, + "products_to_show": { + "label": "商品数" + }, + "show_view_all": { + "label": "「すべて表示」ボタン", + "info": "コレクションに表示されているよりも多くの商品がある場合に表示されます" + }, + "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": "クイック追加" + }, + "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": "カルーセル" + }, + "header_text": { + "content": "テキスト" + }, + "header_collection": { + "content": "コレクションレイアウト" + } + }, + "presets": { + "name": "特集コレクション" + } + }, + "footer": { + "name": "フッター", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "見出し", + "default": "クイックリンク" + }, + "menu": { + "label": "メニュー" + } + }, + "name": "メニュー" + }, + "text": { + "settings": { + "heading": { + "label": "見出し", + "default": "見出し" + }, + "subtext": { + "label": "サブテキスト", + "default": "連絡先情報、ストア詳細、ブランドのコンテンツをお客様と共有します。
" + } + }, + "name": "テキスト" + }, + "brand_information": { + "name": "ブランド情報", + "settings": { + "paragraph": { + "content": "[テーマ設定] でブランド情報を管理する](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "SNSのアイコン", + "info": "[ソーシャルアカウントの管理](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "メール登録者" + }, + "newsletter_heading": { + "label": "見出し", + "default": "ストアからのメールを受け取る" + }, + "header__1": { + "info": "サインアップにより [お客様プロフィール] が追加されます](https://help.shopify.com/manual/customers/manage-customers)", + "content": "メール登録者" + }, + "show_social": { + "label": "SNSのアイコン", + "info": "[ソーシャルアカウントの管理](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "国/地域セレクター", + "info": "[国/地域の管理](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "言語セレクター", + "info": "[言語の管理](/admin/settings/languages)" + }, + "payment_enable": { + "label": "決済方法アイコン" + }, + "margin_top": { + "label": "上マージン" + }, + "show_policy": { + "label": "ポリシーリンク", + "info": "[ポリシーの管理](/admin/settings/legal)" + }, + "header__9": { + "content": "ユーティリティー" + }, + "enable_follow_on_shop": { + "label": "Shopでフォロー", + "info": "Shop Payを有効にする必要があります。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-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": "メニュータイプ", + "options__1": { + "label": "ドロップダウン" + }, + "options__2": { + "label": "メガメニュー" + }, + "options__3": { + "label": "ドロワー" + } + }, + "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": "常にロゴのサイズを小さくする" + } + }, + "enable_country_selector": { + "label": "国/地域セレクター", + "info": "[国/地域の管理](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "言語セレクター", + "info": "[言語の管理](/admin/settings/languages)" + }, + "header__1": { + "content": "色" + }, + "menu_color_scheme": { + "label": "メニューの配色" + }, + "enable_customer_avatar": { + "label": "お客様アカウントAvatar", + "info": "お客様がShopにサインインしている場合にのみ表示されます。お客様アカウントの管理](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "ユーティリティー" + } + } + }, + "image-banner": { + "name": "画像バナー", + "settings": { + "image": { + "label": "画像1" + }, + "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": "中" + }, + "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": "モバイルのレイアウト" + }, + "content": { + "content": "コンテンツ" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "見出し", + "default": "画像バナー" + } + }, + "name": "見出し" + }, + "text": { + "settings": { + "text": { + "label": "テキスト", + "default": "テンプレートのバナー画像またはコンテンツに関する詳細をお客様に提供します。" + }, + "text_style": { + "options__1": { + "label": "本文" + }, + "options__2": { + "label": "字幕" + }, + "options__3": { + "label": "大文字" + }, + "label": "スタイル" + } + }, + "name": "テキスト" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "ラベル", + "info": "非表示にするには空白のままにしてください。", + "default": "ボタンのラベル" + }, + "button_link_1": { + "label": "リンク" + }, + "button_style_secondary_1": { + "label": "アウトラインスタイル" + }, + "button_label_2": { + "label": "ラベル", + "info": "非表示にするには空白のままにしてください。", + "default": "ボタンのラベル" + }, + "button_link_2": { + "label": "リンク" + }, + "button_style_secondary_2": { + "label": "アウトラインスタイル" + }, + "header_1": { + "content": "ボタン1" + }, + "header_2": { + "content": "ボタン2" + } + }, + "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": "配置" + }, + "desktop_image_width": { + "options__1": { + "label": "小" + }, + "options__2": { + "label": "中" + }, + "options__3": { + "label": "大" + }, + "label": "幅" + }, + "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": "中央" + } + }, + "header": { + "content": "コンテンツ" + }, + "header_colors": { + "content": "色" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "見出し", + "default": "テキスト付き画像" + } + }, + "name": "見出し" + }, + "text": { + "settings": { + "text": { + "label": "テキスト", + "default": "選択した商品、コレクション、ブログ記事に注目を集めるため、テキストと画像を組み合わせます。可用性、スタイル、またはレビュー提供についての詳細を追加します。
" + }, + "text_style": { + "label": "スタイル", + "options__1": { + "label": "本文" + }, + "options__2": { + "label": "字幕" + } + } + }, + "name": "テキスト" + }, + "button": { + "settings": { + "button_label": { + "label": "ラベル", + "info": "非表示にするには空白のままにしてください。", + "default": "ボタンのラベル" + }, + "button_link": { + "label": "リンク" + }, + "outline_button": { + "label": "アウトラインスタイル" + } + }, + "name": "ボタン" + }, + "caption": { + "name": "キャプション", + "settings": { + "text": { + "label": "テキスト", + "default": "タグラインを追加" + }, + "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": "中" + }, + "options__4": { + "label": "大" + } + } + }, + "name": "記事のサムネイル" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "日付" + }, + "blog_show_author": { + "label": "作成者" + } + }, + "name": "タイトル" + }, + "content": { + "name": "コンテンツ" + }, + "share": { + "name": "共有", + "settings": { + "text": { + "label": "テキスト", + "default": "共有" + } + } + } + } + }, + "main-blog": { + "name": "ブログ記事", + "settings": { + "show_image": { + "label": "記事のサムネイル" + }, + "show_date": { + "label": "日付" + }, + "show_author": { + "label": "作成者" + }, + "layout": { + "label": "レイアウト", + "options__1": { + "label": "グリッド" + }, + "options__2": { + "label": "コラージュ" + } + }, + "image_height": { + "label": "画像の高さ", + "options__1": { + "label": "画像に合わせる" + }, + "options__2": { + "label": "小" + }, + "options__3": { + "label": "中" + }, + "options__4": { + "label": "大" + } + } + } + }, + "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": "画像" + } + } + }, + "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/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "列" + }, + "columns_mobile": { + "label": "モバイル列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "フィルターレイアウト", + "options__1": { + "label": "水平" + }, + "options__2": { + "label": "垂直" + }, + "options__3": { + "label": "ドロワー" + } + }, + "quick_add": { + "label": "クイック追加", + "options": { + "option_1": "なし", + "option_2": "スタンダード", + "option_3": "一括" + } + } + } + }, + "main-list-collections": { + "name": "コレクションリストのページ", + "settings": { + "title": { + "label": "見出し", + "default": "コレクション" + }, + "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": "正方形" + } + }, + "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_help": { + "content": "[テーマ設定]](/editor?context=theme&category=logo) でロゴを編集する" + } + } + }, + "main-product": { + "name": "商品情報", + "blocks": { + "text": { + "settings": { + "text": { + "label": "テキスト", + "default": "テキストブロック" + }, + "text_style": { + "label": "スタイル", + "options__1": { + "label": "本文" + }, + "options__2": { + "label": "字幕" + }, + "options__3": { + "label": "大文字" + } + } + }, + "name": "テキスト" + }, + "variant_picker": { + "name": "バリエーションピッカー", + "settings": { + "picker_type": { + "label": "スタイル", + "options__1": { + "label": "ドロップダウン" + }, + "options__2": { + "label": "ピル型ボタン" + } + }, + "swatch_shape": { + "label": "見本", + "info": "商品オプションの [見本](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)の詳細を確認する", + "options__1": { + "label": "円形" + }, + "options__2": { + "label": "正方形" + }, + "options__3": { + "label": "なし" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "動的チェックアウトボタン", + "info": "お客様には希望する支払いオプションが表示されます。[詳しくはこちら](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": { + "text": { + "label": "テキスト", + "default": "共有" + } + }, + "name": "共有" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "見出し", + "default": "折りたたみ可能な行" + }, + "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": "リンクラベル", + "default": "ポップアップリンクのテキスト" + }, + "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-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "付属商品", + "settings": { + "paragraph": { + "content": "[検索&発見アプリ] で補完的な商品を管理する](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "見出し", + "default": "相性が良い" + }, + "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": "垂直" + } + }, + "heading": { + "info": "このペアリングを非表示にするには空白のままにします" + }, + "icon_1": { + "label": "アイコン" + }, + "image_1": { + "label": "画像" + }, + "heading_1": { + "label": "見出し", + "default": "見出し" + }, + "icon_2": { + "label": "アイコン" + }, + "image_2": { + "label": "画像" + }, + "heading_2": { + "label": "見出し", + "default": "見出し" + }, + "icon_3": { + "label": "アイコン" + }, + "image_3": { + "label": "画像" + }, + "heading_3": { + "label": "見出し", + "default": "見出し" + }, + "pairing_1": { + "label": "ペアリング1", + "info": "各ペアリングのアイコンを選択するか、画像を追加します" + }, + "pairing_2": { + "label": "ペアリング2" + }, + "pairing_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": "低在庫基準値" + }, + "show_inventory_quantity": { + "label": "在庫数" + } + } + } + }, + "settings": { + "header": { + "content": "メディア" + }, + "enable_video_looping": { + "label": "ループビデオ" + }, + "enable_sticky_info": { + "label": "スティッキーコンテンツ" + }, + "hide_variants": { + "label": "1つのバリエーションメディアを選択した後、他のバリエーションメディアを非表示にする" + }, + "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": "大" + } + }, + "mobile_thumbnails": { + "label": "モバイルのレイアウト", + "options__1": { + "label": "2列" + }, + "options__2": { + "label": "サムネイルを表示する" + }, + "options__3": { + "label": "サムネイルを非表示にする" + } + }, + "media_position": { + "label": "位置", + "options__1": { + "label": "左" + }, + "options__2": { + "label": "右" + } + }, + "image_zoom": { + "label": "ズーム", + "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": "ブログカード" + }, + "article_show_date": { + "label": "日付" + }, + "article_show_author": { + "label": "作成者" + }, + "show_rating": { + "label": "商品評価", + "info": "商品評価にはアプリが必要です。[詳しくはこちら](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "列" + }, + "columns_mobile": { + "label": "モバイル列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "マルチカラム", + "settings": { + "title": { + "label": "見出し", + "default": "マルチカラム" + }, + "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": "ラベル", + "default": "ボタンのラベル", + "info": "非表示にするには空白のままにしてください。" + }, + "button_link": { + "label": "リンク" + }, + "swipe_on_mobile": { + "label": "カルーセル" + }, + "columns_desktop": { + "label": "列" + }, + "header_mobile": { + "content": "モバイルのレイアウト" + }, + "columns_mobile": { + "label": "列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "見出し" + }, + "header_image": { + "content": "画像" + }, + "header_layout": { + "content": "レイアウト" + }, + "header_button": { + "content": "ボタン" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "画像" + }, + "title": { + "label": "見出し", + "default": "列" + }, + "text": { + "label": "説明", + "default": "選択した商品、コレクション、ブログ記事に注目を集めるため、テキストと画像を組み合わせます。可用性、スタイル、またはレビュー提供についての詳細を追加します。
" + }, + "link_label": { + "label": "リンクラベル", + "info": "非表示にするには空白のままにしてください。" + }, + "link": { + "label": "リンク" + } + }, + "name": "列" + } + }, + "presets": { + "name": "マルチカラム" + } + }, + "newsletter": { + "name": "メール登録", + "settings": { + "full_width": { + "label": "全幅" + }, + "paragraph": { + "content": "サインアップにより [お客様プロフィール] が追加されます](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "見出し", + "default": "ストアからのメールを受け取る" + } + }, + "name": "見出し" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "テキスト", + "default": "新しいコレクションや限定オファーに関する最新情報をお知らせします。
" + } + }, + "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": "コンテンツンの位置" + }, + "content_alignment": { + "options__1": { + "label": "左" + }, + "options__2": { + "label": "中央" + }, + "options__3": { + "label": "右" + }, + "label": "コンテンツアラインメント" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "見出し", + "default": "ブランドについて説明する" + } + }, + "name": "見出し" + }, + "text": { + "settings": { + "text": { + "label": "テキスト", + "default": "ブランドに関する情報をお客様と共有します。商品を説明したり、告知をしたり、ストアへのお客様を歓迎したりします。
" + } + }, + "name": "テキスト" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "ラベル", + "info": "非表示にするには空白のままにしてください。", + "default": "ボタンのラベル" + }, + "button_link_1": { + "label": "リンク" + }, + "button_style_secondary_1": { + "label": "アウトラインスタイル" + }, + "button_label_2": { + "label": "ラベル", + "info": "ラベルを空白のままにすると非表示になります。" + }, + "button_link_2": { + "label": "リンク" + }, + "button_style_secondary_2": { + "label": "アウトラインスタイル" + }, + "header_button1": { + "content": "ボタン1" + }, + "header_button2": { + "content": "ボタン2" + } + }, + "name": "ボタン" + }, + "caption": { + "name": "キャプション", + "settings": { + "text": { + "label": "テキスト", + "default": "タグラインを追加" + }, + "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": "見出し", + "default": "動画" + }, + "cover_image": { + "label": "カバー画像" + }, + "video_url": { + "label": "URL", + "info": "YouTubeやVimeoのURLを使う" + }, + "description": { + "label": "動画の代替テキスト", + "info": "スクリーンリーダーを使用している人のためにスライドショーを説明する" + }, + "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": "テキスト", + "default": "テキストブロック" + }, + "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": "ピル型ボタン" + } + }, + "swatch_shape": { + "label": "見本", + "info": "商品オプションの [見本](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)の詳細を確認する", + "options__1": { + "label": "円形" + }, + "options__2": { + "label": "正方形" + }, + "options__3": { + "label": "なし" + } + } + } + }, + "buy_buttons": { + "name": "購入ボタン", + "settings": { + "show_dynamic_checkout": { + "label": "動的チェックアウトボタン", + "info": "お客様には希望する支払いオプションが表示されます。[詳しくはこちら](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": "テキスト", + "default": "共有" + } + } + }, + "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": "メディア" + }, + "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/manage-customers)" + }, + "image": { + "label": "背景画像" + }, + "show_background_image": { + "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": "中" + }, + "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": "配置" + }, + "header": { + "content": "モバイルのレイアウト" + }, + "mobile_content_alignment": { + "options__1": { + "label": "左" + }, + "options__2": { + "label": "中央" + }, + "options__3": { + "label": "右" + }, + "label": "配置" + }, + "color_scheme": { + "info": "コンテナが表示されたタイミングで表示されます。" + }, + "content_header": { + "content": "コンテンツ" + } + }, + "blocks": { + "heading": { + "name": "見出し", + "settings": { + "heading": { + "label": "見出し", + "default": "まもなく公開" + } + } + }, + "paragraph": { + "name": "テキスト", + "settings": { + "paragraph": { + "label": "テキスト", + "default": "ストアに関する最新情報をお知らせします。
" + }, + "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": "スクリーンリーダーを使用している人のためにスライドショーを説明する", + "default": "ブランドについてのスライドショー" + } + }, + "blocks": { + "slide": { + "name": "スライド", + "settings": { + "image": { + "label": "画像" + }, + "heading": { + "label": "見出し", + "default": "画像スライド" + }, + "subheading": { + "label": "小見出し", + "default": "ブランドのストーリーを画像で伝える" + }, + "button_label": { + "label": "ラベル", + "info": "非表示にするには空白のままにしてください。", + "default": "ボタンのラベル" + }, + "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": "右下" + } + }, + "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": "右" + } + }, + "header_button": { + "content": "ボタン" + }, + "header_layout": { + "content": "レイアウト" + }, + "header_text": { + "content": "テキスト" + }, + "header_colors": { + "content": "色" + } + } + } + }, + "presets": { + "name": "スライドショー" + } + }, + "collapsible_content": { + "name": "折りたたみ可能なコンテンツ", + "settings": { + "caption": { + "label": "キャプション" + }, + "heading": { + "label": "見出し", + "default": "折りたたみ可能なコンテンツ" + }, + "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" + } + }, + "container_color_scheme": { + "label": "コンテナの配色" + }, + "layout_header": { + "content": "レイアウト" + }, + "section_color_scheme": { + "label": "セクションの配色" + } + }, + "blocks": { + "collapsible_row": { + "name": "折りたたみ可能な行", + "settings": { + "heading": { + "label": "見出し", + "default": "折りたたみ可能な行" + }, + "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": "ログイン", + "shop_login_button": { + "enable": "[Shopでログイン] を有効にする" + } + }, + "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": "関連商品は [Search & Discoveryアプリ] で管理できます](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "おすすめ" + }, + "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/customizing-themes/add-product-recommendations)" + }, + "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": "幅" + }, + "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": "位置" + }, + "image_layout": { + "options__1": { + "label": "左から交互に" + }, + "options__2": { + "label": "右から交互に" + }, + "options__3": { + "label": "左寄せ" + }, + "options__4": { + "label": "右寄せ" + }, + "label": "配置" + }, + "container_color_scheme": { + "label": "コンテナの配色" + }, + "mobile_content_alignment": { + "options__1": { + "label": "左" + }, + "options__2": { + "label": "中央" + }, + "options__3": { + "label": "右" + }, + "label": "モバイル配置" + }, + "header": { + "content": "画像" + }, + "header_2": { + "content": "コンテンツ" + }, + "header_3": { + "content": "色" + } + }, + "blocks": { + "row": { + "name": "行", + "settings": { + "image": { + "label": "画像" + }, + "caption": { + "label": "キャプション", + "default": "キャプション" + }, + "heading": { + "label": "見出し", + "default": "行" + }, + "text": { + "label": "テキスト", + "default": "選択した商品、コレクション、ブログ記事に注目を集めるため、テキストと画像を組み合わせます。可用性、スタイル、またはレビュー提供についての詳細を追加します。
" + }, + "button_label": { + "label": "ボタンのラベル", + "default": "ボタンのラベル", + "info": "非表示にするには空白のままにしてください。" + }, + "button_link": { + "label": "ボタンのリンク" + } + } + } + }, + "presets": { + "name": "複数列" + } + }, + "quick-order-list": { + "name": "迅速な注文リスト", + "settings": { + "show_image": { + "label": "画像" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "ページあたりのバリエーション数" + } + }, + "presets": { + "name": "迅速な注文リスト" + } + } + } +} diff --git a/locales/ko.json b/locales/ko.json new file mode 100644 index 0000000..3070802 --- /dev/null +++ b/locales/ko.json @@ -0,0 +1,530 @@ +{ + "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": "X에 공유", + "share_on_pinterest": "Pinterest에 고정하기" + }, + "links": { + "twitter": "X(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": "수량 규칙 보기", + "min_of": "최소 {{ quantity }}개", + "max_of": "최대 {{ quantity }}개", + "in_cart_aria_label": "수량(카트에 {{ quantity }}개)" + }, + "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 }} 사용 가능" + }, + "nested_label": "{{ parent_title }}용 {{ title }}", + "view_full_details": "전체 세부 정보 보기", + "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_range": "{{ minimum }} ~ {{ maximum }}", + "price_at_each_html": "개당 {{ price }}" + }, + "taxes_included": "세금이 포함된 가격입니다.", + "duties_included": "관세가 포함된 가격입니다.", + "duties_and_taxes_included": "관세 및 세금이 포함된 가격입니다." + }, + "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 }}개만 추가할 수 있습니다.", + "headings": { + "product": "제품", + "price": "가격", + "total": "총계", + "quantity": "수량", + "image": "제품 이미지" + }, + "update": "업데이트", + "login": { + "title": "계정이 있습니까?", + "paragraph_html": "더 빠르게 결제하려면 로그인하십시오." + }, + "estimated_total": "예상 총액", + "new_estimated_total": "새로운 예상 총액", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "관세 및 세금이 포함된 가격입니다. 결제 시 할인 및 배송료가 계산됩니다.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "관세 및 세금이 포함된 가격입니다. 결제 시 할인 및 배송료가 계산됩니다.", + "taxes_included_shipping_at_checkout_with_policy_html": "세금이 포함된 가격입니다. 결제 시 할인 및 배송료가 계산됩니다.", + "taxes_included_shipping_at_checkout_without_policy": "세금이 포함된 가격입니다. 결제 시 할인 및 배송료가 계산됩니다.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "관세가 포함된 가격입니다. 결제 시 세금, 할인 및 배송료가 계산됩니다.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "관세가 포함된 가격입니다. 결제 시 세금, 할인 및 배송료가 계산됩니다.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "결제 시 세금, 할인 및 배송료가 계산됩니다.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "결제 시 세금, 할인 및 배송료가 계산됩니다." + }, + "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": "취소", + "remove_all_single_item_confirmation": "카트에서 1개의 품목을 제거하시겠습니까?", + "min_error": "이 품목의 최소 개수는 {{ min }}개입니다.", + "max_error": "이 품목은 최대 개수는 {{ max }}개입니다.", + "step_error": "이 품목은 {{ step }}개 단위로만 추가할 수 있습니다." + } + }, + "localization": { + "country_label": "국가/지역", + "language_label": "언어", + "update_language": "언어 업데이트", + "update_country": "국가/지역 업데이트", + "search": "검색", + "popular_countries_regions": "인기 국가/지역", + "country_results_count": "{{ count }}개의 국가/지역 찾음" + }, + "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": "제출", + "alternate_provider_separator": "또는" + }, + "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..d1531ba --- /dev/null +++ b/locales/ko.schema.json @@ -0,0 +1,3401 @@ +{ + "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": "글꼴" + }, + "header__1": { + "content": "제목" + }, + "header__2": { + "content": "본문" + }, + "type_body_font": { + "label": "글꼴" + }, + "heading_scale": { + "label": "크기 조정" + }, + "body_scale": { + "label": "크기 조정" + } + } + }, + "social-media": { + "name": "소셜 미디어", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "paragraph": "카트 및 결제 가격에는 항상 통화 코드가 표시됩니다", + "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": { + "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/manual/online-store/themes/theme-structure/page-types/product-pages#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": "너비" + }, + "favicon": { + "label": "Favicon", + "info": "32x32픽셀로 표시됩니다" + } + } + }, + "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": "특대" + }, + "options__5": { + "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": "이미지 모양" + }, + "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": "텍스트", + "default": "스토어에 오신 것을 환영합니다" + }, + "text_alignment": { + "label": "텍스트 정렬", + "options__1": { + "label": "왼쪽" + }, + "options__2": { + "label": "가운데" + }, + "options__3": { + "label": "오른쪽" + } + }, + "link": { + "label": "링크" + } + }, + "name": "공지" + } + }, + "settings": { + "auto_rotate": { + "label": "공지 사항 자동 회전" + }, + "change_slides_speed": { + "label": "변경 간격" + }, + "show_social": { + "label": "소셜 미디어 아이콘", + "info": "[소셜 계정 관리하기](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "국가/지역 선택기", + "info": "[국가/지역 관리하기](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "언어 선택기", + "info": "[언어 관리하기](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "유틸리티" + }, + "paragraph": { + "content": "큰 화면에서만 표시" + } + }, + "presets": { + "name": "공지 표시줄" + } + }, + "collage": { + "name": "콜라주", + "settings": { + "heading": { + "label": "제목", + "default": "멀티미디어 콜라주" + }, + "desktop_layout": { + "label": "레이아웃", + "options__1": { + "label": "큰 블록을 처음에" + }, + "options__2": { + "label": "큰 블록을 마지막에" + } + }, + "mobile_layout": { + "label": "모바일 레이아웃", + "options__1": { + "label": "콜라주" + }, + "options__2": { + "label": "열" + } + }, + "card_styles": { + "label": "카드 스타일", + "info": "[테마 설정](/editor?context=theme&category=product%20cards)에서 개별 카드 스타일을 관리할 수 있습니다", + "options__1": { + "label": "개별 카드 스타일 사용" + }, + "options__2": { + "label": "제품 카드를 모든 스타일에 적용" + } + }, + "header_layout": { + "content": "레이아웃" + } + }, + "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)", + "default": "비디오 설명" + } + }, + "name": "동영상" + } + }, + "presets": { + "name": "콜라주" + } + }, + "collection-list": { + "name": "컬렉션 목록", + "settings": { + "title": { + "label": "제목", + "default": "컬렉션" + }, + "image_ratio": { + "label": "이미지 비율", + "options__1": { + "label": "이미지에 맞춤" + }, + "options__2": { + "label": "세로형" + }, + "options__3": { + "label": "정사각형" + } + }, + "swipe_on_mobile": { + "label": "캐러셀" + }, + "show_view_all": { + "label": "\"모두 보기\" 버튼", + "info": "목록에 표시된 것보다 많은 컬렉션이 있는 경우 표시됩니다" + }, + "columns_desktop": { + "label": "열" + }, + "header_mobile": { + "content": "모바일 레이아웃" + }, + "columns_mobile": { + "label": "열", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "레이아웃" + } + }, + "blocks": { + "featured_collection": { + "settings": { + "collection": { + "label": "컬렉션" + } + }, + "name": "컬렉션" + } + }, + "presets": { + "name": "컬렉션 목록" + } + }, + "contact-form": { + "name": "연락처 양식", + "presets": { + "name": "연락처 양식" + }, + "settings": { + "title": { + "default": "연락처 양식", + "label": "제목" + } + } + }, + "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": "제목", + "default": "블로그 게시물" + }, + "blog": { + "label": "블로그" + }, + "post_limit": { + "label": "게시물 수" + }, + "show_view_all": { + "label": "\"모두 보기\" 버튼", + "info": "블로그에 표시된 것보다 많은 게시물이 있는 경우 표시됩니다" + }, + "show_image": { + "label": "추천 이미지" + }, + "show_date": { + "label": "날짜" + }, + "show_author": { + "label": "작성자" + }, + "columns_desktop": { + "label": "열" + }, + "layout_header": { + "content": "레이아웃" + }, + "text_header": { + "content": "텍스트" + } + }, + "presets": { + "name": "블로그 게시물" + } + }, + "featured-collection": { + "name": "추천 컬렉션", + "settings": { + "title": { + "label": "제목", + "default": "추천 컬렉션" + }, + "collection": { + "label": "컬렉션" + }, + "products_to_show": { + "label": "제품 수" + }, + "show_view_all": { + "label": "\"모두 보기\" 버튼", + "info": "컬렉션에 표시된 것보다 많은 제품이 있는 경우 표시됩니다" + }, + "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": "빠른 추가" + }, + "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": "캐러셀" + }, + "header_text": { + "content": "텍스트" + }, + "header_collection": { + "content": "컬렉션 레이아웃" + } + }, + "presets": { + "name": "추천 컬렉션" + } + }, + "footer": { + "name": "바닥글", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "제목", + "default": "빠른 링크" + }, + "menu": { + "label": "메뉴" + } + }, + "name": "메뉴" + }, + "text": { + "settings": { + "heading": { + "label": "제목", + "default": "제목" + }, + "subtext": { + "label": "하위 텍스트", + "default": "연락처 정보, 스토어 세부 정보, 브랜드 콘텐츠를 고객과 공유하십시오.
" + } + }, + "name": "텍스트" + }, + "brand_information": { + "name": "브랜드 정보", + "settings": { + "paragraph": { + "content": "[테마 설정](/editor?context=theme&category=brand%20information)에서 브랜드 정보를 관리할 수 있습니다" + }, + "show_social": { + "label": "소셜 미디어 아이콘", + "info": "[소셜 계정 관리하기](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "이메일 가입" + }, + "newsletter_heading": { + "label": "제목", + "default": "이메일 구독" + }, + "header__1": { + "info": "가입하면 [고객 프로필](https://help.shopify.com/manual/customers/manage-customers)이 추가됩니다", + "content": "이메일 가입" + }, + "show_social": { + "label": "소셜 미디어 아이콘", + "info": "[소셜 계정 관리하기](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "국가/지역 선택기", + "info": "[국가/지역 관리하기](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "언어 선택기", + "info": "[언어 관리하기](/admin/settings/languages)" + }, + "payment_enable": { + "label": "결제 방법 아이콘" + }, + "margin_top": { + "label": "상단 마진" + }, + "show_policy": { + "label": "정책 링크", + "info": "[정책 관리하기](/admin/settings/legal)" + }, + "header__9": { + "content": "유틸리티" + }, + "enable_follow_on_shop": { + "label": "Shop에서 팔로우", + "info": "Shop Pay를 활성화해야 합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-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": "메뉴 유형", + "options__1": { + "label": "드롭다운" + }, + "options__2": { + "label": "메가 메뉴" + }, + "options__3": { + "label": "서랍" + } + }, + "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": "항상, 로고 크기 축소" + } + }, + "enable_country_selector": { + "label": "국가/지역 선택기", + "info": "[국가/지역 관리하기](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "언어 선택기", + "info": "[언어 관리하기](/admin/settings/languages)" + }, + "header__1": { + "content": "색상" + }, + "menu_color_scheme": { + "label": "메뉴 색상 구성표" + }, + "enable_customer_avatar": { + "label": "고객 계정 아바타", + "info": "고객이 Shop에 로그인한 경우에만 표시됩니다. [고객 계정 관리하기](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "유틸리티" + } + } + }, + "image-banner": { + "name": "이미지 배너", + "settings": { + "image": { + "label": "이미지 1" + }, + "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": "보통" + }, + "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": "모바일 레이아웃" + }, + "content": { + "content": "콘텐츠" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "제목", + "default": "이미지 배너" + } + }, + "name": "제목" + }, + "text": { + "settings": { + "text": { + "label": "텍스트", + "default": "템플릿에서 배너 이미지 또는 콘텐츠의 세부 정보를 고객에게 제공하십시오." + }, + "text_style": { + "options__1": { + "label": "본문" + }, + "options__2": { + "label": "소제목" + }, + "options__3": { + "label": "대문자" + }, + "label": "스타일" + } + }, + "name": "텍스트" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "레이블", + "info": "숨기려면 비워 둡니다", + "default": "버튼 레이블" + }, + "button_link_1": { + "label": "링크" + }, + "button_style_secondary_1": { + "label": "윤곽선 스타일" + }, + "button_label_2": { + "label": "레이블", + "info": "숨기려면 비워 둡니다", + "default": "버튼 레이블" + }, + "button_link_2": { + "label": "링크" + }, + "button_style_secondary_2": { + "label": "윤곽선 스타일" + }, + "header_1": { + "content": "버튼 1" + }, + "header_2": { + "content": "버튼 2" + } + }, + "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": "배치" + }, + "desktop_image_width": { + "options__1": { + "label": "작게" + }, + "options__2": { + "label": "보통" + }, + "options__3": { + "label": "크게" + }, + "label": "너비" + }, + "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": "가운데" + } + }, + "header": { + "content": "콘텐츠" + }, + "header_colors": { + "content": "색상" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "제목", + "default": "텍스트 포함 이미지" + } + }, + "name": "제목" + }, + "text": { + "settings": { + "text": { + "label": "텍스트", + "default": "이미지와 텍스트를 짝지어 선택한 제품, 컬렉션, 블로그 게시물을 강조합니다. 사용 가능성, 스타일에 대한 자세한 정보를 추가하거나 리뷰를 제공합니다.
" + }, + "text_style": { + "label": "스타일", + "options__1": { + "label": "본문" + }, + "options__2": { + "label": "소제목" + } + } + }, + "name": "텍스트" + }, + "button": { + "settings": { + "button_label": { + "label": "레이블", + "info": "숨기려면 비워 둡니다", + "default": "버튼 레이블" + }, + "button_link": { + "label": "링크" + }, + "outline_button": { + "label": "윤곽선 스타일" + } + }, + "name": "버튼" + }, + "caption": { + "name": "캡션", + "settings": { + "text": { + "label": "텍스트", + "default": "슬로건 추가" + }, + "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": "보통" + }, + "options__4": { + "label": "크게" + } + } + }, + "name": "추천 이미지" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "날짜" + }, + "blog_show_author": { + "label": "작성자" + } + }, + "name": "제목" + }, + "content": { + "name": "콘텐츠" + }, + "share": { + "name": "공유", + "settings": { + "text": { + "label": "텍스트", + "default": "공유" + } + } + } + } + }, + "main-blog": { + "name": "블로그 게시물", + "settings": { + "show_image": { + "label": "추천 이미지" + }, + "show_date": { + "label": "날짜" + }, + "show_author": { + "label": "작성자" + }, + "layout": { + "label": "레이아웃", + "options__1": { + "label": "그리드" + }, + "options__2": { + "label": "콜라주" + } + }, + "image_height": { + "label": "이미지 높이", + "options__1": { + "label": "이미지에 맞춤" + }, + "options__2": { + "label": "작게" + }, + "options__3": { + "label": "보통" + }, + "options__4": { + "label": "크게" + } + } + } + }, + "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": "이미지" + } + } + }, + "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/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "열" + }, + "columns_mobile": { + "label": "모바일 열", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "필터 레이아웃", + "options__1": { + "label": "수평" + }, + "options__2": { + "label": "수직" + }, + "options__3": { + "label": "펼침 메뉴" + } + }, + "quick_add": { + "label": "빠른 추가", + "options": { + "option_1": "없음", + "option_2": "표준", + "option_3": "대량" + } + } + } + }, + "main-list-collections": { + "name": "컬렉션 목록 페이지", + "settings": { + "title": { + "label": "제목", + "default": "컬렉션" + }, + "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": "정사각형" + } + }, + "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_help": { + "content": "[테마 설정](/editor?context=theme&category=logo)에서 로고를 편집할 수 있습니다" + } + } + }, + "main-product": { + "name": "제품 정보", + "blocks": { + "text": { + "settings": { + "text": { + "label": "텍스트", + "default": "텍스트 블록" + }, + "text_style": { + "label": "스타일", + "options__1": { + "label": "본문" + }, + "options__2": { + "label": "소제목" + }, + "options__3": { + "label": "대문자" + } + } + }, + "name": "텍스트" + }, + "variant_picker": { + "name": "이형 상품 피커", + "settings": { + "picker_type": { + "label": "스타일", + "options__1": { + "label": "드롭다운" + }, + "options__2": { + "label": "타원형" + } + }, + "swatch_shape": { + "label": "견본", + "info": "제품 옵션의 [견본](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)에 대해 자세히 알아보기", + "options__1": { + "label": "원형" + }, + "options__2": { + "label": "정사각형" + }, + "options__3": { + "label": "없음" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "동적 결제 버튼", + "info": "고객은 자신이 선호하는 결제 옵션을 볼 수 있습니다. [자세히 알아보기](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": { + "text": { + "label": "텍스트", + "default": "공유" + } + }, + "name": "공유" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "제목", + "default": "축소 가능한 행" + }, + "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": "레이블 링크", + "default": "팝업 링크 텍스트" + }, + "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-pages#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": "제목", + "default": "잘 어울리는 아이템" + }, + "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": "수직" + } + }, + "heading": { + "info": "이 페어링을 숨기려면 비워 둡니다" + }, + "icon_1": { + "label": "아이콘" + }, + "image_1": { + "label": "이미지" + }, + "heading_1": { + "label": "제목", + "default": "제목" + }, + "icon_2": { + "label": "아이콘" + }, + "image_2": { + "label": "이미지" + }, + "heading_2": { + "label": "제목", + "default": "제목" + }, + "icon_3": { + "label": "아이콘" + }, + "image_3": { + "label": "이미지" + }, + "heading_3": { + "label": "제목", + "default": "제목" + }, + "pairing_1": { + "label": "페어링 1", + "info": "각 페어링에 사용할 아이콘을 선택하거나 이미지를 추가합니다" + }, + "pairing_2": { + "label": "페어링 2" + }, + "pairing_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": "재고 부족 임계값" + }, + "show_inventory_quantity": { + "label": "재고 수" + } + } + } + }, + "settings": { + "header": { + "content": "미디어" + }, + "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": "크게" + } + }, + "mobile_thumbnails": { + "label": "모바일 레이아웃", + "options__1": { + "label": "열 2개" + }, + "options__2": { + "label": "썸네일 표시" + }, + "options__3": { + "label": "썸네일 숨기기" + } + }, + "media_position": { + "label": "위치", + "options__1": { + "label": "왼쪽" + }, + "options__2": { + "label": "오른쪽" + } + }, + "image_zoom": { + "label": "확대/축소", + "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": "블로그 카드" + }, + "article_show_date": { + "label": "날짜" + }, + "article_show_author": { + "label": "작성자" + }, + "show_rating": { + "label": "제품 평점", + "info": "제품 평점을 표시하려면 앱이 필요합니다. [자세히 알아보기](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "열" + }, + "columns_mobile": { + "label": "모바일 열", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "여러 열", + "settings": { + "title": { + "label": "제목", + "default": "여러 열" + }, + "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": "레이블", + "default": "버튼 레이블", + "info": "숨기려면 비워 둡니다" + }, + "button_link": { + "label": "링크" + }, + "swipe_on_mobile": { + "label": "캐러셀" + }, + "columns_desktop": { + "label": "열" + }, + "header_mobile": { + "content": "모바일 레이아웃" + }, + "columns_mobile": { + "label": "열", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "제목" + }, + "header_image": { + "content": "이미지" + }, + "header_layout": { + "content": "레이아웃" + }, + "header_button": { + "content": "버튼" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "이미지" + }, + "title": { + "label": "제목", + "default": "열" + }, + "text": { + "label": "설명", + "default": "이미지와 텍스트를 짝지어 선택한 제품, 컬렉션, 블로그 게시물을 강조합니다. 사용 가능성, 스타일에 대한 자세한 정보를 추가하거나 리뷰를 제공합니다.
" + }, + "link_label": { + "label": "레이블 링크", + "info": "숨기려면 비워 둡니다" + }, + "link": { + "label": "링크" + } + }, + "name": "열" + } + }, + "presets": { + "name": "여러 열" + } + }, + "newsletter": { + "name": "이메일 가입", + "settings": { + "full_width": { + "label": "전체 너비" + }, + "paragraph": { + "content": "가입하면 [고객 프로필](https://help.shopify.com/manual/customers/manage-customers)이 추가됩니다" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "제목", + "default": "이메일 구독" + } + }, + "name": "제목" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "텍스트", + "default": "새로운 컬렉션과 독점 혜택 소식을 가장 먼저 알려드립니다.
" + } + }, + "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": "콘텐츠 위치" + }, + "content_alignment": { + "options__1": { + "label": "왼쪽" + }, + "options__2": { + "label": "가운데" + }, + "options__3": { + "label": "오른쪽" + }, + "label": "콘텐츠 정렬" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "제목", + "default": "브랜드에 대해 이야기하기" + } + }, + "name": "제목" + }, + "text": { + "settings": { + "text": { + "label": "텍스트", + "default": "고객과 브랜드 정보를 공유하세요. 제품을 설명하고 공지 사항을 제공하고, 스토어를 방문하는 고객을 환영할 수 있습니다.
" + } + }, + "name": "텍스트" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "레이블", + "info": "숨기려면 비워 둡니다", + "default": "버튼 레이블" + }, + "button_link_1": { + "label": "링크" + }, + "button_style_secondary_1": { + "label": "윤곽선 스타일" + }, + "button_label_2": { + "label": "레이블", + "info": "숨기려면 레이블을 비워 둡니다" + }, + "button_link_2": { + "label": "링크" + }, + "button_style_secondary_2": { + "label": "윤곽선 스타일" + }, + "header_button1": { + "content": "버튼 1" + }, + "header_button2": { + "content": "버튼 2" + } + }, + "name": "버튼" + }, + "caption": { + "name": "캡션", + "settings": { + "text": { + "label": "텍스트", + "default": "슬로건 추가" + }, + "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": "제목", + "default": "동영상" + }, + "cover_image": { + "label": "커버 이미지" + }, + "video_url": { + "label": "URL", + "info": "YouTube 또는 Vimeo URL 사용" + }, + "description": { + "label": "동영상 대체 텍스트", + "info": "스크린 리더 사용자에게 동영상을 설명합니다" + }, + "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": "텍스트", + "default": "텍스트 블록" + }, + "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": "타원형" + } + }, + "swatch_shape": { + "label": "견본", + "info": "제품 옵션의 [견본](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)에 대해 자세히 알아보기", + "options__1": { + "label": "원형" + }, + "options__2": { + "label": "정사각형" + }, + "options__3": { + "label": "없음" + } + } + } + }, + "buy_buttons": { + "name": "구매 버튼", + "settings": { + "show_dynamic_checkout": { + "label": "동적 결제 버튼", + "info": "고객은 자신이 선호하는 결제 옵션을 볼 수 있습니다. [자세히 알아보기](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": "텍스트", + "default": "공유" + } + } + }, + "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": "미디어" + }, + "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/manage-customers)이 추가됩니다" + }, + "image": { + "label": "배경 이미지" + }, + "show_background_image": { + "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": "보통" + }, + "options__4": { + "label": "크게" + } + }, + "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": "컨테이너가 표시될 때 볼 수 있습니다." + }, + "content_header": { + "content": "콘텐츠" + } + }, + "blocks": { + "heading": { + "name": "제목", + "settings": { + "heading": { + "label": "제목", + "default": "곧 개장 예정" + } + } + }, + "paragraph": { + "name": "텍스트", + "settings": { + "paragraph": { + "label": "텍스트", + "default": "출시 할 때 가장 먼저 알려드립니다.
" + }, + "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": "스크린 리더 사용자에게 슬라이드 쇼를 설명합니다", + "default": "브랜드 소개 슬라이드 쇼" + } + }, + "blocks": { + "slide": { + "name": "슬라이드", + "settings": { + "image": { + "label": "이미지" + }, + "heading": { + "label": "제목", + "default": "이미지 슬라이드" + }, + "subheading": { + "label": "소제목", + "default": "이미지를 통해 브랜드 스토리 이야기하기" + }, + "button_label": { + "label": "레이블", + "info": "숨기려면 비워 둡니다", + "default": "버튼 레이블" + }, + "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": "오른쪽 하단" + } + }, + "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": "오른쪽" + } + }, + "header_button": { + "content": "버튼" + }, + "header_layout": { + "content": "레이아웃" + }, + "header_text": { + "content": "텍스트" + }, + "header_colors": { + "content": "색상" + } + } + } + }, + "presets": { + "name": "슬라이드 쇼" + } + }, + "collapsible_content": { + "name": "축소 가능한 콘텐츠", + "settings": { + "caption": { + "label": "캡션" + }, + "heading": { + "label": "제목", + "default": "축소 가능한 콘텐츠" + }, + "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": "이미지 두 번째" + } + }, + "container_color_scheme": { + "label": "컨테이너 색상 배합" + }, + "layout_header": { + "content": "레이아웃" + }, + "section_color_scheme": { + "label": "섹션 색상 구성표" + } + }, + "blocks": { + "collapsible_row": { + "name": "축소 가능한 행", + "settings": { + "heading": { + "label": "제목", + "default": "축소 가능한 행" + }, + "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": "로그인", + "shop_login_button": { + "enable": "Shop으로 로그인 활성화" + } + }, + "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": "[Search & Discovery 앱](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)에서 관련 제품을 관리할 수 있습니다", + "default": "회원님이 좋아할 만한 추천 제품" + }, + "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/customizing-themes/add-product-recommendations)" + }, + "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": "너비" + }, + "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": "위치" + }, + "image_layout": { + "options__1": { + "label": "왼쪽에서 번갈아" + }, + "options__2": { + "label": "오른쪽에서 번갈아" + }, + "options__3": { + "label": "왼쪽 맞춤" + }, + "options__4": { + "label": "오른쪽 맞춤" + }, + "label": "배치" + }, + "container_color_scheme": { + "label": "컨테이너 색상 구성표" + }, + "mobile_content_alignment": { + "options__1": { + "label": "왼쪽" + }, + "options__2": { + "label": "가운데" + }, + "options__3": { + "label": "오른쪽" + }, + "label": "모바일 정렬" + }, + "header": { + "content": "이미지" + }, + "header_2": { + "content": "콘텐츠" + }, + "header_3": { + "content": "색상" + } + }, + "blocks": { + "row": { + "name": "열", + "settings": { + "image": { + "label": "이미지" + }, + "caption": { + "label": "캡션", + "default": "캡션" + }, + "heading": { + "label": "제목", + "default": "열" + }, + "text": { + "label": "텍스트", + "default": "이미지와 텍스트를 짝지어 선택한 제품, 컬렉션, 블로그 게시물을 강조합니다. 사용 가능성, 스타일에 대한 자세한 정보를 추가하거나 리뷰를 제공합니다.
" + }, + "button_label": { + "label": "버튼 레이블", + "default": "버튼 레이블", + "info": "숨기려면 비워 둡니다" + }, + "button_link": { + "label": "버튼 링크" + } + } + } + }, + "presets": { + "name": "여러 행" + } + }, + "quick-order-list": { + "name": "빠른 주문 목록", + "settings": { + "show_image": { + "label": "이미지" + }, + "show_sku": { + "label": "SKU(재고 관리 코드)" + }, + "variants_per_page": { + "label": "페이지당 이형 상품" + } + }, + "presets": { + "name": "빠른 주문 목록" + } + } + } +} diff --git a/locales/lt.json b/locales/lt.json new file mode 100644 index 0000000..035f2df --- /dev/null +++ b/locales/lt.json @@ -0,0 +1,554 @@ +{ + "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": "Bendrinti X", + "share_on_pinterest": "Skelbti „Pinterest“" + }, + "links": { + "twitter": "X („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", + "min_of": "Min. {{ quantity }}", + "max_of": "Maks. {{ quantity }}", + "in_cart_aria_label": "Kiekis ({{ quantity }} krepšelyje)" + }, + "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" + }, + "nested_label": "{{ title }} už ({{ parent_title }})", + "view_full_details": "Žiūrėti visą informaciją", + "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_range": "{{ minimum }}–{{ maximum }}", + "price_at_each_html": "po {{ price }}/vnt." + }, + "taxes_included": "Mokesčiai įtraukti.", + "duties_included": "Muito mokesčiai įtraukti.", + "duties_and_taxes_included": "Muito ir kiti mokesčiai įtraukti." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Muito ir kiti mokesčiai įtraukti. Nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Muito ir kiti mokesčiai įtraukti. Nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "taxes_included_shipping_at_checkout_with_policy_html": "Mokesčiai įtraukti. Nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "taxes_included_shipping_at_checkout_without_policy": "Mokesčiai įtraukti. Nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Muito mokesčiai įtraukti. Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Muito mokesčiai įtraukti. Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojamos atsiskaitant." + }, + "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", + "remove_all_single_item_confirmation": "Pašalinti 1 prekę iš krepšelio?", + "min_error": "Nustatytas mažiausias šios prekės kiekis: {{ min }}", + "max_error": "Nustatytas didžiausias šios prekės kiekis: {{ max }}", + "step_error": "Galima pridėti tik po {{ step }} vnt. šios prekės" + } + }, + "localization": { + "country_label": "Šalis / regionas", + "language_label": "Kalba", + "update_language": "Atnaujinti kalbą", + "update_country": "Atnaujinti šalį / regioną", + "search": "Ieškoti", + "popular_countries_regions": "Populiarios valstybės / regionai", + "country_results_count": "Rasta valstybių / regionų: {{ count }}" + }, + "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", + "alternate_provider_separator": "arba" + }, + "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..d6afa35 --- /dev/null +++ b/locales/nb.json @@ -0,0 +1,530 @@ +{ + "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": "Del på X", + "share_on_pinterest": "Pin på Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Minimum {{ quantity }}", + "max_of": "Maksimum {{ quantity }}", + "in_cart_aria_label": "Antall ({{ quantity }} i handlekurven)" + }, + "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" + }, + "nested_label": "{{ title }} for {{ parent_title }}", + "view_full_details": "Vis alle detaljer", + "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_range": "{{ minimum }}–{{ maximum }}", + "price_at_each_html": "til {{ price }}/pr. stk" + }, + "product_variants": "Produktvarianter", + "taxes_included": "Inkludert avgifter.", + "duties_included": "Inkluder tollplikter.", + "duties_and_taxes_included": "Inkludert tollplikter og avgifter." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Inkludert tollplikter og avgifter. Rabatter og frakt beregnes i kassen.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Inkludert tollplikter og avgifter. Rabatter og frakt beregnes i kassen.", + "taxes_included_shipping_at_checkout_with_policy_html": "Inkludert avgifter. Rabatter og frakt beregnes i kassen.", + "taxes_included_shipping_at_checkout_without_policy": "Inkludert avgifter. Rabatter og frakt beregnes i kassen.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Inkluder tollplikter. Avgifter, rabatter og frakt beregnes i kassen.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Inkluder tollplikter. Avgifter, rabatter og frakt beregnes i kassen.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Avgifter, rabatter og frakt beregnes i kassen.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Avgifter, rabatter og frakt beregnes i kassen." + }, + "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", + "remove_all_single_item_confirmation": "Vil du fjerne én vare fra handlekurven?", + "min_error": "Denne varen har et minimumsantall på {{ min }}", + "max_error": "Denne varen har et maksimumsantall på {{ max }}", + "step_error": "Du kan bare legge til denne varen i multipler av {{ step }}" + } + }, + "localization": { + "country_label": "Land/region", + "language_label": "Språk", + "update_language": "Oppdater språk", + "update_country": "Oppdater land/region", + "search": "Søk", + "popular_countries_regions": "Populære land/regioner", + "country_results_count": "{{ count }} land/regioner funnet" + }, + "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", + "alternate_provider_separator": "eller" + }, + "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..275b54d --- /dev/null +++ b/locales/nb.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Overskrifter" + }, + "header__2": { + "content": "Brødtekst" + }, + "type_body_font": { + "label": "Skrifttype" + }, + "heading_scale": { + "label": "Skala" + }, + "body_scale": { + "label": "Skala" + } + } + }, + "social-media": { + "name": "Sosiale medier", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Valutakoder" + }, + "paragraph": "Handlekurv- og kassepriser viser alltid valutakoder" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Søkeforslag" + }, + "predictive_search_show_vendor": { + "label": "Produktselger", + "info": "Synlig når søkeforslag er aktivert" + }, + "predictive_search_show_price": { + "label": "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 å vise [produktvarianter på](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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": "Type", + "drawer": { + "label": "Skuff" + }, + "page": { + "label": "Side" + }, + "notification": { + "label": "Popup-varsel" + } + }, + "show_vendor": { + "label": "Selger" + }, + "show_cart_note": { + "label": "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": "Bredde" + }, + "favicon": { + "label": "Favorittikon", + "info": "Vises med 32 x 32 piksler" + } + } + }, + "brand_information": { + "name": "Merkevareinformasjon", + "settings": { + "brand_headline": { + "label": "Overskrift" + }, + "brand_description": { + "label": "Beskrivelse" + }, + "brand_image": { + "label": "Bilde" + }, + "brand_image_width": { + "label": "Bildebredde" + }, + "paragraph": { + "content": "Vises i bunntekstens blokk med merkevareinformasjon" + } + } + }, + "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": "Marg", + "padding_top": "Topp", + "padding_bottom": "Bunn" + }, + "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": "Medie" + }, + "options__3": { + "label": "Stor" + }, + "options__4": { + "label": "Ekstra stort" + }, + "options__5": { + "label": "Ekstra ekstra stor" + } + }, + "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" + }, + "animation": { + "content": "Animasjoner", + "image_behavior": { + "options__1": { + "label": "Ingen" + }, + "options__2": { + "label": "Bevegelse i omgivelsene" + }, + "label": "Animasjon", + "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", + "default": "Velkommen til butikken vår" + }, + "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" + }, + "show_social": { + "label": "Ikoner for sosiale medier", + "info": "[Administrer sosiale kontoer ](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Land-/områdevelger", + "info": "[Administrer land/regioner](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Språkvelger", + "info": "[Administrer språk](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Verktøy" + }, + "paragraph": { + "content": "Vises kun på store skjermer" + } + }, + "presets": { + "name": "Kunngjøringslinje" + } + }, + "collage": { + "name": "Fotomontasje", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Multimedia-kollasj" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Stor blokk først" + }, + "options__2": { + "label": "Stor blokk sist" + } + }, + "mobile_layout": { + "label": "Mobillayout", + "options__1": { + "label": "Fotomontasje" + }, + "options__2": { + "label": "Kolonne" + } + }, + "card_styles": { + "label": "Kortstil", + "info": "Administrer individuelle kortstiler i [temainnstillingene](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Bruk individuelle kortstiler" + }, + "options__2": { + "label": "Stilsett alle som produktkort" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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)", + "default": "Beskriv videoen" + } + } + } + }, + "presets": { + "name": "Fotomontasje" + } + }, + "collection-list": { + "name": "Liste over samlinger", + "settings": { + "title": { + "label": "Overskrift", + "default": "Samlinger" + }, + "image_ratio": { + "label": "Bildeforhold", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Portrett" + }, + "options__3": { + "label": "Kvadratisk" + } + }, + "swipe_on_mobile": { + "label": "Karusell" + }, + "show_view_all": { + "label": "«Se alt»-knapp", + "info": "Synlig hvis listen har flere samlinger enn det som vises" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Kolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "blocks": { + "featured_collection": { + "name": "Samling", + "settings": { + "collection": { + "label": "Samling" + } + } + } + }, + "presets": { + "name": "Liste over samlinger" + } + }, + "contact-form": { + "name": "Kontaktskjema", + "presets": { + "name": "Kontaktskjema" + }, + "settings": { + "title": { + "default": "Kontaktskjema", + "label": "Overskrift" + } + } + }, + "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", + "default": "Blogginnlegg" + }, + "blog": { + "label": "Blogg" + }, + "post_limit": { + "label": "Antall innlegg" + }, + "show_view_all": { + "label": "«Se alt»-knapp", + "info": "Synlig hvis bloggen har flere innlegg enn det som vises" + }, + "show_image": { + "label": "Fremhevet bilde" + }, + "show_date": { + "label": "Dato" + }, + "show_author": { + "label": "Forfatter" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Tekst" + } + }, + "presets": { + "name": "Blogginnlegg" + } + }, + "featured-collection": { + "name": "Fremhevet samling", + "settings": { + "title": { + "label": "Overskrift", + "default": "Fremhevet samling" + }, + "collection": { + "label": "Samling" + }, + "products_to_show": { + "label": "Antall produkter" + }, + "show_view_all": { + "label": "«Se alt»-knapp", + "info": "Synlig hvis samlingen har flere produkter enn det som vises" + }, + "header": { + "content": "Produktkort" + }, + "image_ratio": { + "label": "Bildeforhold", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Portrett" + }, + "options__3": { + "label": "Kvadratisk" + } + }, + "show_secondary_image": { + "label": "Vis sekundærbilde når musepekeren beveges over" + }, + "show_vendor": { + "label": "Selger" + }, + "show_rating": { + "label": "Produktanmeldelse", + "info": "En app kreves for anmeldelser. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "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": "Karusell" + }, + "full_width": { + "label": "Produkter i full bredde" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Kolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Karusell" + }, + "enable_quick_buy": { + "label": "Hurtigregistrering" + }, + "header_text": { + "content": "Tekst" + }, + "header_collection": { + "content": "Layout for samling" + } + }, + "presets": { + "name": "Fremhevet samling" + } + }, + "footer": { + "name": "Bunntekst", + "blocks": { + "link_list": { + "name": "Meny", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Hurtigkoblinger" + }, + "menu": { + "label": "Meny" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Overskrift" + }, + "subtext": { + "label": "Undertekst", + "default": "Del kontaktopplysninger, butikkdetaljer og merkevareinnhold med kundene dine.
" + } + } + }, + "brand_information": { + "name": "Merkevareinformasjon", + "settings": { + "paragraph": { + "content": "Administrer merkevareinfo i [temainnstillingene](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Ikoner for sosiale medier", + "info": "[Administrer sosiale kontoer ](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "E-postregistrering" + }, + "newsletter_heading": { + "label": "Overskrift", + "default": "Abonner på e-postmeldingene våre" + }, + "header__1": { + "content": "E-postregistrering", + "info": "Legg til registreringer [av kundeprofiler](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Ikoner for sosiale medier", + "info": "[Administrer sosiale kontoer ](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Land-/områdevelger", + "info": "[Administrer land/regioner](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Språkvelger", + "info": "[Administrer språk](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ikoner for betalingsmåter" + }, + "margin_top": { + "label": "Toppmarg" + }, + "show_policy": { + "label": "Koblinger til retningslinjer", + "info": "[Administrer retningslinjer](/admin/settings/legal)" + }, + "header__9": { + "content": "Verktøy" + }, + "enable_follow_on_shop": { + "label": "Følg på Shop", + "info": "Shop Pay må være aktivert. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Overskrift", + "settings": { + "logo_position": { + "label": "Logoplassering", + "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": "Delelinje" + }, + "margin_bottom": { + "label": "Bunnmarg" + }, + "menu_type_desktop": { + "label": "Menytype", + "options__1": { + "label": "Rullegardin" + }, + "options__2": { + "label": "Megameny" + }, + "options__3": { + "label": "Skuff" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Land-/områdevelger", + "info": "[Administrer land/regioner](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Språkvelger", + "info": "[Administrer språk](/admin/settings/languages)" + }, + "header__1": { + "content": "Farge" + }, + "menu_color_scheme": { + "label": "Menyens fargepalett" + }, + "enable_customer_avatar": { + "label": "Avatar for kundekonto", + "info": "Kun synlig når kunder er logget inn med Shop. [Administrer kundekontoer](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Verktøy" + } + } + }, + "image-banner": { + "name": "Bildeoverskrift", + "settings": { + "image": { + "label": "Bilde 1" + }, + "image_2": { + "label": "Bilde 2" + }, + "stack_images_on_mobile": { + "label": "Stable bilder" + }, + "show_text_box": { + "label": "Beholder" + }, + "image_overlay_opacity": { + "label": "Overleggets gjennomsiktighet" + }, + "show_text_below": { + "label": "Beholder" + }, + "image_height": { + "label": "Høyde", + "options__1": { + "label": "Tilpass etter første bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medie" + }, + "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": "Posisjon" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering" + }, + "mobile": { + "content": "Mobillayout" + }, + "content": { + "content": "Innhold" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Bildeoverskrift" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Gi kundene mer informasjon om bannerbildet/-bildene eller innholdet i malen." + }, + "text_style": { + "options__1": { + "label": "Brødtekst" + }, + "options__2": { + "label": "Undertekst" + }, + "options__3": { + "label": "Store bokstaver" + }, + "label": "Stil" + } + } + }, + "buttons": { + "name": "Knapper", + "settings": { + "button_label_1": { + "label": "Etikett", + "info": "La stå tom for å skjule", + "default": "Knappetikett" + }, + "button_link_1": { + "label": "Kobling" + }, + "button_style_secondary_1": { + "label": "Stil på omriss" + }, + "button_label_2": { + "label": "Etikett", + "info": "La stå tom for å skjule", + "default": "Knappetikett" + }, + "button_link_2": { + "label": "Kobling" + }, + "button_style_secondary_2": { + "label": "Stil på omriss" + }, + "header_1": { + "content": "Knapp 1" + }, + "header_2": { + "content": "Knapp 2" + } + } + } + }, + "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": "Medie" + }, + "label": "Høyde", + "options__4": { + "label": "Stor" + } + }, + "layout": { + "options__1": { + "label": "Bilde først" + }, + "options__2": { + "label": "Andre bilde" + }, + "label": "Plassering" + }, + "desktop_image_width": { + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medie" + }, + "options__3": { + "label": "Stor" + }, + "label": "Bredde" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering" + }, + "desktop_content_position": { + "options__1": { + "label": "Topp" + }, + "options__2": { + "label": "Midten" + }, + "options__3": { + "label": "Bunn" + }, + "label": "Posisjon" + }, + "content_layout": { + "options__1": { + "label": "Ingen overlapping" + }, + "options__2": { + "label": "Overlapping" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering på mobil" + }, + "header": { + "content": "Innhold" + }, + "header_colors": { + "content": "Farger" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Bilde med tekst" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Koble tekst med et bilde for å fokusere på valgt produkt, samling eller blogginnlegg. Legg til informasjon om tilgjengelighet, stil eller vis frem en anmeldelse.
" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Brødtekst" + }, + "options__2": { + "label": "Undertekst" + } + } + } + }, + "button": { + "name": "Knapp", + "settings": { + "button_label": { + "label": "Etikett", + "info": "La stå tom for å skjule", + "default": "Knappetikett" + }, + "button_link": { + "label": "Kobling" + }, + "outline_button": { + "label": "Stil på omriss" + } + } + }, + "caption": { + "name": "Bildetekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Legg til et slagord" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Undertekst" + }, + "options__2": { + "label": "Store bokstaver" + } + }, + "caption_size": { + "label": "Størrelse", + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medie" + }, + "options__3": { + "label": "Stor" + } + } + } + } + }, + "presets": { + "name": "Bilde med tekst" + } + }, + "main-article": { + "name": "Blogginnlegg", + "blocks": { + "featured_image": { + "name": "Fremhevet bilde", + "settings": { + "image_height": { + "label": "Bildehøyde", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medie" + }, + "options__4": { + "label": "Stor" + } + } + } + }, + "title": { + "name": "Tittel", + "settings": { + "blog_show_date": { + "label": "Dato" + }, + "blog_show_author": { + "label": "Forfatter" + } + } + }, + "content": { + "name": "Innhold" + }, + "share": { + "name": "Del", + "settings": { + "text": { + "label": "Tekst", + "default": "Del" + } + } + } + } + }, + "main-blog": { + "name": "Blogginnlegg", + "settings": { + "show_image": { + "label": "Fremhevet bilde" + }, + "show_date": { + "label": "Dato" + }, + "show_author": { + "label": "Forfatter" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Rutenett" + }, + "options__2": { + "label": "Fotomontasje" + } + }, + "image_height": { + "label": "Bildehøyde", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medie" + }, + "options__4": { + "label": "Stor" + } + } + } + }, + "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": "Detaljer om samlinger [administreres i administratorpanelet](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Beskrivelse" + }, + "show_collection_image": { + "label": "Bilde" + } + } + }, + "main-collection-product-grid": { + "name": "Produktrutenett", + "settings": { + "products_per_page": { + "label": "Produkter per side" + }, + "enable_filtering": { + "label": "Filtre", + "info": "Tilpass filtre med [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Sortering" + }, + "image_ratio": { + "label": "Bildeforhold", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Portrett" + }, + "options__3": { + "label": "Kvadratisk" + } + }, + "show_secondary_image": { + "label": "Vis sekundærbilde når musepekeren beveges over" + }, + "show_vendor": { + "label": "Selger" + }, + "header__1": { + "content": "Filtrering og sortering" + }, + "header__3": { + "content": "Produktkort" + }, + "enable_tags": { + "label": "Filtre", + "info": "Tilpass filtre med [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "show_rating": { + "label": "Produktanmeldelse", + "info": "En app kreves for produktanmeldelser. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Layout for filtre", + "options__1": { + "label": "Horisontalt" + }, + "options__2": { + "label": "Vertikalt" + }, + "options__3": { + "label": "Skuff" + } + }, + "quick_add": { + "label": "Hurtigregistrering", + "options": { + "option_1": "Ingen", + "option_2": "Standard", + "option_3": "Bulk" + } + } + } + }, + "main-list-collections": { + "name": "Samlingsliste-side", + "settings": { + "title": { + "label": "Overskrift", + "default": "Samlinger" + }, + "sort": { + "label": "Sorter samlinger", + "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": "Kvadratisk" + } + }, + "columns_desktop": { + "label": "Kolonner" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Side" + }, + "main-password-footer": { + "name": "Bunntekst for passord" + }, + "main-password-header": { + "name": "Overskrift for passord", + "settings": { + "logo_help": { + "content": "Rediger logoen i [temainnstillingene](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "blocks": { + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Tekstblokk" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Rullegardin" + }, + "options__2": { + "label": "Knapper" + } + }, + "swatch_shape": { + "label": "Fargekart", + "info": "Finn ut mer om [fargekart](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) for produktalternativer", + "options__1": { + "label": "Sirkel" + }, + "options__2": { + "label": "Kvadratisk" + }, + "options__3": { + "label": "Ingen" + } + } + } + }, + "buy_buttons": { + "name": "Kjøp-knapper", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamisk knapp for å gå til kassen", + "info": "Kunder får se sitt foretrukne betalingsalternativ. [Finn ut mer](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Alternativer for sending av gavekort", + "info": "Kunder kan legge til en personlig melding og bestemme utsendingsdatoen. [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": { + "text": { + "label": "Tekst", + "default": "Del" + } + } + }, + "collapsible_tab": { + "name": "Sammenleggbar rad", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Sammenleggbar rad" + }, + "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", + "default": "Tekst for popup-kobling" + }, + "page": { + "label": "Side" + } + } + }, + "rating": { + "name": "Produktvurdering", + "settings": { + "paragraph": { + "content": "En app kreves for produktanmeldelser. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Komplimentære produkter", + "settings": { + "paragraph": { + "content": "Administrer følgeprodukter i [appen Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Overskrift", + "default": "Kan kombineres med" + }, + "make_collapsible_row": { + "label": "Sammenleggbar rad" + }, + "icon": { + "info": "Vises når samnenleggbar rad velges" + }, + "product_list_limit": { + "label": "Antall produkter" + }, + "products_per_page": { + "label": "Produkter per side" + }, + "pagination_style": { + "label": "Sideinndeling", + "options": { + "option_1": "Prikker", + "option_2": "Teller", + "option_3": "Tall" + } + }, + "product_card": { + "heading": "Produktkort" + }, + "image_ratio": { + "label": "Bildeforhold", + "options": { + "option_1": "Portrett", + "option_2": "Kvadratisk" + } + }, + "enable_quick_add": { + "label": "Hurtigregistrering" + } + } + }, + "icon_with_text": { + "name": "Ikon med tekst", + "settings": { + "layout": { + "label": "Oppsett", + "options__1": { + "label": "Horisontalt" + }, + "options__2": { + "label": "Vertikalt" + } + }, + "heading": { + "info": "La stå tom for å skjule denne sammenkoblingen" + }, + "icon_1": { + "label": "Ikon" + }, + "image_1": { + "label": "Bilde" + }, + "heading_1": { + "label": "Overskrift", + "default": "Overskrift" + }, + "icon_2": { + "label": "Ikon" + }, + "image_2": { + "label": "Bilde" + }, + "heading_2": { + "label": "Overskrift", + "default": "Overskrift" + }, + "icon_3": { + "label": "Ikon" + }, + "image_3": { + "label": "Bilde" + }, + "heading_3": { + "label": "Overskrift", + "default": "Overskrift" + }, + "pairing_1": { + "label": "Sammenkobling 1", + "info": "Velg et ikon eller legg til et bilde for hver sammenkobling" + }, + "pairing_2": { + "label": "Sammenkobling 2" + }, + "pairing_3": { + "label": "Sammenkobling 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Varetelling" + } + } + } + }, + "settings": { + "header": { + "content": "Medier" + }, + "enable_video_looping": { + "label": "Spill av video i loop" + }, + "enable_sticky_info": { + "label": "Festet innhold" + }, + "hide_variants": { + "label": "Skjul andre varianter av mediene når én velges" + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Stablet" + }, + "options__2": { + "label": "2 kolonner" + }, + "options__3": { + "label": "Miniatyrbilder" + }, + "options__4": { + "label": "Karusell med miniatyrbilder" + } + }, + "media_size": { + "label": "Bredde", + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medie" + }, + "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": "Posisjon", + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Høyre" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Åpne lysboks" + }, + "options__2": { + "label": "Klikk og hold markøren over" + }, + "options__3": { + "label": "Ingen zoom" + } + }, + "constrain_to_viewport": { + "label": "Begrens til skjermens høyde" + }, + "media_fit": { + "label": "Tilpasning", + "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": "Kvadratisk" + } + }, + "show_secondary_image": { + "label": "Vis sekundærbilde når musepekeren beveges over" + }, + "show_vendor": { + "label": "Selger" + }, + "header__1": { + "content": "Produktkort" + }, + "header__2": { + "content": "Bloggkort" + }, + "article_show_date": { + "label": "Dato" + }, + "article_show_author": { + "label": "Forfatter" + }, + "show_rating": { + "label": "Produktanmeldelse", + "info": "En app kreves for produktanmeldelser. [Finn ut mer](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Flerkolonne", + "settings": { + "title": { + "label": "Overskrift", + "default": "Flerkolonne" + }, + "image_width": { + "label": "Bredde", + "options__1": { + "label": "Én tredjedels bredde av kolonnen" + }, + "options__2": { + "label": "Halve kolonnebredden" + }, + "options__3": { + "label": "Hele kolonnebredden" + } + }, + "image_ratio": { + "label": "Forhold", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Portrett" + }, + "options__3": { + "label": "Kvadratisk" + }, + "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": "Etikett", + "default": "Knappetikett", + "info": "La stå tom for å skjule" + }, + "button_link": { + "label": "Kobling" + }, + "swipe_on_mobile": { + "label": "Karusell" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "header_mobile": { + "content": "Mobillayout" + }, + "columns_mobile": { + "label": "Kolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Overskrift" + }, + "header_image": { + "content": "Bilde" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Knapp" + } + }, + "blocks": { + "column": { + "name": "Kolonne", + "settings": { + "image": { + "label": "Bilde" + }, + "title": { + "label": "Overskrift", + "default": "Kolonne" + }, + "text": { + "label": "Beskrivelse", + "default": "Koble tekst med et bilde for å fokusere på valgt produkt, samling eller blogginnlegg. Legg til informasjon om tilgjengelighet, stil eller vis frem en anmeldelse.
" + }, + "link_label": { + "label": "Koblingsetikett", + "info": "La stå tom for å skjule" + }, + "link": { + "label": "Kobling" + } + } + } + }, + "presets": { + "name": "Flerkolonne" + } + }, + "newsletter": { + "name": "E-postregistrering", + "settings": { + "full_width": { + "label": "Full bredde" + }, + "paragraph": { + "content": "Legg til registreringer [av kundeprofiler](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Abonner på e-postmeldingene våre" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Vær blant de første som får høre om nye samlinger og eksklusive tilbud.
" + } + } + }, + "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": "Full bredde" + }, + "desktop_content_position": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Innholdsplassering" + }, + "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", + "default": "Snakk om merkevaren din" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Del informasjon om merkevaren din med kundene. Beskriv et produkt, gjør kunngjøringer eller ønsk kundene velkommen til butikken.
" + } + } + }, + "buttons": { + "name": "Knapper", + "settings": { + "button_label_1": { + "label": "Etikett", + "info": "La stå tom for å skjule", + "default": "Knappetikett" + }, + "button_link_1": { + "label": "Kobling" + }, + "button_style_secondary_1": { + "label": "Stil på omriss" + }, + "button_label_2": { + "label": "Etikett", + "info": "La etiketten stå tom for å skjule" + }, + "button_link_2": { + "label": "Kobling" + }, + "button_style_secondary_2": { + "label": "Stil på omriss" + }, + "header_button1": { + "content": "Knapp 1" + }, + "header_button2": { + "content": "Knapp 2" + } + } + }, + "caption": { + "name": "Bildetekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Legg til et slagord" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Undertekst" + }, + "options__2": { + "label": "Store bokstaver" + } + }, + "caption_size": { + "label": "Størrelse", + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medie" + }, + "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", + "default": "Video" + }, + "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 de som bruker skjermlesere" + }, + "image_padding": { + "label": "Legg til bildemarg", + "info": "Velg bildemarg hvis du ikke ønsker at toppbildet skal beskjæres." + }, + "full_width": { + "label": "Full bredde" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Spill av video i loop" + }, + "header__1": { + "content": "Shopify-driftet video" + }, + "header__2": { + "content": "Eller integrer en video fra en URL-adresse" + }, + "header__3": { + "content": "Layout" + }, + "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", + "default": "Tekstblokk" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Rullegardin" + }, + "options__2": { + "label": "Knapper" + } + }, + "swatch_shape": { + "label": "Fargekart", + "info": "Finn ut mer om [fargekart](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) for produktalternativer", + "options__1": { + "label": "Sirkel" + }, + "options__2": { + "label": "Kvadratisk" + }, + "options__3": { + "label": "Ingen" + } + } + } + }, + "buy_buttons": { + "name": "Kjøp-knapper", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamisk knapp for å gå til kassen", + "info": "Kunder får se sitt foretrukne betalingsalternativ. [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", + "default": "Del" + } + } + }, + "rating": { + "name": "Produktvurdering", + "settings": { + "paragraph": { + "content": "En app kreves for produktanmeldelser. [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": "Sekundær bakgrunn" + }, + "header": { + "content": "Medier" + }, + "enable_video_looping": { + "label": "Spill av video i loop" + }, + "hide_variants": { + "label": "Skjul uvalgte varianters medier på datamaskiner" + }, + "media_position": { + "label": "Posisjon", + "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": "Legg til registreringer [av kundeprofiler](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Bakgrunnsbilde" + }, + "show_background_image": { + "label": "Vis bakgrunnsbilde" + }, + "show_text_box": { + "label": "Beholder" + }, + "image_overlay_opacity": { + "label": "Overleggets gjennomsiktighet" + }, + "show_text_below": { + "label": "Stable tekst under bilde" + }, + "image_height": { + "label": "Høyde", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medie" + }, + "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": "Posisjon" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering" + }, + "header": { + "content": "Mobillayout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering" + }, + "color_scheme": { + "info": "Synlig når beholderen vises." + }, + "content_header": { + "content": "Innhold" + } + }, + "blocks": { + "heading": { + "name": "Overskrift", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Åpner snart" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Vær blant de første som får vite når vi lanserer.
" + }, + "text_style": { + "options__1": { + "label": "Brødtekst" + }, + "options__2": { + "label": "Undertekst" + }, + "label": "Stil" + } + } + }, + "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": "Side" + } + }, + "slide_height": { + "label": "Høyde", + "options__1": { + "label": "Tilpass etter første bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medie" + }, + "options__4": { + "label": "Stor" + } + }, + "slider_visual": { + "label": "Sideinndeling", + "options__1": { + "label": "Teller" + }, + "options__2": { + "label": "Prikker" + }, + "options__3": { + "label": "Tall" + } + }, + "auto_rotate": { + "label": "Auto-roter lysbilder" + }, + "change_slides_speed": { + "label": "Endre lysbilde hvert" + }, + "show_text_below": { + "label": "Stable tekst under bilde" + }, + "mobile": { + "content": "Mobillayout" + }, + "accessibility": { + "content": "Tilgjengelighet", + "label": "Beskrivelse av lysbildefremvisning", + "info": "Beskriv lysbildefremvisningen for de som bruker skjermlesere", + "default": "Lysbildefremvisning om merkevaren" + } + }, + "blocks": { + "slide": { + "name": "Lysbilde", + "settings": { + "image": { + "label": "Bilde" + }, + "heading": { + "label": "Overskrift", + "default": "Lysbilde" + }, + "subheading": { + "label": "Underoverskrift", + "default": "Fortell merkevarens historie gjennom bilder" + }, + "button_label": { + "label": "Etikett", + "info": "La stå tom for å skjule", + "default": "Knappetikett" + }, + "link": { + "label": "Kobling" + }, + "secondary_style": { + "label": "Stil på omriss" + }, + "box_align": { + "label": "Innholdsplassering", + "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" + } + }, + "show_text_box": { + "label": "Beholder" + }, + "text_alignment": { + "label": "Innholdsjustering", + "option_1": { + "label": "Venstre" + }, + "option_2": { + "label": "Sentrert" + }, + "option_3": { + "label": "Høyre" + } + }, + "image_overlay_opacity": { + "label": "Overleggets gjennomsiktighet" + }, + "text_alignment_mobile": { + "label": "Innholdsjustering på mobiltelefon", + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + } + }, + "header_button": { + "content": "Knapp" + }, + "header_layout": { + "content": "Layout" + }, + "header_text": { + "content": "Tekst" + }, + "header_colors": { + "content": "Farger" + } + } + } + }, + "presets": { + "name": "Lysbildefremvisning" + } + }, + "collapsible_content": { + "name": "Sammenleggbart innhold", + "settings": { + "caption": { + "label": "Bildetekst" + }, + "heading": { + "label": "Overskrift", + "default": "Sammenleggbart innhold" + }, + "heading_alignment": { + "label": "Justering av overskrift", + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + } + }, + "layout": { + "label": "Beholder", + "options__1": { + "label": "Ingen beholder" + }, + "options__2": { + "label": "Radbeholder" + }, + "options__3": { + "label": "Seksjonsbeholder" + } + }, + "container_color_scheme": { + "label": "Fargetema for beholder" + }, + "open_first_collapsible_row": { + "label": "Åpne første rad" + }, + "header": { + "content": "Bilde" + }, + "image": { + "label": "Bilde" + }, + "image_ratio": { + "label": "Bildeforhold", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Stor" + } + }, + "desktop_layout": { + "label": "Plassering", + "options__1": { + "label": "Bilde først" + }, + "options__2": { + "label": "Andre bilde" + } + }, + "layout_header": { + "content": "Layout" + }, + "section_color_scheme": { + "label": "Fargepalett for del" + } + }, + "blocks": { + "collapsible_row": { + "name": "Sammenleggbar rad", + "settings": { + "heading": { + "label": "Overskrift", + "default": "Sammenleggbar rad" + }, + "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å", + "shop_login_button": { + "enable": "Aktiver Logg inn med Shop" + } + }, + "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": "Antall produkter" + }, + "columns_desktop": { + "label": "Kolonner" + }, + "paragraph__1": { + "content": "Relaterte produkter kan administreres i [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Kanskje du også liker" + }, + "header__2": { + "content": "Produktkort" + }, + "image_ratio": { + "label": "Bildeforhold", + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Portrett" + }, + "options__3": { + "label": "Kvadratisk" + } + }, + "show_secondary_image": { + "label": "Vis sekundærbilde når musepekeren beveges over" + }, + "show_vendor": { + "label": "Selger" + }, + "show_rating": { + "label": "Produktanmeldelse", + "info": "En app kreves for produktanmeldelser. [Finn ut mer](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobilkolonner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multirow": { + "name": "Flere rader", + "settings": { + "image": { + "label": "Bilde" + }, + "image_height": { + "options__1": { + "label": "Tilpass til bilde" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medie" + }, + "options__4": { + "label": "Stor" + }, + "label": "Høyde" + }, + "desktop_image_width": { + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medie" + }, + "options__3": { + "label": "Stor" + }, + "label": "Bredde" + }, + "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": "Justering" + }, + "desktop_content_position": { + "options__1": { + "label": "Topp" + }, + "options__2": { + "label": "Midten" + }, + "options__3": { + "label": "Bunn" + }, + "label": "Posisjon" + }, + "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": "Plassering" + }, + "container_color_scheme": { + "label": "Fargetema for beholder" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Venstre" + }, + "options__2": { + "label": "Sentrert" + }, + "options__3": { + "label": "Høyre" + }, + "label": "Justering på mobil" + }, + "header": { + "content": "Bilde" + }, + "header_2": { + "content": "Innhold" + }, + "header_3": { + "content": "Farger" + } + }, + "blocks": { + "row": { + "name": "Rad", + "settings": { + "image": { + "label": "Bilde" + }, + "caption": { + "label": "Bildetekst", + "default": "Bildetekst" + }, + "heading": { + "label": "Overskrift", + "default": "Rad" + }, + "text": { + "label": "Tekst", + "default": "Koble tekst med et bilde for å fokusere på valgt produkt, samling eller blogginnlegg. Legg til informasjon om tilgjengelighet, stil eller vis frem en anmeldelse.
" + }, + "button_label": { + "label": "Knappetikett", + "default": "Knappetikett", + "info": "La stå tom for å skjule" + }, + "button_link": { + "label": "Knappekobling" + } + } + } + }, + "presets": { + "name": "Flere rader" + } + }, + "quick-order-list": { + "name": "Hurtigordreliste", + "settings": { + "show_image": { + "label": "Bilder" + }, + "show_sku": { + "label": "SKU-er" + }, + "variants_per_page": { + "label": "Varianter per side" + } + }, + "presets": { + "name": "Hurtigordreliste" + } + } + } +} diff --git a/locales/nl.json b/locales/nl.json new file mode 100644 index 0000000..307e9f4 --- /dev/null +++ b/locales/nl.json @@ -0,0 +1,530 @@ +{ + "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": "Delen op X", + "share_on_pinterest": "Pinnen op Pinterest" + }, + "links": { + "twitter": "X (voorheen 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", + "min_of": "Min. {{ quantity }}", + "max_of": "Max. {{ quantity }}", + "in_cart_aria_label": "Aantal ({{ quantity }} in winkelwagen)" + }, + "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" + }, + "nested_label": "{{ title }} voor {{ parent_title }}", + "view_full_details": "Alle details bekijken", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "{{ price }}/st." + }, + "product_variants": "Productvarianten", + "taxes_included": "Belastingen inbegrepen.", + "duties_included": "Douanerechten inbegrepen.", + "duties_and_taxes_included": "Douanerechten en belastingen inbegrepen." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Douanerechten en belastingen inbegrepen. Kortingen en verzending worden bij de checkout berekend.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Douanerechten en belastingen inbegrepen. Kortingen en verzending worden bij de checkout berekend.", + "taxes_included_shipping_at_checkout_with_policy_html": "Belastingen inbegrepen. Kortingen en verzending worden bij de checkout berekend.", + "taxes_included_shipping_at_checkout_without_policy": "Belastingen inbegrepen. Kortingen en verzending worden bij de checkout berekend.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Douanerechten inbegrepen. Belastingen, kortingen en verzending worden bij de checkout berekend.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Douanerechten inbegrepen. Belastingen, kortingen en verzending worden bij de checkout berekend.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Belastingen, kortingen en verzending worden bij de checkout berekend.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Belastingen, kortingen en verzending worden bij de checkout berekend." + }, + "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", + "remove_all_single_item_confirmation": "1 artikel uit je winkelwagen verwijderen?", + "min_error": "Voor dit artikel geldt een minimum van {{ min }}.", + "max_error": "Voor dit artikel geldt een maximum van {{ max }}.", + "step_error": "Je kunt dit artikel alleen toevoegen in stappen van {{ step }}" + } + }, + "localization": { + "country_label": "Land/regio", + "language_label": "Taal", + "update_language": "Taal bijwerken", + "update_country": "Land/regio bijwerken", + "search": "Zoeken", + "popular_countries_regions": "Populaire landen/regio's", + "country_results_count": "{{ count }} landen/regio's gevonden" + }, + "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", + "alternate_provider_separator": "of" + }, + "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..f2d12e6 --- /dev/null +++ b/locales/nl.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Kopteksten" + }, + "header__2": { + "content": "Hoofdtekst" + }, + "type_body_font": { + "label": "Lettertype" + }, + "heading_scale": { + "label": "Schaal" + }, + "body_scale": { + "label": "Schaal" + } + } + }, + "social-media": { + "name": "Social media", + "settings": { + "social_twitter_link": { + "label": "X / voorheen Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Valutacodes" + }, + "paragraph": "Prijzen in winkelwagen en bij checkout tonen altijd de valutacodes" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Zoeksuggesties" + }, + "predictive_search_show_vendor": { + "label": "Productverkoper", + "info": "Weergegeven als zoeksuggesties zijn ingeschakeld" + }, + "predictive_search_show_price": { + "label": "Productprijs", + "info": "Weergegeven 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": "Variant pills zijn een manier om je [productvarianten weer te geven](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#variant-picker-block)" + }, + "inputs": { + "name": "Invoer" + }, + "content_containers": { + "name": "Content-containers" + }, + "popups": { + "name": "Vervolgkeuzelijsten en pop-ups", + "paragraph": "Is van invloed op onder andere navigatie-vervolgkeuzelijsten, modale pop-upvensters en winkelwagengerelateerde pop-upmeldingen" + }, + "media": { + "name": "Media" + }, + "drawers": { + "name": "Lades" + }, + "cart": { + "name": "Winkelwagen", + "settings": { + "cart_type": { + "label": "Type", + "drawer": { + "label": "Optie" + }, + "page": { + "label": "Pagina" + }, + "notification": { + "label": "Pop-upmelding" + } + }, + "show_vendor": { + "label": "Verkoper" + }, + "show_cart_note": { + "label": "Notitie voor winkelwagen" + }, + "cart_drawer": { + "header": "Winkelwagenoptie", + "collection": { + "label": "Collectie", + "info": "Weergegeven als 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" + }, + "favicon": { + "label": "Favicon", + "info": "Weergegeven op 32 x 32 px" + } + } + }, + "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": "Weergegeven in het merkinformatieblok in de voettekst" + } + } + }, + "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": "Heeft invloed op kaarten en knoppen", + "options__3": { + "label": "3D-lift" + } + } + } + } + }, + "sections": { + "all": { + "padding": { + "section_padding_heading": "Opvulling", + "padding_top": "Boven", + "padding_bottom": "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" + }, + "options__5": { + "label": "Extra 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" + }, + "animation": { + "content": "Animaties", + "image_behavior": { + "options__1": { + "label": "Geen" + }, + "options__2": { + "label": "Bewegingen van de omgeving" + }, + "label": "Animatie", + "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", + "default": "Welkom in onze winkel" + }, + "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" + }, + "show_social": { + "label": "Pictogrammen voor social media", + "info": "[Socialmedia-accounts beheren](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Kiezer voor land/regio", + "info": "[Landen/regio's beheren](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Taalkiezer", + "info": "[Talen beheren](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Nutsbedrijven" + }, + "paragraph": { + "content": "Verschijnt alleen op grote schermen" + } + }, + "presets": { + "name": "Aankondigingsbalk" + } + }, + "collage": { + "name": "Collage", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Multimediacollage" + }, + "desktop_layout": { + "label": "Opmaak", + "options__1": { + "label": "Groot blok eerst" + }, + "options__2": { + "label": "Grote blok laatst" + } + }, + "mobile_layout": { + "label": "Mobiele opmaak", + "options__1": { + "label": "Collage" + }, + "options__2": { + "label": "Kolom" + } + }, + "card_styles": { + "label": "Kaartstijl", + "info": "Afzonderlijke kaartstijlen beheren in [thema-instellingen](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Individuele kaartstijlen gebruiken" + }, + "options__2": { + "label": "Alles vormgeven als productkaarten" + } + }, + "header_layout": { + "content": "Opmaak" + } + }, + "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)", + "default": "Beschrijf de video" + } + } + } + }, + "presets": { + "name": "Collage" + } + }, + "collection-list": { + "name": "Collectielijst", + "settings": { + "title": { + "label": "Opschrift", + "default": "Collecties" + }, + "image_ratio": { + "label": "Breedte-/hoogteverhouding van afbeeldingen", + "options__1": { + "label": "Aanpassen aan afbeelding" + }, + "options__2": { + "label": "Portret" + }, + "options__3": { + "label": "Vierkant" + } + }, + "swipe_on_mobile": { + "label": "Carrousel" + }, + "show_view_all": { + "label": "Knop 'Alles weergeven'", + "info": "Zichtbaar als lijst meer collecties heeft dan weergegeven" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "header_mobile": { + "content": "Opmaak voor mobiel" + }, + "columns_mobile": { + "label": "Kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Opmaak" + } + }, + "blocks": { + "featured_collection": { + "name": "Collectie", + "settings": { + "collection": { + "label": "Collectie" + } + } + } + }, + "presets": { + "name": "Collectielijst" + } + }, + "contact-form": { + "name": "Contactformulier", + "presets": { + "name": "Contactformulier" + }, + "settings": { + "title": { + "default": "Contactformulier", + "label": "Koptekst" + } + } + }, + "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", + "default": "Blogposts" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Aantal posts" + }, + "show_view_all": { + "label": "Knop 'Alles weergeven'", + "info": "Zichtbaar als blog meer berichten heeft dan weergegeven" + }, + "show_image": { + "label": "Uitgelichte afbeelding" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Auteur" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "layout_header": { + "content": "Opmaak" + }, + "text_header": { + "content": "Tekst" + } + }, + "presets": { + "name": "Blogberichten" + } + }, + "featured-collection": { + "name": "Uitgelichte collectie", + "settings": { + "title": { + "label": "Opschrift", + "default": "Uitgelichte collectie" + }, + "collection": { + "label": "Collectie" + }, + "products_to_show": { + "label": "Aantal producten" + }, + "show_view_all": { + "label": "Knop 'Alles weergeven'", + "info": "Zichtbaar als een collectie meer producten heeft dan weergegeven" + }, + "header": { + "content": "Productkaart" + }, + "image_ratio": { + "label": "Breedte-/hoogteverhouding van afbeeldingen", + "options__1": { + "label": "Aanpassen aan afbeelding" + }, + "options__2": { + "label": "Portret" + }, + "options__3": { + "label": "Vierkant" + } + }, + "show_secondary_image": { + "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt" + }, + "show_vendor": { + "label": "Verkoper" + }, + "show_rating": { + "label": "Productbeoordeling", + "info": "Een app is vereist voor beoordelingen. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "description": { + "label": "Beschrijving" + }, + "show_description": { + "label": "Collectiebeschrijving uit beheerpaneel 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" + }, + "full_width": { + "label": "Volledige breedte voor producten" + }, + "header_mobile": { + "content": "Opmaak voor mobiel" + }, + "columns_mobile": { + "label": "Kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carrousel" + }, + "enable_quick_buy": { + "label": "Snel toevoegen" + }, + "header_text": { + "content": "Tekst" + }, + "header_collection": { + "content": "Opmaak collectie" + } + }, + "presets": { + "name": "Uitgelichte collectie" + } + }, + "footer": { + "name": "Voettekst", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Snelle links" + }, + "menu": { + "label": "Menu" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Koptekst" + }, + "subtext": { + "label": "Subtekst", + "default": "Deel contactgegevens, winkelgegevens en merkcontent met klanten.
" + } + } + }, + "brand_information": { + "name": "Merkinformatie", + "settings": { + "paragraph": { + "content": "Merkinfo beheren in [thema-instellingen](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Pictogrammen voor social media", + "info": "[Socialmedia-accounts beheren](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Aanmelding(en) voor het ontvangen van e-mail" + }, + "newsletter_heading": { + "label": "Opschrift", + "default": "Abonneren op onze e-mails" + }, + "header__1": { + "content": "Aanmelding(en) voor het ontvangen van e-mail", + "info": "Aanmeldingen voegen [klantprofielen toe](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Pictogrammen voor social media", + "info": "[Socialmedia-accounts beheren](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Kiezer voor land/regio", + "info": "[Landen/regio's beheren](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Taalkiezer", + "info": "[Talen beheren](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Pictogrammen betaalmethoden" + }, + "margin_top": { + "label": "Bovenmarge" + }, + "show_policy": { + "label": "Links naar beleid", + "info": "[Beleidsregels beheren](/admin/settings/legal)" + }, + "header__9": { + "content": "Hulpprogramma's" + }, + "enable_follow_on_shop": { + "label": "Volgen op Shop", + "info": "Shop Pay moet zijn ingeschakeld. [Meer informatie](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Koptekst", + "settings": { + "logo_position": { + "label": "Positie van logo", + "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" + }, + "margin_bottom": { + "label": "Ondermarge" + }, + "menu_type_desktop": { + "label": "Menutype", + "options__1": { + "label": "Vervolgkeuzelijst" + }, + "options__2": { + "label": "Megamenu" + }, + "options__3": { + "label": "Lade" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Kiezer voor land/regio", + "info": "[Landen/regio's beheren](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Taalkiezer", + "info": "[Talen beheren](/admin/settings/languages)" + }, + "header__1": { + "content": "Kleur" + }, + "menu_color_scheme": { + "label": "Kleurschemamenu" + }, + "enable_customer_avatar": { + "label": "Avatar klantaccount", + "info": "Alleen zichtbaar als klanten zijn ingelogd met Shop. [Klantaccounts beheren](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Hulpprogramma's" + } + } + }, + "image-banner": { + "name": "Bannerafbeelding", + "settings": { + "image": { + "label": "Afbeelding 1" + }, + "image_2": { + "label": "Afbeelding 2" + }, + "stack_images_on_mobile": { + "label": "Afbeeldingen stapelen" + }, + "show_text_box": { + "label": "Container" + }, + "image_overlay_opacity": { + "label": "Opaciteit van overlay" + }, + "show_text_below": { + "label": "Container" + }, + "image_height": { + "label": "Hoogte", + "options__1": { + "label": "Aanpassen aan eerste afbeelding" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Gemiddeld" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Centraal" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Centraal" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning" + }, + "mobile": { + "content": "Opmaak voor mobiel" + }, + "content": { + "content": "Content" + } + }, + "blocks": { + "heading": { + "name": "Opschrift", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Banner voor afbeeldingen" + } + } + }, + "text": { + "name": "Tekstkleur", + "settings": { + "text": { + "label": "Tekst", + "default": "Geef klanten details over de bannerafbeelding(en) of content op de template." + }, + "text_style": { + "options__1": { + "label": "Hoofdtekst" + }, + "options__2": { + "label": "Subtitel" + }, + "options__3": { + "label": "Hoofdletters" + }, + "label": "Stijl" + } + } + }, + "buttons": { + "name": "Knoppen", + "settings": { + "button_label_1": { + "label": "Label", + "info": "Laat leeg om te verbergen", + "default": "Knoplabel" + }, + "button_link_1": { + "label": "Koppeling" + }, + "button_style_secondary_1": { + "label": "Stijl omlijnen" + }, + "button_label_2": { + "label": "Label", + "info": "Laat leeg om te verbergen", + "default": "Knoplabel" + }, + "button_link_2": { + "label": "Koppeling" + }, + "button_style_secondary_2": { + "label": "Stijl omlijnen" + }, + "header_1": { + "content": "Knop 1" + }, + "header_2": { + "content": "Knop 2" + } + } + } + }, + "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", + "options__4": { + "label": "Groot" + } + }, + "layout": { + "options__1": { + "label": "Afbeelding eerst" + }, + "options__2": { + "label": "Tweede afbeelding" + }, + "label": "Plaatsing" + }, + "desktop_image_width": { + "options__1": { + "label": "Klein" + }, + "options__2": { + "label": "Gemiddeld" + }, + "options__3": { + "label": "Groot" + }, + "label": "Breedte" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning", + "options__2": { + "label": "Centraal" + } + }, + "desktop_content_position": { + "options__1": { + "label": "Boven" + }, + "options__2": { + "label": "Midden" + }, + "options__3": { + "label": "Onder" + }, + "label": "Positie" + }, + "content_layout": { + "options__1": { + "label": "Geen overlappingen" + }, + "options__2": { + "label": "Overlappingen" + }, + "label": "Opmaak" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning op mobiel", + "options__2": { + "label": "Centraal" + } + }, + "header": { + "content": "Content" + }, + "header_colors": { + "content": "Kleuren" + } + }, + "blocks": { + "heading": { + "name": "Opschrift", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Afbeelding met tekst" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Plaats een afbeelding bij stukken tekst om de aandacht op je gekozen product, collectie of blogpost te richten. Voeg details over beschikbaarheid en stijl toe of plaats een productrecensie.
" + }, + "text_style": { + "label": "Stijl", + "options__1": { + "label": "Hoofdtekst" + }, + "options__2": { + "label": "Subtitel" + } + } + } + }, + "button": { + "name": "Knop", + "settings": { + "button_label": { + "label": "Label", + "info": "Laat leeg om te verbergen", + "default": "Knoplabel" + }, + "button_link": { + "label": "Koppeling" + }, + "outline_button": { + "label": "Stijl omlijnen" + } + } + }, + "caption": { + "name": "Bijschrift", + "settings": { + "text": { + "label": "Tekst", + "default": "Voeg een tagline toe" + }, + "text_style": { + "label": "Stijl", + "options__1": { + "label": "Subtitel" + }, + "options__2": { + "label": "Hoofdletters" + } + }, + "caption_size": { + "label": "Maat", + "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 afbeelding", + "options__1": { + "label": "Aanpassen aan afbeelding" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Gemiddeld" + }, + "options__4": { + "label": "Groot" + } + } + } + }, + "title": { + "name": "Titel", + "settings": { + "blog_show_date": { + "label": "Datum" + }, + "blog_show_author": { + "label": "Auteur" + } + } + }, + "content": { + "name": "Inhoud" + }, + "share": { + "name": "Delen", + "settings": { + "text": { + "label": "Tekst", + "default": "Delen" + } + } + } + } + }, + "main-blog": { + "name": "Blogberichten", + "settings": { + "show_image": { + "label": "Uitgelichte afbeelding" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Auteur" + }, + "layout": { + "label": "Opmaak", + "options__1": { + "label": "Grid" + }, + "options__2": { + "label": "Collage" + } + }, + "image_height": { + "label": "Hoogte afbeelding", + "options__1": { + "label": "Aanpassen aan afbeelding" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Gemiddeld" + }, + "options__4": { + "label": "Groot" + } + } + } + }, + "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": "Collectiegegevens worden [beheerd in je beheerpaneel](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Beschrijving" + }, + "show_collection_image": { + "label": "Afbeelding" + } + } + }, + "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": "Vierkant" + } + }, + "show_secondary_image": { + "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt" + }, + "show_vendor": { + "label": "Verkoper" + }, + "enable_tags": { + "label": "Filters", + "info": "Pas filters aan met de [Search & Discovery-app](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filters", + "info": "Pas filters aan met de [Search & Discovery-app](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Sorteren" + }, + "header__1": { + "content": "Filteren en sorteren" + }, + "header__3": { + "content": "Productkaart" + }, + "show_rating": { + "label": "Productbeoordeling", + "info": "Een app is vereist voor productbeoordelingen. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "columns_mobile": { + "label": "Mobiele kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Opmaak filteren", + "options__1": { + "label": "Horizontaal" + }, + "options__2": { + "label": "Verticaal" + }, + "options__3": { + "label": "Lade" + } + }, + "quick_add": { + "label": "Snel toevoegen", + "options": { + "option_1": "Geen", + "option_2": "Standaard", + "option_3": "Bulk" + } + } + } + }, + "main-list-collections": { + "name": "Pagina collectielijst", + "settings": { + "title": { + "label": "Opschrift", + "default": "Collecties" + }, + "sort": { + "label": "Collecties sorteren", + "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": "Vierkant" + } + }, + "columns_desktop": { + "label": "Kolommen" + }, + "header_mobile": { + "content": "Opmaak voor mobiel" + }, + "columns_mobile": { + "label": "Mobiele kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Pagina" + }, + "main-password-footer": { + "name": "Wachtwoord voettekst" + }, + "main-password-header": { + "name": "Wachtwoord koptekst", + "settings": { + "logo_help": { + "content": "Bewerk je logo in [thema-instellingen](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Productinformatie", + "blocks": { + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Tekstblok" + }, + "text_style": { + "label": "Stijl", + "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": "Stijl", + "options__1": { + "label": "Vervolgkeuzelijst" + }, + "options__2": { + "label": "Pillen" + } + }, + "swatch_shape": { + "label": "Staal", + "info": "Meer informatie over [stalen](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) voor productopties", + "options__1": { + "label": "Cirkel" + }, + "options__2": { + "label": "Vierkant" + }, + "options__3": { + "label": "Geen" + } + } + } + }, + "buy_buttons": { + "name": "Koopknoppen", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamische checkoutknoppen", + "info": "Klanten zien de betaalmethode van hun voorkeur. [Meer informatie](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Opties voor het verzenden van cadeaubonnen", + "info": "Klanten kunnen een persoonlijk bericht toevoegen en de verzenddatum plannen. [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": { + "text": { + "label": "Tekst", + "default": "Delen" + } + } + }, + "collapsible_tab": { + "name": "Inklapbare rij", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Inklapbare rij" + }, + "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", + "default": "Tekst voor pop-uplink" + }, + "page": { + "label": "Pagina" + } + } + }, + "rating": { + "name": "Productbeoordeling", + "settings": { + "paragraph": { + "content": "Een app is vereist voor productbeoordelingen. [Meer informatie](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Aanvullende producten", + "settings": { + "paragraph": { + "content": "Aanvullende producten beheren in de [Search & Discovery-app](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Koptekst", + "default": "Gaat goed samen met" + }, + "make_collapsible_row": { + "label": "Inklapbare rij" + }, + "icon": { + "info": "Weergegeven als inklapbare rij is geselecteerd" + }, + "product_list_limit": { + "label": "Aantal producten" + }, + "products_per_page": { + "label": "Producten per pagina" + }, + "pagination_style": { + "label": "Paginering", + "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": "Snel toevoegen" + } + } + }, + "icon_with_text": { + "name": "Pictogram met tekst", + "settings": { + "layout": { + "label": "Opmaak", + "options__1": { + "label": "Horizontaal" + }, + "options__2": { + "label": "Verticaal" + } + }, + "heading": { + "info": "Laat leeg om deze koppeling te verbergen" + }, + "icon_1": { + "label": "Pictogram" + }, + "image_1": { + "label": "Afbeelding" + }, + "heading_1": { + "label": "Kop", + "default": "Koptekst" + }, + "icon_2": { + "label": "Pictogram" + }, + "image_2": { + "label": "Afbeelding" + }, + "heading_2": { + "label": "Kop", + "default": "Koptekst" + }, + "icon_3": { + "label": "Pictogram" + }, + "image_3": { + "label": "Afbeelding" + }, + "heading_3": { + "label": "Kop", + "default": "Koptekst" + }, + "pairing_1": { + "label": "Koppeling 1", + "info": "Kies een pictogram of voeg een afbeelding toe voor elke koppeling" + }, + "pairing_2": { + "label": "Koppeling 2" + }, + "pairing_3": { + "label": "Koppeling 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Inventarisering" + } + } + } + }, + "settings": { + "header": { + "content": "Media" + }, + "enable_video_looping": { + "label": "Video continu herhalen" + }, + "enable_sticky_info": { + "label": "Sticky content" + }, + "hide_variants": { + "label": "Verberg andere variantmedia nadat er een is geselecteerd" + }, + "gallery_layout": { + "label": "Opmaak", + "options__1": { + "label": "Gestapeld" + }, + "options__2": { + "label": "2 kolommen" + }, + "options__3": { + "label": "Miniatuurafbeeldingen" + }, + "options__4": { + "label": "Carrousel van miniaturen" + } + }, + "media_size": { + "label": "Breedte", + "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", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Rechts" + } + }, + "image_zoom": { + "label": "Zoomen", + "options__1": { + "label": "Lightbox openen" + }, + "options__2": { + "label": "Klikken en aanwijzen" + }, + "options__3": { + "label": "Geen zoom" + } + }, + "constrain_to_viewport": { + "label": "Beperken tot schermhoogte" + }, + "media_fit": { + "label": "Pasvorm", + "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": "Vierkant" + } + }, + "show_secondary_image": { + "label": "Tweede afbeeldingen tonen als je de aanwijzer erboven houdt" + }, + "show_vendor": { + "label": "Verkoper" + }, + "header__1": { + "content": "Productkaart" + }, + "header__2": { + "content": "Blogkaart" + }, + "article_show_date": { + "label": "Datum" + }, + "article_show_author": { + "label": "Auteur" + }, + "show_rating": { + "label": "Productbeoordeling", + "info": "Een app is vereist voor productbeoordelingen. [Meer informatie](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "columns_mobile": { + "label": "Mobiele kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Meerdere kolommen", + "settings": { + "title": { + "label": "Opschrift", + "default": "Meerdere kolommen" + }, + "image_width": { + "label": "Breedte", + "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": "Ratio", + "options__1": { + "label": "Aanpassen aan afbeelding" + }, + "options__2": { + "label": "Portret" + }, + "options__3": { + "label": "Vierkant" + }, + "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": "Label", + "default": "Knoplabel", + "info": "Laat leeg om te verbergen" + }, + "button_link": { + "label": "Link" + }, + "swipe_on_mobile": { + "label": "Carrousel" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "header_mobile": { + "content": "Opmaak voor mobiel" + }, + "columns_mobile": { + "label": "Kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Kop" + }, + "header_image": { + "content": "Afbeelding" + }, + "header_layout": { + "content": "Opmaak" + }, + "header_button": { + "content": "Knop" + } + }, + "blocks": { + "column": { + "name": "Kolom", + "settings": { + "image": { + "label": "Afbeelding" + }, + "title": { + "label": "Opschrift", + "default": "Kolom" + }, + "text": { + "label": "Beschrijving", + "default": "Plaats een afbeelding bij stukken tekst om de aandacht op je gekozen product, collectie of blogpost te richten. Voeg details over beschikbaarheid en stijl toe of plaats een productrecensie.
" + }, + "link_label": { + "label": "Link-label", + "info": "Laat leeg om te verbergen" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Meerdere kolommen" + } + }, + "newsletter": { + "name": "Aanmelding voor het ontvangen van e-mail", + "settings": { + "full_width": { + "label": "Volledige breedte" + }, + "paragraph": { + "content": "Aanmeldingen voegen [klantprofielen toe](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Opschrift", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Abonneren op onze e-mails" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Kom als eerste te weten als er nieuwe collecties en exclusieve aanbiedingen zijn.
" + } + } + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Midden" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Positie van content" + }, + "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", + "default": "Vertel over je merk" + } + } + }, + "text": { + "name": "Tekstkleur", + "settings": { + "text": { + "label": "Tekst", + "default": "Deel informatie over je merk met klanten. Beschrijf een product, doe aankondigingen of verwelkom klanten in je winkel.
" + } + } + }, + "buttons": { + "name": "Knoppen", + "settings": { + "button_label_1": { + "label": "Label", + "info": "Laat leeg om te verbergen", + "default": "Knoplabel" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Stijl omlijnen" + }, + "button_label_2": { + "label": "Label", + "info": "Laat label leeg om te verbergen" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Stijl omlijnen" + }, + "header_button1": { + "content": "Knop 1" + }, + "header_button2": { + "content": "Knop 2" + } + } + }, + "caption": { + "name": "Bijschrift", + "settings": { + "text": { + "label": "Tekst", + "default": "Voeg een tagline toe" + }, + "text_style": { + "label": "Stijl", + "options__1": { + "label": "Ondertitel" + }, + "options__2": { + "label": "Hoofdletters" + } + }, + "caption_size": { + "label": "Maat", + "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", + "default": "Video" + }, + "cover_image": { + "label": "Coverafbeelding" + }, + "video_url": { + "label": "URL", + "info": "Een URL van YouTube of Vimeo gebruiken" + }, + "description": { + "label": "Alt-tekst video", + "info": "Beschrijf de video voor mensen die schermlezers gebruiken" + }, + "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" + }, + "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": "Opmaak" + }, + "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", + "default": "Tekstblok" + }, + "text_style": { + "label": "Stijl", + "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": "Stijl", + "options__1": { + "label": "Vervolgkeuzelijst" + }, + "options__2": { + "label": "Keuzeopties" + } + }, + "swatch_shape": { + "label": "Staal", + "info": "Meer informatie over [stalen](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) voor productopties", + "options__1": { + "label": "Cirkel" + }, + "options__2": { + "label": "Vierkant" + }, + "options__3": { + "label": "Geen" + } + } + } + }, + "buy_buttons": { + "name": "Koopknoppen", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamische checkoutknoppen", + "info": "Klanten zien de betaalmethode van hun voorkeur. [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", + "default": "Delen" + } + } + }, + "rating": { + "name": "Productbeoordeling", + "settings": { + "paragraph": { + "content": "Een app is vereist voor productbeoordelingen. [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" + }, + "header": { + "content": "Media" + }, + "enable_video_looping": { + "label": "Video continu herhalen" + }, + "hide_variants": { + "label": "Niet geselecteerde media van varianten op bureaublad verbergen" + }, + "media_position": { + "label": "Positie", + "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": "Aanmeldingen voegen [klantprofielen toe](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Achtergrondafbeelding" + }, + "show_background_image": { + "label": "Achtergrondafbeelding weergeven" + }, + "show_text_box": { + "label": "Container" + }, + "image_overlay_opacity": { + "label": "Dekking van overlay" + }, + "show_text_below": { + "label": "Stapel tekst onder afbeelding" + }, + "image_height": { + "label": "Hoogte", + "options__1": { + "label": "Aanpassen aan afbeelding" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Gemiddeld" + }, + "options__4": { + "label": "Groot" + } + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Centraal" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning" + }, + "header": { + "content": "Opmaak voor mobiel" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Centraal" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning" + }, + "color_scheme": { + "info": "Zichtbaar wanneer de container wordt weergegeven." + }, + "content_header": { + "content": "Content" + } + }, + "blocks": { + "heading": { + "name": "Opschrift", + "settings": { + "heading": { + "label": "Opschrift", + "default": "Opent binnenkort" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Kom als eerste te weten wanneer we van start gaan.
" + }, + "text_style": { + "options__1": { + "label": "Hoofdtekst" + }, + "options__2": { + "label": "Subtitel" + }, + "label": "Stijl" + } + } + }, + "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": "Pagina" + } + }, + "slide_height": { + "label": "Hoogte", + "options__1": { + "label": "Aanpassen aan eerste afbeelding" + }, + "options__2": { + "label": "Klein" + }, + "options__3": { + "label": "Gemiddeld" + }, + "options__4": { + "label": "Groot" + } + }, + "slider_visual": { + "label": "Paginering", + "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": "Stapel tekst onder afbeelding" + }, + "accessibility": { + "content": "Toegankelijkheid", + "label": "Beschrijving van diavoorstelling", + "info": "Geef een beschrijving van de diavoorstelling voor mensen die schermlezers gebruiken", + "default": "Diavoorstelling over ons merk" + } + }, + "blocks": { + "slide": { + "name": "Dia", + "settings": { + "image": { + "label": "Afbeelding" + }, + "heading": { + "label": "Kop", + "default": "Afbeelding dia" + }, + "subheading": { + "label": "Subkop", + "default": "Vertel met afbeeldingen het verhaal van je merk" + }, + "button_label": { + "label": "Label", + "info": "Laat leeg om te verbergen", + "default": "Knoplabel" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Stijl omlijnen" + }, + "box_align": { + "label": "Positie van content", + "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" + } + }, + "show_text_box": { + "label": "Container" + }, + "text_alignment": { + "label": "Uitlijning van content", + "option_1": { + "label": "Links" + }, + "option_2": { + "label": "Centraal" + }, + "option_3": { + "label": "Rechts" + } + }, + "image_overlay_opacity": { + "label": "Dekking van overlay" + }, + "text_alignment_mobile": { + "label": "Uitlijning van content op mobiel", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Centraal" + }, + "options__3": { + "label": "Rechts" + } + }, + "header_button": { + "content": "Knop" + }, + "header_layout": { + "content": "Opmaak" + }, + "header_text": { + "content": "Tekst" + }, + "header_colors": { + "content": "Kleuren" + } + } + } + }, + "presets": { + "name": "Diavoorstelling" + } + }, + "collapsible_content": { + "name": "Inklapbare content", + "settings": { + "caption": { + "label": "Bijschrift" + }, + "heading": { + "label": "Kop", + "default": "Inklapbare content" + }, + "heading_alignment": { + "label": "Uitlijning kop", + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Centraal" + }, + "options__3": { + "label": "Rechts" + } + }, + "layout": { + "label": "Container", + "options__1": { + "label": "Geen container" + }, + "options__2": { + "label": "Container rij" + }, + "options__3": { + "label": "Container sectie" + } + }, + "container_color_scheme": { + "label": "Kleurschema van container" + }, + "open_first_collapsible_row": { + "label": "Eerste rij uitklappen" + }, + "header": { + "content": "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": "Plaatsing", + "options__1": { + "label": "Afbeelding eerst" + }, + "options__2": { + "label": "Afbeelding als tweede" + } + }, + "layout_header": { + "content": "Opmaak" + }, + "section_color_scheme": { + "label": "Sectie kleurschema" + } + }, + "blocks": { + "collapsible_row": { + "name": "Inklapbare rij", + "settings": { + "heading": { + "label": "Kop", + "default": "Inklapbare rij" + }, + "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", + "shop_login_button": { + "enable": "Inloggen met Shop inschakelen" + } + }, + "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": "Aantal producten" + }, + "columns_desktop": { + "label": "Kolommen" + }, + "paragraph__1": { + "content": "Gerelateerde producten kunnen worden beheerd in de [Search & Discovery-app](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Wellicht vind je dit ook leuk" + }, + "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" + }, + "show_rating": { + "label": "Productbeoordeling", + "info": "Een app is vereist voor productbeoordelingen. [Meer informatie](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobiele kolommen", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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" + }, + "desktop_image_width": { + "options__1": { + "label": "Klein" + }, + "options__2": { + "label": "Gemiddeld" + }, + "options__3": { + "label": "Groot" + }, + "label": "Breedte" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Boven" + }, + "options__2": { + "label": "Midden" + }, + "options__3": { + "label": "Onder" + }, + "label": "Positie" + }, + "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" + }, + "container_color_scheme": { + "label": "Kleurschema van container" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Links" + }, + "options__2": { + "label": "Midden" + }, + "options__3": { + "label": "Rechts" + }, + "label": "Uitlijning op mobiel" + }, + "header": { + "content": "Afbeelding" + }, + "header_2": { + "content": "Content" + }, + "header_3": { + "content": "Kleuren" + } + }, + "blocks": { + "row": { + "name": "Rij", + "settings": { + "image": { + "label": "Afbeelding" + }, + "caption": { + "label": "Bijschrift", + "default": "Bijschrift" + }, + "heading": { + "label": "Koptekst", + "default": "Rij" + }, + "text": { + "label": "Tekst", + "default": "Plaats een afbeelding bij stukken tekst om de aandacht op je gekozen product, collectie of blogpost te richten. Voeg details over beschikbaarheid en stijl toe of plaats een productrecensie.
" + }, + "button_label": { + "label": "Knoplabel", + "default": "Knoplabel", + "info": "Laat leeg om te verbergen" + }, + "button_link": { + "label": "Knoplink" + } + } + } + }, + "presets": { + "name": "Meerdere rijen" + } + }, + "quick-order-list": { + "name": "Snelle lijst met bestellingen", + "settings": { + "show_image": { + "label": "Afbeeldingen" + }, + "show_sku": { + "label": "SKU's" + }, + "variants_per_page": { + "label": "Varianten per pagina" + } + }, + "presets": { + "name": "Snelle lijst met bestellingen" + } + } + } +} diff --git a/locales/pl.json b/locales/pl.json new file mode 100644 index 0000000..b01383d --- /dev/null +++ b/locales/pl.json @@ -0,0 +1,554 @@ +{ + "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": "Udostępnij na platformie X", + "share_on_pinterest": "Przypnij do tablicy Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Maks. {{ quantity }}", + "in_cart_aria_label": "Ilość ({{ quantity }} w koszyku)" + }, + "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" + }, + "nested_label": "{{ title }} za {{ parent_title }}", + "view_full_details": "Pokaż kompletne dane", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "{{ price }}/szt." + }, + "product_variants": "Warianty produktów", + "taxes_included": "Z wliczonymi podatkami.", + "duties_included": "Z wliczonymi cłami.", + "duties_and_taxes_included": "Z wliczonymi cłami i podatkami." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Z wliczonymi cłami i podatkami. Obliczenie rabatów i wysyłki przy realizacji zakupu.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Z wliczonymi cłami i podatkami. Obliczenie rabatów i wysyłki przy realizacji zakupu.", + "taxes_included_shipping_at_checkout_with_policy_html": "Z wliczonymi podatkami. Obliczenie rabatów i wysyłki przy realizacji zakupu.", + "taxes_included_shipping_at_checkout_without_policy": "Z wliczonymi podatkami. Obliczenie rabatów i wysyłki przy realizacji zakupu.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Z wliczonymi cłami. Obliczenie podatków, rabatów i wysyłki przy realizacji zakupu.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Z wliczonymi cłami. Obliczenie podatków, rabatów i wysyłki przy realizacji zakupu.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Obliczenie podatków, rabatów i wysyłki przy realizacji zakupu.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Obliczenie podatków, rabatów i wysyłki przy realizacji zakupu." + }, + "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", + "remove_all_single_item_confirmation": "Czy usunąć 1 pozycję z Twojego koszyka?", + "min_error": "Pozycja ma minimalny limit {{ min }}", + "max_error": "Pozycja ma maksymalny limit {{ max }}", + "step_error": "Możesz dodać tę pozycję tylko z przyrostem o {{ step }}" + } + }, + "localization": { + "country_label": "Kraj/region", + "language_label": "Język", + "update_language": "Aktualizuj język", + "update_country": "Aktualizuj kraj/region", + "search": "Szukaj", + "popular_countries_regions": "Popularne kraje/regiony", + "country_results_count": "Liczba znalezionych krajów/regionów: {{ count }}" + }, + "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", + "alternate_provider_separator": "lub" + }, + "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..24f3978 --- /dev/null +++ b/locales/pl.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Nagłówki" + }, + "header__2": { + "content": "Tekst podstawowy" + }, + "type_body_font": { + "label": "Czcionka" + }, + "heading_scale": { + "label": "Skala" + }, + "body_scale": { + "label": "Skala" + } + } + }, + "social-media": { + "name": "Media społecznościowe", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Kody walut" + }, + "paragraph": "Ceny w koszyku i kasie zawsze zawierają kody walut" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Podpowiedzi wyszukiwania" + }, + "predictive_search_show_vendor": { + "label": "Dostawca produktu", + "info": "Pokazywane, gdy podpowiedzi wyszukiwania są włączone" + }, + "predictive_search_show_price": { + "label": "Cena produktu", + "info": "Pokazywane, gdy podpowiedzi wyszukiwania są włączone" + } + } + }, + "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": "Wypeł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](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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", + "drawer": { + "label": "Szuflada" + }, + "page": { + "label": "Strona" + }, + "notification": { + "label": "Powiadomienie w wyskakującym okienku" + } + }, + "show_vendor": { + "label": "Dostawca" + }, + "show_cart_note": { + "label": "Uwaga dotycząca koszyka" + }, + "cart_drawer": { + "header": "Szuflada koszyka", + "collection": { + "label": "Kolekcja", + "info": "Pokazywane, 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ść" + }, + "favicon": { + "label": "Ikona Favicon", + "info": "Wyświetlane w rozmiarze 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": "Wyświetla się w bloku informacji o marce w stopce" + } + } + }, + "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": "Efekt uniesienia 3D" + } + } + } + } + }, + "sections": { + "all": { + "padding": { + "section_padding_heading": "Wypełnienie", + "padding_top": "Góra", + "padding_bottom": "Dół" + }, + "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" + }, + "options__5": { + "label": "Bardzo, 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" + }, + "animation": { + "content": "Animacje", + "image_behavior": { + "options__1": { + "label": "Brak" + }, + "options__2": { + "label": "Ruch otoczenia" + }, + "label": "Animacja", + "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", + "default": "Witamy w naszym sklepie" + }, + "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" + }, + "show_social": { + "label": "Ikony mediów społecznościowych", + "info": "[Zarządzaj kontami społecznościowymi](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selektor kraju/regionu", + "info": "[Zarządzaj krajami/regionami](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selektor języka", + "info": "[Zarządzaj językami](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Użyteczne funkcje" + }, + "paragraph": { + "content": "Pojawia się tylko na dużych ekranach" + } + }, + "presets": { + "name": "Pasek ogłoszeń" + } + }, + "collage": { + "name": "Kolaż", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Kolaż multimedialny" + }, + "desktop_layout": { + "label": "Układ", + "options__1": { + "label": "Duży blok na początku" + }, + "options__2": { + "label": "Duży blok na końcu" + } + }, + "mobile_layout": { + "label": "Układ na urządzeniu zdalnym", + "options__1": { + "label": "Kolaż" + }, + "options__2": { + "label": "Kolumna" + } + }, + "card_styles": { + "label": "Styl karty", + "info": "Zarządzaj indywidualnymi stylami kart w [ustawieniach szablonu](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Użyj indywidualnych stylów kart" + }, + "options__2": { + "label": "Nadaj wszystkiemu styl kart produktów" + } + }, + "header_layout": { + "content": "Układ" + } + }, + "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)", + "default": "Opisz wideo" + } + } + } + }, + "presets": { + "name": "Kolaż" + } + }, + "collection-list": { + "name": "Lista kolekcji", + "settings": { + "title": { + "label": "Nagłówek", + "default": "Kolekcje" + }, + "image_ratio": { + "label": "Proporcja obrazu", + "options__1": { + "label": "Dostosuj do obrazu" + }, + "options__2": { + "label": "Portret" + }, + "options__3": { + "label": "Kwadrat" + } + }, + "swipe_on_mobile": { + "label": "Karuzela" + }, + "show_view_all": { + "label": "Przycisk „Wyświetl wszystko”", + "info": "Widoczne, jeśli lista zawiera więcej kolekcji niż pokazano" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "header_mobile": { + "content": "Układ na urządzeniu mobilnym" + }, + "columns_mobile": { + "label": "Kolumny", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Układ" + } + }, + "blocks": { + "featured_collection": { + "name": "Kolekcja", + "settings": { + "collection": { + "label": "Kolekcja" + } + } + } + }, + "presets": { + "name": "Lista kolekcji" + } + }, + "contact-form": { + "name": "Formularz kontaktowy", + "presets": { + "name": "Formularz kontaktowy" + }, + "settings": { + "title": { + "default": "Formularz kontaktowy", + "label": "Nagłówek" + } + } + }, + "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", + "default": "Posty na blogu" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Liczba postów" + }, + "show_view_all": { + "label": "Przycisk „Wyświetl wszystko”", + "info": "Widoczne, jeśli blog zawiera więcej postów niż pokazano" + }, + "show_image": { + "label": "Wyróżniony obraz" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autor" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "layout_header": { + "content": "Układ" + }, + "text_header": { + "content": "Tekst" + } + }, + "presets": { + "name": "Posty na blogu" + } + }, + "featured-collection": { + "name": "Polecana kolekcja", + "settings": { + "title": { + "label": "Nagłówek", + "default": "Polecana kolekcja" + }, + "collection": { + "label": "Kolekcja" + }, + "products_to_show": { + "label": "Liczba produktów" + }, + "show_view_all": { + "label": "Przycisk „Wyświetl wszystko”", + "info": "Widoczne, 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": "Dostawca" + }, + "show_rating": { + "label": "Ocena produktu", + "info": "Do wystawiania ocen wymagana jest aplikacja. [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": "Szybkie dodawanie" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "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": "Karuzela" + }, + "full_width": { + "label": "Produkty w pełnej szerokości" + }, + "header_mobile": { + "content": "Układ na urządzeniu mobilnym" + }, + "columns_mobile": { + "label": "Kolumny", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Karuzela" + }, + "header_text": { + "content": "Tekst" + }, + "header_collection": { + "content": "Układ kolekcji" + } + }, + "presets": { + "name": "Polecana kolekcja" + } + }, + "footer": { + "name": "Stopka", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Szybkie linki" + }, + "menu": { + "label": "Menu" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Nagłówek" + }, + "subtext": { + "label": "Tekst podrzędny", + "default": "Udostępniaj klientom informacje kontaktowe, dane sklepu i treści związane z marką.
" + } + } + }, + "brand_information": { + "name": "Informacje o marce", + "settings": { + "paragraph": { + "content": "Zarządzaj informacjami o marce w [ustawieniach szablonu](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Ikony mediów społecznościowych", + "info": "[Zarządzaj kontami społecznościowymi](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Rejestracja w celu otrzymywania e-maili" + }, + "newsletter_heading": { + "label": "Nagłówek", + "default": "Subskrybuj nasze wiadomości e-mail" + }, + "header__1": { + "content": "Rejestracja w celu otrzymywania e-maili", + "info": "Rejestracje dodają [profile klienta](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Ikony mediów społecznościowych", + "info": "[Zarządzaj kontami społecznościowymi](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Selektor kraju/regionu", + "info": "[Zarządzaj krajami/regionami](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selektor języka", + "info": "[Zarządzaj językami](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ikony metody płatności" + }, + "margin_top": { + "label": "Górna granica" + }, + "show_policy": { + "label": "Linki do polityki", + "info": "[Zarządzaj politykami](/admin/settings/legal)" + }, + "header__9": { + "content": "Użyteczne funkcje" + }, + "enable_follow_on_shop": { + "label": "Obserwuj w Shop", + "info": "Usługa Shop Pay musi być włączona. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Nagłówek", + "settings": { + "logo_position": { + "label": "Położenie logo", + "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": "Linia separatora" + }, + "margin_bottom": { + "label": "Dolna granica" + }, + "menu_type_desktop": { + "label": "Typ menu", + "options__1": { + "label": "Lista rozwijana" + }, + "options__2": { + "label": "Mega menu" + }, + "options__3": { + "label": "Szuflada" + } + }, + "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 [ustawieniach szablonu](/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" + } + }, + "enable_country_selector": { + "label": "Selektor kraju/regionu", + "info": "[Zarządzaj krajami/regionami](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Selektor języka", + "info": "[Zarządzaj językami](/admin/settings/languages)" + }, + "header__1": { + "content": "Kolor" + }, + "menu_color_scheme": { + "label": "Kolorystyka menu" + }, + "enable_customer_avatar": { + "label": "Awatar konta klienta", + "info": "Widoczny tylko wtedy, gdy klienci są zalogowani do Shop. [Zarządzaj kontami klientów](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Użyteczne funkcje" + } + } + }, + "image-banner": { + "name": "Baner z obrazem", + "settings": { + "image": { + "label": "Obraz 1" + }, + "image_2": { + "label": "Obraz 2" + }, + "stack_images_on_mobile": { + "label": "Układaj obrazy w stosy" + }, + "show_text_box": { + "label": "Kontener" + }, + "image_overlay_opacity": { + "label": "Nieprzezroczystość nakładki" + }, + "show_text_below": { + "label": "Kontener" + }, + "image_height": { + "label": "Wysokość", + "options__1": { + "label": "Dostosuj do pierwszego obrazu" + }, + "options__2": { + "label": "Mały" + }, + "options__3": { + "label": "Średni" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + }, + "label": "Wyrównanie" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + }, + "label": "Wyrównanie" + }, + "mobile": { + "content": "Układ na urządzeniu mobilnym" + }, + "content": { + "content": "Treść" + } + }, + "blocks": { + "heading": { + "name": "Nagłówek", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Baner z obrazem" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Podaj klientom szczegóły dotyczące obrazów banerów lub treści w szablonie." + }, + "text_style": { + "options__1": { + "label": "Tekst podstawowy" + }, + "options__2": { + "label": "Podtytuł" + }, + "options__3": { + "label": "Duże litery" + }, + "label": "Styl" + } + } + }, + "buttons": { + "name": "Przyciski", + "settings": { + "button_label_1": { + "label": "Etykieta", + "info": "Pozostaw puste, aby ukryć", + "default": "Przycisk z etykietą" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Styl konspektu" + }, + "button_label_2": { + "label": "Etykieta", + "info": "Pozostaw puste, aby ukryć", + "default": "Przycisk z etykietą" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Styl konspektu" + }, + "header_1": { + "content": "Przycisk 1" + }, + "header_2": { + "content": "Przycisk 2" + } + } + } + }, + "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ść", + "options__4": { + "label": "Duży" + } + }, + "layout": { + "options__1": { + "label": "Najpierw obraz" + }, + "options__2": { + "label": "Drugi obraz" + }, + "label": "Umieszczanie" + }, + "desktop_image_width": { + "options__1": { + "label": "Mały" + }, + "options__2": { + "label": "Średni" + }, + "options__3": { + "label": "Duży" + }, + "label": "Szerokość" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + }, + "label": "Wyrównanie" + }, + "desktop_content_position": { + "options__1": { + "label": "Góra" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Dół" + }, + "label": "Pozycja" + }, + "content_layout": { + "options__1": { + "label": "Bez nakładania" + }, + "options__2": { + "label": "Nakładanie się" + }, + "label": "Układ" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + }, + "label": "Wyrównanie w urządzeniu mobilnym" + }, + "header": { + "content": "Treść" + }, + "header_colors": { + "content": "Kolory" + } + }, + "blocks": { + "heading": { + "name": "Nagłówek", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Obraz z tekstem" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Połącz tekst z obrazem, aby skierować uwagę na wybrany produkt, kolekcję lub wpis na blogu. Dodaj szczegóły dotyczące dostępności, stylu lub dołącz recenzję.
" + }, + "text_style": { + "label": "Styl", + "options__1": { + "label": "Tekst podstawowy" + }, + "options__2": { + "label": "Podtytuł" + } + } + } + }, + "button": { + "name": "Przycisk", + "settings": { + "button_label": { + "label": "Etykieta", + "info": "Pozostaw puste, aby ukryć", + "default": "Przycisk z etykietą" + }, + "button_link": { + "label": "Link" + }, + "outline_button": { + "label": "Styl konspektu" + } + } + }, + "caption": { + "name": "Napisy", + "settings": { + "text": { + "label": "Tekst", + "default": "Dodaj slogan" + }, + "text_style": { + "label": "Styl", + "options__1": { + "label": "Podtytuł" + }, + "options__2": { + "label": "Duże litery" + } + }, + "caption_size": { + "label": "Rozmiar", + "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ść obrazu", + "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": "Data" + }, + "blog_show_author": { + "label": "Autor" + } + } + }, + "content": { + "name": "Treść" + }, + "share": { + "name": "Udostępnij", + "settings": { + "text": { + "label": "Tekst", + "default": "Udostępnij" + } + } + } + } + }, + "main-blog": { + "name": "Posty na blogu", + "settings": { + "show_image": { + "label": "Wyróżniony obraz" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autor" + }, + "layout": { + "label": "Układ", + "options__1": { + "label": "Siatka" + }, + "options__2": { + "label": "Kolaż" + } + }, + "image_height": { + "label": "Wysokość obrazu", + "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": "Szczegółami kolekcji można [zarządzać w panelu administracyjnym](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Opis" + }, + "show_collection_image": { + "label": "Obraz" + } + } + }, + "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": "Dostawca" + }, + "enable_tags": { + "label": "Filtry", + "info": "Dostosuj filtry za pomocą [aplikacji Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filtry", + "info": "Dostosuj filtry za pomocą [aplikacji Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Sortowanie" + }, + "header__1": { + "content": "Filtrowanie i sortowanie" + }, + "header__3": { + "content": "Karta produktów" + }, + "show_rating": { + "label": "Ocena produktu", + "info": "Do oceniania produktów wymagana jest aplikacja. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "columns_mobile": { + "label": "Kolumny na urządzeniu mobilnym", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Układ filtrów", + "options__1": { + "label": "W poziomie" + }, + "options__2": { + "label": "W pionie" + }, + "options__3": { + "label": "Szuflada" + } + }, + "quick_add": { + "label": "Szybkie dodawanie", + "options": { + "option_1": "Brak", + "option_2": "Standard", + "option_3": "Zbiorczo" + } + } + } + }, + "main-list-collections": { + "name": "Strona listy kolekcji", + "settings": { + "title": { + "label": "Nagłówek", + "default": "Kolekcje" + }, + "sort": { + "label": "Sortuj kolekcje", + "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", + "options__1": { + "label": "Dostosuj do obrazu" + }, + "options__2": { + "label": "Portret" + }, + "options__3": { + "label": "Kwadrat" + } + }, + "columns_desktop": { + "label": "Kolumny" + }, + "header_mobile": { + "content": "Układ na urządzeniu mobilnym" + }, + "columns_mobile": { + "label": "Kolumny na urządzeniu mobilnym", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Strona" + }, + "main-password-footer": { + "name": "Stopka hasła" + }, + "main-password-header": { + "name": "Nagłówek hasła", + "settings": { + "logo_help": { + "content": "Edytuj logo w [ustawieniach szablonu](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Informacje o produkcie", + "blocks": { + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Blok tekstowy" + }, + "text_style": { + "label": "Styl", + "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": "Styl", + "options__1": { + "label": "Lista rozwijana" + }, + "options__2": { + "label": "Okrągłe przełączniki" + } + }, + "swatch_shape": { + "label": "Próbka", + "info": "Dowiedz się więcej o [próbkach](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) w opcjach produktu", + "options__1": { + "label": "Koło" + }, + "options__2": { + "label": "Kwadrat" + }, + "options__3": { + "label": "Brak" + } + } + } + }, + "buy_buttons": { + "name": "Przyciski zakupu", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamiczne przyciski realizacji zakupu", + "info": "Klienci zobaczą swoją preferowaną opcję płatności. [Dowiedz się więcej](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Opcje wysyłania karty prezentowej", + "info": "Klienci mogą dodać osobistą notatkę i zaplanować datę wysyłki. [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": { + "text": { + "label": "Tekst", + "default": "Udostępnij" + } + } + }, + "collapsible_tab": { + "name": "Zwijany wiersz", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Zwijany wiersz" + }, + "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", + "default": "Wyskakujące okienko tekstowe" + }, + "page": { + "label": "Strona" + } + } + }, + "rating": { + "name": "Ocena produktu", + "settings": { + "paragraph": { + "content": "Do oceniania produktów wymagana jest aplikacja. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Produkty uzupełniające", + "settings": { + "paragraph": { + "content": "Zarządzaj produktami uzupełniającymi w [aplikacji Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Nagłówek", + "default": "Pasuje do" + }, + "make_collapsible_row": { + "label": "Zwijany wiersz" + }, + "icon": { + "info": "Pokazywane po wybraniu zwijanego wiersza" + }, + "product_list_limit": { + "label": "Liczba produktów" + }, + "products_per_page": { + "label": "Liczba produktów na stronę" + }, + "pagination_style": { + "label": "Paginacja", + "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": "Szybkie dodawanie" + } + } + }, + "icon_with_text": { + "name": "Ikona z tekstem", + "settings": { + "layout": { + "label": "Układ", + "options__1": { + "label": "W poziomie" + }, + "options__2": { + "label": "W pionie" + } + }, + "heading": { + "info": "Pozostaw puste, aby ukryć parowanie" + }, + "icon_1": { + "label": "Ikona" + }, + "image_1": { + "label": "Obraz" + }, + "heading_1": { + "label": "Nagłówek", + "default": "Nagłówek" + }, + "icon_2": { + "label": "Ikona" + }, + "image_2": { + "label": "Obraz" + }, + "heading_2": { + "label": "Nagłówek", + "default": "Nagłówek" + }, + "icon_3": { + "label": "Ikona" + }, + "image_3": { + "label": "Obraz" + }, + "heading_3": { + "label": "Nagłówek", + "default": "Nagłówek" + }, + "pairing_1": { + "label": "Parowanie 1", + "info": "Wybierz ikonę lub dodaj obraz dla każdego parowania" + }, + "pairing_2": { + "label": "Parowanie 2" + }, + "pairing_3": { + "label": "Parowanie 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Spis zapasów" + } + } + } + }, + "settings": { + "header": { + "content": "Multimedia" + }, + "enable_video_looping": { + "label": "Zapętlony film" + }, + "enable_sticky_info": { + "label": "Przypięta zawartość" + }, + "hide_variants": { + "label": "Ukryj multimedia innych wariantów po wybraniu wariantu" + }, + "gallery_layout": { + "label": "Układ", + "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ść", + "options__1": { + "label": "Mały" + }, + "options__2": { + "label": "Średni" + }, + "options__3": { + "label": "Duży" + } + }, + "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", + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Prawa strona" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Otwórz lightbox" + }, + "options__2": { + "label": "Kliknij i najedź kursorem" + }, + "options__3": { + "label": "Bez powiększenia" + } + }, + "constrain_to_viewport": { + "label": "Ograniczenie do wysokości ekranu" + }, + "media_fit": { + "label": "Dopasowanie", + "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": "Dostawca" + }, + "header__1": { + "content": "Karta produktów" + }, + "header__2": { + "content": "Karta blogu" + }, + "article_show_date": { + "label": "Data" + }, + "article_show_author": { + "label": "Autor" + }, + "show_rating": { + "label": "Ocena produktu", + "info": "Do oceniania produktów wymagana jest aplikacja. [Dowiedz się więcej](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "columns_mobile": { + "label": "Kolumny na urządzeniu mobilnym", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Wielokolumnowy", + "settings": { + "title": { + "label": "Nagłówek", + "default": "Wielokolumnowy" + }, + "image_width": { + "label": "Szerokość", + "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", + "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": "Etykieta", + "default": "Przycisk z etykietą", + "info": "Pozostaw puste, aby ukryć" + }, + "button_link": { + "label": "Link" + }, + "swipe_on_mobile": { + "label": "Karuzela" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "header_mobile": { + "content": "Układ na urządzeniu mobilnym" + }, + "columns_mobile": { + "label": "Kolumny", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Nagłówek" + }, + "header_image": { + "content": "Obraz" + }, + "header_layout": { + "content": "Układ" + }, + "header_button": { + "content": "Przycisk" + } + }, + "blocks": { + "column": { + "name": "Kolumna", + "settings": { + "image": { + "label": "Obraz" + }, + "title": { + "label": "Nagłówek", + "default": "Kolumna" + }, + "text": { + "label": "Opis", + "default": "Połącz tekst z obrazem, aby skierować uwagę na wybrany produkt, kolekcję lub wpis na blogu. Dodaj szczegóły dotyczące dostępności, stylu lub dołącz recenzję.
" + }, + "link_label": { + "label": "Etykieta linku", + "info": "Pozostaw puste, aby ukryć" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Wielokolumnowy" + } + }, + "newsletter": { + "name": "Osoba zarejestrowana w celu otrzymywania e-maili", + "settings": { + "full_width": { + "label": "Pełna szerokość" + }, + "paragraph": { + "content": "Rejestracje dodają [profile klienta](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Nagłówek", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Subskrybuj nasze wiadomości e-mail" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Dowiedz się jako pierwszy o nowych kolekcjach i ekskluzywnych ofertach.
" + } + } + }, + "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": "Pełna szerokość" + }, + "desktop_content_position": { + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + }, + "label": "Położenie zawartości" + }, + "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", + "default": "Opowiedz o swojej marce" + } + } + }, + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Udostępnij klientom informacje o swojej marce. Opisz produkt, udostępnij ogłoszenia lub przywitaj klientów w swoim sklepie.
" + } + } + }, + "buttons": { + "name": "Przyciski", + "settings": { + "button_label_1": { + "label": "Etykieta", + "info": "Pozostaw puste, aby ukryć", + "default": "Przycisk z etykietą" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Styl konspektu" + }, + "button_label_2": { + "label": "Etykieta", + "info": "Pozostaw etykietę pustą, aby ukryć" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Styl konspektu" + }, + "header_button1": { + "content": "Przycisk 1" + }, + "header_button2": { + "content": "Przycisk 2" + } + } + }, + "caption": { + "name": "Napisy", + "settings": { + "text": { + "label": "Tekst", + "default": "Dodaj slogan" + }, + "text_style": { + "label": "Styl", + "options__1": { + "label": "Podtytuł" + }, + "options__2": { + "label": "Duże litery" + } + }, + "caption_size": { + "label": "Rozmiar", + "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", + "default": "Film" + }, + "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 użytkowników korzystających z czytników ekranu" + }, + "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": "Pełna szerokość" + }, + "video": { + "label": "Film" + }, + "enable_video_looping": { + "label": "Zapętlony film" + }, + "header__1": { + "content": "Film hostowany przez Shopify" + }, + "header__2": { + "content": "Lub osadź film z adresu URL" + }, + "header__3": { + "content": "Układ" + }, + "paragraph": { + "content": "Wyświetla się, gdy nie wybrano żadnego filmu hostowanego przez Shopify" + } + }, + "presets": { + "name": "Film" + } + }, + "featured-product": { + "name": "Polecany produkt", + "blocks": { + "text": { + "name": "Tekst", + "settings": { + "text": { + "label": "Tekst", + "default": "Blok tekstowy" + }, + "text_style": { + "label": "Styl", + "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": "Styl", + "options__1": { + "label": "Lista rozwijana" + }, + "options__2": { + "label": "Okrągłe przełączniki" + } + }, + "swatch_shape": { + "label": "Próbka", + "info": "Dowiedz się więcej o [próbkach](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) w opcjach produktu", + "options__1": { + "label": "Koło" + }, + "options__2": { + "label": "Kwadrat" + }, + "options__3": { + "label": "Brak" + } + } + } + }, + "buy_buttons": { + "name": "Przyciski zakupu", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamiczne przyciski realizacji zakupu", + "info": "Klienci zobaczą swoją preferowaną opcję płatności. [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", + "default": "Udostępnij" + } + } + }, + "rating": { + "name": "Ocena produktu", + "settings": { + "paragraph": { + "content": "Do oceniania produktów wymagana jest aplikacja. [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": "Dodatkowe tło" + }, + "header": { + "content": "Multimedia" + }, + "enable_video_looping": { + "label": "Zapętlony film" + }, + "hide_variants": { + "label": "Ukryj niewybrane pliki multimedialne wariantów na pulpicie" + }, + "media_position": { + "label": "Pozycja", + "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": "Rejestracje dodają [profile klienta](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Obraz tła" + }, + "show_background_image": { + "label": "Wyświetl obraz tła" + }, + "show_text_box": { + "label": "Kontener" + }, + "image_overlay_opacity": { + "label": "Nieprzezroczystość nakładki" + }, + "show_text_below": { + "label": "Układaj tekst pod obrazami na sobie" + }, + "image_height": { + "label": "Wysokość", + "options__1": { + "label": "Dostosuj do obrazu" + }, + "options__2": { + "label": "Mały" + }, + "options__3": { + "label": "Średni" + }, + "options__4": { + "label": "Duży" + } + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + }, + "label": "Wyrównanie" + }, + "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" + }, + "color_scheme": { + "info": "Widoczne podczas wyświetlania kontenera." + }, + "content_header": { + "content": "Treść" + } + }, + "blocks": { + "heading": { + "name": "Nagłówek", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Wkrótce otwarcie" + } + } + }, + "paragraph": { + "name": "Tekst", + "settings": { + "paragraph": { + "label": "Tekst", + "default": "Bądź pierwszą osobą, która dowie się, kiedy wystartujemy.
" + }, + "text_style": { + "options__1": { + "label": "Tekst podstawowy" + }, + "options__2": { + "label": "Podtytuł" + }, + "label": "Styl" + } + } + }, + "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": "Strona" + } + }, + "slide_height": { + "label": "Wysokość", + "options__1": { + "label": "Dostosuj do pierwszego obrazu" + }, + "options__2": { + "label": "Mały" + }, + "options__3": { + "label": "Średni" + }, + "options__4": { + "label": "Duży" + } + }, + "slider_visual": { + "label": "Paginacja", + "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": "Układaj tekst pod obrazami na sobie" + }, + "mobile": { + "content": "Układ na urządzeniu mobilnym" + }, + "accessibility": { + "content": "Dostępność", + "label": "Opis pokazu slajdów", + "info": "Opisz pokaz slajdów dla użytkowników korzystających z czytników ekranu", + "default": "Pokaz slajdów na temat naszej marki" + } + }, + "blocks": { + "slide": { + "name": "Slajd", + "settings": { + "image": { + "label": "Obraz" + }, + "heading": { + "label": "Nagłówek", + "default": "Slajd obrazu" + }, + "subheading": { + "label": "Nagłówek podrzędny", + "default": "Opowiedz historię swojej marki za pomocą obrazów" + }, + "button_label": { + "label": "Etykieta", + "info": "Pozostaw puste, aby ukryć", + "default": "Przycisk z etykietą" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Styl konspektu" + }, + "box_align": { + "label": "Położenie zawartości", + "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" + } + }, + "show_text_box": { + "label": "Kontener" + }, + "text_alignment": { + "label": "Wyrównanie zawartości", + "option_1": { + "label": "Lewa strona" + }, + "option_2": { + "label": "Środek" + }, + "option_3": { + "label": "Prawa strona" + } + }, + "image_overlay_opacity": { + "label": "Nieprzezroczystość nakładki" + }, + "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" + } + }, + "header_button": { + "content": "Przycisk" + }, + "header_layout": { + "content": "Układ" + }, + "header_text": { + "content": "Tekst" + }, + "header_colors": { + "content": "Kolory" + } + } + } + }, + "presets": { + "name": "Pokaz slajdów" + } + }, + "collapsible_content": { + "name": "Zwijana treść", + "settings": { + "caption": { + "label": "Napisy" + }, + "heading": { + "label": "Nagłówek", + "default": "Zwijana treść" + }, + "heading_alignment": { + "label": "Wyrównanie nagłówka", + "options__1": { + "label": "Lewa strona" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Prawa strona" + } + }, + "layout": { + "label": "Kontener", + "options__1": { + "label": "Brak kontenera" + }, + "options__2": { + "label": "Kontener wiersza" + }, + "options__3": { + "label": "Kontener sekcji" + } + }, + "open_first_collapsible_row": { + "label": "Otwórz pierwszy wiersz" + }, + "header": { + "content": "Obraz" + }, + "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": "Umieszczanie", + "options__1": { + "label": "Najpierw obraz" + }, + "options__2": { + "label": "Drugi obraz" + } + }, + "container_color_scheme": { + "label": "Schemat kolorów kontenera" + }, + "layout_header": { + "content": "Układ" + }, + "section_color_scheme": { + "label": "Sekcja kolorystyki" + } + }, + "blocks": { + "collapsible_row": { + "name": "Zwijany wiersz", + "settings": { + "heading": { + "label": "Nagłówek", + "default": "Zwijany wiersz" + }, + "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", + "shop_login_button": { + "enable": "Włącz logowanie przez Shop" + } + }, + "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": "Liczba produktów" + }, + "columns_desktop": { + "label": "Kolumny" + }, + "paragraph__1": { + "content": "Powiązanymi produktami można zarządzać w [aplikacji Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Może Ci się spodobać również" + }, + "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": "Dostawca" + }, + "show_rating": { + "label": "Ocena produktu", + "info": "Do oceniania produktów wymagana jest aplikacja. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Kolumny na urządzeniu mobilnym", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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ść" + }, + "desktop_image_width": { + "options__1": { + "label": "Mały" + }, + "options__2": { + "label": "Średni" + }, + "options__3": { + "label": "Duży" + }, + "label": "Szerokość" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Góra" + }, + "options__2": { + "label": "Środek" + }, + "options__3": { + "label": "Dół" + }, + "label": "Pozycja" + }, + "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" + }, + "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 w urządzeniu mobilnym" + }, + "header": { + "content": "Obraz" + }, + "header_2": { + "content": "Treść" + }, + "header_3": { + "content": "Kolory" + } + }, + "blocks": { + "row": { + "name": "Wiersz", + "settings": { + "image": { + "label": "Obraz" + }, + "caption": { + "label": "Napisy", + "default": "Napis" + }, + "heading": { + "label": "Nagłówek", + "default": "Wiersz" + }, + "text": { + "label": "Tekst", + "default": "Połącz tekst z obrazem, aby skierować uwagę na wybrany produkt, kolekcję lub wpis na blogu. Dodaj szczegóły dotyczące dostępności, stylu lub dołącz recenzję.
" + }, + "button_label": { + "label": "Przycisk z etykietą", + "default": "Przycisk z etykietą", + "info": "Pozostaw puste, aby ukryć" + }, + "button_link": { + "label": "Link przycisku" + } + } + } + }, + "presets": { + "name": "Wiele wierszy" + } + }, + "quick-order-list": { + "name": "Lista szybkich zamówień", + "settings": { + "show_image": { + "label": "Zdjęcia" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "Liczba wariantów na stronę" + } + }, + "presets": { + "name": "Lista szybkich zamówień" + } + } + } +} diff --git a/locales/pt-BR.json b/locales/pt-BR.json new file mode 100644 index 0000000..68fc092 --- /dev/null +++ b/locales/pt-BR.json @@ -0,0 +1,542 @@ +{ + "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": "Compartilhar no X", + "share_on_pinterest": "Incluir como pin no Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Mínimo de {{ quantity }}", + "max_of": "Máximo de {{ quantity }}", + "in_cart_aria_label": "Quantidade ({{ quantity }} no carrinho)" + }, + "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" + }, + "nested_label": "{{ title }} para {{ parent_title }}", + "view_full_details": "Ver informações completas", + "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_range": "{{ minimum }} – {{ maximum }}", + "price_at_each_html": "{{ price }}/cada" + }, + "product_variants": "Variantes do produto", + "taxes_included": "Tributos incluídos.", + "duties_included": "Tributos de importação incluídos.", + "duties_and_taxes_included": "Tributos de importação e outros tributos incluídos." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Tributos de importação e outros tributos incluídos. Descontos e frete calculados no checkout.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Tributos de importação e outros tributos incluídos. Descontos e frete calculados no checkout.", + "taxes_included_shipping_at_checkout_with_policy_html": "Tributos incluídos. Descontos e frete calculados no checkout.", + "taxes_included_shipping_at_checkout_without_policy": "Tributos incluídos. Descontos e frete calculados no checkout.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Tributos de importação incluídos. Tributos, descontos e frete calculados no checkout.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Tributos de importação incluídos. Tributos, descontos e frete calculados no checkout.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Tributos, descontos e frete calculados no checkout.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Tributos, descontos e frete calculados no checkout." + }, + "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", + "remove_all_single_item_confirmation": "Remover 1 item do carrinho?", + "min_error": "Este item apresenta um mínimo de {{ min }}", + "max_error": "Este item apresenta um máximo de {{ max }}", + "step_error": "Só é possível adicionar este item em incrementos de {{ step }}" + } + }, + "localization": { + "country_label": "País/Região", + "language_label": "Idioma", + "update_language": "Atualizar idioma", + "update_country": "Atualizar país/região", + "search": "Pesquisar", + "popular_countries_regions": "Países/regiões populares", + "country_results_count": "{{ count }} países/regiões encontrados" + }, + "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", + "alternate_provider_separator": "ou" + }, + "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..a83635f --- /dev/null +++ b/locales/pt-BR.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Títulos" + }, + "header__2": { + "content": "Corpo" + }, + "type_body_font": { + "label": "Fonte" + }, + "heading_scale": { + "label": "Escala" + }, + "body_scale": { + "label": "Escala" + } + } + }, + "social-media": { + "name": "Redes sociais", + "settings": { + "social_twitter_link": { + "label": "X/Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Códigos de moeda" + }, + "paragraph": "Os preços do carrinho e do checkout sempre mostram os códigos de moeda" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Sugestões de pesquisa" + }, + "predictive_search_show_vendor": { + "label": "Fabricante do produto", + "info": "Exibido quando as sugestões de pesquisa estão habilitadas" + }, + "predictive_search_show_price": { + "label": "Preço do produto", + "info": "Exibido 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](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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", + "drawer": { + "label": "Deslizante" + }, + "page": { + "label": "Página" + }, + "notification": { + "label": "Notificação pop-up" + } + }, + "show_vendor": { + "label": "Fabricante" + }, + "show_cart_note": { + "label": "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" + }, + "favicon": { + "label": "Favicon", + "info": "Exibido em 32 x 32px" + } + } + }, + "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": "É exibido no bloco de informações da marca no rodapé" + } + } + }, + "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", + "padding_top": "Acima", + "padding_bottom": "Abaixo" + }, + "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": "Pequena" + }, + "options__2": { + "label": "Médio" + }, + "options__3": { + "label": "Grande" + }, + "options__4": { + "label": "Extra grande" + }, + "options__5": { + "label": "Extraextragrande" + } + }, + "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" + }, + "animation": { + "content": "Animações", + "image_behavior": { + "options__1": { + "label": "Nenhuma" + }, + "options__2": { + "label": "Movimentação do ambiente" + }, + "label": "Animação", + "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", + "default": "Boas-vindas à nossa loja" + }, + "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" + }, + "show_social": { + "label": "Ícones de redes sociais", + "info": "[Gerenciar contas de rede social](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Seletor de país/região", + "info": "[Gerenciar países/regiões](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Seletor de idioma", + "info": "[Gerenciar idiomas](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Serviços públicos" + }, + "paragraph": { + "content": "Aparecer apenas em telas grandes" + } + }, + "presets": { + "name": "Barra de comunicados" + } + }, + "collage": { + "name": "Colagem", + "settings": { + "heading": { + "label": "Título", + "default": "Colagem multimídia" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Bloco grande primeiro" + }, + "options__2": { + "label": "Bloco grande por último" + } + }, + "mobile_layout": { + "label": "Layout para dispositivo móvel", + "options__1": { + "label": "Colagem" + }, + "options__2": { + "label": "Coluna" + } + }, + "card_styles": { + "label": "Estilo do cartão", + "info": "Gerenciar estilos de cartão individual em [configurações do tema](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Usar estilos de cartão individuais" + }, + "options__2": { + "label": "Definir o estilo de todos como cartões de produto" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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)", + "default": "Descreva o vídeo" + } + } + } + }, + "presets": { + "name": "Colagem" + } + }, + "collection-list": { + "name": "Lista de coleções", + "settings": { + "title": { + "label": "Título", + "default": "Coleções" + }, + "image_ratio": { + "label": "Proporção da imagem", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Retrato" + }, + "options__3": { + "label": "Quadrada" + } + }, + "swipe_on_mobile": { + "label": "Carrossel" + }, + "show_view_all": { + "label": "Botão \"Ver tudo\"", + "info": "Visível se a lista tiver mais coleções que as mostradas" + }, + "columns_desktop": { + "label": "Colunas" + }, + "header_mobile": { + "content": "Layout em dispositivos móveis" + }, + "columns_mobile": { + "label": "Colunas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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" + }, + "settings": { + "title": { + "default": "Formulário de contato", + "label": "Título" + } + } + }, + "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", + "default": "Posts do blog" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Contagem de publicações" + }, + "show_view_all": { + "label": "Botão \"Ver tudo\"", + "info": "Visível se o blog tiver mais publicações que as mostradas" + }, + "show_image": { + "label": "Imagem em destaque" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autoria" + }, + "columns_desktop": { + "label": "Colunas" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Texto" + } + }, + "presets": { + "name": "Posts do blog" + } + }, + "featured-collection": { + "name": "Coleção em destaque", + "settings": { + "title": { + "label": "Título", + "default": "Coleção em destaque" + }, + "collection": { + "label": "Coleção" + }, + "products_to_show": { + "label": "Contagem de produtos" + }, + "show_view_all": { + "label": "Botão \"Ver tudo\"", + "info": "Visível 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": "Fabricante" + }, + "show_rating": { + "label": "Classificação do produto", + "info": "É necessário um app para classificações. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Adição rápida" + }, + "columns_desktop": { + "label": "Colunas" + }, + "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": "Subtítulo" + }, + "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": "Carrossel" + }, + "full_width": { + "label": "Produtos de largura total" + }, + "header_mobile": { + "content": "Layout em dispositivos móveis" + }, + "columns_mobile": { + "label": "Colunas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carrossel" + }, + "header_text": { + "content": "Texto" + }, + "header_collection": { + "content": "Layout de coleções" + } + }, + "presets": { + "name": "Coleção em destaque" + } + }, + "footer": { + "name": "Rodapé", + "blocks": { + "link_list": { + "name": "Menu", + "settings": { + "heading": { + "label": "Título", + "default": "Links rápidos" + }, + "menu": { + "label": "Menu" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "heading": { + "label": "Título", + "default": "Título" + }, + "subtext": { + "label": "Subtexto", + "default": "Compartilhe informações de contato, detalhes da loja e conteúdo de marca com clientes.
" + } + } + }, + "brand_information": { + "name": "Informações da marca", + "settings": { + "paragraph": { + "content": "Gerenciar informações da marca em [configurações do tema](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Ícones de redes sociais", + "info": "[Gerenciar contas de rede social](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Assinante de e-mail" + }, + "newsletter_heading": { + "label": "Título", + "default": "Assine nossos e-mails" + }, + "header__1": { + "content": "Assinante de e-mail", + "info": "As inscrições adicionam [perfis de cliente](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Ícones de redes sociais", + "info": "[Gerenciar contas de rede social](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Seletor de país/região", + "info": "[Gerenciar países/regiões](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Seletor de idioma", + "info": "[Gerenciar idiomas](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ícones de forma de pagamento" + }, + "margin_top": { + "label": "Margem superior" + }, + "show_policy": { + "label": "Links para políticas", + "info": "[Gerenciar políticas](/admin/settings/legal)" + }, + "header__9": { + "content": "Serviços públicos" + }, + "enable_follow_on_shop": { + "label": "Seguir no Shop", + "info": "O Shop Pay deve estar habilitado. [Saiba mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Cabeçalho", + "settings": { + "logo_position": { + "label": "Posição do logo", + "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": "Linha separadora" + }, + "margin_bottom": { + "label": "Margem inferior" + }, + "menu_type_desktop": { + "label": "Tipo de menu", + "options__1": { + "label": "Menu suspenso" + }, + "options__2": { + "label": "Megamenu" + }, + "options__3": { + "label": "Deslizante" + } + }, + "mobile_logo_position": { + "label": "Posição do logo em dispositivo móvel", + "options__1": { + "label": "Centro" + }, + "options__2": { + "label": "Esquerda" + } + }, + "logo_help": { + "content": "Editar 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" + } + }, + "enable_country_selector": { + "label": "Seletor de país/região", + "info": "[Gerenciar países/regiões](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Seletor de idioma", + "info": "[Gerenciar idiomas](/admin/settings/languages)" + }, + "header__1": { + "content": "Cor" + }, + "menu_color_scheme": { + "label": "Esquema de cores do menu" + }, + "enable_customer_avatar": { + "label": "Avatar de conta de cliente", + "info": "Visível apenas quando os clientes fizerem login com o Shop. [Gerenciar contas de cliente](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Serviços públicos" + } + } + }, + "image-banner": { + "name": "Banner de imagem", + "settings": { + "image": { + "label": "Imagem 1" + }, + "image_2": { + "label": "Imagem 2" + }, + "stack_images_on_mobile": { + "label": "Empilhar imagens" + }, + "show_text_box": { + "label": "Recipiente" + }, + "image_overlay_opacity": { + "label": "Opacidade de sobreposição" + }, + "show_text_below": { + "label": "Recipiente" + }, + "image_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar à primeira imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Médio" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "mobile": { + "content": "Layout em dispositivos móveis" + }, + "content": { + "content": "Conteúdo" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Banner gráfico" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Dê informações a clientes sobre as imagens ou o conteúdo do banner no modelo." + }, + "text_style": { + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "options__3": { + "label": "Letras maiúsculas" + }, + "label": "Estilo" + } + } + }, + "buttons": { + "name": "Botões", + "settings": { + "button_label_1": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta de botão" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Estilo com contorno" + }, + "button_label_2": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta de botão" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Estilo com contorno" + }, + "header_1": { + "content": "Botão 1" + }, + "header_2": { + "content": "Botão 2" + } + } + } + }, + "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": "Pequena" + }, + "options__3": { + "label": "Médio" + }, + "label": "Altura", + "options__4": { + "label": "Grande" + } + }, + "layout": { + "options__1": { + "label": "Imagem primeiro" + }, + "options__2": { + "label": "Segunda imagem" + }, + "label": "Posicionamento" + }, + "desktop_image_width": { + "options__1": { + "label": "Pequena" + }, + "options__2": { + "label": "Média" + }, + "options__3": { + "label": "Grande" + }, + "label": "Largura" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "desktop_content_position": { + "options__1": { + "label": "Parte superior" + }, + "options__2": { + "label": "Meio" + }, + "options__3": { + "label": "Parte inferior" + }, + "label": "Posição" + }, + "content_layout": { + "options__1": { + "label": "Sem sobreposição" + }, + "options__2": { + "label": "Com sobreposição" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento em dispositivos móveis" + }, + "header": { + "content": "Conteúdo" + }, + "header_colors": { + "content": "Cores" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Imagem com texto" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Combine um texto com uma imagem para destacar o produto, a coleção ou o post do blog escolhido. Adicione informações sobre disponibilidade, estilo ou até mesmo uma avaliação.
" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Subtítulo" + } + } + } + }, + "button": { + "name": "Botão", + "settings": { + "button_label": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta de botão" + }, + "button_link": { + "label": "Link" + }, + "outline_button": { + "label": "Estilo com contorno" + } + } + }, + "caption": { + "name": "Legenda", + "settings": { + "text": { + "label": "Texto", + "default": "Adicione um slogan" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Subtítulo" + }, + "options__2": { + "label": "Letras maiúsculas" + } + }, + "caption_size": { + "label": "Tamanho", + "options__1": { + "label": "Pequena" + }, + "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", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Média" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "title": { + "name": "Título", + "settings": { + "blog_show_date": { + "label": "Data" + }, + "blog_show_author": { + "label": "Autoria" + } + } + }, + "content": { + "name": "Conteúdo" + }, + "share": { + "name": "Compartilhar", + "settings": { + "text": { + "label": "Texto", + "default": "Compartilhar" + } + } + } + } + }, + "main-blog": { + "name": "Posts do blog", + "settings": { + "show_image": { + "label": "Imagem em destaque" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autoria" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Grade" + }, + "options__2": { + "label": "Colagem" + } + }, + "image_height": { + "label": "Altura da imagem", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Média" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "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": "As informações da coleção são [gerenciadas no admin](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Descrição" + }, + "show_collection_image": { + "label": "Imagem" + } + } + }, + "main-collection-product-grid": { + "name": "Grade de produtos", + "settings": { + "products_per_page": { + "label": "Produtos por página" + }, + "enable_filtering": { + "label": "Filtros", + "info": "Personalize os filtros [com o app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "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": "Fabricante" + }, + "header__1": { + "content": "Filtragem e organização" + }, + "header__3": { + "content": "Cartão de produto" + }, + "enable_tags": { + "label": "Filtros", + "info": "Personalize os filtros [com o app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "show_rating": { + "label": "Classificação do produto", + "info": "É necessário um app para classificações de produtos. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Colunas" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Layout de filtro", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + }, + "options__3": { + "label": "Menu deslizante" + } + }, + "quick_add": { + "label": "Adição rápida", + "options": { + "option_1": "Nenhum", + "option_2": "Padrão", + "option_3": "Em massa" + } + } + } + }, + "main-list-collections": { + "name": "Página da lista de coleções", + "settings": { + "title": { + "label": "Título", + "default": "Coleções" + }, + "sort": { + "label": "Ordenar coleções", + "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" + } + }, + "columns_desktop": { + "label": "Colunas" + }, + "header_mobile": { + "content": "Layout em dispositivos móveis" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Página" + }, + "main-password-footer": { + "name": "Rodapé de senha" + }, + "main-password-header": { + "name": "Cabeçalho de senha", + "settings": { + "logo_help": { + "content": "Editar seu logo nas [configurações do tema](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "blocks": { + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Bloco de texto" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "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": "Estilo", + "options__1": { + "label": "Menu suspenso" + }, + "options__2": { + "label": "Pílulas" + } + }, + "swatch_shape": { + "label": "Amostra", + "info": "Saiba mais sobre as [amostras](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) nas opções de produtos", + "options__1": { + "label": "Círculo" + }, + "options__2": { + "label": "Quadrado" + }, + "options__3": { + "label": "Nenhuma" + } + } + } + }, + "buy_buttons": { + "name": "Botões Comprar", + "settings": { + "show_dynamic_checkout": { + "label": "Botões de checkout dinâmico", + "info": "Os clientes verão a opção de pagamento preferida deles. [Saiba mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Opções de envio de cartão-presente", + "info": "Os clientes podem adicionar uma mensagem pessoal e agendar a data de envio. [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": { + "text": { + "label": "Texto", + "default": "Compartilhar" + } + } + }, + "collapsible_tab": { + "name": "Linha recolhível", + "settings": { + "heading": { + "label": "Título", + "default": "Linha recolhível" + }, + "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", + "default": "Texto do link pop-up" + }, + "page": { + "label": "Página" + } + } + }, + "rating": { + "name": "Avaliação do produto", + "settings": { + "paragraph": { + "content": "É necessário um app para classificações de produtos. [Saiba mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Produtos complementares", + "settings": { + "paragraph": { + "content": "Gerenciar produtos complementares no [app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Título", + "default": "Combina bem com" + }, + "make_collapsible_row": { + "label": "Linha recolhível" + }, + "icon": { + "info": "Exibido quando a linha recolhível é selecionada" + }, + "product_list_limit": { + "label": "Contagem de produtos" + }, + "products_per_page": { + "label": "Produtos por página" + }, + "pagination_style": { + "label": "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": "Adição rápida" + } + } + }, + "icon_with_text": { + "name": "Ícone com texto", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + } + }, + "heading": { + "info": "Deixe em branco para ocultar este emparelhamento" + }, + "icon_1": { + "label": "Ícone" + }, + "image_1": { + "label": "Imagem" + }, + "heading_1": { + "label": "Título", + "default": "Título" + }, + "icon_2": { + "label": "Ícone" + }, + "image_2": { + "label": "Imagem" + }, + "heading_2": { + "label": "Título", + "default": "Título" + }, + "icon_3": { + "label": "Ícone" + }, + "image_3": { + "label": "Imagem" + }, + "heading_3": { + "label": "Título", + "default": "Título" + }, + "pairing_1": { + "label": "Emparelhamento 1", + "info": "Escolha um ícone ou adicione uma imagem para cada emparelhamento" + }, + "pairing_2": { + "label": "Emparelhamento 2" + }, + "pairing_3": { + "label": "Emparelhamento 3" + } + } + }, + "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": "Subtítulo" + }, + "options__3": { + "label": "Letras maiúsculas" + } + }, + "inventory_threshold": { + "label": "Limite de estoque baixo" + }, + "show_inventory_quantity": { + "label": "Contagem de estoque" + } + } + } + }, + "settings": { + "header": { + "content": "Mídia" + }, + "enable_video_looping": { + "label": "Repetir vídeo" + }, + "enable_sticky_info": { + "label": "Conteúdo fixo" + }, + "hide_variants": { + "label": "Ocultar a mídia de outras variantes depois que uma for selecionada" + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Empilhado" + }, + "options__2": { + "label": "Duas colunas" + }, + "options__3": { + "label": "Miniaturas" + }, + "options__4": { + "label": "Carrossel de miniaturas" + } + }, + "media_size": { + "label": "Largura", + "options__1": { + "label": "Pequena" + }, + "options__2": { + "label": "Médio" + }, + "options__3": { + "label": "Grande" + } + }, + "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", + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Direita" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Abrir janela modal" + }, + "options__2": { + "label": "Clicar e passar o cursor" + }, + "options__3": { + "label": "Sem zoom" + } + }, + "constrain_to_viewport": { + "label": "Ajustar à altura da tela" + }, + "media_fit": { + "label": "Ajuste", + "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": "Fabricante" + }, + "header__1": { + "content": "Cartão de produto" + }, + "header__2": { + "content": "Cartão de blog" + }, + "article_show_date": { + "label": "Data" + }, + "article_show_author": { + "label": "Autoria" + }, + "show_rating": { + "label": "Classificação do produto", + "info": "É necessário um app para classificações de produtos. [Saiba mais](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Colunas" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Multicoluna", + "settings": { + "title": { + "label": "Título", + "default": "Várias colunas" + }, + "image_width": { + "label": "Largura", + "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", + "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", + "default": "Etiqueta de botão", + "info": "Deixe em branco para ocultar" + }, + "button_link": { + "label": "Link" + }, + "swipe_on_mobile": { + "label": "Carrossel" + }, + "columns_desktop": { + "label": "Colunas" + }, + "header_mobile": { + "content": "Layout em dispositivos móveis" + }, + "columns_mobile": { + "label": "Colunas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Título" + }, + "header_image": { + "content": "Imagem" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Botão" + } + }, + "blocks": { + "column": { + "name": "Coluna", + "settings": { + "image": { + "label": "Imagem" + }, + "title": { + "label": "Título", + "default": "Coluna" + }, + "text": { + "label": "Descrição", + "default": "Combine um texto com uma imagem para destacar o produto, a coleção ou o post do blog escolhido. Adicione informações sobre disponibilidade, estilo ou até mesmo uma avaliação.
" + }, + "link_label": { + "label": "Etiqueta de link", + "info": "Deixe em branco para ocultar" + }, + "link": { + "label": "Link" + } + } + } + }, + "presets": { + "name": "Multicoluna" + } + }, + "newsletter": { + "name": "Assinante de e-mail", + "settings": { + "full_width": { + "label": "Largura total" + }, + "paragraph": { + "content": "As inscrições adicionam [perfis de cliente](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Assine nossos e-mails" + } + } + }, + "paragraph": { + "name": "Texto", + "settings": { + "paragraph": { + "label": "Texto", + "default": "Seja a primeira pessoa a saber sobre novas coleções e ofertas exclusivas.
" + } + } + }, + "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": "Largura total" + }, + "desktop_content_position": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Posição do conteúdo" + }, + "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", + "default": "Fale sobre a marca" + } + } + }, + "text": { + "name": "Texto", + "settings": { + "text": { + "label": "Texto", + "default": "Compartilhe informações sobre a marca com clientes. Descreva um produto, faça comunicados ou dê as boas-vindas aos clientes na loja.
" + } + } + }, + "buttons": { + "name": "Botões", + "settings": { + "button_label_1": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta de botão" + }, + "button_link_1": { + "label": "Link" + }, + "button_style_secondary_1": { + "label": "Estilo com contorno" + }, + "button_label_2": { + "label": "Etiqueta", + "info": "Deixe a etiqueta em branco para ocultar" + }, + "button_link_2": { + "label": "Link" + }, + "button_style_secondary_2": { + "label": "Estilo com contorno" + }, + "header_button1": { + "content": "Botão 1" + }, + "header_button2": { + "content": "Botão 2" + } + } + }, + "caption": { + "name": "Legenda", + "settings": { + "text": { + "label": "Texto", + "default": "Adicione um slogan" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Subtítulo" + }, + "options__2": { + "label": "Letras maiúsculas" + } + }, + "caption_size": { + "label": "Tamanho", + "options__1": { + "label": "Pequena" + }, + "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", + "default": "Vídeo" + }, + "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 quem usa leitores de tela" + }, + "image_padding": { + "label": "Adicionar preenchimento de imagem", + "info": "Selecione o preenchimento se não quiser que as imagens sejam cortadas." + }, + "full_width": { + "label": "Largura total" + }, + "video": { + "label": "Vídeo" + }, + "enable_video_looping": { + "label": "Repetir vídeo" + }, + "header__1": { + "content": "Vídeo hospedado na Shopify" + }, + "header__2": { + "content": "Ou incorporar vídeo de URL" + }, + "header__3": { + "content": "Layout" + }, + "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", + "default": "Bloco de texto" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "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": "Estilo", + "options__1": { + "label": "Menu suspenso" + }, + "options__2": { + "label": "Pílulas" + } + }, + "swatch_shape": { + "label": "Amostra", + "info": "Saiba mais sobre as [amostras](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) nas opções de produtos", + "options__1": { + "label": "Círculo" + }, + "options__2": { + "label": "Quadrado" + }, + "options__3": { + "label": "Nenhuma" + } + } + } + }, + "buy_buttons": { + "name": "Botões Comprar", + "settings": { + "show_dynamic_checkout": { + "label": "Botões de checkout dinâmico", + "info": "Os clientes verão a opção de pagamento preferida deles. [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", + "default": "Compartilhar" + } + } + }, + "rating": { + "name": "Avaliação do produto", + "settings": { + "paragraph": { + "content": "É necessário um app para classificações de produtos. [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": "Fundo secundário" + }, + "header": { + "content": "Mídia" + }, + "enable_video_looping": { + "label": "Repetir vídeo" + }, + "hide_variants": { + "label": "Ocultar mídia das variantes não selecionadas na área de trabalho" + }, + "media_position": { + "label": "Posição", + "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": "As inscrições adicionam [perfis de cliente](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Imagem de fundo" + }, + "show_background_image": { + "label": "Exibir imagem de fundo" + }, + "show_text_box": { + "label": "Recipiente" + }, + "image_overlay_opacity": { + "label": "Opacidade de sobreposição" + }, + "show_text_below": { + "label": "Empilhar texto abaixo de imagens" + }, + "image_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Média" + }, + "options__4": { + "label": "Grande" + } + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "header": { + "content": "Layout em dispositivos móveis" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "color_scheme": { + "info": "Visível quando o contêiner é exibido." + }, + "content_header": { + "content": "Conteúdo" + } + }, + "blocks": { + "heading": { + "name": "Título", + "settings": { + "heading": { + "label": "Título", + "default": "Abertura em breve" + } + } + }, + "paragraph": { + "name": "Texto", + "settings": { + "paragraph": { + "label": "Texto", + "default": "Seja a primeira pessoa a saber quando lançarmos.
" + }, + "text_style": { + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "label": "Estilo" + } + } + }, + "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": "Página" + } + }, + "slide_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar à primeira imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Média" + }, + "options__4": { + "label": "Grande" + } + }, + "slider_visual": { + "label": "Paginação", + "options__1": { + "label": "Contador" + }, + "options__2": { + "label": "Pontos" + }, + "options__3": { + "label": "Números" + } + }, + "auto_rotate": { + "label": "Girar automaticamente os slides" + }, + "change_slides_speed": { + "label": "Mudar os slides a cada" + }, + "show_text_below": { + "label": "Empilhar texto abaixo de imagens" + }, + "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 quem usa leitores de tela", + "default": "Apresentação de slides sobre nossa marca" + } + }, + "blocks": { + "slide": { + "name": "Slide", + "settings": { + "image": { + "label": "Imagem" + }, + "heading": { + "label": "Título", + "default": "Slide de imagem" + }, + "subheading": { + "label": "Subtítulo", + "default": "Conte a história de sua marca com vídeos e imagens" + }, + "button_label": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta de botão" + }, + "link": { + "label": "Link" + }, + "secondary_style": { + "label": "Estilo com contorno" + }, + "box_align": { + "label": "Posição do conteúdo", + "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" + } + }, + "show_text_box": { + "label": "Recipiente" + }, + "text_alignment": { + "label": "Alinhamento de conteúdo", + "option_1": { + "label": "Esquerda" + }, + "option_2": { + "label": "Centro" + }, + "option_3": { + "label": "Direita" + } + }, + "image_overlay_opacity": { + "label": "Opacidade de sobreposição" + }, + "text_alignment_mobile": { + "label": "Alinhamento de conteúdo em dispositivos móveis", + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + } + }, + "header_button": { + "content": "Botão" + }, + "header_layout": { + "content": "Layout" + }, + "header_text": { + "content": "Texto" + }, + "header_colors": { + "content": "Cores" + } + } + } + }, + "presets": { + "name": "Apresentação de slides" + } + }, + "collapsible_content": { + "name": "Conteúdo recolhível", + "settings": { + "caption": { + "label": "Legenda" + }, + "heading": { + "label": "Título", + "default": "Conteúdo recolhível" + }, + "heading_alignment": { + "label": "Alinhamento do título", + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Centro" + }, + "options__3": { + "label": "Direita" + } + }, + "layout": { + "label": "Recipiente", + "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" + }, + "open_first_collapsible_row": { + "label": "Imagem" + }, + "header": { + "content": "Imagem" + }, + "image": { + "label": "Imagem" + }, + "image_ratio": { + "label": "Proporção da imagem", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Grande" + } + }, + "desktop_layout": { + "label": "Posicionamento", + "options__1": { + "label": "Primeira imagem" + }, + "options__2": { + "label": "Segunda imagem" + } + }, + "layout_header": { + "content": "Layout" + }, + "section_color_scheme": { + "label": "Esquema de cores da seção" + } + }, + "blocks": { + "collapsible_row": { + "name": "Linha recolhível", + "settings": { + "heading": { + "label": "Título", + "default": "Linha recolhível" + }, + "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", + "shop_login_button": { + "enable": "Ativar a opção Fazer login com o Shop" + } + }, + "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": "Contagem de produtos" + }, + "columns_desktop": { + "label": "Colunas" + }, + "paragraph__1": { + "content": "Os produtos relacionados podem ser gerenciados no [app Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Talvez você também goste de" + }, + "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": "Quadrada" + } + }, + "show_secondary_image": { + "label": "Exibir segunda imagem ao passar o cursor" + }, + "show_vendor": { + "label": "Fabricante" + }, + "show_rating": { + "label": "Classificação do produto", + "info": "É necessário um app para classificações de produtos. [Saiba mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multirow": { + "name": "Várias linhas", + "settings": { + "image": { + "label": "Imagem" + }, + "image_height": { + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequena" + }, + "options__3": { + "label": "Médio" + }, + "options__4": { + "label": "Grande" + }, + "label": "Altura" + }, + "desktop_image_width": { + "options__1": { + "label": "Pequena" + }, + "options__2": { + "label": "Médio" + }, + "options__3": { + "label": "Grande" + }, + "label": "Largura" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Parte superior" + }, + "options__2": { + "label": "Meio" + }, + "options__3": { + "label": "Parte inferior" + }, + "label": "Posição" + }, + "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" + }, + "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 em dispositivos móveis" + }, + "header": { + "content": "Imagem" + }, + "header_2": { + "content": "Conteúdo" + }, + "header_3": { + "content": "Cores" + } + }, + "blocks": { + "row": { + "name": "Linha", + "settings": { + "image": { + "label": "Imagem" + }, + "caption": { + "label": "Legenda", + "default": "Legenda" + }, + "heading": { + "label": "Título", + "default": "Linha" + }, + "text": { + "label": "Texto", + "default": "Combine um texto com uma imagem para destacar o produto, a coleção ou o post do blog escolhido. Adicione informações sobre disponibilidade, estilo ou até mesmo uma avaliação.
" + }, + "button_label": { + "label": "Etiqueta de botão", + "default": "Etiqueta de botão", + "info": "Deixe em branco para ocultar" + }, + "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": "Imagens" + }, + "show_sku": { + "label": "SKUs" + }, + "variants_per_page": { + "label": "Variantes por página" + } + }, + "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..08a0616 --- /dev/null +++ b/locales/pt-PT.json @@ -0,0 +1,542 @@ +{ + "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": "Partilhar no X", + "share_on_pinterest": "Marcar com um pin no Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Mín. de {{ quantity }}", + "max_of": "Máx. de {{ quantity }}", + "in_cart_aria_label": "Quantidade ({{ quantity }} no carrinho)" + }, + "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" + }, + "nested_label": "{{ title }} para {{ parent_title }}", + "view_full_details": "Ver detalhes completos", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "a {{ price }}/cada" + }, + "taxes_included": "Impostos incluídos.", + "duties_included": "Encargos incluídos.", + "duties_and_taxes_included": "Encargos e impostos incluídos." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Encargos e impostos incluídos. Descontos e envio calculados na finalização da compra.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Encargos e impostos incluídos. Descontos e envio calculados na finalização da compra.", + "taxes_included_shipping_at_checkout_with_policy_html": "Impostos incluídos. Descontos e envio calculados na finalização da compra.", + "taxes_included_shipping_at_checkout_without_policy": "Impostos incluídos. Descontos e envio calculados na finalização da compra.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Encargos incluídos. Impostos, descontos e envio calculados na finalização da compra.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Encargos incluídos. Impostos, descontos e envio calculados na finalização da compra.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Impostos, descontos e envio calculados na finalização da compra.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Impostos, descontos e envio calculados na finalização da compra." + }, + "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", + "remove_all_single_item_confirmation": "Remover 1 item do seu carrinho?", + "min_error": "Este item tem um mínimo de {{ min }}", + "max_error": "Este item tem um máximo de {{ max }}", + "step_error": "Só pode adicionar este item em incrementos de {{ step }}" + } + }, + "localization": { + "country_label": "País/região", + "language_label": "Idioma", + "update_language": "Atualizar idioma", + "update_country": "Atualizar país/região", + "search": "Pesquisar", + "popular_countries_regions": "Países/regiões populares", + "country_results_count": "{{ count }} países/regiões encontrados" + }, + "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", + "alternate_provider_separator": "ou" + }, + "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..44175fb --- /dev/null +++ b/locales/pt-PT.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Títulos" + }, + "header__2": { + "content": "Corpo" + }, + "type_body_font": { + "label": "Tipo de letra" + }, + "heading_scale": { + "label": "Expansão" + }, + "body_scale": { + "label": "Expansão" + } + } + }, + "social-media": { + "name": "Redes sociais", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Códigos de moeda" + }, + "paragraph": "Os preços de finalização da compra e carrinho mostram sempre os códigos de moeda" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Sugestões de pesquisa" + }, + "predictive_search_show_vendor": { + "label": "Fornecedor do produto", + "info": "Visível quando as sugestões de pesquisa estão ativas" + }, + "predictive_search_show_price": { + "label": "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 de produto](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#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", + "drawer": { + "label": "Gaveta" + }, + "page": { + "label": "Página" + }, + "notification": { + "label": "Notificação pop-up" + } + }, + "show_vendor": { + "label": "Fornecedor" + }, + "show_cart_note": { + "label": "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" + }, + "favicon": { + "label": "Favicon", + "info": "Apresentado a 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": "Apresentado no bloco de informações da marca no rodapé" + } + } + }, + "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(a)" + }, + "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": "Espaçamento", + "padding_top": "Superior", + "padding_bottom": "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" + }, + "options__5": { + "label": "Extremamente 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" + }, + "animation": { + "content": "Animações", + "image_behavior": { + "options__1": { + "label": "Nenhum(a)" + }, + "options__2": { + "label": "Movimento de ambiente" + }, + "label": "Animação", + "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", + "default": "Bem-vindo à nossa loja" + }, + "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" + }, + "show_social": { + "label": "Ícones de redes sociais", + "info": "[Gerir contas de redes sociais](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Seletor de país/região", + "info": "[Gerir países/regiões](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Seletor de idioma", + "info": "[Gerir idiomas](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Utilitários" + }, + "paragraph": { + "content": "Aparecer apenas em ecrãs grandes" + } + }, + "presets": { + "name": "Barra de comunicado" + } + }, + "collage": { + "name": "Colagem", + "settings": { + "heading": { + "label": "Título", + "default": "Colagem multimédia" + }, + "desktop_layout": { + "label": "Esquema", + "options__1": { + "label": "Bloco grande primeiro" + }, + "options__2": { + "label": "Bloco grande por último" + } + }, + "mobile_layout": { + "label": "Esquema móvel", + "options__1": { + "label": "Colagem" + }, + "options__2": { + "label": "Coluna" + } + }, + "card_styles": { + "label": "Estilo do cartão", + "info": "Gerir estilos de cartão individuais em [definições do tema](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Utilizar estilos de cartão individuais" + }, + "options__2": { + "label": "Estilizar todos os cartões de produto" + } + }, + "header_layout": { + "content": "Esquema" + } + }, + "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)", + "default": "Descrever o vídeo" + } + }, + "name": "Vídeo" + } + }, + "presets": { + "name": "Colagem" + } + }, + "collection-list": { + "name": "Lista de coleções", + "settings": { + "title": { + "label": "Título", + "default": "Coleções" + }, + "image_ratio": { + "label": "Proporção de imagem", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Retrato" + }, + "options__3": { + "label": "Quadrado" + } + }, + "swipe_on_mobile": { + "label": "Carrossel" + }, + "show_view_all": { + "label": "Botão \"Ver tudo\"", + "info": "Visível se a lista tiver mais coleções do que as mostradas" + }, + "columns_desktop": { + "label": "Colunas" + }, + "header_mobile": { + "content": "Esquema para dispositivo móvel" + }, + "columns_mobile": { + "label": "Colunas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Esquema" + } + }, + "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" + }, + "settings": { + "title": { + "default": "Formulário de contacto", + "label": "Cabeçalho" + } + } + }, + "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", + "default": "Publicações no blogue" + }, + "blog": { + "label": "Blogue" + }, + "post_limit": { + "label": "Número de publicações" + }, + "show_view_all": { + "label": "Botão \"Ver tudo\"", + "info": "Visível se o blogue tiver mais publicações do que as mostradas" + }, + "show_image": { + "label": "Imagem em destaque" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autor" + }, + "columns_desktop": { + "label": "Colunas" + }, + "layout_header": { + "content": "Esquema" + }, + "text_header": { + "content": "Texto" + } + }, + "presets": { + "name": "Publicações no blogue" + } + }, + "featured-collection": { + "name": "Coleção em destaque", + "settings": { + "title": { + "label": "Título", + "default": "Coleção em destaque" + }, + "collection": { + "label": "Coleção" + }, + "products_to_show": { + "label": "Número de produtos" + }, + "show_view_all": { + "label": "Botão \"Ver tudo\"", + "info": "Visível se a coleção tiver mais produtos do que os mostrados" + }, + "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": "Fornecedor" + }, + "show_rating": { + "label": "Classificação de produto", + "info": "É necessária uma app para as classificações. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Adição rápida" + }, + "columns_desktop": { + "label": "Colunas" + }, + "description": { + "label": "Descrição" + }, + "show_description": { + "label": "Mostrar descrição da coleção do painel de admin" + }, + "description_style": { + "label": "Estilo da descrição", + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Subtítulo" + }, + "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": "Carrossel" + }, + "full_width": { + "label": "Produtos com largura total" + }, + "header_mobile": { + "content": "Esquema para dispositivo móvel" + }, + "columns_mobile": { + "label": "Colunas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Carrossel" + }, + "header_text": { + "content": "Texto" + }, + "header_collection": { + "content": "Esquema da coleção" + } + }, + "presets": { + "name": "Coleção em destaque" + } + }, + "footer": { + "name": "Rodapé", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "Cabeçalho", + "default": "Ligações rápidas" + }, + "menu": { + "label": "Menu" + } + }, + "name": "Menu" + }, + "text": { + "settings": { + "heading": { + "label": "Cabeçalho", + "default": "Cabeçalho" + }, + "subtext": { + "label": "Subtexto", + "default": "Partilhe informações de contacto, detalhes da loja e conteúdo de marca com os seus clientes.
" + } + }, + "name": "Texto" + }, + "brand_information": { + "name": "Informação de marca", + "settings": { + "paragraph": { + "content": "Gerir informações da marca em [definições de tema](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Ícones de redes sociais", + "info": "[Gerir contas de redes sociais](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "Registo de e-mail" + }, + "newsletter_heading": { + "label": "Cabeçalho", + "default": "Subscreva os nossos e-mails" + }, + "header__1": { + "info": "Adição de registos [perfis de clientes](https://help.shopify.com/manual/customers/manage-customers)", + "content": "Registo de e-mail" + }, + "show_social": { + "label": "Ícones de redes sociais", + "info": "[Gerir contas de redes sociais](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Seletor de país/região", + "info": "[Gerir países/regiões](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Seletor de idioma", + "info": "[Gerir idiomas](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ícones do método de pagamento" + }, + "margin_top": { + "label": "Margem superior" + }, + "show_policy": { + "label": "Ligações das políticas", + "info": "[Gerir políticas](/admin/settings/legal)" + }, + "header__9": { + "content": "Utilitários" + }, + "enable_follow_on_shop": { + "label": "Seguir na Shop", + "info": "O Shop Pay tem de ser ativado. [Saber mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Cabeçalho", + "settings": { + "logo_position": { + "label": "Posição do logótipo", + "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": "Linha do separador" + }, + "margin_bottom": { + "label": "Margem inferior" + }, + "menu_type_desktop": { + "label": "Tipo de menu", + "options__1": { + "label": "Menu pendente" + }, + "options__2": { + "label": "Mega menu" + }, + "options__3": { + "label": "Menu deslizante" + } + }, + "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(a)" + }, + "options__2": { + "label": "Ao rodar a roda do rato" + }, + "options__3": { + "label": "Sempre" + }, + "options__4": { + "label": "Sempre, reduzir o tamanho do logótipo" + } + }, + "enable_country_selector": { + "label": "Seletor de país/região", + "info": "[Gerir países/regiões](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Seletor de idioma", + "info": "[Gerir idiomas](/admin/settings/languages)" + }, + "header__1": { + "content": "Cor" + }, + "menu_color_scheme": { + "label": "Esquema de cores do menu" + }, + "enable_customer_avatar": { + "label": "Avatar da conta de cliente", + "info": "Apenas visível quando os clientes estão registados no Shop. [Gerir contas de cliente](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Utilitários" + } + } + }, + "image-banner": { + "name": "Faixa de imagem", + "settings": { + "image": { + "label": "Imagem 1" + }, + "image_2": { + "label": "Imagem 2" + }, + "stack_images_on_mobile": { + "label": "Empilhar imagens" + }, + "show_text_box": { + "label": "Recipiente" + }, + "image_overlay_opacity": { + "label": "Opacidade de sobreposição" + }, + "show_text_below": { + "label": "Recipiente" + }, + "image_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar à primeira imagem" + }, + "options__2": { + "label": "Pequeno" + }, + "options__3": { + "label": "Médio" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Ao centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Ao centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "mobile": { + "content": "Esquema para dispositivo móvel" + }, + "content": { + "content": "Conteúdo" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "Título", + "default": "Banner de imagem" + } + }, + "name": "Cabeçalho" + }, + "text": { + "settings": { + "text": { + "label": "Texto", + "default": "Dê informações aos clientes sobre a(s) imagem(s) ou o conteúdo do banner no modelo." + }, + "text_style": { + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Legenda" + }, + "options__3": { + "label": "Maiúsculas" + }, + "label": "Estilo" + } + }, + "name": "Texto" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta do botão" + }, + "button_link_1": { + "label": "Ligação" + }, + "button_style_secondary_1": { + "label": "Estilo do contorno" + }, + "button_label_2": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta do botão" + }, + "button_link_2": { + "label": "Ligação" + }, + "button_style_secondary_2": { + "label": "Estilo do contorno" + }, + "header_1": { + "content": "Botão 1" + }, + "header_2": { + "content": "Botão 2" + } + }, + "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", + "options__4": { + "label": "Grande" + } + }, + "layout": { + "options__1": { + "label": "Imagem primeiro" + }, + "options__2": { + "label": "Segunda imagem" + }, + "label": "Posicionamento" + }, + "desktop_image_width": { + "options__1": { + "label": "Pequeno" + }, + "options__2": { + "label": "Médio" + }, + "options__3": { + "label": "Grande" + }, + "label": "Largura" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento", + "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" + }, + "content_layout": { + "options__1": { + "label": "Sem sobreposição" + }, + "options__2": { + "label": "Sobreposição" + }, + "label": "Esquema" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento em dispositivos móveis", + "options__2": { + "label": "Ao centro" + } + }, + "header": { + "content": "Conteúdo" + }, + "header_colors": { + "content": "Cores" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "Título", + "default": "Imagem com texto" + } + }, + "name": "Cabeçalho" + }, + "text": { + "settings": { + "text": { + "label": "Texto", + "default": "Emparelhe texto com uma imagem para destacar o produto, a coleção ou a publicação no blogue escolhido. Adicione informações sobre disponibilidade, estilo ou até mesmo uma avaliação.
" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Legenda" + } + } + }, + "name": "Texto" + }, + "button": { + "settings": { + "button_label": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta do botão" + }, + "button_link": { + "label": "Ligação" + }, + "outline_button": { + "label": "Estilo do contorno" + } + }, + "name": "Botão" + }, + "caption": { + "name": "Legenda", + "settings": { + "text": { + "label": "Texto", + "default": "Adicionar um slogan" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Legenda" + }, + "options__2": { + "label": "Maiúsculas" + } + }, + "caption_size": { + "label": "Tamanho", + "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", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequeno" + }, + "options__3": { + "label": "Médio" + }, + "options__4": { + "label": "Grande" + } + } + }, + "name": "Imagem em destaque" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "Data" + }, + "blog_show_author": { + "label": "Autor" + } + }, + "name": "Título" + }, + "content": { + "name": "Conteúdo" + }, + "share": { + "name": "Partilhar", + "settings": { + "text": { + "label": "Texto", + "default": "Partilhar" + } + } + } + } + }, + "main-blog": { + "name": "Publicações no blogue", + "settings": { + "show_image": { + "label": "Imagem em destaque" + }, + "show_date": { + "label": "Data" + }, + "show_author": { + "label": "Autor" + }, + "layout": { + "label": "Esquema", + "options__1": { + "label": "Grelha" + }, + "options__2": { + "label": "Colagem" + } + }, + "image_height": { + "label": "Altura da imagem", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequeno" + }, + "options__3": { + "label": "Médio" + }, + "options__4": { + "label": "Grande" + } + } + } + }, + "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": "Os detalhes da coleção são [geridos no seu painel de admin](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Descrição" + }, + "show_collection_image": { + "label": "Imagem" + } + } + }, + "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": "Fornecedor" + }, + "header__1": { + "content": "Filtragem e ordenação" + }, + "enable_tags": { + "label": "Filtros", + "info": "Personalize filtros com a [aplicação Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filtros", + "info": "Personalize filtros com a [aplicação Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Ordenação" + }, + "header__3": { + "content": "Cartão de produtos" + }, + "show_rating": { + "label": "Classificação de produto", + "info": "É necessária uma app para as classificações de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Colunas" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Filtrar esquema", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + }, + "options__3": { + "label": "Gaveta" + } + }, + "quick_add": { + "label": "Adição rápida", + "options": { + "option_1": "Nenhum(a)", + "option_2": "Padrão", + "option_3": "Em massa" + } + } + } + }, + "main-list-collections": { + "name": "Página da lista de coleções", + "settings": { + "title": { + "label": "Título", + "default": "Coleções" + }, + "sort": { + "label": "Ordenar coleções", + "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" + } + }, + "columns_desktop": { + "label": "Colunas" + }, + "header_mobile": { + "content": "Esquema para dispositivo móvel" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Página" + }, + "main-password-footer": { + "name": "Rodapé de palavra-passe" + }, + "main-password-header": { + "name": "Cabeçalho de palavra-passe", + "settings": { + "logo_help": { + "content": "Edite o seu logótipo em [definições de tema](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Informações do produto", + "blocks": { + "text": { + "settings": { + "text": { + "label": "Texto", + "default": "Bloco de texto" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Legenda" + }, + "options__3": { + "label": "Maiúsculas" + } + } + }, + "name": "Texto" + }, + "variant_picker": { + "name": "Seletor de variante", + "settings": { + "picker_type": { + "label": "Estilo", + "options__1": { + "label": "Pendente" + }, + "options__2": { + "label": "Comprimidos" + } + }, + "swatch_shape": { + "label": "Paleta", + "info": "Saber mais sobre as [amostras](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) nas opções de produtos", + "options__1": { + "label": "Círculo" + }, + "options__2": { + "label": "Quadrado" + }, + "options__3": { + "label": "Nenhum(a)" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "Botões dinâmicos de finalização da compra", + "info": "Os clientes vão ver a sua opção de pagamento preferida. [Saber mais](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Opções de envio do cartão de oferta", + "info": "Os clientes podem adicionar uma mensagem pessoal e agendar a data de envio. [Saber mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)" + } + }, + "name": "Botão de compra" + }, + "share": { + "settings": { + "text": { + "label": "Texto", + "default": "Partilhar" + } + }, + "name": "Partilhar" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "Título", + "default": "Linha recolhível" + }, + "content": { + "label": "Conteúdo da linha" + }, + "page": { + "label": "Conteúdo da linha da página" + }, + "icon": { + "label": "Ícone", + "options__1": { + "label": "Nenhum(a)" + }, + "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", + "default": "Texto da ligação pop-up" + }, + "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": "É necessária uma app para as classificações de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Produtos complementares", + "settings": { + "paragraph": { + "content": "Gerir produtos complementares na [aplicação Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Título", + "default": "Emparelha com" + }, + "make_collapsible_row": { + "label": "Linha recolhível" + }, + "icon": { + "info": "Visível quando é selecionada a linha recolhível" + }, + "product_list_limit": { + "label": "Número de produtos" + }, + "products_per_page": { + "label": "Produtos por página" + }, + "pagination_style": { + "label": "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": "Adição rápida" + } + } + }, + "icon_with_text": { + "name": "Ícone com texto", + "settings": { + "layout": { + "label": "Esquema", + "options__1": { + "label": "Horizontal" + }, + "options__2": { + "label": "Vertical" + } + }, + "heading": { + "info": "Deixe em branco para ocultar este emparelhamento" + }, + "icon_1": { + "label": "Ícone" + }, + "image_1": { + "label": "Imagem" + }, + "heading_1": { + "label": "Título", + "default": "Cabeçalho" + }, + "icon_2": { + "label": "Ícone" + }, + "image_2": { + "label": "Imagem" + }, + "heading_2": { + "label": "Título", + "default": "Cabeçalho" + }, + "icon_3": { + "label": "Ícone" + }, + "image_3": { + "label": "Imagem" + }, + "heading_3": { + "label": "Título", + "default": "Cabeçalho" + }, + "pairing_1": { + "label": "Emparelhamento 1", + "info": "Escolha um ícone ou adicione uma imagem para cada emparelhamento" + }, + "pairing_2": { + "label": "Emparelhamento 2" + }, + "pairing_3": { + "label": "Emparelhamento 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Contagem de inventário" + } + } + } + }, + "settings": { + "header": { + "content": "Conteúdo multimédia" + }, + "enable_video_looping": { + "label": "Repetir vídeo" + }, + "enable_sticky_info": { + "label": "Conteúdo fixador" + }, + "hide_variants": { + "label": "Ocultar outro conteúdo multimédia da variante quando um é selecionado" + }, + "gallery_layout": { + "label": "Esquema", + "options__1": { + "label": "Empilhado" + }, + "options__2": { + "label": "Duas colunas" + }, + "options__3": { + "label": "Miniaturas" + }, + "options__4": { + "label": "Carrossel de miniaturas" + } + }, + "media_size": { + "label": "Largura", + "options__1": { + "label": "Pequeno" + }, + "options__2": { + "label": "Médio" + }, + "options__3": { + "label": "Grande" + } + }, + "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", + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Direita" + } + }, + "image_zoom": { + "label": "Zoom", + "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 à altura do ecrã" + }, + "media_fit": { + "label": "Ajustar", + "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": "Fornecedor" + }, + "header__1": { + "content": "Cartão de produtos" + }, + "header__2": { + "content": "Cartão de blogue" + }, + "article_show_date": { + "label": "Data" + }, + "article_show_author": { + "label": "Autor" + }, + "show_rating": { + "label": "Classificação de produto", + "info": "É necessária uma app para as classificações de produto. [Saber mais](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Colunas" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Várias colunas", + "settings": { + "title": { + "label": "Título", + "default": "Várias colunas" + }, + "image_width": { + "label": "Largura", + "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", + "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(a)" + }, + "options__2": { + "label": "Mostrar como fundo da coluna" + } + }, + "button_label": { + "label": "Etiqueta", + "default": "Etiqueta do botão", + "info": "Deixe em branco para ocultar" + }, + "button_link": { + "label": "Ligação" + }, + "swipe_on_mobile": { + "label": "Carrossel" + }, + "columns_desktop": { + "label": "Colunas" + }, + "header_mobile": { + "content": "Esquema para dispositivo móvel" + }, + "columns_mobile": { + "label": "Colunas", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Título" + }, + "header_image": { + "content": "Imagem" + }, + "header_layout": { + "content": "Esquema" + }, + "header_button": { + "content": "Botão" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "Imagem" + }, + "title": { + "label": "Título", + "default": "Coluna" + }, + "text": { + "label": "Descrição", + "default": "Emparelhe texto com uma imagem para destacar o produto, a coleção ou a publicação no blogue escolhido. Adicione informações sobre disponibilidade, estilo ou até mesmo uma avaliação.
" + }, + "link_label": { + "label": "Etiqueta de ligação", + "info": "Deixe em branco para ocultar" + }, + "link": { + "label": "Ligação" + } + }, + "name": "Coluna" + } + }, + "presets": { + "name": "Várias colunas" + } + }, + "newsletter": { + "name": "Registo de e-mail", + "settings": { + "full_width": { + "label": "Largura total" + }, + "paragraph": { + "content": "Adição de registos [perfis de clientes](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "Título", + "default": "Subscreva os nossos e-mails" + } + }, + "name": "Cabeçalho" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "Texto", + "default": "Seja a primeira pessoa a saber sobre novas coleções e ofertas exclusivas.
" + } + }, + "name": "Texto" + }, + "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": "Largura total" + }, + "desktop_content_position": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Ao centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Posição do conteúdo" + }, + "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", + "default": "Fale sobre a sua marca" + } + }, + "name": "Cabeçalho" + }, + "text": { + "settings": { + "text": { + "label": "Texto", + "default": "Partilhe informações sobre a sua marca com os clientes. Descreva um produto, faça comunicados ou dê as boas-vindas aos clientes na loja.
" + } + }, + "name": "Texto" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta do botão" + }, + "button_link_1": { + "label": "Ligação" + }, + "button_style_secondary_1": { + "label": "Estilo do contorno" + }, + "button_label_2": { + "label": "Etiqueta", + "info": "Deixe a etiqueta em branco para ocultar" + }, + "button_link_2": { + "label": "Ligação" + }, + "button_style_secondary_2": { + "label": "Estilo do contorno" + }, + "header_button1": { + "content": "Botão 1" + }, + "header_button2": { + "content": "Botão 2" + } + }, + "name": "Botões" + }, + "caption": { + "name": "Legenda", + "settings": { + "text": { + "label": "Texto", + "default": "Adicionar um slogan" + }, + "text_style": { + "label": "Estilo", + "options__1": { + "label": "Legenda" + }, + "options__2": { + "label": "Maiúsculas" + } + }, + "caption_size": { + "label": "Tamanho", + "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", + "default": "Vídeo" + }, + "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 quem usa leitor de ecrã" + }, + "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": "Largura total" + }, + "video": { + "label": "Vídeo" + }, + "enable_video_looping": { + "label": "Repetir vídeo" + }, + "header__1": { + "content": "Vídeo hospedado na Shopify" + }, + "header__2": { + "content": "Ou incorporar vídeo a partir de URL" + }, + "header__3": { + "content": "Esquema" + }, + "paragraph": { + "content": "Aperece 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", + "default": "Bloco de texto" + }, + "text_style": { + "label": "Estilo", + "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": "Estilo", + "options__1": { + "label": "Pendente" + }, + "options__2": { + "label": "Forma de comprimidos" + } + }, + "swatch_shape": { + "label": "Paleta", + "info": "Saber mais sobre as [amostras](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) nas opções de produtos", + "options__1": { + "label": "Círculo" + }, + "options__2": { + "label": "Quadrado" + }, + "options__3": { + "label": "Nenhum(a)" + } + } + } + }, + "buy_buttons": { + "name": "Botão de compra", + "settings": { + "show_dynamic_checkout": { + "label": "Botões dinâmicos de finalização da compra", + "info": "Os clientes vão ver a sua opção de pagamento preferida. [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", + "default": "Partilhar" + } + } + }, + "rating": { + "name": "Classificação do produto", + "settings": { + "paragraph": { + "content": "É necessária uma app para as classificações 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": "Fundo secundário" + }, + "header": { + "content": "Conteúdo multimédia" + }, + "enable_video_looping": { + "label": "Repetir vídeo" + }, + "hide_variants": { + "label": "Ocultar conteúdo multimédia das variantes não selecionadas no desktop" + }, + "media_position": { + "label": "Posição", + "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": "Adição de registos [perfis de clientes](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Imagem de fundo" + }, + "show_background_image": { + "label": "Mostrar imagem de fundo" + }, + "show_text_box": { + "label": "Recipiente" + }, + "image_overlay_opacity": { + "label": "Opacidade de sobreposição" + }, + "show_text_below": { + "label": "Empilhar texto abaixo da imagem" + }, + "image_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar à imagem" + }, + "options__2": { + "label": "Pequeno" + }, + "options__3": { + "label": "Médio" + }, + "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" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Ao centro" + }, + "options__3": { + "label": "Direita" + }, + "label": "Alinhamento" + }, + "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" + }, + "color_scheme": { + "info": "Visível quando o recetor é exibido." + }, + "content_header": { + "content": "Conteúdo" + } + }, + "blocks": { + "heading": { + "name": "Cabeçalho", + "settings": { + "heading": { + "label": "Cabeçalho", + "default": "Abre brevemente" + } + } + }, + "paragraph": { + "name": "Texto", + "settings": { + "paragraph": { + "label": "Texto", + "default": "Seja a primeira pessoa a saber quando é o lançamento.
" + }, + "text_style": { + "options__1": { + "label": "Corpo" + }, + "options__2": { + "label": "Legenda" + }, + "label": "Estilo" + } + } + }, + "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": "Página" + } + }, + "slide_height": { + "label": "Altura", + "options__1": { + "label": "Adaptar à primeira imagem" + }, + "options__2": { + "label": "Pequeno" + }, + "options__3": { + "label": "Médio" + }, + "options__4": { + "label": "Grande" + } + }, + "slider_visual": { + "label": "Paginação", + "options__1": { + "label": "Contador" + }, + "options__2": { + "label": "Pontos" + }, + "options__3": { + "label": "Números" + } + }, + "auto_rotate": { + "label": "Rodar diapositivos automaticamente" + }, + "change_slides_speed": { + "label": "Mudar diapositivos a cada" + }, + "mobile": { + "content": "Esquema móvel" + }, + "show_text_below": { + "label": "Empilhar texto abaixo da imagem" + }, + "accessibility": { + "content": "Acessibilidade", + "label": "Descrição da apresentação de diapositivos", + "info": "Descreve a apresentação de diapositivos para quem usa leitor de ecrã", + "default": "Apresentação de diapositivos sobre a nossa marca" + } + }, + "blocks": { + "slide": { + "name": "Diapositivo", + "settings": { + "image": { + "label": "Imagem" + }, + "heading": { + "label": "Cabeçalho", + "default": "Diapositivo de imagem" + }, + "subheading": { + "label": "Subtítulo", + "default": "Conte a história da sua marca através de imagens" + }, + "button_label": { + "label": "Etiqueta", + "info": "Deixe em branco para ocultar", + "default": "Etiqueta do botão" + }, + "link": { + "label": "Ligação" + }, + "secondary_style": { + "label": "Estilo do contorno" + }, + "box_align": { + "label": "Posição do conteúdo", + "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" + } + }, + "show_text_box": { + "label": "Recipiente" + }, + "text_alignment": { + "label": "Alinhamento de conteúdo", + "option_1": { + "label": "Esquerda" + }, + "option_2": { + "label": "Ao centro" + }, + "option_3": { + "label": "Direita" + } + }, + "image_overlay_opacity": { + "label": "Opacidade de sobreposição" + }, + "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" + } + }, + "header_button": { + "content": "Botão" + }, + "header_layout": { + "content": "Esquema" + }, + "header_text": { + "content": "Texto" + }, + "header_colors": { + "content": "Cores" + } + } + } + }, + "presets": { + "name": "Apresentação de diapositivos" + } + }, + "collapsible_content": { + "name": "Conteúdo recolhível", + "settings": { + "caption": { + "label": "Legenda" + }, + "heading": { + "label": "Cabeçalho", + "default": "Conteúdo recolhível" + }, + "heading_alignment": { + "label": "Alinhamento do título", + "options__1": { + "label": "Esquerda" + }, + "options__2": { + "label": "Ao centro" + }, + "options__3": { + "label": "Direita" + } + }, + "layout": { + "label": "Recipiente", + "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" + }, + "open_first_collapsible_row": { + "label": "Abrir primeira linha" + }, + "header": { + "content": "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": "Posicionamento", + "options__1": { + "label": "Primeira imagem" + }, + "options__2": { + "label": "Segunda imagem" + } + }, + "layout_header": { + "content": "Esquema" + }, + "section_color_scheme": { + "label": "Esquema de cores da secção" + } + }, + "blocks": { + "collapsible_row": { + "name": "Linha recolhível", + "settings": { + "heading": { + "label": "Cabeçalho", + "default": "Linha recolhível" + }, + "row_content": { + "label": "Conteúdo da linha" + }, + "page": { + "label": "Conteúdo da linha da página" + }, + "icon": { + "label": "Ícone", + "options__1": { + "label": "Nenhum(a)" + }, + "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", + "shop_login_button": { + "enable": "Ativar a opção Iniciar sessão com o Shop" + } + }, + "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": "Número de produtos" + }, + "columns_desktop": { + "label": "Colunas" + }, + "paragraph__1": { + "content": "Os produtos relacionados podem ser geridos na [aplicação Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Também poderá gostar de" + }, + "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": "Fornecedor" + }, + "show_rating": { + "label": "Classificação de produto", + "info": "É necessária uma app para as classificações de produto. [Saber mais](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Colunas em dispositivos móveis", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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" + }, + "desktop_image_width": { + "options__1": { + "label": "Pequeno" + }, + "options__2": { + "label": "Médio" + }, + "options__3": { + "label": "Grande" + }, + "label": "Largura" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Em cima" + }, + "options__2": { + "label": "Ao meio" + }, + "options__3": { + "label": "Em baixo" + }, + "label": "Posição" + }, + "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" + }, + "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 em dispositivos móveis" + }, + "header": { + "content": "Imagem" + }, + "header_2": { + "content": "Conteúdo" + }, + "header_3": { + "content": "Cores" + } + }, + "blocks": { + "row": { + "name": "Linha", + "settings": { + "image": { + "label": "Imagem" + }, + "caption": { + "label": "Legenda", + "default": "Legenda" + }, + "heading": { + "label": "Título", + "default": "Linha" + }, + "text": { + "label": "Texto", + "default": "Emparelhe texto com uma imagem para destacar o produto, a coleção ou a publicação no blogue escolhido. Adicione informações sobre disponibilidade, estilo ou até mesmo uma avaliação.
" + }, + "button_label": { + "label": "Etiqueta do botão", + "default": "Etiqueta do botão", + "info": "Deixe em branco para ocultar" + }, + "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": "Imagens" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "Variantes por página" + } + }, + "presets": { + "name": "Lista de encomendas rápida" + } + } + } +} diff --git a/locales/ro.json b/locales/ro.json new file mode 100644 index 0000000..9c4db97 --- /dev/null +++ b/locales/ro.json @@ -0,0 +1,542 @@ +{ + "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": "Partajează pe X", + "share_on_pinterest": "Postați un Pin pe Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Minimum {{ quantity }}", + "max_of": "Maximum {{ quantity }}", + "in_cart_aria_label": "Cantitate ({{ quantity }} în coș)" + }, + "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" + }, + "nested_label": "{{ title }} pentru {{ parent_title }}", + "view_full_details": "Vedeți detaliile complete", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "la {{ price }}/buc." + }, + "taxes_included": "Taxe incluse.", + "duties_included": "Taxe vamale incluse.", + "duties_and_taxes_included": "Taxe și taxe vamale incluse." + }, + "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 }}.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Taxe și taxe vamale incluse. Reducerile și transportul sunt calculate la finalizarea comenzii.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Taxe și taxe vamale incluse. Reducerile și transportul sunt calculate la finalizarea comenzii.", + "taxes_included_shipping_at_checkout_with_policy_html": "Taxe incluse. Reducerile și transportul sunt calculate la finalizarea comenzii.", + "taxes_included_shipping_at_checkout_without_policy": "Taxe incluse. Reducerile și transportul sunt calculate la finalizarea comenzii.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Taxe vamale incluse. Taxele, reducerile și transportul sunt calculate la finalizarea comenzii.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Taxe vamale incluse. Taxele, reducerile și transportul sunt calculate la finalizarea comenzii.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Taxele, reducerile și transportul sunt calculate la finalizarea comenzii.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Taxele, reducerile și transportul sunt calculate la finalizarea comenzii." + }, + "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ă", + "remove_all_single_item_confirmation": "Elimini 1 articol din coș?", + "min_error": "Pentru acest articol, valoarea minimă este de {{ min }}", + "max_error": "Pentru acest articol, valoarea maximă este de {{ max }}", + "step_error": "Poți introduce acest articol numai în incrementuri de {{ step }}" + } + }, + "localization": { + "country_label": "Țară/Regiune", + "language_label": "Limbă", + "update_language": "Actualizați limba", + "update_country": "Actualizați țara/regiunea", + "search": "Caută", + "popular_countries_regions": "Țări/regiuni populare", + "country_results_count": "{{ count }} țări/regiuni găsite" + }, + "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", + "alternate_provider_separator": "sau" + }, + "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..c24894b --- /dev/null +++ b/locales/ru.json @@ -0,0 +1,554 @@ +{ + "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": "Поделиться в X", + "share_on_pinterest": "Сохранить в Pinterest" + }, + "links": { + "twitter": "X (Твиттер)", + "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": "Просмотреть правила количества позиций", + "min_of": "Мин. {{ quantity }}", + "max_of": "Макс. {{ quantity }}", + "in_cart_aria_label": "Количество ({{ quantity }} в корзине)" + }, + "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 }} доступно в средстве просмотра галереи" + }, + "nested_label": "{{ title }} для товара \"{{ parent_title }}\"", + "view_full_details": "Просмотреть всю информацию", + "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_range": "{{ minimum }} — {{ maximum }}", + "price_at_each_html": "по цене {{ price }} за штуку" + }, + "product_variants": "Варианты товара", + "taxes_included": "Налоги включены.", + "duties_included": "Пошлины включены.", + "duties_and_taxes_included": "Пошлины и налоги включены." + }, + "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 }}.", + "update": "Обновить", + "headings": { + "product": "Товар", + "price": "Цена", + "total": "Всего", + "quantity": "Количество", + "image": "Изображение продукта" + }, + "login": { + "title": "Уже есть учетная запись?", + "paragraph_html": "Войти, чтобы оформить заказ быстрее." + }, + "estimated_total": "Ориентировочная общая сумма", + "new_estimated_total": "Новая ориентировочная общая сумма", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Пошлины и налоги включены. Скидки и стоимость доставки рассчитываются при оформлении заказа.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Пошлины и налоги включены. Скидки и стоимость доставки рассчитываются при оформлении заказа.", + "taxes_included_shipping_at_checkout_with_policy_html": "Налоги включены. Скидки и стоимость доставки рассчитываются при оформлении заказа.", + "taxes_included_shipping_at_checkout_without_policy": "Налоги включены. Скидки и стоимость доставки рассчитываются при оформлении заказа.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Пошлины включены. Налоги, скидки и стоимость доставки рассчитываются при оформлении заказа.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Пошлины включены. Налоги, скидки и стоимость доставки рассчитываются при оформлении заказа.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Налоги, скидки и стоимость доставки рассчитываются при оформлении заказа.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Налоги, скидки и стоимость доставки рассчитываются при оформлении заказа." + }, + "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": "Отменить", + "remove_all_single_item_confirmation": "Удалить 1 товар из корзины?", + "min_error": "Минимальное количество этого товара — {{ min }}", + "max_error": "Максимальное количество этого товара — {{ max }}", + "step_error": "Вы можете добавить этот товар только в количестве, кратном {{ step }}" + } + }, + "localization": { + "country_label": "Страна/регион", + "language_label": "Язык", + "update_language": "Изменить язык", + "update_country": "Изменить данные о стране/регионе", + "search": "Поиск", + "popular_countries_regions": "Популярные страны / регионы", + "country_results_count": "Найдены страны / регионы: {{ count }}" + }, + "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": "Отправить", + "alternate_provider_separator": "или" + }, + "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.json b/locales/sk.json new file mode 100644 index 0000000..a5536e6 --- /dev/null +++ b/locales/sk.json @@ -0,0 +1,554 @@ +{ + "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": "Zdieľať na X", + "share_on_pinterest": "Pripnúť na Pintereste" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Max. {{ quantity }}", + "in_cart_aria_label": "Počet ({{ quantity }} v košíku)" + }, + "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" + }, + "nested_label": "{{ title }} pre {{ parent_title }}", + "view_full_details": "Zobraziť všetky podrobnosti", + "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_range": "{{ minimum }} – {{ maximum }}", + "price_at_each_html": "{{ price }}/kus" + }, + "taxes_included": "Vrátane daní.", + "duties_included": "Vrátane ciel.", + "duties_and_taxes_included": "Vrátane ciel a daní." + }, + "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 }}.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Vrátane ciel a daní. Zľavy a doprava sa vypočítajú pri platbe.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Vrátane ciel a daní. Zľavy a doprava sa vypočítajú pri platbe.", + "taxes_included_shipping_at_checkout_with_policy_html": "Vrátane daní. Zľavy a doprava sa vypočítajú pri platbe.", + "taxes_included_shipping_at_checkout_without_policy": "Vrátane daní. Zľavy a doprava sa vypočítajú pri platbe.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Vrátane ciel. Dane, zľavy a doprava sa vypočítajú pri platbe.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Vrátane ciel. Dane, zľavy a doprava sa vypočítajú pri platbe.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Dane, zľavy a doprava sa vypočítajú pri platbe.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Dane, zľavy a doprava sa vypočítajú pri platbe." + }, + "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ť", + "remove_all_single_item_confirmation": "Chcete z košíka odobrať 1 položku?", + "min_error": "Minimálne množstvo tejto položky je {{ min }}", + "max_error": "Maximálne množstvo tejto položky je {{ max }}", + "step_error": "Túto položku môžete pridať iba v prírastkoch po {{ step }}" + } + }, + "localization": { + "country_label": "Krajina/oblasť", + "language_label": "Jazyk", + "update_language": "Aktualizovať jazyk", + "update_country": "Aktualizovať krajinu/oblasť", + "search": "Vyhľadať", + "popular_countries_regions": "Obľúbené krajiny/oblasti", + "country_results_count": "Našiel sa tento počet krajín/oblastí: {{ count }}" + }, + "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ť", + "alternate_provider_separator": "alebo" + }, + "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.json b/locales/sl.json new file mode 100644 index 0000000..9e2acb5 --- /dev/null +++ b/locales/sl.json @@ -0,0 +1,554 @@ +{ + "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": "Delite na omrežju X", + "share_on_pinterest": "Pripnite v Pinterestu" + }, + "links": { + "twitter": "X (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", + "min_of": "Najmanj {{ quantity }}", + "max_of": "Največ {{ quantity }}", + "in_cart_aria_label": "Količina ({{ quantity }} v košarici)" + }, + "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" + }, + "nested_label": "{{ title }} za {{ parent_title }}", + "view_full_details": "Prikaži vse podrobnosti", + "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_range": "{{ minimum }}–{{ maximum }}", + "price_at_each_html": "po ceni {{ price }}/kos" + }, + "taxes_included": "Davki vključeni.", + "duties_included": "Dajatve vključene.", + "duties_and_taxes_included": "Dajatve in davki vključeni." + }, + "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 }}.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Dajatve in davki vključeni. Popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Dajatve in davki vključeni. Popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "taxes_included_shipping_at_checkout_with_policy_html": "Davki vključeni. Popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "taxes_included_shipping_at_checkout_without_policy": "Davki vključeni. Popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Dajatve vključene. Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Dajatve vključene. Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa." + }, + "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", + "remove_all_single_item_confirmation": "Ali želite iz košarice odstraniti 1 izdelek?", + "min_error": "Ta artikel ima najmanj {{ min }}", + "max_error": "Ta artikel ima največ {{ max }}", + "step_error": "Ta artikel lahko dodate samo v korakih po {{ step }}." + } + }, + "localization": { + "country_label": "Država/regija", + "language_label": "Jezik", + "update_language": "Posodobi jezik", + "update_country": "Posodobi državo/regijo", + "search": "Išči", + "popular_countries_regions": "Priljubljene države/regije", + "country_results_count": "Najdene države/regije: {{ count }}" + }, + "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", + "alternate_provider_separator": "ali" + }, + "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..b834921 --- /dev/null +++ b/locales/sv.json @@ -0,0 +1,530 @@ +{ + "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": "Dela på X", + "share_on_pinterest": "Spara en pin på Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Min. {{ quantity }}", + "max_of": "Max. {{ quantity }}", + "in_cart_aria_label": "Kvantitet ({{ quantity }} i varukorg)" + }, + "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": "Inte tillgängliga", + "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" + }, + "nested_label": "{{ title }} för {{ parent_title }}", + "view_full_details": "Visa alla uppgifter", + "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_range": "{{ minimum }}–{{ maximum }}", + "price_at_each_html": "för {{ price }}/st" + }, + "product_variants": "Produktvarianter", + "taxes_included": "Skatter ingår.", + "duties_included": "Tullavgifter ingår.", + "duties_and_taxes_included": "Tullavgifter och skatter ingår." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Tullavgifter och skatter ingår. Rabatter och fraktkostnad beräknas i kassan.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Tullavgifter och skatter ingår. Rabatter och fraktkostnad beräknas i kassan.", + "taxes_included_shipping_at_checkout_with_policy_html": "Skatter ingår. Rabatter och fraktkostnad beräknas i kassan.", + "taxes_included_shipping_at_checkout_without_policy": "Skatter ingår. Rabatter och fraktkostnad beräknas i kassan.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Tullavgifter ingår. Skatter, rabatter och fraktkostnad beräknas i kassan.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Tullavgifter ingår. Skatter, rabatter och fraktkostnad beräknas i kassan.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Skatter, rabatter och fraktkostnad beräknas i kassan.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Skatter, rabatter och fraktkostnad beräknas i kassan." + }, + "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", + "remove_all_single_item_confirmation": "Vill du ta bort 1 artikel från varukorgen?", + "min_error": "Den här artikeln har minst {{ min }}", + "max_error": "Den här artikeln har max {{ max }}", + "step_error": "Du kan endast lägga till den här artikeln med ökningar om {{ step }}" + } + }, + "localization": { + "country_label": "Land/Region", + "language_label": "Språk", + "update_language": "Uppdatera språk", + "update_country": "Uppdatera land/region", + "search": "Sök", + "popular_countries_regions": "Populära länder/regioner", + "country_results_count": "{{ count }} länder/regioner hittades" + }, + "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", + "alternate_provider_separator": "eller" + }, + "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..ee29970 --- /dev/null +++ b/locales/sv.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Rubriker" + }, + "header__2": { + "content": "Brödtext" + }, + "type_body_font": { + "label": "Typsnitt" + }, + "heading_scale": { + "label": "Skala" + }, + "body_scale": { + "label": "Skala" + } + } + }, + "social-media": { + "name": "Sociala medier", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Valutakoder" + }, + "paragraph": "Priser i varukorgen och kassan visar alltid valutakoder" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Sökförslag" + }, + "predictive_search_show_vendor": { + "label": "Produktsäljare", + "info": "Visas när sökförslag är aktiverat" + }, + "predictive_search_show_price": { + "label": "Produktpris", + "info": "Visas 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 dina [produktvarianter](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#variant-picker-block)" + }, + "inputs": { + "name": "Inmatningar" + }, + "content_containers": { + "name": "Innehållsbehållare" + }, + "popups": { + "name": "Rullgardinsmenyer och popup-rutor", + "paragraph": "Påverkar områden 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": "Typ", + "drawer": { + "label": "Låda" + }, + "page": { + "label": "Sida" + }, + "notification": { + "label": "Popup-avisering" + } + }, + "show_vendor": { + "label": "Säljare" + }, + "show_cart_note": { + "label": "Varukorgsanteckning" + }, + "cart_drawer": { + "header": "Varukorgspanel", + "collection": { + "label": "Produktserie", + "info": "Visas när varukorgspanelen är tom" + } + } + } + }, + "cards": { + "name": "Produktkort", + "settings": { + "style": { + "options__1": { + "label": "Standard" + }, + "options__2": { + "label": "Kort" + }, + "label": "Stil" + } + } + }, + "collection_cards": { + "name": "Produktseriekort", + "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": "Bredd" + }, + "favicon": { + "label": "Favicon", + "info": "Visas med 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": "Visas i sidfotens block med information om varumärke" + } + } + }, + "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": "Utfyllnad", + "padding_top": "Högst upp", + "padding_bottom": "Längst ner" + }, + "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" + }, + "options__5": { + "label": "Extra 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" + }, + "animation": { + "content": "Animeringar", + "image_behavior": { + "options__1": { + "label": "Inga" + }, + "options__2": { + "label": "Omgivande rörelse" + }, + "label": "Animering", + "options__3": { + "label": "Fast bakgrundsplacering" + }, + "options__4": { + "label": "Zooma in vid skrollning" + } + } + } + }, + "announcement-bar": { + "name": "Meddelandefält", + "blocks": { + "announcement": { + "settings": { + "text": { + "label": "Text", + "default": "Välkommen till vår butik" + }, + "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" + }, + "show_social": { + "label": "Sociala medier-ikoner", + "info": "[Hantera sociala konton](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Land-/regionväljare", + "info": "[Hantera länder/regioner](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Språkväljare", + "info": "[Hantera språk](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Verktyg" + }, + "paragraph": { + "content": "Visas endast på stora skärmar" + } + }, + "presets": { + "name": "Meddelandefält" + } + }, + "collage": { + "name": "Kollage", + "settings": { + "heading": { + "label": "Rubrik", + "default": "Multimediakollage" + }, + "desktop_layout": { + "label": "Layout", + "options__1": { + "label": "Stort block först" + }, + "options__2": { + "label": "Stort block sist" + } + }, + "mobile_layout": { + "label": "Mobil layout", + "options__1": { + "label": "Kollage" + }, + "options__2": { + "label": "Kolumn" + } + }, + "card_styles": { + "label": "Kortstil", + "info": "Hantera individuella kortstilar i [temainställningarna](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "Använd individuella kortstilar" + }, + "options__2": { + "label": "Styla alla som produktkort" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "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)", + "default": "Beskriv videon" + } + }, + "name": "Video" + } + }, + "presets": { + "name": "Kollage" + } + }, + "collection-list": { + "name": "Produktserielista", + "settings": { + "title": { + "label": "Rubrik", + "default": "Produktserier" + }, + "image_ratio": { + "label": "Bildförhållande", + "options__1": { + "label": "Anpassa till bild" + }, + "options__2": { + "label": "Porträtt" + }, + "options__3": { + "label": "Fyrkantig" + } + }, + "swipe_on_mobile": { + "label": "Karusell" + }, + "show_view_all": { + "label": "\"Visa alla\"-knappen", + "info": "Synligt om listan har fler produktserier än vad som visas" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "header_mobile": { + "content": "Mobil layout" + }, + "columns_mobile": { + "label": "Kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Layout" + } + }, + "blocks": { + "featured_collection": { + "settings": { + "collection": { + "label": "Produktserie" + } + }, + "name": "Produktserie" + } + }, + "presets": { + "name": "Produktserielista" + } + }, + "contact-form": { + "name": "Kontaktformulär", + "presets": { + "name": "Kontaktformulär" + }, + "settings": { + "title": { + "default": "Kontaktformulär", + "label": "Rubrik" + } + } + }, + "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", + "default": "Bloggposter" + }, + "blog": { + "label": "Blogg" + }, + "post_limit": { + "label": "Postantal" + }, + "show_view_all": { + "label": "\"Visa alla\"-knappen", + "info": "Synligt om bloggen har fler poster än vad som visas" + }, + "show_image": { + "label": "Utvald bild" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Författare" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "layout_header": { + "content": "Layout" + }, + "text_header": { + "content": "Text" + } + }, + "presets": { + "name": "Blogginlägg" + } + }, + "featured-collection": { + "name": "Utvald produktserie", + "settings": { + "title": { + "label": "Rubrik", + "default": "Utvald produktserie" + }, + "collection": { + "label": "Produktserie" + }, + "products_to_show": { + "label": "Produkträkning" + }, + "show_view_all": { + "label": "\"Visa alla\"-knappen", + "info": "Synligt om produktserien har 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": "Säljare" + }, + "show_rating": { + "label": "Produktbetyg", + "info": "En app krävs för bedömningar. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "enable_quick_buy": { + "label": "Lägg till direkt" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "description": { + "label": "Beskrivning" + }, + "show_description": { + "label": "Visa produktseriebeskrivning från 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": "Karusell" + }, + "full_width": { + "label": "Produkter med full bredd" + }, + "header_mobile": { + "content": "Mobil layout" + }, + "columns_mobile": { + "label": "Kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Karusell" + }, + "header_text": { + "content": "Text" + }, + "header_collection": { + "content": "Layout för produktserier" + } + }, + "presets": { + "name": "Utvald produktserie" + } + }, + "footer": { + "name": "Sidfot", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "Rubrik", + "default": "Snabblänkar" + }, + "menu": { + "label": "Meny" + } + }, + "name": "Meny" + }, + "text": { + "settings": { + "heading": { + "label": "Rubrik", + "default": "Rubrik" + }, + "subtext": { + "label": "Undertext", + "default": "Dela kontaktinformation, butiksinformation och varumärkesinnehåll med dina kunder.
" + } + }, + "name": "Text" + }, + "brand_information": { + "name": "Varumärkesinformation", + "settings": { + "paragraph": { + "content": "Hantera varumärkesinformation i [temainställningarna](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "Sociala medier-ikoner", + "info": "[Hantera sociala konton](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "E-postregistrering" + }, + "newsletter_heading": { + "label": "Rubrik", + "default": "Prenumerera på e-post från oss" + }, + "header__1": { + "info": "Lägg till registreringar [kundprofiler](https://help.shopify.com/manual/customers/manage-customers)", + "content": "E-postregistrering" + }, + "show_social": { + "label": "Sociala medier-ikoner", + "info": "[Hantera sociala konton](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Land-/regionväljare", + "info": "[Hantera länder/regioner](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Språkväljare", + "info": "[Hantera språk](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ikoner för betalningsmetoder" + }, + "margin_top": { + "label": "Övre marginal" + }, + "show_policy": { + "label": "Policylänkar", + "info": "[Hantera policyer](/admin/settings/legal)" + }, + "header__9": { + "content": "Verktyg" + }, + "enable_follow_on_shop": { + "label": "Följ på Shop", + "info": "Shop Pay måste vara aktiverat. [Mer information](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Rubrik", + "settings": { + "logo_position": { + "label": "Placering av logotyp", + "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": "Avskiljande linje" + }, + "margin_bottom": { + "label": "Nedre marginal" + }, + "menu_type_desktop": { + "label": "Menytyp", + "options__1": { + "label": "Rullgardinsmeny" + }, + "options__2": { + "label": "Megameny" + }, + "options__3": { + "label": "Låda" + } + }, + "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" + } + }, + "enable_country_selector": { + "label": "Land-/regionväljare", + "info": "[Hantera länder/regioner](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Språkväljare", + "info": "[Hantera språk](/admin/settings/languages)" + }, + "header__1": { + "content": "Färg" + }, + "menu_color_scheme": { + "label": "Färgschema för meny" + }, + "enable_customer_avatar": { + "label": "Avatar för kundkonto", + "info": "Visas endast när kunder är inloggade med Shop. [Hantera kundkonton](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Verktyg" + } + } + }, + "image-banner": { + "name": "Bildbanner", + "settings": { + "image": { + "label": "Bild 1" + }, + "image_2": { + "label": "Bild 2" + }, + "stack_images_on_mobile": { + "label": "Stapla bilder" + }, + "show_text_box": { + "label": "Behållare" + }, + "image_overlay_opacity": { + "label": "Överlagring av opacitet" + }, + "show_text_below": { + "label": "Behållare" + }, + "image_height": { + "label": "Höjd", + "options__1": { + "label": "Anpassa efter första bilden" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medel" + }, + "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": "Position" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + }, + "label": "Justering" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + }, + "label": "Justering" + }, + "mobile": { + "content": "Mobil layout" + }, + "content": { + "content": "Innehåll" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "Rubrik", + "default": "Bildbanner" + } + }, + "name": "Rubrik" + }, + "text": { + "settings": { + "text": { + "label": "Text", + "default": "Ge kunder information om bannerbild(er) eller innehåll i mallen." + }, + "text_style": { + "options__1": { + "label": "Brödtext" + }, + "options__2": { + "label": "Underrubrik" + }, + "options__3": { + "label": "Stora bokstäver" + }, + "label": "Stil" + } + }, + "name": "Text" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "Etikett", + "info": "Lämna tomt för att dölja", + "default": "Knappetikett" + }, + "button_link_1": { + "label": "Länk" + }, + "button_style_secondary_1": { + "label": "Konturstil" + }, + "button_label_2": { + "label": "Etikett", + "info": "Lämna tomt för att dölja", + "default": "Knappetikett" + }, + "button_link_2": { + "label": "Länk" + }, + "button_style_secondary_2": { + "label": "Konturstil" + }, + "header_1": { + "content": "Knapp 1" + }, + "header_2": { + "content": "Knapp 2" + } + }, + "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": "Höjd", + "options__4": { + "label": "Stor" + } + }, + "layout": { + "options__1": { + "label": "Bild först" + }, + "options__2": { + "label": "Andra bild" + }, + "label": "Placering" + }, + "desktop_image_width": { + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medel" + }, + "options__3": { + "label": "Stor" + }, + "label": "Bredd" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Vänster" + }, + "options__3": { + "label": "Höger" + }, + "label": "Justering", + "options__2": { + "label": "Centrera" + } + }, + "desktop_content_position": { + "options__1": { + "label": "Högst upp" + }, + "options__2": { + "label": "Mitten" + }, + "options__3": { + "label": "Längst ner" + }, + "label": "Position" + }, + "content_layout": { + "options__1": { + "label": "Ingen överlappning" + }, + "options__2": { + "label": "Överlappande" + }, + "label": "Layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Vänster" + }, + "options__3": { + "label": "Höger" + }, + "label": "Mobil linjering", + "options__2": { + "label": "Centrera" + } + }, + "header": { + "content": "Innehåll" + }, + "header_colors": { + "content": "Färger" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "Rubrik", + "default": "Bild med text" + } + }, + "name": "Rubrik" + }, + "text": { + "settings": { + "text": { + "label": "Text", + "default": "Para ihop text med en bild för att ge fokus åt vald produkt, produktserie eller blogginlägg. Lägg till information om tillgänglighet, stil eller tillhandahåll en recension.
" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Brödtext" + }, + "options__2": { + "label": "Underrubrik" + } + } + }, + "name": "Text" + }, + "button": { + "settings": { + "button_label": { + "label": "Etikett", + "info": "Lämna tomt för att dölja", + "default": "Knappetikett" + }, + "button_link": { + "label": "Länk" + }, + "outline_button": { + "label": "Konturstil" + } + }, + "name": "Knapp" + }, + "caption": { + "name": "Rubrik", + "settings": { + "text": { + "label": "Text", + "default": "Lägg till en slogan" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Underrubrik" + }, + "options__2": { + "label": "Stora bokstäver" + } + }, + "caption_size": { + "label": "Storlek", + "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", + "options__1": { + "label": "Anpassa till bild" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medel" + }, + "options__4": { + "label": "Stor" + } + } + }, + "name": "Utvald bild" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "Datum" + }, + "blog_show_author": { + "label": "Författare" + } + }, + "name": "Titel" + }, + "content": { + "name": "Innehåll" + }, + "share": { + "name": "Dela", + "settings": { + "text": { + "label": "Text", + "default": "Dela" + } + } + } + } + }, + "main-blog": { + "name": "Blogginlägg", + "settings": { + "show_image": { + "label": "Utvald bild" + }, + "show_date": { + "label": "Datum" + }, + "show_author": { + "label": "Författare" + }, + "layout": { + "label": "Layout", + "options__1": { + "label": "Rutnät" + }, + "options__2": { + "label": "Kollage" + } + }, + "image_height": { + "label": "Bildhöjd", + "options__1": { + "label": "Anpassa till bild" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medel" + }, + "options__4": { + "label": "Stor" + } + } + } + }, + "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": "Inhämtningsuppgifter [hanteras i admin](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Beskrivning" + }, + "show_collection_image": { + "label": "Bild" + } + } + }, + "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": "Säljare" + }, + "header__1": { + "content": "Filtrering och sortering" + }, + "enable_tags": { + "label": "Filter", + "info": "Anpassa filter med [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_filtering": { + "label": "Filter", + "info": "Anpassa filter med [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/filters)" + }, + "enable_sorting": { + "label": "Sortering" + }, + "header__3": { + "content": "Produktkort" + }, + "show_rating": { + "label": "Produktbetyg", + "info": "En app krävs för produktbedömningar. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "columns_mobile": { + "label": "Mobila kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Filterlayout", + "options__1": { + "label": "Liggande" + }, + "options__2": { + "label": "Stående" + }, + "options__3": { + "label": "Låda" + } + }, + "quick_add": { + "label": "Lägg till direkt", + "options": { + "option_1": "Ingen", + "option_2": "Standard", + "option_3": "Bulk" + } + } + } + }, + "main-list-collections": { + "name": "Produktserielista", + "settings": { + "title": { + "label": "Rubrik", + "default": "Produktserier" + }, + "sort": { + "label": "Sortera produktserier", + "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" + } + }, + "columns_desktop": { + "label": "Kolumner" + }, + "header_mobile": { + "content": "Mobil layout" + }, + "columns_mobile": { + "label": "Mobila kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Sida" + }, + "main-password-footer": { + "name": "Lösenord sidfot" + }, + "main-password-header": { + "name": "Lösenord sidhuvud", + "settings": { + "logo_help": { + "content": "Redigera din logotyp i [temainställningarna](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "Produktinformation", + "blocks": { + "text": { + "settings": { + "text": { + "label": "Text", + "default": "Textblock" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Brödtext" + }, + "options__2": { + "label": "Textning" + }, + "options__3": { + "label": "Stor bokstav" + } + } + }, + "name": "Text" + }, + "variant_picker": { + "name": "Variantväljare", + "settings": { + "picker_type": { + "label": "Stil", + "options__1": { + "label": "Rullgardinsmeny" + }, + "options__2": { + "label": "Kapslar" + } + }, + "swatch_shape": { + "label": "Prov", + "info": "Läs mer om [swatches](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) på produktalternativ", + "options__1": { + "label": "Cirkel" + }, + "options__2": { + "label": "Fyrkantig" + }, + "options__3": { + "label": "Ingen" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "Dynamiska kassaknappar", + "info": "Kunder kommer att se sitt föredragna betalningsalternativ. [Mer information](https://help.shopify.com/manual/using-themes/change-the-layout/dynamic-checkout)" + }, + "show_gift_card_recipient": { + "label": " Alternativ för att skicka presentkort", + "info": "Kunder kan lägga till ett personligt meddelande och schemalägga datum för skickande. [Mer information](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-gift-card-recipient-fields)" + } + }, + "name": "Köpknappar" + }, + "share": { + "settings": { + "text": { + "label": "Text", + "default": "Dela" + } + }, + "name": "Dela" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "Rubrik", + "default": "Rad som kan döljas" + }, + "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", + "default": "Text i popup-länk" + }, + "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": "En app krävs för produktbedömningar. [Mer information](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Kompletterande produkter", + "settings": { + "paragraph": { + "content": "Hantera kompletterande produkter i [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" + }, + "heading": { + "label": "Rubrik", + "default": "Passar bra med" + }, + "make_collapsible_row": { + "label": "Rad som kan döljas" + }, + "icon": { + "info": "Visas när komprimerbar rad är vald" + }, + "product_list_limit": { + "label": "Produkträkning" + }, + "products_per_page": { + "label": "Produkter per rad" + }, + "pagination_style": { + "label": "Paginering", + "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": "Lägg till direkt" + } + } + }, + "icon_with_text": { + "name": "Ikon med text", + "settings": { + "layout": { + "label": "Layout", + "options__1": { + "label": "Liggande" + }, + "options__2": { + "label": "Stående" + } + }, + "heading": { + "info": "Lämna tomt för att dölja den här parkoppling" + }, + "icon_1": { + "label": "Ikon" + }, + "image_1": { + "label": "Bild" + }, + "heading_1": { + "label": "Rubrik", + "default": "Rubrik" + }, + "icon_2": { + "label": "Ikon" + }, + "image_2": { + "label": "Bild" + }, + "heading_2": { + "label": "Rubrik", + "default": "Rubrik" + }, + "icon_3": { + "label": "Ikon" + }, + "image_3": { + "label": "Bild" + }, + "heading_3": { + "label": "Rubrik", + "default": "Rubrik" + }, + "pairing_1": { + "label": "Parkoppling 1", + "info": "Välj en ikon eller lägg till en bild för varje parkoppling" + }, + "pairing_2": { + "label": "Parkoppling 2" + }, + "pairing_3": { + "label": "Parkoppling 3" + } + } + }, + "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å" + }, + "show_inventory_quantity": { + "label": "Inventering" + } + } + } + }, + "settings": { + "header": { + "content": "Media" + }, + "enable_video_looping": { + "label": "Slinga video" + }, + "enable_sticky_info": { + "label": "Fast innehåll" + }, + "hide_variants": { + "label": "Dölj andra variantmedia när en har valts" + }, + "gallery_layout": { + "label": "Layout", + "options__1": { + "label": "Staplade" + }, + "options__2": { + "label": "2 kolumner" + }, + "options__3": { + "label": "Miniatyrbilder" + }, + "options__4": { + "label": "Miniatyrbildskarusell" + } + }, + "media_size": { + "label": "Bredd", + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medel" + }, + "options__3": { + "label": "Stor" + } + }, + "mobile_thumbnails": { + "label": "Mobil layout", + "options__1": { + "label": "2 kolumner" + }, + "options__2": { + "label": "Visa miniatyrbilder" + }, + "options__3": { + "label": "Dölj miniatyrbilder" + } + }, + "media_position": { + "label": "Position", + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Höger" + } + }, + "image_zoom": { + "label": "Zoom", + "options__1": { + "label": "Öppna lightbox" + }, + "options__2": { + "label": "Klicka och svep över" + }, + "options__3": { + "label": "Ingen zoom" + } + }, + "constrain_to_viewport": { + "label": "Begränsa till skärmhöjd" + }, + "media_fit": { + "label": "Anpassa", + "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": "Säljare" + }, + "header__1": { + "content": "Produktkort" + }, + "header__2": { + "content": "Bloggkort" + }, + "article_show_date": { + "label": "Datum" + }, + "article_show_author": { + "label": "Författare" + }, + "show_rating": { + "label": "Produktbetyg", + "info": "En app krävs för produktbedömningar. [Mer information](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "columns_mobile": { + "label": "Mobila kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Multikolumn", + "settings": { + "title": { + "label": "Rubrik", + "default": "Multikolumn" + }, + "image_width": { + "label": "Bredd", + "options__1": { + "label": "En tredjedels bredd av kolumn" + }, + "options__2": { + "label": "Halva kolumnens bredd" + }, + "options__3": { + "label": "Hela kolumnens bredd" + } + }, + "image_ratio": { + "label": "Kvot", + "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": "Etikett", + "default": "Knappetikett", + "info": "Lämna tomt för att dölja" + }, + "button_link": { + "label": "Länk" + }, + "swipe_on_mobile": { + "label": "Karusell" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "header_mobile": { + "content": "Mobil layout" + }, + "columns_mobile": { + "label": "Kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Rubrik" + }, + "header_image": { + "content": "Bild" + }, + "header_layout": { + "content": "Layout" + }, + "header_button": { + "content": "Knapp" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "Bild" + }, + "title": { + "label": "Rubrik", + "default": "Kolumn" + }, + "text": { + "label": "Beskrivning", + "default": "Para ihop text med en bild för att ge fokus åt vald produkt, produktserie eller blogginlägg. Lägg till information om tillgänglighet, stil eller tillhandahåll en recension.
" + }, + "link_label": { + "label": "Länketikett", + "info": "Lämna tomt för att dölja" + }, + "link": { + "label": "Länk" + } + }, + "name": "Kolumn" + } + }, + "presets": { + "name": "Multikolumn" + } + }, + "newsletter": { + "name": "E-postregistrering", + "settings": { + "full_width": { + "label": "Full bredd" + }, + "paragraph": { + "content": "Lägg till registreringar [kundprofiler](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "Rubrik", + "default": "Prenumerera på e-post från oss" + } + }, + "name": "Rubrik" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "Text", + "default": "Var först med att få veta om nya produktserier och exklusiva erbjudanden.
" + } + }, + "name": "Text" + }, + "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": "Full bredd" + }, + "desktop_content_position": { + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + }, + "label": "Innehållets position" + }, + "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", + "default": "Prata om ditt varumärke" + } + }, + "name": "Rubrik" + }, + "text": { + "settings": { + "text": { + "label": "Text", + "default": "Dela information om ditt varumärke med dina kunder. Beskriv en produkt, gör tillkännagivanden eller välkomna kunder till din butik.
" + } + }, + "name": "Text" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "Etikett", + "info": "Lämna tomt för att dölja", + "default": "Knappetikett" + }, + "button_link_1": { + "label": "Länk" + }, + "button_style_secondary_1": { + "label": "Konturstil" + }, + "button_label_2": { + "label": "Etikett", + "info": "Lämna etiketten tom för att dölja" + }, + "button_link_2": { + "label": "Länk" + }, + "button_style_secondary_2": { + "label": "Konturstil" + }, + "header_button1": { + "content": "Knapp 1" + }, + "header_button2": { + "content": "Knapp 2" + } + }, + "name": "Knappar" + }, + "caption": { + "name": "Rubrik", + "settings": { + "text": { + "label": "Text", + "default": "Lägg till en slogan" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Undertext" + }, + "options__2": { + "label": "Stora bokstäver" + } + }, + "caption_size": { + "label": "Storlek", + "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", + "default": "Video" + }, + "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 användere av skärmläsare" + }, + "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": "Full bredd" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Slinga video" + }, + "header__1": { + "content": "Video på Shopify" + }, + "header__2": { + "content": "Eller bädda in video från URL" + }, + "header__3": { + "content": "Layout" + }, + "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", + "default": "Textblock" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Rullgardinsmeny" + }, + "options__2": { + "label": "Kapslar" + } + }, + "swatch_shape": { + "label": "Prov", + "info": "Läs mer om [swatches](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) på produktalternativ", + "options__1": { + "label": "Cirkel" + }, + "options__2": { + "label": "Fyrkantig" + }, + "options__3": { + "label": "Ingen" + } + } + } + }, + "buy_buttons": { + "name": "Köpknappar", + "settings": { + "show_dynamic_checkout": { + "label": "Dynamiska kassaknappar", + "info": "Kunder kommer att se sitt föredragna betalningsalternativ. [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", + "default": "Dela" + } + } + }, + "rating": { + "name": "Produktbetyg", + "settings": { + "paragraph": { + "content": "En app krävs för produktbedömningar. [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": "Sekundär bakgrund" + }, + "header": { + "content": "Media" + }, + "enable_video_looping": { + "label": "Slinga video" + }, + "hide_variants": { + "label": "Dölj media för varianter som inte har valts på datorn" + }, + "media_position": { + "label": "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": "Lägg till registreringar [kundprofiler](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Bakgrundsbild" + }, + "show_background_image": { + "label": "Visa bakgrundsbild" + }, + "show_text_box": { + "label": "Behållare" + }, + "image_overlay_opacity": { + "label": "Överlagring av opacitet" + }, + "show_text_below": { + "label": "Stapla text under bild" + }, + "image_height": { + "label": "Höjd", + "options__1": { + "label": "Anpassa till bild" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medel" + }, + "options__4": { + "label": "Stor" + } + }, + "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": "Position" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + }, + "label": "Justering" + }, + "header": { + "content": "Mobil layout" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + }, + "label": "Justering" + }, + "color_scheme": { + "info": "Synlig när ruta visas." + }, + "content_header": { + "content": "Innehåll" + } + }, + "blocks": { + "heading": { + "name": "Rubrik", + "settings": { + "heading": { + "label": "Rubrik", + "default": "Öppnar snart" + } + } + }, + "paragraph": { + "name": "Text", + "settings": { + "paragraph": { + "label": "Text", + "default": "Var först med att få veta när vi kör igång.
" + }, + "text_style": { + "options__1": { + "label": "Brödtext" + }, + "options__2": { + "label": "Undertext" + }, + "label": "Stil" + } + } + }, + "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": "Sida" + } + }, + "slide_height": { + "label": "Höjd", + "options__1": { + "label": "Anpassa efter första bilden" + }, + "options__2": { + "label": "Liten" + }, + "options__3": { + "label": "Medel" + }, + "options__4": { + "label": "Stor" + } + }, + "slider_visual": { + "label": "Paginering", + "options__1": { + "label": "Räknare" + }, + "options__2": { + "label": "Prickar" + }, + "options__3": { + "label": "Siffror" + } + }, + "auto_rotate": { + "label": "Rotera bilder automatiskt" + }, + "change_slides_speed": { + "label": "Byt bilder varje" + }, + "mobile": { + "content": "Mobil layout" + }, + "show_text_below": { + "label": "Stapla text under bild" + }, + "accessibility": { + "content": "Tillgänglighet", + "label": "Beskrivning bildspel", + "info": "Beskriv bildspelet för användere av skärmläsare", + "default": "Bildspel om vårt varumärke" + } + }, + "blocks": { + "slide": { + "name": "Bild", + "settings": { + "image": { + "label": "Bild" + }, + "heading": { + "label": "Rubrik", + "default": "Bild i bildspel" + }, + "subheading": { + "label": "Underrubrik", + "default": "Berätta ditt varumärkes historia genom video och bilder" + }, + "button_label": { + "label": "Etikett", + "info": "Lämna tomt för att dölja", + "default": "Knappetikett" + }, + "link": { + "label": "Länk" + }, + "secondary_style": { + "label": "Konturstil" + }, + "box_align": { + "label": "Innehållets position", + "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" + } + }, + "show_text_box": { + "label": "Behållare" + }, + "text_alignment": { + "label": "Innehållsjustering", + "option_1": { + "label": "Vänster" + }, + "option_2": { + "label": "Centrera" + }, + "option_3": { + "label": "Höger" + } + }, + "image_overlay_opacity": { + "label": "Överlagring av opacitet" + }, + "text_alignment_mobile": { + "label": "Linjering av innehåll på mobil", + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + } + }, + "header_button": { + "content": "Knapp" + }, + "header_layout": { + "content": "Layout" + }, + "header_text": { + "content": "Text" + }, + "header_colors": { + "content": "Färger" + } + } + } + }, + "presets": { + "name": "Bildspel" + } + }, + "collapsible_content": { + "name": "Innehåll som kan döljas", + "settings": { + "caption": { + "label": "Rubrik" + }, + "heading": { + "label": "Rubrik", + "default": "Innehåll som kan döljas" + }, + "heading_alignment": { + "label": "Rubriklinjering", + "options__1": { + "label": "Vänster" + }, + "options__2": { + "label": "Centrera" + }, + "options__3": { + "label": "Höger" + } + }, + "layout": { + "label": "Behållare", + "options__1": { + "label": "Ingen behållare" + }, + "options__2": { + "label": "Radhållare" + }, + "options__3": { + "label": "Avsnittshållare" + } + }, + "open_first_collapsible_row": { + "label": "Öppna första raden" + }, + "header": { + "content": "Bild" + }, + "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": "Placering", + "options__1": { + "label": "Bild först" + }, + "options__2": { + "label": "Andra bild" + } + }, + "container_color_scheme": { + "label": "Färgschema för container" + }, + "layout_header": { + "content": "Layout" + }, + "section_color_scheme": { + "label": "Färgtema för avsnitt" + } + }, + "blocks": { + "collapsible_row": { + "name": "Rad som kan döljas", + "settings": { + "heading": { + "label": "Rubrik", + "default": "Rad som kan döljas" + }, + "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", + "shop_login_button": { + "enable": "Aktivera inloggning med Shop" + } + }, + "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": "Produkträkning" + }, + "columns_desktop": { + "label": "Kolumner" + }, + "paragraph__1": { + "content": "Relaterade produkter kan hanteras i [Search & Discovery-appen](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "Du kanske också gillar" + }, + "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": "Säljare" + }, + "show_rating": { + "label": "Produktbetyg", + "info": "En app krävs för produktbedömningar. [Mer information](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobila kolumner", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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": "Höjd" + }, + "desktop_image_width": { + "options__1": { + "label": "Liten" + }, + "options__2": { + "label": "Medel" + }, + "options__3": { + "label": "Stor" + }, + "label": "Bredd" + }, + "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" + }, + "desktop_content_position": { + "options__1": { + "label": "Högst upp" + }, + "options__2": { + "label": "Mitten" + }, + "options__3": { + "label": "Längst ner" + }, + "label": "Position" + }, + "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" + }, + "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": "Mobil linjering" + }, + "header": { + "content": "Bild" + }, + "header_2": { + "content": "Innehåll" + }, + "header_3": { + "content": "Färger" + } + }, + "blocks": { + "row": { + "name": "Rad", + "settings": { + "image": { + "label": "Bild" + }, + "caption": { + "label": "Rubrik", + "default": "Rubrik" + }, + "heading": { + "label": "Rubrik", + "default": "Rad" + }, + "text": { + "label": "Text", + "default": "Para ihop text med en bild för att ge fokus åt vald produkt, produktserie eller blogginlägg. Lägg till information om tillgänglighet, stil eller tillhandahåll en recension.
" + }, + "button_label": { + "label": "Knappetikett", + "default": "Knappetikett", + "info": "Lämna tomt för att dölja" + }, + "button_link": { + "label": "Knapplänk" + } + } + } + }, + "presets": { + "name": "Flera rader" + } + }, + "quick-order-list": { + "name": "Snabb orderlista", + "settings": { + "show_image": { + "label": "Bilder" + }, + "show_sku": { + "label": "SKU:er" + }, + "variants_per_page": { + "label": "Varianter per sida" + } + }, + "presets": { + "name": "Snabb orderlista" + } + } + } +} diff --git a/locales/th.json b/locales/th.json new file mode 100644 index 0000000..f242e80 --- /dev/null +++ b/locales/th.json @@ -0,0 +1,530 @@ +{ + "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": "แชร์บน X", + "share_on_pinterest": "ปักหมุดบน Pinterest" + }, + "links": { + "twitter": "X (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": "ดูกฎเกี่ยวกับจำนวน", + "min_of": "ต่ำสุด {{ quantity }} รายการ", + "max_of": "สูงสุด {{ quantity }} รายการ", + "in_cart_aria_label": "จำนวน ({{ quantity }} ชิ้นในตะกร้าสินค้า)" + }, + "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 }} พร้อมใช้งานในมุมมองแกลเลอรี" + }, + "nested_label": "{{ title }} สำหรับ {{ parent_title }}", + "view_full_details": "ดูรายละเอียดทั้งหมด", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "ราคา {{ price }}/หน่วย" + }, + "product_variants": "ตัวเลือกสินค้า", + "taxes_included": "รวมภาษีแล้ว", + "duties_included": "รวมอากรแล้ว", + "duties_and_taxes_included": "รวมภาษีและอากรแล้ว" + }, + "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 }} รายการลงในตะกร้าสินค้าของคุณเท่านั้น", + "headings": { + "product": "สินค้า", + "price": "ราคา", + "total": "ยอดรวม", + "quantity": "ปริมาณ", + "image": "รูปภาพสินค้า" + }, + "update": "อัปเดต", + "login": { + "title": "มีบัญชีผู้ใช้อยู่แล้วใช่หรือไม่", + "paragraph_html": "เข้าสู่ระบบเพื่อชำระเงินให้รวดเร็วยิ่งขึ้น" + }, + "estimated_total": "ยอดทั้งหมดโดยประมาณ", + "new_estimated_total": "ยอดรวมโดยประมาณใหม่", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "รวมภาษีและอากรแล้ว ระบบจะคำนวณส่วนลดและค่าจัดส่งในขั้นตอนการชำระเงิน", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "รวมภาษีและอากรแล้ว ระบบจะคำนวณส่วนลดและค่าจัดส่งในขั้นตอนการชำระเงิน", + "taxes_included_shipping_at_checkout_with_policy_html": "รวมภาษีแล้ว ระบบจะคำนวณส่วนลดและค่าจัดส่งในขั้นตอนการชำระเงิน", + "taxes_included_shipping_at_checkout_without_policy": "รวมภาษีแล้ว ระบบจะคำนวณส่วนลดและค่าจัดส่งในขั้นตอนการชำระเงิน", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "รวมอากรแล้ว ระบบจะคำนวณภาษี ส่วนลด และค่าจัดส่งในขั้นตอนการชำระเงิน", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "รวมอากรแล้ว ระบบจะคำนวณภาษี ส่วนลด และค่าจัดส่งในขั้นตอนการชำระเงิน", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "ระบบจะคำนวณภาษี ส่วนลด และค่าจัดส่งในขั้นตอนการชำระเงิน", + "taxes_at_checkout_shipping_at_checkout_without_policy": "ระบบจะคำนวณภาษี ส่วนลด และค่าจัดส่งในขั้นตอนการชำระเงิน" + }, + "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": "ยกเลิก", + "remove_all_single_item_confirmation": "ต้องการลบ 1 รายการออกจากตะกร้าสินค้าหรือไม่", + "min_error": "สินค้านี้มีจำนวนขั้นต่ำที่ {{ min }} รายการ", + "max_error": "สินค้านี้มีจำนวนสูงสุดที่ {{ max }} รายการ", + "step_error": "คุณสามารถเพิ่มสินค้านี้ได้ทีละ {{ step }} รายการในแต่ละครั้งเท่านั้น" + } + }, + "localization": { + "country_label": "ประเทศ/ภูมิภาค", + "language_label": "ภาษา", + "update_language": "อัปเดตภาษา", + "update_country": "อัปเดตประเทศ/ภูมิภาค", + "search": "ค้นหา", + "popular_countries_regions": "ประเทศ/ภูมิภาคยอดนิยม", + "country_results_count": "พบประเทศ/ภูมิภาค {{ count }} แห่ง" + }, + "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": "ส่ง", + "alternate_provider_separator": "หรือ" + }, + "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..2c88c86 --- /dev/null +++ b/locales/th.schema.json @@ -0,0 +1,3401 @@ +{ + "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": "แบบอักษร" + }, + "header__1": { + "content": "หัวเรื่อง" + }, + "header__2": { + "content": "เนื้อหา" + }, + "type_body_font": { + "label": "แบบอักษร" + }, + "heading_scale": { + "label": "ขนาด" + }, + "body_scale": { + "label": "ขนาด" + } + } + }, + "social-media": { + "name": "โซเชียลมีเดีย", + "settings": { + "social_twitter_link": { + "label": "X/Twitter", + "info": "https://x.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": { + "paragraph": "แสดงรหัสสกุลเงินสำหรับราคาในตะกร้าสินค้าและขั้นตอนชำระเงินเสมอ", + "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": { + "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/manual/online-store/themes/theme-structure/page-types/product-pages#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": "ความกว้าง" + }, + "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": "ขนาดใหญ่พิเศษ" + }, + "options__5": { + "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": "รูปทรงภาพ" + }, + "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": "ข้อความ", + "default": "ยินดีต้อนรับสู่ร้านค้าของเรา" + }, + "text_alignment": { + "label": "การจัดวางข้อความ", + "options__1": { + "label": "ซ้าย" + }, + "options__2": { + "label": "กึ่งกลาง" + }, + "options__3": { + "label": "ขวา" + } + }, + "link": { + "label": "ลิงก์" + } + }, + "name": "การประกาศ" + } + }, + "settings": { + "auto_rotate": { + "label": "เปลี่ยนประกาศอัตโนมัติ" + }, + "change_slides_speed": { + "label": "เปลี่ยนทุก" + }, + "show_social": { + "label": "ไอคอนโซเชียลมีเดีย", + "info": "[จัดการบัญชีผู้ใช้โซเชียลมีเดีย](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "ตัวเลือกประเทศ/ภูมิภาค", + "info": "[จัดการประเทศ/ภูมิภาค](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "ตัวเลือกภาษา", + "info": "[จัดการภาษา](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "สาธารณูปโภค" + }, + "paragraph": { + "content": "ปรากฏบนหน้าจอใหญ่เท่านั้น" + } + }, + "presets": { + "name": "แถบประกาศ" + } + }, + "collage": { + "name": "คอลลาจ", + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "ภาพคอลลาจมัลติมีเดีย" + }, + "desktop_layout": { + "label": "เลย์เอาต์", + "options__1": { + "label": "บล็อกใหญ่ก่อน" + }, + "options__2": { + "label": "บล็อกใหญ่ทีหลัง" + } + }, + "mobile_layout": { + "label": "เลย์เอาต์ของมือถือ", + "options__1": { + "label": "คอลลาจ" + }, + "options__2": { + "label": "คอลัมน์" + } + }, + "card_styles": { + "label": "รูปแบบของการ์ด", + "info": "จัดการรูปแบบบัตรแต่ละใบใน [การตั้งค่าธีม](/editor?context=theme&category=product%20cards)", + "options__1": { + "label": "ใช้รูปแบบของการ์ดแบบแยกต่างหาก" + }, + "options__2": { + "label": "ปรับรูปแบบทั้งหมดเป็นการ์ดแสดงสินค้า" + } + }, + "header_layout": { + "content": "เลย์เอาต์" + } + }, + "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)", + "default": "อธิบายวิดีโอ" + } + }, + "name": "วิดีโอ" + } + }, + "presets": { + "name": "คอลลาจ" + } + }, + "collection-list": { + "name": "รายการคอลเลกชัน", + "settings": { + "title": { + "label": "หัวเรื่อง", + "default": "คอลเลกชัน" + }, + "image_ratio": { + "label": "อัตราส่วนรูปภาพ", + "options__1": { + "label": "ปรับตามรูปภาพ" + }, + "options__2": { + "label": "แนวตั้ง" + }, + "options__3": { + "label": "สี่เหลี่ยมจัตุรัส" + } + }, + "swipe_on_mobile": { + "label": "ภาพสไลด์" + }, + "show_view_all": { + "label": "ปุ่ม \"ดูทั้งหมด\"", + "info": "แสดงผลหากรายการมีคอลเลกชันมากกว่าที่แสดงไว้" + }, + "columns_desktop": { + "label": "คอลัมน์" + }, + "header_mobile": { + "content": "เลย์เอาต์สำหรับมือถือ" + }, + "columns_mobile": { + "label": "คอลัมน์", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "เลย์เอาต์" + } + }, + "blocks": { + "featured_collection": { + "settings": { + "collection": { + "label": "คอลเลกชัน" + } + }, + "name": "คอลเลกชัน" + } + }, + "presets": { + "name": "รายการคอลเลกชัน" + } + }, + "contact-form": { + "name": "แบบฟอร์มการติดต่อ", + "presets": { + "name": "แบบฟอร์มการติดต่อ" + }, + "settings": { + "title": { + "default": "แบบฟอร์มการติดต่อ", + "label": "หัวเรื่อง" + } + } + }, + "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": "หัวเรื่อง", + "default": "บล็อกโพสต์" + }, + "blog": { + "label": "บล็อก" + }, + "post_limit": { + "label": "จำนวนโพสต์" + }, + "show_view_all": { + "label": "ปุ่ม \"ดูทั้งหมด\"", + "info": "แสดงผลหากบล็อกมีโพสต์มากกว่าที่แสดงไว้" + }, + "show_image": { + "label": "รูปภาพที่แสดง" + }, + "show_date": { + "label": "วันที่" + }, + "show_author": { + "label": "ผู้เขียน" + }, + "columns_desktop": { + "label": "คอลัมน์" + }, + "layout_header": { + "content": "เลย์เอาต์" + }, + "text_header": { + "content": "ข้อความ" + } + }, + "presets": { + "name": "บล็อกโพสต์" + } + }, + "featured-collection": { + "name": "คอลเลกชันเด่น", + "settings": { + "title": { + "label": "หัวเรื่อง", + "default": "คอลเลกชันเด่น" + }, + "collection": { + "label": "คอลเลกชัน" + }, + "products_to_show": { + "label": "จำนวนสินค้า" + }, + "show_view_all": { + "label": "ปุ่ม \"ดูทั้งหมด\"", + "info": "แสดงผลหากคอลเลกชันมีสินค้ามากกว่าที่แสดงไว้" + }, + "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": "เพิ่มด่วน" + }, + "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": "ภาพสไลด์" + }, + "header_text": { + "content": "ข้อความ" + }, + "header_collection": { + "content": "เลย์เอาต์ของคอลเลกชัน" + } + }, + "presets": { + "name": "คอลเลกชันเด่น" + } + }, + "footer": { + "name": "ส่วนท้าย", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "ลิงก์ด่วน" + }, + "menu": { + "label": "เมนู" + } + }, + "name": "เมนู" + }, + "text": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "หัวเรื่อง" + }, + "subtext": { + "label": "ข้อความรอง", + "default": "แชร์ข้อมูลติดต่อ รายละเอียดร้านค้า และเนื้อหาแบรนด์กับลูกค้าของคุณ
" + } + }, + "name": "ข้อความ" + }, + "brand_information": { + "name": "ข้อมูลแบรนด์", + "settings": { + "paragraph": { + "content": "จัดการข้อมูลแบรนด์ใน [การตั้งค่าธีม](/editor?context=theme&category=brand%20information)" + }, + "show_social": { + "label": "ไอคอนโซเชียลมีเดีย", + "info": "[จัดการบัญชีผู้ใช้โซเชียลมีเดีย](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "การลงทะเบียนอีเมล" + }, + "newsletter_heading": { + "label": "หัวเรื่อง", + "default": "สมัครรับข้อมูลของเราทางอีเมล" + }, + "header__1": { + "info": "เพิ่มการสมัครใช้งาน [โปรไฟล์ลูกค้า](https://help.shopify.com/manual/customers/manage-customers)", + "content": "การลงทะเบียนอีเมล" + }, + "show_social": { + "label": "ไอคอนโซเชียลมีเดีย", + "info": "[จัดการบัญชีผู้ใช้โซเชียลมีเดีย](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "ตัวเลือกประเทศ/ภูมิภาค", + "info": "[จัดการประเทศ/ภูมิภาค](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "ตัวเลือกภาษา", + "info": "[จัดการภาษา](/admin/settings/languages)" + }, + "payment_enable": { + "label": "ไอคอนวิธีการชำระเงิน" + }, + "margin_top": { + "label": "ย่อหน้าบน" + }, + "show_policy": { + "label": "ลิงก์นโยบาย", + "info": "[จัดการนโยบาย](/admin/settings/legal)" + }, + "header__9": { + "content": "สาธารณูปโภค" + }, + "enable_follow_on_shop": { + "label": "ติดตามบน Shop", + "info": "ต้องเปิดใช้งาน Shop Pay [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-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": "ประเภทเมนู", + "options__1": { + "label": "ดรอปดาวน์" + }, + "options__2": { + "label": "เมกะเมนู" + }, + "options__3": { + "label": "แถบตัวเลือกแบบซ่อนได้" + } + }, + "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": "เสมอ, ลดขนาดโลโก้" + } + }, + "enable_country_selector": { + "label": "ตัวเลือกประเทศ/ภูมิภาค", + "info": "[จัดการประเทศ/ภูมิภาค](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "ตัวเลือกภาษา", + "info": "[จัดการภาษา](/admin/settings/languages)" + }, + "header__1": { + "content": "สี" + }, + "menu_color_scheme": { + "label": "รูปแบบสีเมนู" + }, + "enable_customer_avatar": { + "label": "ตัวแทนบัญชีผู้ใช้ของลูกค้า", + "info": "แสดงผลเมื่อลูกค้าลงชื่อเข้าใช้ใน Shop เท่านั้น [จัดการบัญชีผู้ใช้ของลูกค้า](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "สาธารณูปโภค" + } + } + }, + "image-banner": { + "name": "แบนเนอร์รูปภาพ", + "settings": { + "image": { + "label": "รูปภาพ 1" + }, + "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": "ปานกลาง" + }, + "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": "เลย์เอาต์สำหรับมือถือ" + }, + "content": { + "content": "เนื้อหา" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "แบนเนอร์รูปภาพ" + } + }, + "name": "หัวเรื่อง" + }, + "text": { + "settings": { + "text": { + "label": "ข้อความ", + "default": "ให้ลูกค้าเห็นรายละเอียดเกี่ยวกับเนื้อหาหรือรูปภาพในแบนเนอร์บนเทมเพลต" + }, + "text_style": { + "options__1": { + "label": "เนื้อหา" + }, + "options__2": { + "label": "คำบรรยาย" + }, + "options__3": { + "label": "ตัวพิมพ์ใหญ่" + }, + "label": "รูปแบบ" + } + }, + "name": "ข้อความ" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "ใบจ่าหน้า", + "info": "ปล่อยว่างไว้เพื่อซ่อน", + "default": "ป้ายกำกับปุ่ม" + }, + "button_link_1": { + "label": "ลิงก์" + }, + "button_style_secondary_1": { + "label": "รูปแบบเค้าโครง" + }, + "button_label_2": { + "label": "ใบจ่าหน้า", + "info": "ปล่อยว่างไว้เพื่อซ่อน", + "default": "ป้ายกำกับปุ่ม" + }, + "button_link_2": { + "label": "ลิงก์" + }, + "button_style_secondary_2": { + "label": "รูปแบบเค้าโครง" + }, + "header_1": { + "content": "ปุ่ม 1" + }, + "header_2": { + "content": "ปุ่ม 2" + } + }, + "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": "การจัดวาง" + }, + "desktop_image_width": { + "options__1": { + "label": "เล็ก" + }, + "options__2": { + "label": "ปานกลาง" + }, + "options__3": { + "label": "ใหญ่" + }, + "label": "ความกว้าง" + }, + "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": "กึ่งกลาง" + } + }, + "header": { + "content": "เนื้อหา" + }, + "header_colors": { + "content": "สี" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "รูปภาพพร้อมข้อความ" + } + }, + "name": "หัวเรื่อง" + }, + "text": { + "settings": { + "text": { + "label": "ข้อความ", + "default": "จับคู่ข้อความกับรูปภาพเพื่อให้ความสำคัญกับสินค้า คอลเลกชัน หรือบล็อกโพสต์ที่คุณเลือก เพิ่มรายละเอียดเกี่ยวกับความพร้อม สไตล์ หรือแม้กระทั่งเขียนรีวิว
" + }, + "text_style": { + "label": "รูปแบบ", + "options__1": { + "label": "เนื้อหา" + }, + "options__2": { + "label": "คำบรรยาย" + } + } + }, + "name": "ข้อความ" + }, + "button": { + "settings": { + "button_label": { + "label": "ใบจ่าหน้า", + "info": "ปล่อยว่างไว้เพื่อซ่อน", + "default": "ป้ายกำกับปุ่ม" + }, + "button_link": { + "label": "ลิงก์" + }, + "outline_button": { + "label": "รูปแบบเค้าโครง" + } + }, + "name": "ปุ่ม" + }, + "caption": { + "name": "คำบรรยาย", + "settings": { + "text": { + "label": "ข้อความ", + "default": "เพิ่มสโลแกน" + }, + "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": "ปานกลาง" + }, + "options__4": { + "label": "ใหญ่" + } + } + }, + "name": "รูปภาพที่แสดง" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "วันที่" + }, + "blog_show_author": { + "label": "ผู้เขียน" + } + }, + "name": "ชื่อ" + }, + "content": { + "name": "เนื้อหา" + }, + "share": { + "name": "แชร์", + "settings": { + "text": { + "label": "ข้อความ", + "default": "แชร์" + } + } + } + } + }, + "main-blog": { + "name": "บล็อกโพสต์", + "settings": { + "show_image": { + "label": "รูปภาพที่แสดง" + }, + "show_date": { + "label": "วันที่" + }, + "show_author": { + "label": "ผู้เขียน" + }, + "layout": { + "label": "เลย์เอาต์", + "options__1": { + "label": "กริด" + }, + "options__2": { + "label": "คอลลาจ" + } + }, + "image_height": { + "label": "ความสูงของรูปภาพ", + "options__1": { + "label": "ปรับตามรูปภาพ" + }, + "options__2": { + "label": "เล็ก" + }, + "options__3": { + "label": "ปานกลาง" + }, + "options__4": { + "label": "ใหญ่" + } + } + } + }, + "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": "รูปภาพ" + } + } + }, + "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/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "คอลัมน์" + }, + "columns_mobile": { + "label": "คอลัมน์ในมือถือ", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "เลย์เอาต์ตัวกรอง", + "options__1": { + "label": "แนวนอน" + }, + "options__2": { + "label": "แนวตั้ง" + }, + "options__3": { + "label": "แถบตัวเลือกแบบซ่อนได้" + } + }, + "quick_add": { + "label": "เพิ่มด่วน", + "options": { + "option_1": "ไม่มี", + "option_2": "มาตรฐาน", + "option_3": "หลายรายการ" + } + } + } + }, + "main-list-collections": { + "name": "หน้ารายการคอลเลกชัน", + "settings": { + "title": { + "label": "หัวเรื่อง", + "default": "คอลเลกชัน" + }, + "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": "สี่เหลี่ยมจัตุรัส" + } + }, + "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_help": { + "content": "แก้ไขโลโก้ของคุณใน [การตั้งค่าธีม](/editor?context=theme&category=logo)" + } + } + }, + "main-product": { + "name": "ข้อมูลสินค้า", + "blocks": { + "text": { + "settings": { + "text": { + "label": "ข้อความ", + "default": "บล็อกข้อความ" + }, + "text_style": { + "label": "รูปแบบ", + "options__1": { + "label": "เนื้อหา" + }, + "options__2": { + "label": "คำบรรยาย" + }, + "options__3": { + "label": "ตัวพิมพ์ใหญ่" + } + } + }, + "name": "ข้อความ" + }, + "variant_picker": { + "name": "รายการตัวเลือกสินค้า", + "settings": { + "picker_type": { + "label": "รูปแบบ", + "options__1": { + "label": "ดรอปดาวน์" + }, + "options__2": { + "label": "ทรงเม็ดยา" + } + }, + "swatch_shape": { + "label": "ตัวอย่าง", + "info": "ดูข้อมูลเพิ่มเติมเกี่ยวกับ [แผงสี](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) ในตัวเลือกสินค้า", + "options__1": { + "label": "วงกลม" + }, + "options__2": { + "label": "สี่เหลี่ยมจัตุรัส" + }, + "options__3": { + "label": "ไม่มี" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "ปุ่มชำระเงินแบบไดนามิก", + "info": "ลูกค้าจะเห็นตัวเลือกการชำระเงินที่ตนเองต้องการใช้ [ดูข้อมูลเพิ่มเติม](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": { + "text": { + "label": "ข้อความ", + "default": "แชร์" + } + }, + "name": "แชร์" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "แถวที่ย่อได้" + }, + "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": "ป้ายกำกับลิงก์", + "default": "ข้อความลิงก์แบบป๊อปอัพ" + }, + "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-pages#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": "หัวเรื่อง", + "default": "จับคู่ได้ดีกับ" + }, + "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": "แนวตั้ง" + } + }, + "heading": { + "info": "ปล่อยว่างไว้เพื่อซ่อนการจับคู่นี้" + }, + "icon_1": { + "label": "ไอคอน" + }, + "image_1": { + "label": "รูปภาพ" + }, + "heading_1": { + "label": "ส่วนหัว", + "default": "หัวเรื่อง" + }, + "icon_2": { + "label": "ไอคอน" + }, + "image_2": { + "label": "รูปภาพ" + }, + "heading_2": { + "label": "ส่วนหัว", + "default": "หัวเรื่อง" + }, + "icon_3": { + "label": "ไอคอน" + }, + "image_3": { + "label": "รูปภาพ" + }, + "heading_3": { + "label": "ส่วนหัว", + "default": "หัวเรื่อง" + }, + "pairing_1": { + "label": "การจับคู่ 1", + "info": "เลือกไอคอนหรือเพิ่มรูปภาพสำหรับการจับคู่แต่ละรายการ" + }, + "pairing_2": { + "label": "การจับคู่ 2" + }, + "pairing_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": "เกณฑ์สินค้าคงคลังต่ำ" + }, + "show_inventory_quantity": { + "label": "การตรวจนับสินค้าคงคลัง" + } + } + } + }, + "settings": { + "header": { + "content": "สื่อ" + }, + "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": "ใหญ่" + } + }, + "mobile_thumbnails": { + "label": "เลย์เอาต์สำหรับมือถือ", + "options__1": { + "label": "2 คอลัมน์" + }, + "options__2": { + "label": "แสดงรูปภาพขนาดย่อ" + }, + "options__3": { + "label": "ซ่อนรูปภาพขนาดย่อ" + } + }, + "media_position": { + "label": "ตำแหน่ง", + "options__1": { + "label": "ซ้าย" + }, + "options__2": { + "label": "ขวา" + } + }, + "image_zoom": { + "label": "ซูม", + "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": "บัตรบล็อก" + }, + "article_show_date": { + "label": "วันที่" + }, + "article_show_author": { + "label": "ผู้เขียน" + }, + "show_rating": { + "label": "การรีวิวสินค้า", + "info": "จำเป็นต้องมีแอปสำหรับการรีวิวสินค้า [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "คอลัมน์" + }, + "columns_mobile": { + "label": "คอลัมน์ในมือถือ", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "หลายคอลัมน์", + "settings": { + "title": { + "label": "หัวเรื่อง", + "default": "หลายคอลัมน์" + }, + "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": "ใบจ่าหน้า", + "default": "ป้ายกำกับปุ่ม", + "info": "ปล่อยว่างไว้เพื่อซ่อน" + }, + "button_link": { + "label": "ลิงก์" + }, + "swipe_on_mobile": { + "label": "ภาพสไลด์" + }, + "columns_desktop": { + "label": "คอลัมน์" + }, + "header_mobile": { + "content": "เลย์เอาต์สำหรับมือถือ" + }, + "columns_mobile": { + "label": "คอลัมน์", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "ส่วนหัว" + }, + "header_image": { + "content": "รูปภาพ" + }, + "header_layout": { + "content": "เลย์เอาต์" + }, + "header_button": { + "content": "ปุ่ม" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "รูปภาพ" + }, + "title": { + "label": "หัวเรื่อง", + "default": "คอลัมน์" + }, + "text": { + "label": "คำอธิบาย", + "default": "จับคู่ข้อความกับรูปภาพเพื่อให้ความสำคัญกับสินค้า คอลเลกชัน หรือบล็อกโพสต์ที่คุณเลือก เพิ่มรายละเอียดเกี่ยวกับความพร้อม สไตล์ หรือแม้กระทั่งเขียนรีวิว
" + }, + "link_label": { + "label": "ป้ายกำกับลิงก์", + "info": "ปล่อยว่างไว้เพื่อซ่อน" + }, + "link": { + "label": "ลิงก์" + } + }, + "name": "คอลัมน์" + } + }, + "presets": { + "name": "หลายคอลัมน์" + } + }, + "newsletter": { + "name": "การลงทะเบียนอีเมล", + "settings": { + "full_width": { + "label": "เต็มความกว้าง" + }, + "paragraph": { + "content": "เพิ่มการสมัครใช้งาน [โปรไฟล์ลูกค้า](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "สมัครรับข้อมูลของเราทางอีเมล" + } + }, + "name": "หัวเรื่อง" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "ข้อความ", + "default": "รับรู้ข่าวสารเกี่ยวกับคอลเลกชันใหม่และข้อเสนอพิเศษก่อนใคร
" + } + }, + "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": "ตำแหน่งเนื้อหา" + }, + "content_alignment": { + "options__1": { + "label": "ซ้าย" + }, + "options__2": { + "label": "กึ่งกลาง" + }, + "options__3": { + "label": "ขวา" + }, + "label": "การจัดวางเนื้อหา" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "พูดถึงแบรนด์ของคุณ" + } + }, + "name": "หัวเรื่อง" + }, + "text": { + "settings": { + "text": { + "label": "ข้อความ", + "default": "แชร์ข้อมูลเกี่ยวกับแบรนด์ของคุณให้ลูกค้าทราบ โดยอธิบายคุณสมบัติของสินค้า แชร์ประกาศ หรือกล่าวต้อนรับลูกค้าสู่ร้านค้าของคุณ
" + } + }, + "name": "ข้อความ" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "ใบจ่าหน้า", + "info": "ปล่อยว่างไว้เพื่อซ่อน", + "default": "ป้ายกำกับปุ่ม" + }, + "button_link_1": { + "label": "ลิงก์" + }, + "button_style_secondary_1": { + "label": "รูปแบบเค้าโครง" + }, + "button_label_2": { + "label": "ใบจ่าหน้า", + "info": "ปล่อยใบจ่าหน้าว่างไว้เพื่อซ่อน" + }, + "button_link_2": { + "label": "ลิงก์" + }, + "button_style_secondary_2": { + "label": "รูปแบบเค้าโครง" + }, + "header_button1": { + "content": "ปุ่ม 1" + }, + "header_button2": { + "content": "ปุ่ม 2" + } + }, + "name": "ปุ่ม" + }, + "caption": { + "name": "คำบรรยาย", + "settings": { + "text": { + "label": "ข้อความ", + "default": "เพิ่มสโลแกน" + }, + "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": "หัวเรื่อง", + "default": "วิดีโอ" + }, + "cover_image": { + "label": "รูปภาพหน้าปก" + }, + "video_url": { + "label": "URL", + "info": "ใช้ URL ของ YouTube หรือ Vimeo" + }, + "description": { + "label": "ข้อความกำกับวิดีโอ", + "info": "อธิบายวิดีโอสำหรับผู้ที่ใช้เครื่องอ่านหน้าจอ" + }, + "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": "ข้อความ", + "default": "บล็อกข้อความ" + }, + "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": "ทรงเม็ดยา" + } + }, + "swatch_shape": { + "label": "ตัวอย่าง", + "info": "ดูข้อมูลเพิ่มเติมเกี่ยวกับ [แผงสี](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) ในตัวเลือกสินค้า", + "options__1": { + "label": "วงกลม" + }, + "options__2": { + "label": "สี่เหลี่ยมจัตุรัส" + }, + "options__3": { + "label": "ไม่มี" + } + } + } + }, + "buy_buttons": { + "name": "ปุ่มซื้อ", + "settings": { + "show_dynamic_checkout": { + "label": "ปุ่มชำระเงินแบบไดนามิก", + "info": "ลูกค้าจะเห็นตัวเลือกการชำระเงินที่ตนเองต้องการใช้ [ดูข้อมูลเพิ่มเติม](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": "ข้อความ", + "default": "แชร์" + } + } + }, + "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": "สื่อ" + }, + "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/manage-customers)" + }, + "image": { + "label": "รูปภาพพื้นหลัง" + }, + "show_background_image": { + "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": "ปานกลาง" + }, + "options__4": { + "label": "ใหญ่" + } + }, + "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": "ปรากฏให้เห็นเมื่อแสดงกรอบเนื้อหา" + }, + "content_header": { + "content": "เนื้อหา" + } + }, + "blocks": { + "heading": { + "name": "หัวเรื่อง", + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "จะเปิดเร็วๆ นี้" + } + } + }, + "paragraph": { + "name": "ข้อความ", + "settings": { + "paragraph": { + "label": "ข้อความ", + "default": "รับรู้ข่าวสารการเปิดตัวของเราก่อนใคร
" + }, + "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": "อธิบายสไลด์โชว์สำหรับผู้ที่ใช้เครื่องอ่านหน้าจอ", + "default": "สไลด์โชว์เกี่ยวกับแบรนด์ของเรา" + } + }, + "blocks": { + "slide": { + "name": "สไลด์", + "settings": { + "image": { + "label": "รูปภาพ" + }, + "heading": { + "label": "หัวเรื่อง", + "default": "สไลด์รูปภาพ" + }, + "subheading": { + "label": "หัวเรื่องย่อย", + "default": "บอกเล่าเรื่องราวของแบรนด์คุณผ่านรูปภาพ" + }, + "button_label": { + "label": "ใบจ่าหน้า", + "info": "ปล่อยว่างไว้เพื่อซ่อน", + "default": "ป้ายกำกับปุ่ม" + }, + "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": "ขวาล่าง" + } + }, + "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": "ขวา" + } + }, + "header_button": { + "content": "ปุ่ม" + }, + "header_layout": { + "content": "เลย์เอาต์" + }, + "header_text": { + "content": "ข้อความ" + }, + "header_colors": { + "content": "สี" + } + } + } + }, + "presets": { + "name": "สไลด์โชว์" + } + }, + "collapsible_content": { + "name": "เนื้อหาที่ย่อได้", + "settings": { + "caption": { + "label": "คำบรรยาย" + }, + "heading": { + "label": "หัวเรื่อง", + "default": "เนื้อหาที่ย่อได้" + }, + "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": "รูปภาพไว้ลำดับที่สอง" + } + }, + "container_color_scheme": { + "label": "รูปแบบสีของคอนเทนเนอร์" + }, + "layout_header": { + "content": "เลย์เอาต์" + }, + "section_color_scheme": { + "label": "รูปแบบสีของส่วน" + } + }, + "blocks": { + "collapsible_row": { + "name": "แถวที่ย่อได้", + "settings": { + "heading": { + "label": "หัวเรื่อง", + "default": "แถวที่ย่อได้" + }, + "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": "เข้าสู่ระบบ", + "shop_login_button": { + "enable": "เปิดใช้การลงชื่อเข้าใช้ด้วย Shop" + } + }, + "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": "สามารถจัดการสินค้าที่เกี่ยวข้องได้ใน [แอป Search & Discovery](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)", + "default": "สินค้าที่คุณอาจจะชอบ" + }, + "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/customizing-themes/add-product-recommendations)" + }, + "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": "ความกว้าง" + }, + "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": "ตำแหน่ง" + }, + "image_layout": { + "options__1": { + "label": "สลับจากด้านซ้าย" + }, + "options__2": { + "label": "สลับจากด้านขวา" + }, + "options__3": { + "label": "จัดให้ชิดซ้าย" + }, + "options__4": { + "label": "จัดให้ชิดขวา" + }, + "label": "การจัดวาง" + }, + "container_color_scheme": { + "label": "รูปแบบสีของกรอบ" + }, + "mobile_content_alignment": { + "options__1": { + "label": "ซ้าย" + }, + "options__2": { + "label": "กึ่งกลาง" + }, + "options__3": { + "label": "ขวา" + }, + "label": "การจัดวางบนมือถือ" + }, + "header": { + "content": "รูปภาพ" + }, + "header_2": { + "content": "เนื้อหา" + }, + "header_3": { + "content": "สี" + } + }, + "blocks": { + "row": { + "name": "แถว", + "settings": { + "image": { + "label": "รูปภาพ" + }, + "caption": { + "label": "คำบรรยาย", + "default": "คำบรรยาย" + }, + "heading": { + "label": "หัวเรื่อง", + "default": "แถว" + }, + "text": { + "label": "ข้อความ", + "default": "จับคู่ข้อความกับรูปภาพเพื่อให้ความสำคัญกับสินค้า คอลเลกชัน หรือบล็อกโพสต์ที่คุณเลือก เพิ่มรายละเอียดเกี่ยวกับความพร้อม สไตล์ หรือแม้กระทั่งเขียนรีวิว
" + }, + "button_label": { + "label": "ป้ายกำกับปุ่ม", + "default": "ป้ายกำกับปุ่ม", + "info": "ปล่อยว่างไว้เพื่อซ่อน" + }, + "button_link": { + "label": "ลิงก์ปุ่ม" + } + } + } + }, + "presets": { + "name": "หลายแถว" + } + }, + "quick-order-list": { + "name": "รายการคำสั่งซื้อแบบด่วน", + "settings": { + "show_image": { + "label": "รูปภาพ" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "ตัวเลือกสินค้าต่อหน้า" + } + }, + "presets": { + "name": "รายการคำสั่งซื้อแบบด่วน" + } + } + } +} diff --git a/locales/tr.json b/locales/tr.json new file mode 100644 index 0000000..a4c30c1 --- /dev/null +++ b/locales/tr.json @@ -0,0 +1,530 @@ +{ + "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": "X'te paylaş", + "share_on_pinterest": "Pinterest'te pin ekle" + }, + "links": { + "twitter": "X (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", + "min_of": "Minimum {{ quantity }}", + "max_of": "Maksimum {{ quantity }}", + "in_cart_aria_label": "Adet (sepetteki: {{ quantity }})" + }, + "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" + }, + "nested_label": "{{ parent_title }} için {{ title }}", + "view_full_details": "Tüm ayrıntıları görüntüle", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "{{ price }}/adet" + }, + "product_variants": "Ürün varyasyonları", + "taxes_included": "Vergiler dahil.", + "duties_included": "Gümrük vergileri dahil.", + "duties_and_taxes_included": "Vergiler ve gümrük vergileri dahil." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Vergiler ve gümrük vergileri dahil. İndirimler ve kargo, ödeme sırasında hesaplanır.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Vergiler ve gümrük vergileri dahil. İndirimler ve kargo, ödeme sırasında hesaplanır.", + "taxes_included_shipping_at_checkout_with_policy_html": "Vergiler dahil. İndirimler ve kargo, ödeme sırasında hesaplanır.", + "taxes_included_shipping_at_checkout_without_policy": "Vergiler dahil. İndirimler ve kargo, ödeme sırasında hesaplanır.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Gümrük vergileri dahil. Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Gümrük vergileri dahil. Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır." + }, + "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", + "remove_all_single_item_confirmation": "1 ürün sepetten kaldırılsın mı?", + "min_error": "Bu ürün için minimum değer: {{ min }}", + "max_error": "Bu ürün için maksimum değer: {{ max }}", + "step_error": "Bu öğeyi yalnızca {{ step }} değerinde artışlarla ekleyebilirsiniz" + } + }, + "localization": { + "country_label": "Ülke/bölge", + "language_label": "Dil", + "update_language": "Dili güncelle", + "update_country": "Ülke/bölge bilgisini güncelle", + "search": "Ara", + "popular_countries_regions": "Popüler ülkeler/bölgeler", + "country_results_count": "{{ count }} ülke/bölge bulundu" + }, + "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", + "alternate_provider_separator": "veya" + }, + "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..8e5b5c1 --- /dev/null +++ b/locales/tr.schema.json @@ -0,0 +1,3401 @@ +{ + "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" + }, + "header__1": { + "content": "Başlıklar" + }, + "header__2": { + "content": "Gövde" + }, + "type_body_font": { + "label": "Yazı tipi" + }, + "heading_scale": { + "label": "Ölçek" + }, + "body_scale": { + "label": "Ölçek" + } + } + }, + "social-media": { + "name": "Sosyal medya", + "settings": { + "social_twitter_link": { + "label": "X/Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "Para birimi kodları" + }, + "paragraph": "Sepet ve ödeme ücretleri her zaman para birimi kodlarını gösterir" + } + }, + "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": { + "predictive_search_enabled": { + "label": "Arama önerileri" + }, + "predictive_search_show_vendor": { + "label": "Ürün satıcısı", + "info": "Arama önerileri etkin durumdayken gösterilir" + }, + "predictive_search_show_price": { + "label": "Ürün fiyatı", + "info": "Arama önerileri etkin durumdayken gösterilir" + } + } + }, + "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ı](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#variant-picker-block) göstermenin bir yoludur" + }, + "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": "Tür", + "drawer": { + "label": "Çekmece" + }, + "page": { + "label": "Sayfa" + }, + "notification": { + "label": "Açılır pencere bildirimi" + } + }, + "show_vendor": { + "label": "Satıcı" + }, + "show_cart_note": { + "label": "Sepet notu" + }, + "cart_drawer": { + "header": "Sepet çekmecesi", + "collection": { + "label": "Koleksiyon", + "info": "Sepet çekmecesi boş olduğunda gösterilir" + } + } + } + }, + "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": "Genişlik" + }, + "favicon": { + "label": "Favicon", + "info": "32 x 32 pikselde görüntüleniyor" + } + } + }, + "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": "Altbilginin marka bilgileri bloğunda görüntülenir" + } + } + }, + "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 kaldırma" + } + } + } + } + }, + "sections": { + "all": { + "padding": { + "section_padding_heading": "Dolgu", + "padding_top": "Üst", + "padding_bottom": "Alt" + }, + "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" + }, + "options__5": { + "label": "Çok ç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" + }, + "animation": { + "content": "Animasyonlar", + "image_behavior": { + "options__1": { + "label": "Yok" + }, + "options__2": { + "label": "Ortam içinde hareket" + }, + "label": "Animasyon", + "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", + "default": "Mağazamıza hoş geldiniz" + }, + "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:" + }, + "show_social": { + "label": "Sosyal medya simgeleri", + "info": "[Sosyal medya hesaplarını yönet](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Ülke/bölge seçici", + "info": "[Ülkeleri/bölgeleri yönet](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Dil seçici", + "info": "[Dilleri yönet](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "Yardımcı araçlar" + }, + "paragraph": { + "content": "Yalnızca geniş ekranlarda göster" + } + }, + "presets": { + "name": "Duyuru çubuğu" + } + }, + "collage": { + "name": "Kolaj", + "settings": { + "heading": { + "label": "Başlık", + "default": "Multimedya kolajı" + }, + "desktop_layout": { + "label": "Düzen", + "options__1": { + "label": "İlk büyük blok" + }, + "options__2": { + "label": "Son büyük blok" + } + }, + "mobile_layout": { + "label": "Mobil düzen", + "options__1": { + "label": "Kolaj" + }, + "options__2": { + "label": "Sütun" + } + }, + "card_styles": { + "label": "Kart stili", + "info": "Bireysel kart stillerini [tema ayarları](/editor?context=theme&category=product%20cards) bölümünde yönetin", + "options__1": { + "label": "Bireysel kart stilleri kullanın" + }, + "options__2": { + "label": "Hepsinin stilini ürün kartı şeklinde ayarla" + } + }, + "header_layout": { + "content": "Düzen" + } + }, + "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)", + "default": "Videoyu açıklayın" + } + } + } + }, + "presets": { + "name": "Kolaj" + } + }, + "collection-list": { + "name": "Koleksiyon listesi", + "settings": { + "title": { + "label": "Başlık", + "default": "Koleksiyonlar" + }, + "image_ratio": { + "label": "Görsel oranı", + "options__1": { + "label": "Görsele uyarla" + }, + "options__2": { + "label": "Portre" + }, + "options__3": { + "label": "Kare" + } + }, + "swipe_on_mobile": { + "label": "Döngü" + }, + "show_view_all": { + "label": "\"Tümünü görüntüle\" düğmesi", + "info": "Listede gösterilen daha fazla koleksiyon varsa görünür" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "header_mobile": { + "content": "Mobil düzen" + }, + "columns_mobile": { + "label": "Sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "Düzen" + } + }, + "blocks": { + "featured_collection": { + "name": "Koleksiyon", + "settings": { + "collection": { + "label": "Koleksiyon" + } + } + } + }, + "presets": { + "name": "Koleksiyon listesi" + } + }, + "contact-form": { + "name": "İletişim Formu", + "presets": { + "name": "İletişim formu" + }, + "settings": { + "title": { + "default": "İletişim formu", + "label": "Başlık" + } + } + }, + "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", + "default": "Blog gönderileri" + }, + "blog": { + "label": "Blog" + }, + "post_limit": { + "label": "Gönderi sayısı" + }, + "show_view_all": { + "label": "\"Tümünü görüntüle\" düğmesi", + "info": "Blogda gösterilenden daha fazla gönderi varsa görünür" + }, + "show_image": { + "label": "Öne çıkan görsel" + }, + "show_date": { + "label": "Tarih" + }, + "show_author": { + "label": "Yazar" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "layout_header": { + "content": "Düzen" + }, + "text_header": { + "content": "Metin" + } + }, + "presets": { + "name": "Blog gönderileri" + } + }, + "featured-collection": { + "name": "Öne çıkan koleksiyon", + "settings": { + "title": { + "label": "Başlık", + "default": "Öne çıkan koleksiyon" + }, + "collection": { + "label": "Koleksiyon" + }, + "products_to_show": { + "label": "Ürün sayısı" + }, + "show_view_all": { + "label": "\"Tümünü görüntüle\" düğmesi", + "info": "Koleksiyonda gösterilenden daha fazla ürün varsa görünür" + }, + "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ı" + }, + "show_rating": { + "label": "Ürün derecelendirmesi", + "info": "Derecelendirmeler için bir uygulama gereklidir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "description": { + "label": "Açıklama" + }, + "show_description": { + "label": "Yönetici panelinden 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": "Döngü" + }, + "full_width": { + "label": "Tam genişlikli ürünler" + }, + "header_mobile": { + "content": "Mobil düzen" + }, + "columns_mobile": { + "label": "Sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "swipe_on_mobile": { + "label": "Döngü" + }, + "enable_quick_buy": { + "label": "Hızlı ekle" + }, + "header_text": { + "content": "Metin" + }, + "header_collection": { + "content": "Koleksiyon düzeni" + } + }, + "presets": { + "name": "Öne çıkan koleksiyon" + } + }, + "footer": { + "name": "Altbilgi", + "blocks": { + "link_list": { + "name": "Menü", + "settings": { + "heading": { + "label": "Başlık", + "default": "Hızlı bağlantılar" + }, + "menu": { + "label": "Menü" + } + } + }, + "text": { + "name": "Metin rengi", + "settings": { + "heading": { + "label": "Başlık", + "default": "Başlık" + }, + "subtext": { + "label": "Alt metin", + "default": "İletişim bilgilerini, mağaza ayrıntılarını ve marka içeriklerini müşterilerinizle paylaşın.
" + } + } + }, + "brand_information": { + "name": "Marka bilgileri", + "settings": { + "paragraph": { + "content": "Marka ayarlarını [tema ayarları](/editor?context=theme&category=brand%20information) bölümünde yönetin" + }, + "show_social": { + "label": "Sosyal medya simgeleri", + "info": "[Sosyal medya hesaplarını yönet](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "E-posta kaydı" + }, + "newsletter_heading": { + "label": "Başlık", + "default": "E-posta listemize kaydolun" + }, + "header__1": { + "content": "E-posta kaydı", + "info": "Kayıt ekleme [müşteri profilleri](https://help.shopify.com/manual/customers/manage-customers)" + }, + "show_social": { + "label": "Sosyal medya simgeleri", + "info": "[Sosyal medya hesaplarını yönet](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "Ülke/bölge seçici", + "info": "[Ülkeleri/bölgeleri yönet](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Dil seçici", + "info": "[Dilleri yönet](/admin/settings/languages)" + }, + "payment_enable": { + "label": "Ödeme yöntemi simgeleri" + }, + "margin_top": { + "label": "Üst kenar boşluğu" + }, + "show_policy": { + "label": "Politika bağlantıları", + "info": "[Politikaları yönet](/admin/settings/legal)" + }, + "header__9": { + "content": "Yardımcı araçlar" + }, + "enable_follow_on_shop": { + "label": "Shop'ta takip edin", + "info": "Shop Pay etkinleştirilmelidir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-shop)" + } + } + }, + "header": { + "name": "Üstbilgi", + "settings": { + "logo_position": { + "label": "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" + }, + "margin_bottom": { + "label": "Alt kenar boşluğu" + }, + "menu_type_desktop": { + "label": "Menü türü", + "options__1": { + "label": "Açılır menü" + }, + "options__2": { + "label": "Mega menü" + }, + "options__3": { + "label": "Çekmece" + } + }, + "mobile_logo_position": { + "label": "Mobil logo konumu", + "options__1": { + "label": "Orta" + }, + "options__2": { + "label": "Sol" + } + }, + "logo_help": { + "content": "Logonuzu [tema ayarları](/editor?context=theme&category=logo) bölümünde düzenleyin" + }, + "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" + } + }, + "enable_country_selector": { + "label": "Ülke/bölge seçici", + "info": "[Ülkeleri/bölgeleri yönet](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "Dil seçici", + "info": "[Dilleri yönet](/admin/settings/languages)" + }, + "header__1": { + "content": "Renk" + }, + "menu_color_scheme": { + "label": "Menü renk şeması" + }, + "enable_customer_avatar": { + "label": "Müşteri hesabı avatarı", + "info": "Yalnızca müşteriler Shop ile oturum açtığında görünür [Müşteri hesaplarını yönet](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "Yardımcı araçlar" + } + } + }, + "image-banner": { + "name": "Görsel banner'ı", + "settings": { + "image": { + "label": "Görsel 1" + }, + "image_2": { + "label": "Görsel 2" + }, + "stack_images_on_mobile": { + "label": "Görselleri üst üste ekle" + }, + "show_text_box": { + "label": "Kapsayıcı" + }, + "image_overlay_opacity": { + "label": "Yer paylaşımı opaklığı" + }, + "show_text_below": { + "label": "Kapsayıcı" + }, + "image_height": { + "label": "Yükseklik", + "options__1": { + "label": "İlk görsele uyarla" + }, + "options__2": { + "label": "Küçük" + }, + "options__3": { + "label": "Orta" + }, + "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": "Konum" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "Hizalama" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "Hizalama" + }, + "mobile": { + "content": "Mobil düzen" + }, + "content": { + "content": "İçerik" + } + }, + "blocks": { + "heading": { + "name": "Başlık", + "settings": { + "heading": { + "label": "Başlık", + "default": "Görsel banner'ı" + } + } + }, + "text": { + "name": "Metin rengi", + "settings": { + "text": { + "label": "Metin", + "default": "Müşterilerle şablonlardaki banner görseller veya içerikler hakkında ayrıntıları paylaşın." + }, + "text_style": { + "options__1": { + "label": "Gövde" + }, + "options__2": { + "label": "Alt yazı" + }, + "options__3": { + "label": "Büyük harf" + }, + "label": "Stil" + } + } + }, + "buttons": { + "name": "Düğmeler", + "settings": { + "button_label_1": { + "label": "Etiket", + "info": "Gizlemek için boş bırakın", + "default": "Düğme etiketi" + }, + "button_link_1": { + "label": "Bağlantı" + }, + "button_style_secondary_1": { + "label": "Dış çizgi stili" + }, + "button_label_2": { + "label": "Etiket", + "info": "Gizlemek için boş bırakın", + "default": "Düğme etiketi" + }, + "button_link_2": { + "label": "Bağlantı" + }, + "button_style_secondary_2": { + "label": "Dış çizgi stili" + }, + "header_1": { + "content": "Düğme 1" + }, + "header_2": { + "content": "Düğme 2" + } + } + } + }, + "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": "Yükseklik", + "options__4": { + "label": "Büyük" + } + }, + "layout": { + "options__1": { + "label": "Önce görsel" + }, + "options__2": { + "label": "Görsel 2" + }, + "label": "Yerleşim" + }, + "desktop_image_width": { + "options__1": { + "label": "Küçük" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Büyük" + }, + "label": "Genişlik" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "Hizalama" + }, + "desktop_content_position": { + "options__1": { + "label": "Üst" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Alt" + }, + "label": "Konum" + }, + "content_layout": { + "options__1": { + "label": "Çakışma yok" + }, + "options__2": { + "label": "Çakışma" + }, + "label": "Düzen" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "Mobil hizalama" + }, + "header": { + "content": "İçerik" + }, + "header_colors": { + "content": "Renkler" + } + }, + "blocks": { + "heading": { + "name": "Başlık", + "settings": { + "heading": { + "label": "Başlık", + "default": "Metin içeren görsel" + } + } + }, + "text": { + "name": "Metin rengi", + "settings": { + "text": { + "label": "Metin", + "default": "Metni bir görselle eşleyerek seçtiğiniz ürüne, koleksiyona veya blog gönderisine dikkat çekin. Stok durumu, stil hakkındaki ayrıntıları ekleyin, hatta inceleme sağlayın.
" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Gövde" + }, + "options__2": { + "label": "Alt yazı" + } + } + } + }, + "button": { + "name": "Düğme", + "settings": { + "button_label": { + "label": "Etiket", + "info": "Gizlemek için boş bırakın", + "default": "Düğme etiketi" + }, + "button_link": { + "label": "Bağlantı" + }, + "outline_button": { + "label": "Dış çizgi stili" + } + } + }, + "caption": { + "name": "Alt yazı", + "settings": { + "text": { + "label": "Metin", + "default": "Reklam sloganı ekleyin" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Alt yazı" + }, + "options__2": { + "label": "Büyük harf" + } + }, + "caption_size": { + "label": "Beden", + "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": "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" + } + } + } + }, + "title": { + "name": "Başlık", + "settings": { + "blog_show_date": { + "label": "Tarih" + }, + "blog_show_author": { + "label": "Yazar" + } + } + }, + "content": { + "name": "İçerik" + }, + "share": { + "name": "Paylaş", + "settings": { + "text": { + "label": "Metin", + "default": "Paylaş" + } + } + } + } + }, + "main-blog": { + "name": "Blog gönderileri", + "settings": { + "show_image": { + "label": "Öne çıkan görsel" + }, + "show_date": { + "label": "Tarih" + }, + "show_author": { + "label": "Yazar" + }, + "layout": { + "label": "Düzen", + "options__1": { + "label": "Izgara" + }, + "options__2": { + "label": "Kolaj" + } + }, + "image_height": { + "label": "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" + } + } + } + }, + "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": "Koleksiyon bilgileri [yönetici panelinizde yönetilir](https://help.shopify.com/manual/products/collections/collection-layout)" + }, + "show_collection_description": { + "label": "Açıklama" + }, + "show_collection_image": { + "label": "Görsel" + } + } + }, + "main-collection-product-grid": { + "name": "Ürün ızgarası", + "settings": { + "products_per_page": { + "label": "Sayfa başına ürün" + }, + "enable_filtering": { + "label": "Filtreler", + "info": "Filtreleri [Search & Discovery uygulaması](https://help.shopify.com/manual/online-store/search-and-discovery/filters) ile özelleştirin" + }, + "enable_sorting": { + "label": "Sıralama" + }, + "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ı" + }, + "header__1": { + "content": "Filtreleme ve sıralama" + }, + "header__3": { + "content": "Ürün kartı" + }, + "enable_tags": { + "label": "Filtreler", + "info": "Filtreleri [Search & Discovery uygulaması](https://help.shopify.com/manual/online-store/search-and-discovery/filters) ile özelleştirin" + }, + "show_rating": { + "label": "Ürün derecelendirmesi", + "info": "Ürün derecelendirmeleri için bir uygulama gereklidir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "columns_mobile": { + "label": "Mobil sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "Filtre düzeni", + "options__1": { + "label": "Yatay" + }, + "options__2": { + "label": "Dikey" + }, + "options__3": { + "label": "Çekmece" + } + }, + "quick_add": { + "label": "Hızlı ekleme", + "options": { + "option_1": "Yok", + "option_2": "Standart", + "option_3": "Toplu" + } + } + } + }, + "main-list-collections": { + "name": "Koleksiyonlar listesi sayfası", + "settings": { + "title": { + "label": "Başlık", + "default": "Koleksiyonlar" + }, + "sort": { + "label": "Koleksiyonları sırala", + "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" + } + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "header_mobile": { + "content": "Mobil düzen" + }, + "columns_mobile": { + "label": "Mobil sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "main-page": { + "name": "Sayfa" + }, + "main-password-footer": { + "name": "Parola altbilgisi" + }, + "main-password-header": { + "name": "Parola üstbilgisi", + "settings": { + "logo_help": { + "content": "Logonuzu [tema ayarları](/editor?context=theme&category=logo) bölümünde düzenleyin" + } + } + }, + "main-product": { + "blocks": { + "text": { + "name": "Metin rengi", + "settings": { + "text": { + "label": "Metin", + "default": "Metin bloku" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Açılır liste" + }, + "options__2": { + "label": "Seçenekler" + } + }, + "swatch_shape": { + "label": "Numune parça", + "info": "Ürün seçeneklerinde [numune parçalar](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) hakkında daha fazla bilgi edinin.", + "options__1": { + "label": "Yuvarlak" + }, + "options__2": { + "label": "Kare" + }, + "options__3": { + "label": "Yok" + } + } + } + }, + "buy_buttons": { + "name": "Satın al düğmeleri", + "settings": { + "show_dynamic_checkout": { + "label": "Dinamik ödeme düğmeleri", + "info": "Müşteriler tercih ettikleri ödeme seçeneğini 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 kartı gönderme seçenekleri", + "info": "Müşteriler kişisel mesaj ekleyebilir ve gönderilme tarihini planlayabilir. [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": { + "text": { + "label": "Metin", + "default": "Paylaş" + } + } + }, + "collapsible_tab": { + "name": "Daraltılabilir satır", + "settings": { + "heading": { + "label": "Başlık", + "default": "Daraltılabilir satır" + }, + "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", + "default": "Açılır bağlantı metni" + }, + "page": { + "label": "Sayfa" + } + } + }, + "rating": { + "name": "Ürün puanı", + "settings": { + "paragraph": { + "content": "Ürün derecelendirmeleri için bir uygulama gereklidir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/theme-structure/page-types/product-pages#product-rating-block)" + } + } + }, + "complementary_products": { + "name": "Tamamlayıcı ürünler", + "settings": { + "paragraph": { + "content": "Tamamlayıcı ürünleri [Search & Discovery uygulamasında](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations) yönetin" + }, + "heading": { + "label": "Başlık", + "default": "Uygun eşleşmeler" + }, + "make_collapsible_row": { + "label": "Daraltılabilir satır" + }, + "icon": { + "info": "Daraltılabilir satır seçildiğinde gösterilir" + }, + "product_list_limit": { + "label": "Ürün sayısı" + }, + "products_per_page": { + "label": "Sayfa başına ürün sayısı" + }, + "pagination_style": { + "label": "Sayfalara ayırma", + "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ı ekle" + } + } + }, + "icon_with_text": { + "name": "Metin içeren simge", + "settings": { + "layout": { + "label": "Düzen", + "options__1": { + "label": "Yatay" + }, + "options__2": { + "label": "Dikey" + } + }, + "heading": { + "info": "Bu eşlemeyi gizlemek için boş bırakın" + }, + "icon_1": { + "label": "Simge" + }, + "image_1": { + "label": "Görsel" + }, + "heading_1": { + "label": "Başlık", + "default": "Başlık" + }, + "icon_2": { + "label": "Simge" + }, + "image_2": { + "label": "Görsel" + }, + "heading_2": { + "label": "Başlık", + "default": "Başlık" + }, + "icon_3": { + "label": "Simge" + }, + "image_3": { + "label": "Görsel" + }, + "heading_3": { + "label": "Başlık", + "default": "Başlık" + }, + "pairing_1": { + "label": "Eşleme 1", + "info": "Her eşleme için bir simge seçin veya bir görsel ekleyin" + }, + "pairing_2": { + "label": "Eşleme 2" + }, + "pairing_3": { + "label": "Eşleme 3" + } + } + }, + "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" + }, + "show_inventory_quantity": { + "label": "Envanter sayımı" + } + } + } + }, + "settings": { + "header": { + "content": "Medya" + }, + "enable_video_looping": { + "label": "Video döngüsü" + }, + "enable_sticky_info": { + "label": "Sabit içerik" + }, + "hide_variants": { + "label": "Varyasyon medyası seçildiğinde diğer varyasyon medyalarını gizle" + }, + "gallery_layout": { + "label": "Düzen", + "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": "Genişlik", + "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": "Konum", + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Sağ" + } + }, + "image_zoom": { + "label": "Yakınlaştırma", + "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": "Ekran yüksekliğiyle sınırla" + }, + "media_fit": { + "label": "Sığdır", + "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ı" + }, + "header__1": { + "content": "Ürün kartı" + }, + "header__2": { + "content": "Blog kartı" + }, + "article_show_date": { + "label": "Tarih" + }, + "article_show_author": { + "label": "Yazar" + }, + "show_rating": { + "label": "Ürün derecelendirmesi", + "info": "Ürün derecelendirmeleri için bir uygulama gereklidir. [Daha fazla bilgi edinin](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "columns_mobile": { + "label": "Mobil sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "Çoklu sütun", + "settings": { + "title": { + "label": "Başlık", + "default": "Çoklu sütun" + }, + "image_width": { + "label": "Genişlik", + "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": "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": "Etiket", + "default": "Düğme etiketi", + "info": "Gizlemek için boş bırakın" + }, + "button_link": { + "label": "Bağlantı" + }, + "swipe_on_mobile": { + "label": "Döngü" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "header_mobile": { + "content": "Mobil düzen" + }, + "columns_mobile": { + "label": "Sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "Başlık" + }, + "header_image": { + "content": "Görsel" + }, + "header_layout": { + "content": "Düzen" + }, + "header_button": { + "content": "Düğme" + } + }, + "blocks": { + "column": { + "name": "Sütun", + "settings": { + "image": { + "label": "Görsel" + }, + "title": { + "label": "Başlık", + "default": "Sütun" + }, + "text": { + "label": "Açıklama", + "default": "Metni bir görselle eşleyerek seçtiğiniz ürüne, koleksiyona veya blog gönderisine dikkat çekin. Stok durumu, stil hakkındaki ayrıntıları ekleyin, hatta inceleme sağlayın.
" + }, + "link_label": { + "label": "Bağlantı etiketi", + "info": "Gizlemek için boş bırakın" + }, + "link": { + "label": "Bağlantı" + } + } + } + }, + "presets": { + "name": "Çoklu sütun" + } + }, + "newsletter": { + "name": "E-posta kaydı", + "settings": { + "full_width": { + "label": "Tam genişlik" + }, + "paragraph": { + "content": "Kayıt ekleme [müşteri profilleri](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "name": "Başlık", + "settings": { + "heading": { + "label": "Başlık", + "default": "E-posta listemize kaydolun" + } + } + }, + "paragraph": { + "name": "Metin", + "settings": { + "paragraph": { + "label": "Metin", + "default": "Yeni koleksiyonlar ve özel tekliflerden ilk siz haberdar olun.
" + } + } + }, + "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": "Tam genişlik" + }, + "desktop_content_position": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "İçerik konumu" + }, + "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", + "default": "Markanızdan bahsedin" + } + } + }, + "text": { + "name": "Metin rengi", + "settings": { + "text": { + "label": "Metin", + "default": "Müşterilerinizle markanız hakkında bilgi paylaşın. Ürün açıklaması girin, duyuru paylaşın veya mağazanıza gelen müşterileri karşılayın.
" + } + } + }, + "buttons": { + "name": "Düğmeler", + "settings": { + "button_label_1": { + "label": "Etiket", + "info": "Gizlemek için boş bırakın", + "default": "Düğme etiketi" + }, + "button_link_1": { + "label": "Bağlantı" + }, + "button_style_secondary_1": { + "label": "Dış çizgi stili" + }, + "button_label_2": { + "label": "Etiket", + "info": "Gizlemek için etiketi boş bırakın" + }, + "button_link_2": { + "label": "Bağlantı" + }, + "button_style_secondary_2": { + "label": "Dış çizgi stili" + }, + "header_button1": { + "content": "Düğme 1" + }, + "header_button2": { + "content": "Düğme 2" + } + } + }, + "caption": { + "name": "Alt yazı", + "settings": { + "text": { + "label": "Metin rengi", + "default": "Reklam sloganı ekleyin" + }, + "text_style": { + "label": "Stil", + "options__1": { + "label": "Alt yazı" + }, + "options__2": { + "label": "Büyük harf" + } + }, + "caption_size": { + "label": "Beden", + "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", + "default": "Video" + }, + "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" + }, + "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": "Tam genişlik" + }, + "video": { + "label": "Video" + }, + "enable_video_looping": { + "label": "Video döngüsü" + }, + "header__1": { + "content": "Shopify'da barındırılan videolar" + }, + "header__2": { + "content": "URL'den video ekle" + }, + "header__3": { + "content": "Düzen" + }, + "paragraph": { + "content": "Shopify'da barındırılan bir video seçilmediğinde gösterilir" + } + }, + "presets": { + "name": "Video" + } + }, + "featured-product": { + "name": "Öne çıkan ürün", + "blocks": { + "text": { + "name": "Metin", + "settings": { + "text": { + "label": "Metin", + "default": "Metin bloku" + }, + "text_style": { + "label": "Stil", + "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": "Stil", + "options__1": { + "label": "Açılır menü" + }, + "options__2": { + "label": "Seçenekler" + } + }, + "swatch_shape": { + "label": "Numune parça", + "info": "Ürün seçeneklerinde [numune parçalar](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches) hakkında daha fazla bilgi edinin.", + "options__1": { + "label": "Yuvarlak" + }, + "options__2": { + "label": "Kare" + }, + "options__3": { + "label": "Yok" + } + } + } + }, + "buy_buttons": { + "name": "Satın al düğmeleri", + "settings": { + "show_dynamic_checkout": { + "label": "Dinamik ödeme düğmeleri", + "info": "Müşteriler tercih ettikleri ödeme seçeneğini 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", + "default": "Paylaş" + } + } + }, + "rating": { + "name": "Ürün puanı", + "settings": { + "paragraph": { + "content": "Ürün derecelendirmeleri için bir uygulama gereklidir. [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" + }, + "header": { + "content": "Medya" + }, + "enable_video_looping": { + "label": "Video döngüsü" + }, + "hide_variants": { + "label": "Masaüstünde seçimi kaldırılmış varyasyonların medyasını gizle" + }, + "media_position": { + "label": "Konum", + "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": "Kayıt ekleme [müşteri profilleri](https://help.shopify.com/manual/customers/manage-customers)" + }, + "image": { + "label": "Arka plan resmi" + }, + "show_background_image": { + "label": "Arka plan resmini göster" + }, + "show_text_box": { + "label": "Kapsayıcı" + }, + "image_overlay_opacity": { + "label": "Yer paylaşımı opaklığı" + }, + "show_text_below": { + "label": "Görselin altına metin ekle" + }, + "image_height": { + "label": "Yükseklik", + "options__1": { + "label": "Görsele uyarla" + }, + "options__2": { + "label": "Küçük" + }, + "options__3": { + "label": "Orta" + }, + "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": "Konum" + }, + "desktop_content_alignment": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "Hizalama" + }, + "header": { + "content": "Mobil düzen" + }, + "mobile_content_alignment": { + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + }, + "label": "Hizalama" + }, + "color_scheme": { + "info": "Kapsayıcı gösterildiğinde görünür." + }, + "content_header": { + "content": "İçerik" + } + }, + "blocks": { + "heading": { + "name": "Başlık", + "settings": { + "heading": { + "label": "Başlık", + "default": "Yakında açılıyor" + } + } + }, + "paragraph": { + "name": "Metin", + "settings": { + "paragraph": { + "label": "Metin", + "default": "Yeni çıkardıklarımızı ilk siz öğrenin.
" + }, + "text_style": { + "options__1": { + "label": "Gövde" + }, + "options__2": { + "label": "Alt yazı" + }, + "label": "Stil" + } + } + }, + "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": "Sayfa" + } + }, + "slide_height": { + "label": "Yükseklik", + "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", + "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": "Görselin altına metin ekle" + }, + "mobile": { + "content": "Mobil düzen" + }, + "accessibility": { + "content": "Erişilebilirlik", + "label": "Slayt gösterisi açıklaması", + "info": "Ekran okuyucu kullanan müşteriler için slayt gösterisini açıklayın", + "default": "Markamız hakkında slayt gösterisi" + } + }, + "blocks": { + "slide": { + "name": "Slayt", + "settings": { + "image": { + "label": "Görsel" + }, + "heading": { + "label": "Başlık", + "default": "Görsel slaytı" + }, + "subheading": { + "label": "Alt başlık", + "default": "Görsellerle marka öykünüzü anlatın" + }, + "button_label": { + "label": "Etiket", + "info": "Gizlemek için boş bırakın", + "default": "Düğme etiketi" + }, + "link": { + "label": "Bağlantı" + }, + "secondary_style": { + "label": "Dış çizgi stili" + }, + "box_align": { + "label": "İç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ğ" + } + }, + "show_text_box": { + "label": "Kapsayıcı" + }, + "text_alignment": { + "label": "İçerik hizalaması", + "option_1": { + "label": "Sol" + }, + "option_2": { + "label": "Orta" + }, + "option_3": { + "label": "Sağ" + } + }, + "image_overlay_opacity": { + "label": "Yer paylaşımı opaklığı" + }, + "text_alignment_mobile": { + "label": "Mobil içerik hizalaması", + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + } + }, + "header_button": { + "content": "Düğme" + }, + "header_layout": { + "content": "Düzen" + }, + "header_text": { + "content": "Metin" + }, + "header_colors": { + "content": "Renkler" + } + } + } + }, + "presets": { + "name": "Slayt gösterisi" + } + }, + "collapsible_content": { + "name": "Daraltılabilir içerik", + "settings": { + "caption": { + "label": "Alt yazı" + }, + "heading": { + "label": "Başlık", + "default": "Daraltılabilir içerik" + }, + "heading_alignment": { + "label": "Başlık hizalaması", + "options__1": { + "label": "Sol" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Sağ" + } + }, + "layout": { + "label": "Kapsayıcı", + "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ı" + }, + "open_first_collapsible_row": { + "label": "İlk satırı aç" + }, + "header": { + "content": "Görsel" + }, + "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": "Yerleşim", + "options__1": { + "label": "Önce görsel" + }, + "options__2": { + "label": "İkinci olarak görsel" + } + }, + "layout_header": { + "content": "Düzen" + }, + "section_color_scheme": { + "label": "Bölüm renk düzeni" + } + }, + "blocks": { + "collapsible_row": { + "name": "Daraltılabilir satır", + "settings": { + "heading": { + "label": "Başlık", + "default": "Daraltılabilir satır" + }, + "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", + "shop_login_button": { + "enable": "Shop ile giriş yapmayı etkinleştirin" + } + }, + "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": "Ürün sayısı" + }, + "columns_desktop": { + "label": "Sütunlar" + }, + "paragraph__1": { + "content": "İlgili ürünler [Search & Discovery uygulamasında](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations) yönetilebilir", + "default": "Şu ürünler de hoşunuza gidebilir:" + }, + "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ı" + }, + "show_rating": { + "label": "Ürün derecelendirmesi", + "info": "Ürün derecelendirmeleri için bir uygulama gereklidir. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/themes/customizing-themes/add-product-recommendations)" + }, + "columns_mobile": { + "label": "Mobil sütunlar", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "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": "Yükseklik" + }, + "desktop_image_width": { + "options__1": { + "label": "Küçük" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Büyük" + }, + "label": "Genişlik" + }, + "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": "Hizalama" + }, + "desktop_content_position": { + "options__1": { + "label": "Üst" + }, + "options__2": { + "label": "Orta" + }, + "options__3": { + "label": "Alt" + }, + "label": "Konum" + }, + "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": "Yerleşim" + }, + "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 hizalama" + }, + "header": { + "content": "Görsel" + }, + "header_2": { + "content": "İçerik" + }, + "header_3": { + "content": "Renkler" + } + }, + "blocks": { + "row": { + "name": "Satır", + "settings": { + "image": { + "label": "Görsel" + }, + "caption": { + "label": "Alt yazı", + "default": "Alt yazı" + }, + "heading": { + "label": "Başlık", + "default": "Satır" + }, + "text": { + "label": "Metin", + "default": "Metni bir görselle eşleyerek seçtiğiniz ürüne, koleksiyona veya blog gönderisine dikkat çekin. Stok durumu, stil hakkındaki ayrıntıları ekleyin, hatta inceleme sağlayın.
" + }, + "button_label": { + "label": "Düğme etiketi", + "default": "Düğme etiketi", + "info": "Gizlemek için boş bırakın" + }, + "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örseller" + }, + "show_sku": { + "label": "SKU'lar" + }, + "variants_per_page": { + "label": "Sayfa başına varyasyon" + } + }, + "presets": { + "name": "Hızlı sipariş listesi" + } + } + } +} diff --git a/locales/vi.json b/locales/vi.json new file mode 100644 index 0000000..75147cf --- /dev/null +++ b/locales/vi.json @@ -0,0 +1,530 @@ +{ + "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": "Chia sẻ trên X", + "share_on_pinterest": "Ghim trên Pinterest" + }, + "links": { + "twitter": "X (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", + "min_of": "Tối thiểu {{ quantity }}", + "max_of": "Tối đa {{ quantity }}", + "in_cart_aria_label": "Số lượng ({{ quantity }} trong giỏ hà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" + }, + "nested_label": "{{ title }} cho {{ parent_title }}", + "view_full_details": "Xem toàn bộ chi tiết", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "với giá {{ price }}/sản phẩm" + }, + "taxes_included": "Đã bao gồm thuế.", + "duties_included": "Đã bao gồm thuế nhập khẩu.", + "duties_and_taxes_included": "Đã bao gồm thuế và thuế nhập khẩu." + }, + "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.", + "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", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Đã bao gồm thuế và thuế nhập khẩu. Ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Đã bao gồm thuế và thuế nhập khẩu. Ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "taxes_included_shipping_at_checkout_with_policy_html": "Đã bao gồm thuế. Ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "taxes_included_shipping_at_checkout_without_policy": "Đã bao gồm thuế. Ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Đã bao gồm thuế nhập khẩu. Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Đã bao gồm thuế nhập khẩu. Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán." + }, + "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", + "remove_all_single_item_confirmation": "Xóa 1 mặt hàng khỏi giỏ hàng?", + "min_error": "Mặt hàng này có tối thiểu {{ min }}", + "max_error": "Mặt hàng này có tối đa {{ max }}", + "step_error": "Bạn chỉ có thể thêm mặt hàng này theo đơn vị giao dịch {{ step }}" + } + }, + "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", + "search": "Tìm kiếm", + "popular_countries_regions": "Quốc gia/khu vực phổ biến", + "country_results_count": "Đã tìm thấy {{ count }} 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", + "alternate_provider_separator": "hoặc" + }, + "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/zh-CN.json b/locales/zh-CN.json new file mode 100644 index 0000000..af68e9a --- /dev/null +++ b/locales/zh-CN.json @@ -0,0 +1,530 @@ +{ + "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": "在 X 上分享", + "share_on_pinterest": "固定在 Pinterest 上" + }, + "links": { + "twitter": "X (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": "查看数量规则", + "min_of": "最小值 {{ quantity }}", + "max_of": "最大值 {{ quantity }}", + "in_cart_aria_label": "数量(购物车中有 {{ quantity }} 件)" + }, + "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 }} 现已在图库视图中可用" + }, + "nested_label": "{{ title }},适用于 {{ parent_title }}", + "view_full_details": "查看完整详细信息", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "{{ price }}/件" + }, + "taxes_included": "已含税费。", + "duties_included": "已含关税。", + "duties_and_taxes_included": "已含关税和税费。" + }, + "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 }} 件此商品。", + "headings": { + "product": "产品", + "price": "价格", + "total": "总计", + "quantity": "数量", + "image": "产品图片" + }, + "update": "更新", + "login": { + "title": "已有账户?", + "paragraph_html": "登录以快速结账。" + }, + "estimated_total": "预计总额", + "new_estimated_total": "没有预计总额", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "已含关税和税费。结账时计算折扣和运费。", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "已含关税和税费。结账时计算折扣和运费。", + "taxes_included_shipping_at_checkout_with_policy_html": "已含税费。结账时计算折扣和运费。", + "taxes_included_shipping_at_checkout_without_policy": "已含税费。结账时计算折扣和运费。", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "已含关税。结账时计算税费、折扣和运费。", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "已含关税。结账时计算税费、折扣和运费。", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "结账时计算税费、折扣和运费。", + "taxes_at_checkout_shipping_at_checkout_without_policy": "结账时计算税费、折扣和运费。" + }, + "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": "取消", + "remove_all_single_item_confirmation": "从购物车中删除 1 件商品?", + "min_error": "此商品的最小值为 {{ min }}", + "max_error": "此商品的最大值为 {{ max }}", + "step_error": "您只能以 {{ step }} 为增量来添加此商品" + } + }, + "localization": { + "country_label": "国家/地区", + "language_label": "语言", + "update_language": "更新语言", + "update_country": "更新国家/地区", + "search": "搜索", + "popular_countries_regions": "热门国家/地区", + "country_results_count": "找到 {{ count }} 个国家/地区" + }, + "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": "提交", + "alternate_provider_separator": "或" + }, + "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..c73d06e --- /dev/null +++ b/locales/zh-CN.schema.json @@ -0,0 +1,3401 @@ +{ + "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": "字体" + }, + "header__1": { + "content": "标题" + }, + "header__2": { + "content": "正文" + }, + "type_body_font": { + "label": "字体" + }, + "heading_scale": { + "label": "缩放" + }, + "body_scale": { + "label": "缩放" + } + } + }, + "social-media": { + "name": "社交媒体", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "currency_code_enabled": { + "label": "货币代码" + }, + "paragraph": "购物车和结账价格将始终显示货币代码" + } + }, + "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": { + "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/manual/online-store/themes/theme-structure/page-types/product-pages#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": "宽度" + }, + "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": "特大" + }, + "options__5": { + "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": "图片形状" + }, + "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": "文本", + "default": "欢迎访问我们的商店" + }, + "text_alignment": { + "label": "文本对齐方式", + "options__1": { + "label": "左" + }, + "options__2": { + "label": "居中" + }, + "options__3": { + "label": "右" + } + }, + "link": { + "label": "链接" + } + }, + "name": "公告" + } + }, + "settings": { + "auto_rotate": { + "label": "自动循环展示公告" + }, + "change_slides_speed": { + "label": "更换时间间隔" + }, + "show_social": { + "label": "社交媒体图标", + "info": "[管理社交媒体账户](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "国家/地区选择器", + "info": "[管理国家/地区](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "语言选择器", + "info": "[管理语言](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "公共设施" + }, + "paragraph": { + "content": "只出现在大屏幕上" + } + }, + "presets": { + "name": "公告栏" + } + }, + "collage": { + "name": "拼贴画", + "settings": { + "heading": { + "label": "标题", + "default": "多媒体拼贴" + }, + "desktop_layout": { + "label": "布局", + "options__1": { + "label": "大块最先" + }, + "options__2": { + "label": "大块最后" + } + }, + "mobile_layout": { + "label": "移动布局", + "options__1": { + "label": "拼贴画" + }, + "options__2": { + "label": "列" + } + }, + "card_styles": { + "label": "卡样式", + "info": "在[模板设置](/editor?context=theme&category=product%20cards)中管理单独的卡样式", + "options__1": { + "label": "使用单独的卡样式" + }, + "options__2": { + "label": "将所有内容设置为产品卡样式" + } + }, + "header_layout": { + "content": "布局" + } + }, + "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)", + "default": "描述视频" + } + }, + "name": "视频" + } + }, + "presets": { + "name": "拼贴画" + } + }, + "collection-list": { + "name": "产品系列列表", + "settings": { + "title": { + "label": "标题", + "default": "产品系列" + }, + "image_ratio": { + "label": "图片比", + "options__1": { + "label": "适应图片" + }, + "options__2": { + "label": "纵向" + }, + "options__3": { + "label": "方形" + } + }, + "swipe_on_mobile": { + "label": "轮播" + }, + "show_view_all": { + "label": "“查看全部”按钮", + "info": "如果列表中的产品系列未全部显示,则显示" + }, + "columns_desktop": { + "label": "列" + }, + "header_mobile": { + "content": "移动设备布局" + }, + "columns_mobile": { + "label": "列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "布局" + } + }, + "blocks": { + "featured_collection": { + "settings": { + "collection": { + "label": "产品系列" + } + }, + "name": "产品系列" + } + }, + "presets": { + "name": "产品系列列表" + } + }, + "contact-form": { + "name": "联系表", + "presets": { + "name": "联系表" + }, + "settings": { + "title": { + "default": "联系表", + "label": "标题" + } + } + }, + "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": "标题", + "default": "博客文章" + }, + "blog": { + "label": "博客" + }, + "post_limit": { + "label": "帖子数量" + }, + "show_view_all": { + "label": "“查看全部”按钮", + "info": "如果博客中的帖子未全部显示,则显示" + }, + "show_image": { + "label": "配图" + }, + "show_date": { + "label": "日期" + }, + "show_author": { + "label": "作者" + }, + "columns_desktop": { + "label": "列" + }, + "layout_header": { + "content": "布局" + }, + "text_header": { + "content": "文本" + } + }, + "presets": { + "name": "博客文章" + } + }, + "featured-collection": { + "name": "特色产品系列", + "settings": { + "title": { + "label": "标题", + "default": "特色产品系列" + }, + "collection": { + "label": "产品系列" + }, + "products_to_show": { + "label": "产品数量" + }, + "show_view_all": { + "label": "“查看全部”按钮", + "info": "如果产品系列中的产品未全部显示,则显示" + }, + "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": "快速添加" + }, + "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": "轮播" + }, + "header_text": { + "content": "文本" + }, + "header_collection": { + "content": "产品系列布局" + } + }, + "presets": { + "name": "特色产品系列" + } + }, + "footer": { + "name": "页脚", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "标题", + "default": "快速链接" + }, + "menu": { + "label": "菜单" + } + }, + "name": "菜单" + }, + "text": { + "settings": { + "heading": { + "label": "标题", + "default": "标题" + }, + "subtext": { + "label": "子文本", + "default": "与您的客户分享联系信息、商店详细信息和品牌内容。
" + } + }, + "name": "文本" + }, + "brand_information": { + "name": "品牌信息", + "settings": { + "paragraph": { + "content": "在[模板设置](/editor?context=theme&category=brand%20information)中管理品牌信息" + }, + "show_social": { + "label": "社交媒体图标", + "info": "[管理社交媒体账户](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "电子邮件注册信息" + }, + "newsletter_heading": { + "label": "标题", + "default": "订阅我们的电子邮件" + }, + "header__1": { + "info": "注册添加[客户资料](https://help.shopify.com/manual/customers/manage-customers)", + "content": "电子邮件注册信息" + }, + "show_social": { + "label": "社交媒体图标", + "info": "[管理社交媒体账户](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "国家/地区选择器", + "info": "[管理国家/地区](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "语言选择器", + "info": "[管理语言](/admin/settings/languages)" + }, + "payment_enable": { + "label": "付款方式图标" + }, + "margin_top": { + "label": "上边距" + }, + "show_policy": { + "label": "政策链接", + "info": "[管理政策](/admin/settings/legal)" + }, + "header__9": { + "content": "公共设施" + }, + "enable_follow_on_shop": { + "label": "在 Shop 中关注", + "info": "必须启用 Shop Pay。[详细了解](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-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": "菜单类型", + "options__1": { + "label": "下拉菜单" + }, + "options__2": { + "label": "超级菜单" + }, + "options__3": { + "label": "抽屉" + } + }, + "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 尺寸" + } + }, + "enable_country_selector": { + "label": "国家/地区选择器", + "info": "[管理国家/地区](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "语言选择器", + "info": "[管理语言](/admin/settings/languages)" + }, + "header__1": { + "content": "颜色" + }, + "menu_color_scheme": { + "label": "菜单配色方案" + }, + "enable_customer_avatar": { + "label": "客户账户头像", + "info": "仅在客户使用 Shop 登录时显示。[管理客户账户](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "公共设施" + } + } + }, + "image-banner": { + "name": "图片横幅", + "settings": { + "image": { + "label": "图片 1" + }, + "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": "中" + }, + "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": "移动设备布局" + }, + "content": { + "content": "内容" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "标题", + "default": "图片横幅" + } + }, + "name": "标题" + }, + "text": { + "settings": { + "text": { + "label": "文本", + "default": "为客户提供有关模板中的横幅图片或内容的详细信息。" + }, + "text_style": { + "options__1": { + "label": "正文" + }, + "options__2": { + "label": "副标题" + }, + "options__3": { + "label": "大写" + }, + "label": "样式" + } + }, + "name": "文本" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "标签", + "info": "留空以隐藏", + "default": "按钮标签" + }, + "button_link_1": { + "label": "链接" + }, + "button_style_secondary_1": { + "label": "轮廓样式" + }, + "button_label_2": { + "label": "标签", + "info": "留空以隐藏", + "default": "按钮标签" + }, + "button_link_2": { + "label": "链接" + }, + "button_style_secondary_2": { + "label": "轮廓样式" + }, + "header_1": { + "content": "按钮 1" + }, + "header_2": { + "content": "按钮 2" + } + }, + "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": "放置" + }, + "desktop_image_width": { + "options__1": { + "label": "小" + }, + "options__2": { + "label": "中" + }, + "options__3": { + "label": "大" + }, + "label": "宽度" + }, + "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": "居中" + } + }, + "header": { + "content": "内容" + }, + "header_colors": { + "content": "颜色" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "标题", + "default": "带文本图片" + } + }, + "name": "标题" + }, + "text": { + "settings": { + "text": { + "label": "文本", + "default": "将文本与图片配对,以便将焦点置于您选择的产品、产品系列或博客文章。添加有关供货情况和样式的详细信息,甚至是提供评论。
" + }, + "text_style": { + "label": "样式", + "options__1": { + "label": "正文" + }, + "options__2": { + "label": "副标题" + } + } + }, + "name": "文本" + }, + "button": { + "settings": { + "button_label": { + "label": "标签", + "info": "留空以隐藏", + "default": "按钮标签" + }, + "button_link": { + "label": "链接" + }, + "outline_button": { + "label": "轮廓样式" + } + }, + "name": "按钮" + }, + "caption": { + "name": "字幕", + "settings": { + "text": { + "label": "文本", + "default": "添加标语" + }, + "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": "中" + }, + "options__4": { + "label": "大" + } + } + }, + "name": "配图" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "日期" + }, + "blog_show_author": { + "label": "作者" + } + }, + "name": "标题" + }, + "content": { + "name": "内容" + }, + "share": { + "name": "分享", + "settings": { + "text": { + "label": "文本", + "default": "分享" + } + } + } + } + }, + "main-blog": { + "name": "博客文章", + "settings": { + "show_image": { + "label": "配图" + }, + "show_date": { + "label": "日期" + }, + "show_author": { + "label": "作者" + }, + "layout": { + "label": "布局", + "options__1": { + "label": "网格" + }, + "options__2": { + "label": "拼贴" + } + }, + "image_height": { + "label": "图片高度", + "options__1": { + "label": "适应图片" + }, + "options__2": { + "label": "小" + }, + "options__3": { + "label": "中" + }, + "options__4": { + "label": "大" + } + } + } + }, + "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": "图片" + } + } + }, + "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/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "列" + }, + "columns_mobile": { + "label": "移动设备列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "筛选布局", + "options__1": { + "label": "水平" + }, + "options__2": { + "label": "垂直" + }, + "options__3": { + "label": "抽屉" + } + }, + "quick_add": { + "label": "快速添加", + "options": { + "option_1": "无", + "option_2": "标准", + "option_3": "批量" + } + } + } + }, + "main-list-collections": { + "name": "产品系列列表页面", + "settings": { + "title": { + "label": "标题", + "default": "产品系列" + }, + "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": "方形" + } + }, + "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_help": { + "content": "在[模板设置]](/editor?context=theme&category=logo)中编辑您的 logo" + } + } + }, + "main-product": { + "name": "产品信息", + "blocks": { + "text": { + "settings": { + "text": { + "label": "文本", + "default": "文本块" + }, + "text_style": { + "label": "样式", + "options__1": { + "label": "正文" + }, + "options__2": { + "label": "副标题" + }, + "options__3": { + "label": "大写" + } + } + }, + "name": "文本" + }, + "variant_picker": { + "name": "多属性选择器", + "settings": { + "picker_type": { + "label": "样式", + "options__1": { + "label": "下拉菜单" + }, + "options__2": { + "label": "椭圆形框" + } + }, + "swatch_shape": { + "label": "样本", + "info": "详细了解如何在产品选项上启用[样本](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)", + "options__1": { + "label": "圆形" + }, + "options__2": { + "label": "方形" + }, + "options__3": { + "label": "无" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "动态结账按钮", + "info": "客户将看到他们首选的支付方式。[详细了解](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": { + "text": { + "label": "文本", + "default": "分享" + } + }, + "name": "共享" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "标题", + "default": "可折叠行" + }, + "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": "链接标签", + "default": "弹窗链接文本" + }, + "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-pages#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": "标题", + "default": "适用于" + }, + "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": "垂直" + } + }, + "heading": { + "info": "留空以隐藏此配对" + }, + "icon_1": { + "label": "图标" + }, + "image_1": { + "label": "图片" + }, + "heading_1": { + "label": "标题", + "default": "标题" + }, + "icon_2": { + "label": "图标" + }, + "image_2": { + "label": "图片" + }, + "heading_2": { + "label": "标题", + "default": "标题" + }, + "icon_3": { + "label": "图标" + }, + "image_3": { + "label": "图片" + }, + "heading_3": { + "label": "标题", + "default": "标题" + }, + "pairing_1": { + "label": "配对 1", + "info": "为每个配对选择图标或添加图片" + }, + "pairing_2": { + "label": "配对 2" + }, + "pairing_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": "低库存阈值" + }, + "show_inventory_quantity": { + "label": "库存盘点" + } + } + } + }, + "settings": { + "header": { + "content": "媒体文件" + }, + "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": "大" + } + }, + "mobile_thumbnails": { + "label": "移动布局", + "options__1": { + "label": "2 列" + }, + "options__2": { + "label": "显示缩略图" + }, + "options__3": { + "label": "隐藏缩略图" + } + }, + "media_position": { + "label": "位置", + "options__1": { + "label": "左" + }, + "options__2": { + "label": "右" + } + }, + "image_zoom": { + "label": "缩放", + "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": "博客卡" + }, + "article_show_date": { + "label": "日期" + }, + "article_show_author": { + "label": "作者" + }, + "show_rating": { + "label": "产品评分", + "info": "需要一个应用来进行产品评分。[详细了解](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "列" + }, + "columns_mobile": { + "label": "移动设备列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "多列", + "settings": { + "title": { + "label": "标题", + "default": "多列" + }, + "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": "标签", + "default": "按钮标签", + "info": "留空以隐藏" + }, + "button_link": { + "label": "链接" + }, + "swipe_on_mobile": { + "label": "轮播" + }, + "columns_desktop": { + "label": "列" + }, + "header_mobile": { + "content": "移动设备布局" + }, + "columns_mobile": { + "label": "列", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "标题" + }, + "header_image": { + "content": "图片" + }, + "header_layout": { + "content": "布局" + }, + "header_button": { + "content": "按钮" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "图片" + }, + "title": { + "label": "标题", + "default": "列" + }, + "text": { + "label": "描述", + "default": "将文本与图片配对,以便将焦点置于您选择的产品、产品系列或博客文章。添加有关供货情况和样式的详细信息,甚至是提供评论。
" + }, + "link_label": { + "label": "链接标签", + "info": "留空以隐藏" + }, + "link": { + "label": "链接" + } + }, + "name": "列" + } + }, + "presets": { + "name": "多列" + } + }, + "newsletter": { + "name": "电子邮件注册信息", + "settings": { + "full_width": { + "label": "全宽" + }, + "paragraph": { + "content": "注册添加[客户资料](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "标题", + "default": "订阅我们的电子邮件" + } + }, + "name": "标题" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "文本", + "default": "成为第一批了解新产品系列和专属优惠的客户。
" + } + }, + "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": "内容位置" + }, + "content_alignment": { + "options__1": { + "label": "左" + }, + "options__2": { + "label": "居中" + }, + "options__3": { + "label": "右" + }, + "label": "内容对齐方式" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "标题", + "default": "介绍您的品牌" + } + }, + "name": "标题" + }, + "text": { + "settings": { + "text": { + "label": "文本", + "default": "与客户分享有关您品牌的信息。描述产品、发布公告或欢迎客户访问您的商店。
" + } + }, + "name": "文本" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "标签", + "info": "留空以隐藏", + "default": "按钮标签" + }, + "button_link_1": { + "label": "链接" + }, + "button_style_secondary_1": { + "label": "轮廓样式" + }, + "button_label_2": { + "label": "标签", + "info": "将标签留空以隐藏" + }, + "button_link_2": { + "label": "链接" + }, + "button_style_secondary_2": { + "label": "轮廓样式" + }, + "header_button1": { + "content": "按钮 1" + }, + "header_button2": { + "content": "按钮 2" + } + }, + "name": "按钮" + }, + "caption": { + "name": "字幕", + "settings": { + "text": { + "label": "文本", + "default": "添加标语" + }, + "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": "标题", + "default": "视频" + }, + "cover_image": { + "label": "封面图片" + }, + "video_url": { + "label": "URL", + "info": "使用 YouTube 或 Vimeo URL" + }, + "description": { + "label": "视频替代文本", + "info": "为使用屏幕阅读器的客户描述视频" + }, + "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": "文本", + "default": "文本块" + }, + "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": "椭圆形框" + } + }, + "swatch_shape": { + "label": "样本", + "info": "详细了解如何在产品选项上启用[样本](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)", + "options__1": { + "label": "圆形" + }, + "options__2": { + "label": "方形" + }, + "options__3": { + "label": "无" + } + } + } + }, + "buy_buttons": { + "name": "Buy Button", + "settings": { + "show_dynamic_checkout": { + "label": "动态结账按钮", + "info": "客户将看到他们首选的支付方式。[详细了解](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": "文本", + "default": "分享" + } + } + }, + "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": "媒体文件" + }, + "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/manage-customers)" + }, + "image": { + "label": "背景图片" + }, + "show_background_image": { + "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": "中" + }, + "options__4": { + "label": "大" + } + }, + "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": "在显示容器时可见。" + }, + "content_header": { + "content": "内容" + } + }, + "blocks": { + "heading": { + "name": "标题", + "settings": { + "heading": { + "label": "标题", + "default": "即将开业" + } + } + }, + "paragraph": { + "name": "文本", + "settings": { + "paragraph": { + "label": "文本", + "default": "成为第一批知道我们何时推出新内容的客户。
" + }, + "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": "为使用屏幕阅读器的客户描述幻灯片", + "default": "关于我们品牌的幻灯片" + } + }, + "blocks": { + "slide": { + "name": "幻灯片", + "settings": { + "image": { + "label": "图片" + }, + "heading": { + "label": "标题", + "default": "图片幻灯片" + }, + "subheading": { + "label": "副标题", + "default": "通过图片讲述您的品牌故事" + }, + "button_label": { + "label": "标签", + "info": "留空以隐藏", + "default": "按钮标签" + }, + "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": "右下方" + } + }, + "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": "右" + } + }, + "header_button": { + "content": "按钮" + }, + "header_layout": { + "content": "布局" + }, + "header_text": { + "content": "文本" + }, + "header_colors": { + "content": "颜色" + } + } + } + }, + "presets": { + "name": "幻灯片" + } + }, + "collapsible_content": { + "name": "可折叠内容", + "settings": { + "caption": { + "label": "字幕" + }, + "heading": { + "label": "标题", + "default": "可折叠内容" + }, + "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": "第二张图片" + } + }, + "container_color_scheme": { + "label": "容器配色方案" + }, + "layout_header": { + "content": "布局" + }, + "section_color_scheme": { + "label": "分区配色方案" + } + }, + "blocks": { + "collapsible_row": { + "name": "可折叠行", + "settings": { + "heading": { + "label": "标题", + "default": "可折叠行" + }, + "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": "登录", + "shop_login_button": { + "enable": "启用“使用 Shop 登录”" + } + }, + "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": "可在 [Search & Discovery 应用](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations) 中管理相关产品", + "default": "您可能还喜欢" + }, + "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/customizing-themes/add-product-recommendations)" + }, + "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": "宽度" + }, + "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": "位置" + }, + "image_layout": { + "options__1": { + "label": "从左侧交替" + }, + "options__2": { + "label": "从右侧交替" + }, + "options__3": { + "label": "左对齐" + }, + "options__4": { + "label": "右对齐" + }, + "label": "放置" + }, + "container_color_scheme": { + "label": "容器配色方案" + }, + "mobile_content_alignment": { + "options__1": { + "label": "左" + }, + "options__2": { + "label": "居中" + }, + "options__3": { + "label": "右" + }, + "label": "移动设备对齐方式" + }, + "header": { + "content": "图片" + }, + "header_2": { + "content": "内容" + }, + "header_3": { + "content": "颜色" + } + }, + "blocks": { + "row": { + "name": "行", + "settings": { + "image": { + "label": "图片" + }, + "caption": { + "label": "字幕", + "default": "大标题" + }, + "heading": { + "label": "标题", + "default": "行" + }, + "text": { + "label": "文本", + "default": "将文本与图片配对,以便将焦点置于您选择的产品、产品系列或博客文章。添加有关供货情况和样式的详细信息,甚至是提供评论。
" + }, + "button_label": { + "label": "按钮标签", + "default": "按钮标签", + "info": "留空以隐藏" + }, + "button_link": { + "label": "按钮链接" + } + } + } + }, + "presets": { + "name": "多行" + } + }, + "quick-order-list": { + "name": "快速订单列表", + "settings": { + "show_image": { + "label": "图片" + }, + "show_sku": { + "label": "SKU" + }, + "variants_per_page": { + "label": "每页多属性数" + } + }, + "presets": { + "name": "快速订单列表" + } + } + } +} diff --git a/locales/zh-TW.json b/locales/zh-TW.json new file mode 100644 index 0000000..b094eda --- /dev/null +++ b/locales/zh-TW.json @@ -0,0 +1,530 @@ +{ + "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": "分享至 X", + "share_on_pinterest": "在 Pinterest 上發布 Pin 貼文" + }, + "links": { + "twitter": "X (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": "檢視數量規則", + "min_of": "最少 {{ quantity }} 個", + "max_of": "最多 {{ quantity }} 個", + "in_cart_aria_label": "數量 (購物車中有 {{ quantity }} 個)" + }, + "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 }}" + }, + "nested_label": "適用於 {{ parent_title }} 的 {{ title }}", + "view_full_details": "查看完整資訊", + "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_range": "{{ minimum }} - {{ maximum }}", + "price_at_each_html": "{{ price }}/每項" + }, + "taxes_included": "已包含稅額。", + "duties_included": "已包含關稅。", + "duties_and_taxes_included": "已包含關稅和稅額。" + }, + "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 }} 項商品加入您的購物車。", + "headings": { + "product": "產品", + "price": "價格", + "total": "總計", + "quantity": "數量", + "image": "商品圖片" + }, + "update": "更新", + "login": { + "title": "是否有帳號?", + "paragraph_html": "登入以加速結帳。" + }, + "estimated_total": "估計總金額", + "new_estimated_total": "新的估計總金額", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "已包含關稅和稅額。結帳時計算折扣和運費。", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "已包含關稅和稅額。結帳時計算折扣和運費。", + "taxes_included_shipping_at_checkout_with_policy_html": "已包含稅額。結帳時計算折扣和運費。", + "taxes_included_shipping_at_checkout_without_policy": "已包含稅額。結帳時計算折扣和運費。", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "已包含關稅。結帳時計算稅額、折扣和運費。", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "已包含關稅。結帳時計算稅額、折扣和運費。", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "結帳時計算稅額、折扣和運費。", + "taxes_at_checkout_shipping_at_checkout_without_policy": "結帳時計算稅額、折扣和運費。" + }, + "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": "取消", + "remove_all_single_item_confirmation": "是否要從您的購物車移除 1 個品項?", + "min_error": "此品項下限為 {{ min }}", + "max_error": "此品項上限為 {{ max }}", + "step_error": "只能以 {{ step }} 為增量新增此品項" + } + }, + "localization": { + "country_label": "國家/地區", + "language_label": "語言", + "update_language": "更新語言", + "update_country": "更新國家/地區", + "search": "搜尋", + "popular_countries_regions": "常見國家/地區", + "country_results_count": "找到 {{ count }} 個國家/地區" + }, + "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": "提交", + "alternate_provider_separator": "或者" + }, + "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..ca70438 --- /dev/null +++ b/locales/zh-TW.schema.json @@ -0,0 +1,3401 @@ +{ + "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": "字型" + }, + "header__1": { + "content": "標題" + }, + "header__2": { + "content": "內文" + }, + "type_body_font": { + "label": "字型" + }, + "heading_scale": { + "label": "縮放比例" + }, + "body_scale": { + "label": "縮放比例" + } + } + }, + "social-media": { + "name": "社群媒體", + "settings": { + "social_twitter_link": { + "label": "X / Twitter", + "info": "https://x.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": { + "paragraph": "購物車和結帳價格一律顯示幣別代碼", + "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": { + "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/manual/online-store/themes/theme-structure/page-types/product-pages#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": "寬度" + }, + "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": "超大型" + }, + "options__5": { + "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": "圖片形狀" + }, + "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": "文字", + "default": "歡迎來到我們的商店" + }, + "text_alignment": { + "label": "文字對齊方式", + "options__1": { + "label": "靠左" + }, + "options__2": { + "label": "置中" + }, + "options__3": { + "label": "靠右" + } + }, + "link": { + "label": "連結" + } + }, + "name": "公告" + } + }, + "settings": { + "auto_rotate": { + "label": "自動輪播公告" + }, + "change_slides_speed": { + "label": "變更頻率" + }, + "show_social": { + "label": "社群媒體圖示", + "info": "[管理社群帳號](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "國家/地區選擇器", + "info": "[管理國家/地區](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "語言選擇器", + "info": "[管理語言](/admin/settings/languages)" + }, + "heading_utilities": { + "content": "公用事業" + }, + "paragraph": { + "content": "僅顯示於大型螢幕" + } + }, + "presets": { + "name": "公告列" + } + }, + "collage": { + "name": "拼貼", + "settings": { + "heading": { + "label": "標題", + "default": "多媒體拼貼" + }, + "desktop_layout": { + "label": "版面配置", + "options__1": { + "label": "大型區塊優先" + }, + "options__2": { + "label": "大型區塊最後" + } + }, + "mobile_layout": { + "label": "行動版版面配置", + "options__1": { + "label": "拼貼" + }, + "options__2": { + "label": "欄" + } + }, + "card_styles": { + "label": "卡片樣式", + "info": "前往[佈景主題設定](/editor?context=theme&category=product%20cards)管理個別卡片樣式", + "options__1": { + "label": "使用個別卡片樣式" + }, + "options__2": { + "label": "將所有項目樣式設為商品卡片" + } + }, + "header_layout": { + "content": "版面配置" + } + }, + "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)", + "default": "描述影片" + } + }, + "name": "影片" + } + }, + "presets": { + "name": "拼貼" + } + }, + "collection-list": { + "name": "商品系列清單", + "settings": { + "title": { + "label": "標題", + "default": "商品系列" + }, + "image_ratio": { + "label": "圖片比例", + "options__1": { + "label": "配合圖片" + }, + "options__2": { + "label": "縱向" + }, + "options__3": { + "label": "正方形" + } + }, + "swipe_on_mobile": { + "label": "輪播" + }, + "show_view_all": { + "label": "「檢視全部」按鈕", + "info": "當清單的商品系列數量超過顯示數量時將可見" + }, + "columns_desktop": { + "label": "欄" + }, + "header_mobile": { + "content": "行動版版面配置" + }, + "columns_mobile": { + "label": "欄", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_layout": { + "content": "版面配置" + } + }, + "blocks": { + "featured_collection": { + "settings": { + "collection": { + "label": "商品系列" + } + }, + "name": "商品系列" + } + }, + "presets": { + "name": "商品系列清單" + } + }, + "contact-form": { + "name": "聯絡表單", + "presets": { + "name": "聯絡表單" + }, + "settings": { + "title": { + "default": "聯絡表單", + "label": "標題" + } + } + }, + "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": "標題", + "default": "網誌文章" + }, + "blog": { + "label": "網誌" + }, + "post_limit": { + "label": "貼文數量" + }, + "show_view_all": { + "label": "「檢視全部」按鈕", + "info": "當網誌的貼文數量超過顯示數量時將可見" + }, + "show_image": { + "label": "主要圖片" + }, + "show_date": { + "label": "日期" + }, + "show_author": { + "label": "作者" + }, + "columns_desktop": { + "label": "欄" + }, + "layout_header": { + "content": "版面配置" + }, + "text_header": { + "content": "文字" + } + }, + "presets": { + "name": "網誌文章" + } + }, + "featured-collection": { + "name": "精選商品系列", + "settings": { + "title": { + "label": "標題", + "default": "精選商品系列" + }, + "collection": { + "label": "商品系列" + }, + "products_to_show": { + "label": "商品數量" + }, + "show_view_all": { + "label": "「檢視全部」按鈕", + "info": "當商品系列的商品數量超過顯示數量時將可見" + }, + "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": "快速新增" + }, + "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": "輪播" + }, + "header_text": { + "content": "文字" + }, + "header_collection": { + "content": "商品系列版面配置" + } + }, + "presets": { + "name": "精選商品系列" + } + }, + "footer": { + "name": "頁尾", + "blocks": { + "link_list": { + "settings": { + "heading": { + "label": "標題", + "default": "快速連結" + }, + "menu": { + "label": "選單" + } + }, + "name": "選單" + }, + "text": { + "settings": { + "heading": { + "label": "標題", + "default": "標題" + }, + "subtext": { + "label": "子文字", + "default": "與顧客分享聯絡資訊、商店的詳細資訊和品牌內容。
" + } + }, + "name": "文字" + }, + "brand_information": { + "name": "品牌資訊", + "settings": { + "paragraph": { + "content": "在[佈景主題設定](/editor?context=theme&category=brand%20information)管理品牌資訊" + }, + "show_social": { + "label": "社群媒體圖示", + "info": "[管理社群帳號](/editor?context=theme&category=social%20media)" + } + } + } + }, + "settings": { + "newsletter_enable": { + "label": "電子郵件訂閱" + }, + "newsletter_heading": { + "label": "標題", + "default": "訂閱我們的電子郵件" + }, + "header__1": { + "info": "註冊新增[顧客個檔](https://help.shopify.com/manual/customers/manage-customers)", + "content": "電子郵件訂閱" + }, + "show_social": { + "label": "社群媒體圖示", + "info": "[管理社群帳號](/editor?context=theme&category=social%20media)" + }, + "enable_country_selector": { + "label": "國家/地區選擇器", + "info": "[管理國家/地區](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "語言選擇器", + "info": "[管理語言](/admin/settings/languages)" + }, + "payment_enable": { + "label": "付款方式圖示" + }, + "margin_top": { + "label": "上方邊界" + }, + "show_policy": { + "label": "政策連結", + "info": "[管理政策](/admin/settings/legal)" + }, + "header__9": { + "content": "公用事業" + }, + "enable_follow_on_shop": { + "label": "在 Shop 上追蹤", + "info": "必須啟用 Shop Pay。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/customizing-themes/follow-on-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": "選單類型", + "options__1": { + "label": "下拉式選單" + }, + "options__2": { + "label": "大型選單" + }, + "options__3": { + "label": "隱藏式選單" + } + }, + "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": "永遠顯示,縮小標誌尺寸" + } + }, + "enable_country_selector": { + "label": "國家/地區選擇器", + "info": "[管理國家/地區](/admin/settings/markets)" + }, + "enable_language_selector": { + "label": "語言選擇器", + "info": "[管理語言](/admin/settings/languages)" + }, + "header__1": { + "content": "顏色" + }, + "menu_color_scheme": { + "label": "選單顏色配置" + }, + "enable_customer_avatar": { + "label": "顧客帳號大頭貼", + "info": "僅在顧客登入 Shop 時可見。[管理顧客帳號](/admin/settings/customer_accounts)" + }, + "header__utilities": { + "content": "公用事業" + } + } + }, + "image-banner": { + "name": "圖片橫幅", + "settings": { + "image": { + "label": "圖片 1" + }, + "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": "中" + }, + "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": "行動版版面配置" + }, + "content": { + "content": "內容" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "標題", + "default": "圖片橫幅" + } + }, + "name": "標題" + }, + "text": { + "settings": { + "text": { + "label": "文字", + "default": "提供顧客關於範本上橫幅圖片或內容的詳細資訊。" + }, + "text_style": { + "options__1": { + "label": "內文" + }, + "options__2": { + "label": "副標題" + }, + "options__3": { + "label": "大寫" + }, + "label": "樣式" + } + }, + "name": "文字" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "標籤", + "info": "留白以隱藏", + "default": "按鈕標籤" + }, + "button_link_1": { + "label": "連結" + }, + "button_style_secondary_1": { + "label": "外框樣式" + }, + "button_label_2": { + "label": "標籤", + "info": "留白以隱藏", + "default": "按鈕標籤" + }, + "button_link_2": { + "label": "連結" + }, + "button_style_secondary_2": { + "label": "外框樣式" + }, + "header_1": { + "content": "按鈕 1" + }, + "header_2": { + "content": "按鈕 2" + } + }, + "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": "位置" + }, + "desktop_image_width": { + "options__1": { + "label": "小" + }, + "options__2": { + "label": "中" + }, + "options__3": { + "label": "大" + }, + "label": "寬度" + }, + "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": "置中" + } + }, + "header": { + "content": "內容" + }, + "header_colors": { + "content": "顏色" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "標題", + "default": "附文字的圖片" + } + }, + "name": "標題" + }, + "text": { + "settings": { + "text": { + "label": "文字", + "default": "文字搭配圖片,以便強調特定商品、商品系列或網誌文章。您可以加上各種有關可用性、樣式的詳細資料,甚至可以提供使用心得。
" + }, + "text_style": { + "label": "樣式", + "options__1": { + "label": "內文" + }, + "options__2": { + "label": "副標題" + } + } + }, + "name": "文字" + }, + "button": { + "settings": { + "button_label": { + "label": "標籤", + "info": "留白以隱藏", + "default": "按鈕標籤" + }, + "button_link": { + "label": "連結" + }, + "outline_button": { + "label": "外框樣式" + } + }, + "name": "按鈕" + }, + "caption": { + "name": "說明", + "settings": { + "text": { + "label": "文字", + "default": "新增標語" + }, + "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": "中等" + }, + "options__4": { + "label": "大" + } + } + }, + "name": "主要圖片" + }, + "title": { + "settings": { + "blog_show_date": { + "label": "日期" + }, + "blog_show_author": { + "label": "作者" + } + }, + "name": "標題" + }, + "content": { + "name": "內容" + }, + "share": { + "name": "分享", + "settings": { + "text": { + "label": "文字", + "default": "分享" + } + } + } + } + }, + "main-blog": { + "name": "網誌文章", + "settings": { + "show_image": { + "label": "主要圖片" + }, + "show_date": { + "label": "日期" + }, + "show_author": { + "label": "作者" + }, + "layout": { + "label": "版面配置", + "options__1": { + "label": "網格" + }, + "options__2": { + "label": "拼貼" + } + }, + "image_height": { + "label": "圖片高度", + "options__1": { + "label": "配合圖片" + }, + "options__2": { + "label": "小" + }, + "options__3": { + "label": "中等" + }, + "options__4": { + "label": "大" + } + } + } + }, + "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": "圖片" + } + } + }, + "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/collection-pages#product-grid-show-product-rating)" + }, + "columns_desktop": { + "label": "欄" + }, + "columns_mobile": { + "label": "行動裝置欄", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "filter_type": { + "label": "篩選條件版面配置", + "options__1": { + "label": "水平" + }, + "options__2": { + "label": "垂直" + }, + "options__3": { + "label": "收銀機" + } + }, + "quick_add": { + "label": "快速新增", + "options": { + "option_1": "無", + "option_2": "標準", + "option_3": "大量" + } + } + } + }, + "main-list-collections": { + "name": "商品系列清單頁面", + "settings": { + "title": { + "label": "標題", + "default": "商品系列" + }, + "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": "正方形" + } + }, + "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_help": { + "content": "在[佈景主題設定](/editor?context=theme&category=logo)中編輯標誌" + } + } + }, + "main-product": { + "name": "產品資訊", + "blocks": { + "text": { + "settings": { + "text": { + "label": "文字", + "default": "文字區塊" + }, + "text_style": { + "label": "樣式", + "options__1": { + "label": "內文" + }, + "options__2": { + "label": "副標題" + }, + "options__3": { + "label": "大寫" + } + } + }, + "name": "文字" + }, + "variant_picker": { + "name": "子類選擇器", + "settings": { + "picker_type": { + "label": "樣式", + "options__1": { + "label": "下拉式選單" + }, + "options__2": { + "label": "圓角" + } + }, + "swatch_shape": { + "label": "色樣", + "info": "瞭解為商品選項啟用 [色樣](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)的詳情。", + "options__1": { + "label": "圓形" + }, + "options__2": { + "label": "正方形" + }, + "options__3": { + "label": "無" + } + } + } + }, + "buy_buttons": { + "settings": { + "show_dynamic_checkout": { + "label": "動態結帳按鈕", + "info": "顧客將看到自己偏好的付款選項。[瞭解詳情](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": { + "text": { + "label": "文字", + "default": "分享" + } + }, + "name": "分享" + }, + "collapsible_tab": { + "settings": { + "heading": { + "label": "標題", + "default": "可折疊的橫列" + }, + "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": "連結標籤", + "default": "彈出式視窗連結文字" + }, + "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-pages#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": "標題", + "default": "適合搭配" + }, + "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": "垂直" + } + }, + "heading": { + "info": "留白以隱藏此配對" + }, + "icon_1": { + "label": "圖示" + }, + "image_1": { + "label": "圖片" + }, + "heading_1": { + "label": "標題", + "default": "標題" + }, + "icon_2": { + "label": "圖示" + }, + "image_2": { + "label": "圖片" + }, + "heading_2": { + "label": "標題", + "default": "標題" + }, + "icon_3": { + "label": "圖示" + }, + "image_3": { + "label": "圖片" + }, + "heading_3": { + "label": "標題", + "default": "標題" + }, + "pairing_1": { + "label": "配對 1", + "info": "選擇一個圖示或為每個配對新增一張圖片" + }, + "pairing_2": { + "label": "配對 2" + }, + "pairing_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": "庫存過低門檻" + }, + "show_inventory_quantity": { + "label": "庫存數量" + } + } + } + }, + "settings": { + "header": { + "content": "多媒體檔案" + }, + "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": "大" + } + }, + "mobile_thumbnails": { + "label": "行動版版面配置", + "options__1": { + "label": "2 欄" + }, + "options__2": { + "label": "顯示縮圖" + }, + "options__3": { + "label": "隱藏縮圖" + } + }, + "media_position": { + "label": "位置", + "options__1": { + "label": "靠左" + }, + "options__2": { + "label": "靠右" + } + }, + "image_zoom": { + "label": "縮放", + "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": "網誌卡片" + }, + "article_show_date": { + "label": "日期" + }, + "article_show_author": { + "label": "作者" + }, + "show_rating": { + "label": "商品評價", + "info": "應用程式須有商品評價。[瞭解詳情](https://help.shopify.com/en/manual/online-store/themes/theme-structure/page-types/search-page)" + }, + "columns_desktop": { + "label": "欄" + }, + "columns_mobile": { + "label": "行動裝置欄", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + } + } + }, + "multicolumn": { + "name": "多列", + "settings": { + "title": { + "label": "標題", + "default": "多欄" + }, + "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": "標籤", + "default": "按鈕標籤", + "info": "留白以隱藏" + }, + "button_link": { + "label": "連結" + }, + "swipe_on_mobile": { + "label": "輪播" + }, + "columns_desktop": { + "label": "欄" + }, + "header_mobile": { + "content": "行動版版面配置" + }, + "columns_mobile": { + "label": "欄", + "options__1": { + "label": "1" + }, + "options__2": { + "label": "2" + } + }, + "header_text": { + "content": "標題" + }, + "header_image": { + "content": "圖片" + }, + "header_layout": { + "content": "版面配置" + }, + "header_button": { + "content": "按鈕" + } + }, + "blocks": { + "column": { + "settings": { + "image": { + "label": "圖片" + }, + "title": { + "label": "標題", + "default": "欄" + }, + "text": { + "label": "說明", + "default": "文字搭配圖片,以便強調特定商品、商品系列或網誌文章。您可以加上各種有關可用性、樣式的詳細資料,甚至可以提供使用心得。
" + }, + "link_label": { + "label": "連結標籤", + "info": "留白以隱藏" + }, + "link": { + "label": "連結" + } + }, + "name": "欄" + } + }, + "presets": { + "name": "多列" + } + }, + "newsletter": { + "name": "電子郵件訂閱", + "settings": { + "full_width": { + "label": "全寬度" + }, + "paragraph": { + "content": "註冊新增[顧客個檔](https://help.shopify.com/manual/customers/manage-customers)" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "標題", + "default": "訂閱我們的電子郵件" + } + }, + "name": "標題" + }, + "paragraph": { + "settings": { + "paragraph": { + "label": "文字", + "default": "搶先收到新商品系列和專屬優惠的消息。
" + } + }, + "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": "內容位置" + }, + "content_alignment": { + "options__1": { + "label": "靠左" + }, + "options__2": { + "label": "置中" + }, + "options__3": { + "label": "靠右" + }, + "label": "內容對齊" + } + }, + "blocks": { + "heading": { + "settings": { + "heading": { + "label": "標題", + "default": "描述您的品牌" + } + }, + "name": "標題" + }, + "text": { + "settings": { + "text": { + "label": "文字", + "default": "和顧客分享品牌資訊、描述商品、進行公告,或歡迎顧客光臨您的商店。
" + } + }, + "name": "文字" + }, + "buttons": { + "settings": { + "button_label_1": { + "label": "標籤", + "info": "留白以隱藏", + "default": "按鈕標籤" + }, + "button_link_1": { + "label": "連結" + }, + "button_style_secondary_1": { + "label": "外框樣式" + }, + "button_label_2": { + "label": "標籤", + "info": "將標籤留白以隱藏" + }, + "button_link_2": { + "label": "連結" + }, + "button_style_secondary_2": { + "label": "外框樣式" + }, + "header_button1": { + "content": "按鈕 1" + }, + "header_button2": { + "content": "按鈕 2" + } + }, + "name": "按鈕" + }, + "caption": { + "name": "說明", + "settings": { + "text": { + "label": "文字", + "default": "新增標語" + }, + "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": "標題", + "default": "影片" + }, + "cover_image": { + "label": "封面圖片" + }, + "video_url": { + "label": "網址", + "info": "使用 YouTube 或 Vimeo 網址" + }, + "description": { + "label": "影片替代文字", + "info": "為使用螢幕助讀程式的顧客說明影片內容" + }, + "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": "文字", + "default": "文字區塊" + }, + "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": "圓角" + } + }, + "swatch_shape": { + "label": "色樣", + "info": "瞭解為商品選項啟用 [色樣](https://help.shopify.com/en/manual/online-store/themes/theme-structure/theme-settings#options-with-swatches)的詳情。", + "options__1": { + "label": "圓形" + }, + "options__2": { + "label": "正方形" + }, + "options__3": { + "label": "無" + } + } + } + }, + "buy_buttons": { + "name": "購買按鈕", + "settings": { + "show_dynamic_checkout": { + "label": "動態結帳按鈕", + "info": "顧客將看到自己偏好的付款選項。[瞭解詳情](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": "文字", + "default": "分享" + } + } + }, + "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": "多媒體檔案" + }, + "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/manage-customers)" + }, + "image": { + "label": "背景圖片" + }, + "show_background_image": { + "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": "中" + }, + "options__4": { + "label": "大" + } + }, + "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": "顯示容器時可見。" + }, + "content_header": { + "content": "內容" + } + }, + "blocks": { + "heading": { + "name": "標題", + "settings": { + "heading": { + "label": "標題", + "default": "即將開張" + } + } + }, + "paragraph": { + "name": "文字", + "settings": { + "paragraph": { + "label": "文字", + "default": "搶先收到產品發佈消息。
" + }, + "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": "為使用螢幕助讀程式的顧客說明素材輪播內容", + "default": "我們的品牌素材輪播" + } + }, + "blocks": { + "slide": { + "name": "投影片", + "settings": { + "image": { + "label": "圖片" + }, + "heading": { + "label": "標題", + "default": "圖片投影片" + }, + "subheading": { + "label": "子標題", + "default": "用圖片講述您的品牌故事" + }, + "button_label": { + "label": "標籤", + "info": "留白以隱藏", + "default": "按鈕標籤" + }, + "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": "下方靠右" + } + }, + "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": "靠右" + } + }, + "header_button": { + "content": "按鈕" + }, + "header_layout": { + "content": "版面配置" + }, + "header_text": { + "content": "文字" + }, + "header_colors": { + "content": "顏色" + } + } + } + }, + "presets": { + "name": "素材輪播" + } + }, + "collapsible_content": { + "name": "可摺疊的內容", + "settings": { + "caption": { + "label": "說明" + }, + "heading": { + "label": "標題", + "default": "可折疊的內容" + }, + "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": "容器顏色配置" + }, + "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": "後顯示圖片" + } + }, + "layout_header": { + "content": "版面配置" + }, + "section_color_scheme": { + "label": "區段顏色配置" + } + }, + "blocks": { + "collapsible_row": { + "name": "可折疊的橫列", + "settings": { + "heading": { + "label": "標題", + "default": "可折疊的橫列" + }, + "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": "登入", + "shop_login_button": { + "enable": "啟用以 Shop 登入" + } + }, + "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": "可使用 [Search & Discovery 應用程式](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)管理相關商品", + "default": "您也可能喜歡" + }, + "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/customizing-themes/add-product-recommendations)" + }, + "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": "寬度" + }, + "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": "位置" + }, + "image_layout": { + "options__1": { + "label": "從左側開始交叉顯示" + }, + "options__2": { + "label": "從右側開始交叉顯示" + }, + "options__3": { + "label": "靠左對齊" + }, + "options__4": { + "label": "靠右對齊" + }, + "label": "位置" + }, + "container_color_scheme": { + "label": "容器顏色配置" + }, + "mobile_content_alignment": { + "options__1": { + "label": "靠左" + }, + "options__2": { + "label": "置中" + }, + "options__3": { + "label": "靠右" + }, + "label": "行動版對齊方式" + }, + "header": { + "content": "圖片" + }, + "header_2": { + "content": "內容" + }, + "header_3": { + "content": "顏色" + } + }, + "blocks": { + "row": { + "name": "列", + "settings": { + "image": { + "label": "圖片" + }, + "caption": { + "label": "說明", + "default": "說明文字" + }, + "heading": { + "label": "標題", + "default": "列" + }, + "text": { + "label": "文字", + "default": "文字搭配圖片,以便強調特定商品、商品系列或網誌文章。您可以加上各種有關可用性、樣式的詳細資料,甚至可以提供使用心得。
" + }, + "button_label": { + "label": "按鈕標籤", + "default": "按鈕標籤", + "info": "留白以隱藏" + }, + "button_link": { + "label": "按鈕連結" + } + } + } + }, + "presets": { + "name": "多列" + } + }, + "quick-order-list": { + "name": "快速訂單清單", + "settings": { + "show_image": { + "label": "圖片" + }, + "show_sku": { + "label": "存貨單位 (SKU)" + }, + "variants_per_page": { + "label": "每頁子類" + } + }, + "presets": { + "name": "快速訂單清單" + } + } + } +} diff --git a/sections/announcement-bar.liquid b/sections/announcement-bar.liquid new file mode 100644 index 0000000..0eff298 --- /dev/null +++ b/sections/announcement-bar.liquid @@ -0,0 +1,262 @@ +{{ '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 %} + + + +{% schema %} +{ + "name": "t:sections.announcement-bar.name", + "max_blocks": 12, + "class": "announcement-bar-section", + "enabled_on": { + "groups": ["header"] + }, + "settings": [ + { + "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": "color_scheme", + "id": "color_scheme", + "label": "t:sections.all.colors.label", + "default": "scheme-4" + }, + { + "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.heading_utilities.content" + }, + { + "type": "paragraph", + "content": "t:sections.announcement-bar.settings.paragraph.content" + }, + { + "type": "checkbox", + "id": "show_social", + "default": false, + "label": "t:sections.announcement-bar.settings.show_social.label", + "info": "t:sections.announcement-bar.settings.show_social.info" + }, + { + "type": "checkbox", + "id": "enable_country_selector", + "default": false, + "label": "t:sections.announcement-bar.settings.enable_country_selector.label", + "info": "t:sections.announcement-bar.settings.enable_country_selector.info" + }, + { + "type": "checkbox", + "id": "enable_language_selector", + "default": false, + "label": "t:sections.announcement-bar.settings.enable_language_selector.label", + "info": "t:sections.announcement-bar.settings.enable_language_selector.info" + } + ], + "blocks": [ + { + "type": "announcement", + "name": "t:sections.announcement-bar.blocks.announcement.name", + "settings": [ + { + "type": "text", + "id": "text", + "default": "t:sections.announcement-bar.blocks.announcement.settings.text.default", + "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 @@ + + +{% 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/bulk-quick-order-list.liquid b/sections/bulk-quick-order-list.liquid new file mode 100644 index 0000000..321c20b --- /dev/null +++ b/sections/bulk-quick-order-list.liquid @@ -0,0 +1,15 @@ +{{ 'quick-order-list.css' | asset_url | stylesheet_tag }} + + + +{% render 'quick-order-list', product: product, show_image: true, show_sku: true, is_modal: true %} + +{% schema %} +{ + "name": "t:sections.quick-order-list.name", + "limit": 1, + "enabled_on": { + "templates": ["product"] + } +} +{% 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..66fff0b --- /dev/null +++ b/sections/cart-icon-bubble.liquid @@ -0,0 +1,15 @@ +{% if cart == empty %} + {{ 'icon-cart-empty.svg' | inline_asset_content }} +{% else %} + {{ 'icon-cart.svg' | inline_asset_content }} +{% endif %} + +{{ 'templates.cart.cart' | t }} +{%- if cart != empty -%} +{{ item.product.vendor }}
+ {%- endif -%} +{{ item.selling_plan_allocation.selling_plan.name }}
+ {%- endif -%} ++ {{ 'templates.404.subtext' | t }} +
+| {{ 'customer.orders.order_number' | t }} | +{{ 'customer.orders.date' | t }} | +{{ 'customer.orders.payment_status' | t }} | ++ {{ 'customer.orders.fulfillment_status' | t }} + | +{{ 'customer.orders.total' | t }} | +
|---|---|---|---|---|
| + + {{ order.name }} + + | ++ {{ order.created_at | time_tag: format: 'date' }} + | ++ {{ order.financial_status_label }} + | ++ {{ order.fulfillment_status_label }} + | ++ {{ order.total_net_amount | money_with_currency }} + | +
{{ 'customer.orders.none' | t }}
+ {%- endif -%} + + {%- if paginate.pages > 1 -%} + {%- if paginate.parts.size > 0 -%} + + {%- endif -%} + {%- endif -%} + {% endpaginate %} ++ {{ 'customer.activate_account.subtext' | t }} +
+ {%- form 'activate_customer_password' -%} + {%- if form.errors -%} ++ {{ 'sections.cart.login.paragraph_html' | t: link: routes.account_login_url }} +
+ {%- endif -%} ++ {{ 'customer.recover_password.subtext' | t }} +
+ + {%- form 'recover_customer_password' -%} + {% assign recover_success = form.posted_successfully? %} ++ {{ 'customer.login_page.alternate_provider_separator' | t }} +
+ {%- endunless -%} +{{ '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.product' | t }} | +{{ 'customer.order.sku' | t }} | +{{ 'customer.order.price' | t }} | +{{ 'customer.order.quantity' | t }} | +{{ 'customer.order.total' | t }} | +
|---|---|---|---|---|
|
+
+ {%- if line_item.url != blank -%}
+ {{ line_item.title | escape }}
+ {%- else -%}
+
+ {{ line_item.title | escape }} + {%- 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 | escape }}
+
+ {%- 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 -%}
+
+ {%- 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 -%}
+
|
+ + {{ line_item.quantity }} + | +
+ {%- if line_item.original_line_price != line_item.final_line_price -%}
+
|
+
| + {{ 'customer.order.subtotal' | t }} + | ++ {{ order.line_items_subtotal_price | money }} + | +|||
| + {{ 'customer.order.discount' | t }} + + + {{- 'icon-discount.svg' | inline_asset_content -}} + + {{- discount_application.title | escape -}} + + | +
+
+ -{{ discount_application.total_allocated_amount | money }}
+
+
+ {{- 'icon-discount.svg' | inline_asset_content -}}
+
+ {{- discount_application.title | escape -}}
+
+
+ |
+ {%- endfor -%}
+ |||
| + {{ 'customer.order.shipping' | t }} ({{ shipping_method.title | escape }}) + | ++ {{ shipping_method.price | money }} + | +|||
| + {{ 'customer.order.tax' | t }} ({{ tax_line.title | escape }} + {{ tax_line.rate | times: 100 }}%) + | ++ {{ tax_line.price | money }} + | +|||
| {{ 'customer.order.total_duties' | t }} | ++ {{ order.total_duties | money }} + | +|||
| + {{ 'customer.order.total_refunded' | t }} + | ++ -{{ order.total_refunded_amount | money_with_currency }} + | +|||
| {{ 'customer.order.total' | t }} | ++ {{ order.total_net_amount | money_with_currency }} + | +|||
+ {{ 'customer.order.payment_status' | t }}: + {{ order.financial_status_label }} +
+ {{ order.billing_address | format_address }} ++ {{ 'customer.order.fulfillment_status' | t }}: + {{ order.fulfillment_status_label }} +
+ {{ order.shipping_address | format_address }} ++ {{- block.settings.text -}} +
+ {%- when 'title' -%} ++ {%- if product.selected_or_first_available_variant.inventory_management == 'shopify' -%} + {%- if product.selected_or_first_available_variant.inventory_quantity > 0 -%} + {%- if product.selected_or_first_available_variant.inventory_quantity + <= block.settings.inventory_threshold + -%} + + {{- 'icon-inventory-status.svg' | inline_asset_content -}} + + {%- if block.settings.show_inventory_quantity -%} + {{- + 'products.product.inventory_low_stock_show_count' + | t: quantity: product.selected_or_first_available_variant.inventory_quantity + -}} + {%- else -%} + {{- 'products.product.inventory_low_stock' | t -}} + {%- endif -%} + {%- else -%} + + {{- 'icon-inventory-status.svg' | inline_asset_content -}} + + {%- if block.settings.show_inventory_quantity -%} + {{- + 'products.product.inventory_in_stock_show_count' + | t: quantity: product.selected_or_first_available_variant.inventory_quantity + -}} + {%- else -%} + {{- 'products.product.inventory_in_stock' | t -}} + {%- endif -%} + {%- endif -%} + {%- else -%} + {%- if product.selected_or_first_available_variant.inventory_policy == 'continue' -%} + + {{- 'icon-inventory-status.svg' | inline_asset_content -}} + + {{- 'products.product.inventory_out_of_stock_continue_selling' | t -}} + {%- else -%} + + {{- 'icon-inventory-status.svg' | inline_asset_content -}} + + {{- 'products.product.inventory_out_of_stock' | t -}} + {%- endif -%} + {%- endif -%} + {%- endif -%} +
+ {%- when 'description' -%} + {%- if product.description != blank -%} ++ {{ 'products.product.sku' | t }}: + {{- product.selected_or_first_available_variant.sku -}} +
+ {%- when 'custom_liquid' -%} + {{ block.settings.custom_liquid }} + {%- when 'collapsible_tab' -%} ++ {{ 'customer.reset_password.subtext' | t }} +
+ {%- form 'reset_customer_password' -%} + {%- if form.errors -%} ++ {{ 'templates.search.results_with_count_and_term' | t: terms: search.terms, count: search.results_count }} +
+ {%- endif -%} + {%- endunless -%} + {%- if search.results_count == 0 and search.filters == empty -%} +{{ 'templates.search.no_results' | t: terms: search.terms }}
+ {%- endif -%} + {%- endif -%} ++ {{ + 'products.product.pickup_availability.pick_up_available_at_html' + | t: location_name: closest_location.location.name + }} +
+{{ closest_location.pick_up_time }}
+ + {%- else -%} ++ {{ + 'products.product.pickup_availability.pick_up_unavailable_at_html' + | t: location_name: closest_location.location.name + }} +
+ {%- if pick_up_availabilities.size > 1 -%} + + {%- endif -%} + {%- endif -%} ++ {%- 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 -%} + ++ {%- if availability.available -%} + + {{- 'icon-tick.svg' | inline_asset_content -}} + + {{ 'products.product.pickup_availability.pick_up_available' | t }}, + {{ availability.pick_up_time | downcase }} + {%- endif -%} +
+ + {%- assign address = availability.location.address -%} + + {{ address | format_address }} + + {%- if address.phone.size > 0 -%} +{{ address.phone }}
+ {%- endif -%} + ++ {{ query.styled_text }} +
+{{ collection.title | escape }}
+{{ page.title | escape }}
+{{ article.title | escape }}
+{{ product.title | escape }}
+ {%- if settings.predictive_search_show_price -%} + {% render 'price', product: product, use_variant: true, show_badges: false %} + {%- endif -%} +{{ page.title | escape }}
+{{ article.title | escape }}
+{{ section.settings.hero_subtitle }}
+ + {% if section.settings.show_stars and section.settings.star_text != blank %} +{{ section.settings.how_sub }}
+| {{ section.settings.feature_label }} | +QFlex | +{{ section.settings.col_b }} | +{{ section.settings.col_c }} | +{{ section.settings.col_d }} | +
|---|---|---|---|---|
| {{ block.settings.feature }} | +{{ block.settings.qflex }} | +{{ block.settings.b }} | +{{ block.settings.c }} | +{{ block.settings.d }} | +
{{ section.settings.final_sub }}
+ {% if section.settings.final_cta_url and section.settings.final_cta_text %} + {{ section.settings.final_cta_text }} + {% endif %} ++ {%- if article.excerpt.size > 0 -%} + {{ article.excerpt | strip_html | truncatewords: 30 }} + {%- else -%} + {{ article.content | strip_html | truncatewords: 30 }} + {%- endif -%} +
+ {%- endif -%} + + {%- endif -%} ++ {%- if article.excerpt.size > 0 -%} + {{ article.excerpt | strip_html | truncatewords: 30 }} + {%- else -%} + {{ article.content | strip_html | truncatewords: 30 }} + {%- endif -%} +
+ {%- endif -%} + + {%- endif -%} +{{ 'products.product.pickup_availability.unavailable' | t }}
+ ++ {{- card_collection.description | strip_html | truncatewords: 12 -}} + + {{- 'icon-arrow.svg' | inline_asset_content -}} + +
+ {%- endif -%} ++ {{- card_collection.description | strip_html | truncatewords: 12 -}} + + {{- 'icon-arrow.svg' | inline_asset_content -}} + +
+ {%- endif -%} +{{ 'sections.cart.login.title' | t }}
++ {{ 'sections.cart.login.paragraph_html' | t: link: routes.account_login_url }} +
+ {%- endif -%} +{{ 'sections.quick_order_list.total_items' | t }}
+{{ 'sections.quick_order_list.product_total' | t }}
+{{ 'gift_cards.issued.expired' | t }}
+ {%- endif -%} ++ {{ 'gift_cards.issued.expiration_date' | t: expires_on: gift_card_expiration_date }} +
+ {% endif %} +{{ 'gift_cards.issued.how_to_use_gift_card' | t }}
+{{ gift_card.code | format_code }}
+ + {%- if gift_card.pass_url -%} + +Be the first to know when we launch.<\/p>","text_style":"body"}},"email_form":{"type":"email_form","settings":{}}},"block_order":["heading","paragraph","email_form"],"settings":{"show_background_image":true,"image_overlay_opacity":0,"image_height":"medium","desktop_content_position":"middle-center","desktop_content_alignment":"center","show_text_box":true,"color_scheme":"scheme-1","mobile_content_alignment":"center","show_text_below":true}}},"order":["main"]} \ No newline at end of file diff --git a/templates/product.json b/templates/product.json new file mode 100644 index 0000000..ab5d598 --- /dev/null +++ b/templates/product.json @@ -0,0 +1 @@ +{"sections":{"main":{"type":"main-product","blocks":{"vendor":{"type":"text","settings":{"text":"{{ product.vendor }}","text_style":"uppercase"}},"title":{"type":"title","settings":{}},"price":{"type":"price","settings":{}},"variant_picker":{"type":"variant_picker","settings":{"picker_type":"button","swatch_shape":"circle"}},"quantity_selector":{"type":"quantity_selector","settings":{}},"buy_buttons":{"type":"buy_buttons","settings":{"show_dynamic_checkout":true,"show_gift_card_recipient":true}},"description":{"type":"description","settings":{}},"share":{"type":"share","settings":{"share_label":"Share"}}},"block_order":["vendor","title","price","variant_picker","quantity_selector","buy_buttons","description","share"],"settings":{"enable_sticky_info":true,"color_scheme":"scheme-1","media_size":"large","constrain_to_viewport":true,"media_fit":"contain","gallery_layout":"stacked","mobile_thumbnails":"hide","media_position":"left","image_zoom":"lightbox","hide_variants":true,"enable_video_looping":false,"padding_top":36,"padding_bottom":12}},"related-products":{"type":"related-products","settings":{"heading":"You may also like","heading_size":"h2","products_to_show":4,"columns_desktop":4,"columns_mobile":"2","color_scheme":"scheme-1","image_ratio":"square","image_shape":"default","show_secondary_image":true,"show_vendor":false,"show_rating":false,"padding_top":36,"padding_bottom":28}}},"order":["main","related-products"]} \ No newline at end of file diff --git a/templates/search.json b/templates/search.json new file mode 100644 index 0000000..5086517 --- /dev/null +++ b/templates/search.json @@ -0,0 +1,26 @@ +{ + "sections": { + "main": { + "type": "main-search", + "settings": { + "columns_desktop": 4, + "image_ratio": "adapt", + "image_shape": "default", + "show_secondary_image": false, + "show_vendor": false, + "show_rating": false, + "enable_filtering": true, + "filter_type": "horizontal", + "enable_sorting": true, + "article_show_date": true, + "article_show_author": false, + "columns_mobile": "2", + "padding_top": 36, + "padding_bottom": 36 + } + } + }, + "order": [ + "main" + ] +}
+ {{ '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 %} +