diff --git a/.vscode/settings.json b/.vscode/settings.json index 0689f6914bd..90abaf1f399 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,12 +1,15 @@ { "editor.formatOnSave": false, "[javascript]": { - "editor.formatOnSave": true + "editor.formatOnSave": true, + "editor.defaultFormatter": "esbenp.prettier-vscode" }, "[css]": { "editor.formatOnSave": true }, "[liquid]": { + "editor.defaultFormatter": "Shopify.theme-check-vscode", "editor.formatOnSave": true - } + }, + "themeCheck.checkOnSave": true } diff --git a/assets/base.css b/assets/base.css index 5c3a813b4fa..e758d3be7d5 100644 --- a/assets/base.css +++ b/assets/base.css @@ -3,6 +3,9 @@ --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, @@ -264,8 +267,14 @@ h5, 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) { @@ -689,16 +698,16 @@ summary::-webkit-details-marker { } *: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); + 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: 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); + outline: var(--focused-base-outline); + outline-offset: var(--focused-base-outline-offset); + box-shadow: var(--focused-base-box-shadow); } /* @@ -1989,7 +1998,7 @@ input[type='checkbox'] { position: relative; } -product-info .loading__spinner:not(.hidden) ~ *, +.product__info-container .loading__spinner:not(.hidden) ~ *, .quantity__rules-cart .loading__spinner:not(.hidden) ~ * { visibility: hidden; } @@ -2549,6 +2558,10 @@ product-info .loading__spinner:not(.hidden) ~ *, --shop-avatar-size: 2.8rem; } +account-icon { + display: flex; +} + /* Search */ menu-drawer + .header__search { display: none; @@ -3257,6 +3270,7 @@ details-disclosure > details { opacity: 1; animation: none; transition: none; + transform: none; } .scroll-trigger.scroll-trigger--design-mode.animate--slide-in { @@ -3454,3 +3468,101 @@ details-disclosure > details { --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/cart-drawer.js b/assets/cart-drawer.js index 048e43232d2..ad37f3cb871 100644 --- a/assets/cart-drawer.js +++ b/assets/cart-drawer.js @@ -9,6 +9,8 @@ class CartDrawer extends HTMLElement { setHeaderCartIconAccessibility() { const cartLink = document.querySelector('#cart-icon-bubble'); + if (!cartLink) return; + cartLink.setAttribute('role', 'button'); cartLink.setAttribute('aria-haspopup', 'dialog'); cartLink.addEventListener('click', (event) => { @@ -76,6 +78,8 @@ class CartDrawer extends HTMLElement { 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); }); diff --git a/assets/cart.js b/assets/cart.js index c9bcc076431..eef5f1f66d5 100644 --- a/assets/cart.js +++ b/assets/cart.js @@ -42,13 +42,48 @@ class CartItems extends HTMLElement { } } + 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, + document.activeElement.getAttribute('name'), + event.target.dataset.quantityVariantId + ); + } + } + onChange(event) { - this.updateQuantity( - event.target.dataset.index, - event.target.value, - document.activeElement.getAttribute('name'), - event.target.dataset.quantityVariantId - ); + this.validateQuantity(event); } onCartUpdate() { @@ -187,7 +222,7 @@ class CartItems extends HTMLElement { updateLiveRegions(line, message) { const lineItemError = document.getElementById(`Line-item-error-${line}`) || document.getElementById(`CartDrawer-LineItemError-${line}`); - if (lineItemError) lineItemError.querySelector('.cart-item__error-text').innerHTML = message; + if (lineItemError) lineItemError.querySelector('.cart-item__error-text').textContent = message; this.lineItemStatusElement.setAttribute('aria-hidden', true); diff --git a/assets/component-loading-spinner.css b/assets/component-loading-spinner.css deleted file mode 100644 index 6cc341a3ed7..00000000000 --- a/assets/component-loading-spinner.css +++ /dev/null @@ -1,61 +0,0 @@ -.loading__spinner { - position: absolute; - z-index: 1; - width: 1.8rem; -} - -.loading__spinner { - width: 1.8rem; - display: inline-block; -} - -.spinner { - animation: rotator 1.4s linear infinite; -} - -@keyframes rotator { - 0% { - transform: rotate(0deg); - } - 100% { - transform: rotate(270deg); - } -} - -.path { - stroke-dasharray: 280; - stroke-dashoffset: 0; - transform-origin: center; - stroke: rgb(var(--color-foreground)); - animation: dash 1.4s ease-in-out infinite; -} - -@media screen and (forced-colors: active) { - .path { - stroke: CanvasText; - } -} - -@keyframes dash { - 0% { - stroke-dashoffset: 280; - } - 50% { - stroke-dashoffset: 75; - transform: rotate(135deg); - } - 100% { - stroke-dashoffset: 280; - transform: rotate(450deg); - } -} - -.loading__spinner:not(.hidden) + .cart-item__price-wrapper, -.loading__spinner:not(.hidden) ~ cart-remove-button { - opacity: 50%; -} - -.loading__spinner:not(.hidden) ~ cart-remove-button { - pointer-events: none; - cursor: default; -} diff --git a/assets/component-slideshow.css b/assets/component-slideshow.css index 16af7857d8a..01dab0142bf 100644 --- a/assets/component-slideshow.css +++ b/assets/component-slideshow.css @@ -9,6 +9,7 @@ slideshow-component .slideshow.banner { flex-wrap: nowrap; margin: 0; gap: 0; + overflow-y: hidden; } .slideshow__slide { diff --git a/assets/component-volume-pricing.css b/assets/component-volume-pricing.css index 2729866c343..f23c9b21d68 100644 --- a/assets/component-volume-pricing.css +++ b/assets/component-volume-pricing.css @@ -19,7 +19,7 @@ volume-pricing li { justify-content: space-between; } -.volume-pricing-note { +div.volume-pricing-note { margin-top: -2.6rem; } diff --git a/assets/constants.js b/assets/constants.js index 01a2fb4e0ed..8c405e63e66 100644 --- a/assets/constants.js +++ b/assets/constants.js @@ -3,6 +3,7 @@ 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/global.js b/assets/global.js index e4324460f8c..ce13bf6514a 100644 --- a/assets/global.js +++ b/assets/global.js @@ -6,6 +6,68 @@ function getFocusableElements(container) { ); } +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')); @@ -580,6 +642,38 @@ class ModalDialog extends HTMLElement { } 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(); @@ -960,56 +1054,36 @@ customElements.define('slideshow-component', SlideshowComponent); class VariantSelects extends HTMLElement { constructor() { super(); - this.addEventListener('change', this.onVariantChange); - } - - onVariantChange(event) { - this.updateOptions(); - this.updateMasterId(); - this.updateSelectedSwatchValue(event); - this.toggleAddButton(true, '', false); - this.updatePickupAvailability(); - this.removeErrorMessage(); - this.updateVariantStatuses(); - - if (!this.currentVariant) { - this.toggleAddButton(true, '', true); - this.setUnavailable(); - } else { - this.updateURL(); - this.updateVariantInput(); - this.renderProductInfo(); - this.updateShareUrl(); - } } - updateOptions() { - this.options = Array.from(this.querySelectorAll('select, fieldset'), (element) => { - if (element.tagName === 'SELECT') { - return element.value; - } - if (element.tagName === 'FIELDSET') { - return Array.from(element.querySelectorAll('input')).find((radio) => radio.checked)?.value; - } - }); - } - - updateMasterId() { - this.currentVariant = this.getVariantData().find((variant) => { - return !variant.options - .map((option, index) => { - return this.options[index] === option; - }) - .includes(false); + 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, + }, + }); }); } - updateSelectedSwatchValue({ target }) { - const { name, value, tagName } = target; + 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 = this.querySelector(`[data-selected-dropdown-swatch="${name}"] > .swatch`); + const selectedDropdownSwatchValue = target + .closest('.product-form__input') + .querySelector('[data-selected-value] > .swatch'); if (!selectedDropdownSwatchValue) return; if (swatchValue) { selectedDropdownSwatchValue.style.setProperty('--swatch--background', swatchValue); @@ -1024,338 +1098,171 @@ class VariantSelects extends HTMLElement { target.selectedOptions[0].dataset.optionSwatchFocalPoint || 'unset' ); } else if (tagName === 'INPUT' && target.type === 'radio') { - const selectedSwatchValue = this.querySelector(`[data-selected-swatch-value="${name}"]`); + const selectedSwatchValue = target.closest(`.product-form__input`).querySelector('[data-selected-value]'); if (selectedSwatchValue) selectedSwatchValue.innerHTML = value; } } - updateURL() { - if (!this.currentVariant || this.dataset.updateUrl === 'false') return; - window.history.replaceState({}, '', `${this.dataset.url}?variant=${this.currentVariant.id}`); - } - - updateShareUrl() { - const shareButton = document.getElementById(`Share-${this.dataset.section}`); - if (!shareButton || !shareButton.updateUrl) return; - shareButton.updateUrl(`${window.shopUrl}${this.dataset.url}?variant=${this.currentVariant.id}`); - } - - updateVariantInput() { - const productForms = document.querySelectorAll( - `#product-form-${this.dataset.section}, #product-form-installment-${this.dataset.section}` - ); - productForms.forEach((productForm) => { - const input = productForm.querySelector('input[name="id"]'); - input.value = this.currentVariant.id; - input.dispatchEvent(new Event('change', { bubbles: true })); - }); + getInputForEventTarget(target) { + return target.tagName === 'SELECT' ? target.selectedOptions[0] : target; } - updateVariantStatuses() { - const selectedOptionOneVariants = this.variantData.filter( - (variant) => this.querySelector(':checked').value === variant.option1 + get selectedOptionValues() { + return Array.from(this.querySelectorAll('select option[selected], fieldset input:checked')).map( + ({ dataset }) => dataset.optionValueId ); - const inputWrappers = [...this.querySelectorAll('.product-form__input')]; - inputWrappers.forEach((option, index) => { - if (index === 0) return; - const optionInputs = [...option.querySelectorAll('input[type="radio"], option')]; - const previousOptionSelected = inputWrappers[index - 1].querySelector(':checked').value; - const availableOptionInputsValue = selectedOptionOneVariants - .filter((variant) => variant.available && variant[`option${index}`] === previousOptionSelected) - .map((variantOption) => variantOption[`option${index + 1}`]); - this.setInputAvailability(optionInputs, availableOptionInputsValue); - }); - } - - setInputAvailability(elementList, availableValuesList) { - elementList.forEach((element) => { - const value = element.getAttribute('value'); - const availableElement = availableValuesList.includes(value); - - if (element.tagName === 'INPUT') { - element.classList.toggle('disabled', !availableElement); - } else if (element.tagName === 'OPTION') { - element.innerText = availableElement - ? value - : window.variantStrings.unavailable_with_option.replace('[value]', value); - } - }); } +} - updatePickupAvailability() { - const pickUpAvailability = document.querySelector('pickup-availability'); - if (!pickUpAvailability) return; - - if (this.currentVariant && this.currentVariant.available) { - pickUpAvailability.fetchAvailability(this.currentVariant.id); - } else { - pickUpAvailability.removeAttribute('available'); - pickUpAvailability.innerHTML = ''; - } - } +customElements.define('variant-selects', VariantSelects); - removeErrorMessage() { - const section = this.closest('section'); - if (!section) return; +class ProductRecommendations extends HTMLElement { + observer = undefined; - const productForm = section.querySelector('product-form'); - if (productForm) productForm.handleErrorMessage(); + constructor() { + super(); } - updateMedia(html) { - const mediaGallerySource = document.querySelector(`[id^="MediaGallery-${this.dataset.section}"] ul`); - const mediaGalleryDestination = html.querySelector(`[id^="MediaGallery-${this.dataset.section}"] ul`); - - const refreshSourceData = () => { - 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(); - } - }); - } - - if (this.currentVariant.featured_media) { - document - .querySelector(`[id^="MediaGallery-${this.dataset.section}"]`) - ?.setActiveMedia?.(`${this.dataset.section}-${this.currentVariant.featured_media.id}`); - } - - // update media modal - const modalContent = document.querySelector(`#ProductModal-${this.dataset.section} .product-media-modal__content`); - const newModalContent = html.querySelector(`product-modal`); - if (modalContent && newModalContent) modalContent.innerHTML = newModalContent.innerHTML; + 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); } - renderProductInfo() { - const requestedVariantId = this.currentVariant.id; - const sectionId = this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section; - - fetch( - `${this.dataset.url}?variant=${requestedVariantId}§ion_id=${ - this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section - }` - ) + loadRecommendations(productId) { + fetch(`${this.dataset.url}&product_id=${productId}§ion_id=${this.dataset.sectionId}`) .then((response) => response.text()) - .then((responseText) => { - // prevent unnecessary ui changes from abandoned selections - if (this.currentVariant.id !== requestedVariantId) return; - - const html = new DOMParser().parseFromString(responseText, 'text/html'); - const destination = document.getElementById(`price-${this.dataset.section}`); - const source = html.getElementById( - `price-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}` - ); - const skuSource = html.getElementById( - `Sku-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}` - ); - const skuDestination = document.getElementById(`Sku-${this.dataset.section}`); - const inventorySource = html.getElementById( - `Inventory-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}` - ); - const inventoryDestination = document.getElementById(`Inventory-${this.dataset.section}`); - - const volumePricingSource = html.getElementById( - `Volume-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}` - ); - - this.updateMedia(html); - - const pricePerItemDestination = document.getElementById(`Price-Per-Item-${this.dataset.section}`); - const pricePerItemSource = html.getElementById( - `Price-Per-Item-${this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section}` - ); - - const volumePricingDestination = document.getElementById(`Volume-${this.dataset.section}`); - const qtyRules = document.getElementById(`Quantity-Rules-${this.dataset.section}`); - const volumeNote = document.getElementById(`Volume-Note-${this.dataset.section}`); + .then((text) => { + const html = document.createElement('div'); + html.innerHTML = text; + const recommendations = html.querySelector('product-recommendations'); - if (volumeNote) volumeNote.classList.remove('hidden'); - if (volumePricingDestination) volumePricingDestination.classList.remove('hidden'); - if (qtyRules) qtyRules.classList.remove('hidden'); - - if (source && destination) destination.innerHTML = source.innerHTML; - if (inventorySource && inventoryDestination) inventoryDestination.innerHTML = inventorySource.innerHTML; - if (skuSource && skuDestination) { - skuDestination.innerHTML = skuSource.innerHTML; - skuDestination.classList.toggle('hidden', skuSource.classList.contains('hidden')); + if (recommendations?.innerHTML.trim().length) { + this.innerHTML = recommendations.innerHTML; } - if (volumePricingSource && volumePricingDestination) { - volumePricingDestination.innerHTML = volumePricingSource.innerHTML; + if (!this.querySelector('slideshow-component') && this.classList.contains('complementary-products')) { + this.remove(); } - if (pricePerItemSource && pricePerItemDestination) { - pricePerItemDestination.innerHTML = pricePerItemSource.innerHTML; - pricePerItemDestination.classList.toggle('hidden', pricePerItemSource.classList.contains('hidden')); + if (html.querySelector('.grid__item')) { + this.classList.add('product-recommendations--loaded'); } - - const price = document.getElementById(`price-${this.dataset.section}`); - - if (price) price.classList.remove('hidden'); - - if (inventoryDestination) inventoryDestination.classList.toggle('hidden', inventorySource.innerText === ''); - - const addButtonUpdated = html.getElementById(`ProductSubmitButton-${sectionId}`); - this.toggleAddButton( - addButtonUpdated ? addButtonUpdated.hasAttribute('disabled') : true, - window.variantStrings.soldOut - ); - - publish(PUB_SUB_EVENTS.variantChange, { - data: { - sectionId, - html, - variant: this.currentVariant, - }, - }); + }) + .catch((e) => { + console.error(e); }); } +} - toggleAddButton(disable = true, text, modifyClass = true) { - const productForm = document.getElementById(`product-form-${this.dataset.section}`); - if (!productForm) return; - const addButton = productForm.querySelector('[name="add"]'); - const addButtonText = productForm.querySelector('[name="add"] > span'); - if (!addButton) return; +customElements.define('product-recommendations', ProductRecommendations); - if (disable) { - addButton.setAttribute('disabled', 'disabled'); - if (text) addButtonText.textContent = text; - } else { - addButton.removeAttribute('disabled'); - addButtonText.textContent = window.variantStrings.addToCart; - } +class AccountIcon extends HTMLElement { + constructor() { + super(); - if (!modifyClass) return; + this.icon = this.querySelector('.icon'); } - setUnavailable() { - const button = document.getElementById(`product-form-${this.dataset.section}`); - const addButton = button.querySelector('[name="add"]'); - const addButtonText = button.querySelector('[name="add"] > span'); - const price = document.getElementById(`price-${this.dataset.section}`); - const inventory = document.getElementById(`Inventory-${this.dataset.section}`); - const sku = document.getElementById(`Sku-${this.dataset.section}`); - const pricePerItem = document.getElementById(`Price-Per-Item-${this.dataset.section}`); - const volumeNote = document.getElementById(`Volume-Note-${this.dataset.section}`); - const volumeTable = document.getElementById(`Volume-${this.dataset.section}`); - const qtyRules = document.getElementById(`Quantity-Rules-${this.dataset.section}`); - - if (!addButton) return; - addButtonText.textContent = window.variantStrings.unavailable; - if (price) price.classList.add('hidden'); - if (inventory) inventory.classList.add('hidden'); - if (sku) sku.classList.add('hidden'); - if (pricePerItem) pricePerItem.classList.add('hidden'); - if (volumeNote) volumeNote.classList.add('hidden'); - if (volumeTable) volumeTable.classList.add('hidden'); - if (qtyRules) qtyRules.classList.add('hidden'); + connectedCallback() { + document.addEventListener('storefront:signincompleted', this.handleStorefrontSignInCompleted.bind(this)); } - getVariantData() { - this.variantData = this.variantData || JSON.parse(this.querySelector('[type="application/json"]').textContent); - return this.variantData; + handleStorefrontSignInCompleted(event) { + if (event?.detail?.avatar) { + this.icon?.replaceWith(event.detail.avatar.cloneNode()); + } } } -customElements.define('variant-selects', VariantSelects); +customElements.define('account-icon', AccountIcon); -class ProductRecommendations extends HTMLElement { +class BulkAdd extends HTMLElement { constructor() { super(); + this.queue = []; + this.requestStarted = false; + this.ids = []; } - connectedCallback() { - const handleIntersection = (entries, observer) => { - if (!entries[0].isIntersecting) return; - observer.unobserve(this); - - fetch(this.dataset.url) - .then((response) => response.text()) - .then((text) => { - const html = document.createElement('div'); - html.innerHTML = text; - const recommendations = html.querySelector('product-recommendations'); - - if (recommendations && recommendations.innerHTML.trim().length) { - this.innerHTML = recommendations.innerHTML; - } - - if (!this.querySelector('slideshow-component') && this.classList.contains('complementary-products')) { - this.remove(); - } + 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); + } + }, 250); + } - if (html.querySelector('.grid__item')) { - this.classList.add('product-recommendations--loaded'); - } - }) - .catch((e) => { - console.error(e); - }); - }; + sendRequest(queue) { + this.requestStarted = true; + const items = {}; + queue.forEach((queueItem) => { + items[parseInt(queueItem.id)] = queueItem.quantity; + }); + this.queue = this.queue.filter((queueElement) => !queue.includes(queueElement)); + const quickBulkElement = this.closest('quick-order-list') || this.closest('quick-add-bulk'); + quickBulkElement.updateMultipleQty(items); + } - new IntersectionObserver(handleIntersection.bind(this), { rootMargin: '0px 0px 400px 0px' }).observe(this); + resetQuantityInput(id) { + const input = this.querySelector(`#Quantity-${id}`); + input.value = input.getAttribute('value'); + this.isEnterPressed = false; } -} -customElements.define('product-recommendations', ProductRecommendations); + setValidity(event, index, message) { + event.target.setCustomValidity(message); + event.target.reportValidity(); + this.resetQuantityInput(index); + event.target.select(); + } -class AccountIcon extends HTMLElement { - constructor() { - super(); + validateQuantity(event) { + const inputValue = parseInt(event.target.value); + const index = event.target.dataset.index; - this.icon = this.querySelector('.icon'); + 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(); + this.startQueue(index, inputValue); + } } - connectedCallback() { - document.addEventListener('storefront:signincompleted', this.handleStorefrontSignInCompleted.bind(this)); + getSectionsUrl() { + if (window.pageNumber) { + return `${window.location.pathname}?page=${window.pageNumber}`; + } else { + return `${window.location.pathname}`; + } } - handleStorefrontSignInCompleted(event) { - if (event?.detail?.avatar) { - this.icon?.replaceWith(event.detail.avatar.cloneNode()); - } + getSectionInnerHTML(html, selector) { + return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML; } } -customElements.define('account-icon', AccountIcon); +if (!customElements.get('bulk-add')) { + customElements.define('bulk-add', BulkAdd); +} diff --git a/assets/localization-form.js b/assets/localization-form.js index 4d532ece621..3eff4e41d4b 100644 --- a/assets/localization-form.js +++ b/assets/localization-form.js @@ -138,8 +138,15 @@ if (!customElements.get('localization-form')) { } } + normalizeString(str) { + return str + .normalize('NFD') + .replace(/\p{Diacritic}/gu, '') + .toLowerCase(); + } + filterCountries() { - const searchValue = this.elements.search.value.toLowerCase(); + const searchValue = this.normalizeString(this.elements.search.value); const popularCountries = this.querySelector('.popular-countries'); const allCountries = this.querySelectorAll('a'); let visibleCountries = allCountries.length; @@ -151,7 +158,7 @@ if (!customElements.get('localization-form')) { } allCountries.forEach((item) => { - const countryName = item.querySelector('.country').textContent.toLowerCase(); + const countryName = this.normalizeString(item.querySelector('.country').textContent); if (countryName.indexOf(searchValue) > -1) { item.parentElement.classList.remove('hidden'); visibleCountries++; diff --git a/assets/media-gallery.js b/assets/media-gallery.js index a7cb8f7c3e5..c59cd4910ce 100644 --- a/assets/media-gallery.js +++ b/assets/media-gallery.js @@ -16,7 +16,7 @@ if (!customElements.get('media-gallery')) { this.elements.thumbnails.querySelectorAll('[data-target]').forEach((mediaToSwitch) => { mediaToSwitch .querySelector('button') - .addEventListener('click', this.setActiveMedia.bind(this, mediaToSwitch.dataset.target)); + .addEventListener('click', this.setActiveMedia.bind(this, mediaToSwitch.dataset.target, false)); }); if (this.dataset.desktopLayout.includes('thumbnail') && this.mql.matches) this.removeListSemantic(); } @@ -28,7 +28,7 @@ if (!customElements.get('media-gallery')) { this.setActiveThumbnail(thumbnail); } - setActiveMedia(mediaId) { + setActiveMedia(mediaId, prepend) { const activeMedia = this.elements.viewer.querySelector(`[data-media-id="${mediaId}"]`) || this.elements.viewer.querySelector('[data-media-id]'); @@ -40,6 +40,17 @@ if (!customElements.get('media-gallery')) { }); 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) { diff --git a/assets/pickup-availability.js b/assets/pickup-availability.js index 56c6f71fbf1..1b5ebd63579 100644 --- a/assets/pickup-availability.js +++ b/assets/pickup-availability.js @@ -13,6 +13,8 @@ if (!customElements.get('pickup-availability')) { } fetchAvailability(variantId) { + if (!variantId) return; + let rootUrl = this.dataset.rootUrl; if (!rootUrl.endsWith('/')) { rootUrl = rootUrl + '/'; @@ -34,10 +36,19 @@ if (!customElements.get('pickup-availability')) { }); } - onClickRefreshList(evt) { + 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); diff --git a/assets/predictive-search.js b/assets/predictive-search.js index ed33c078d81..b30210be21c 100644 --- a/assets/predictive-search.js +++ b/assets/predictive-search.js @@ -240,7 +240,7 @@ class PredictiveSearch extends SearchForm { getResultsMaxHeight() { this.resultsMaxHeight = - window.innerHeight - document.querySelector('.section-header').getBoundingClientRect().bottom; + window.innerHeight - document.querySelector('.section-header')?.getBoundingClientRect().bottom; return this.resultsMaxHeight; } diff --git a/assets/product-form.js b/assets/product-form.js index da186473160..59c19c9ec36 100644 --- a/assets/product-form.js +++ b/assets/product-form.js @@ -6,10 +6,11 @@ if (!customElements.get('product-form')) { super(); this.form = this.querySelector('form'); - this.form.querySelector('[name=id]').disabled = false; + 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'); @@ -56,7 +57,7 @@ if (!customElements.get('product-form')) { const soldOutMessage = this.submitButton.querySelector('.sold-out-message'); if (!soldOutMessage) return; this.submitButton.setAttribute('aria-disabled', true); - this.submitButton.querySelector('span').classList.add('hidden'); + this.submitButtonText.classList.add('hidden'); soldOutMessage.classList.remove('hidden'); this.error = true; return; @@ -113,6 +114,20 @@ if (!customElements.get('product-form')) { 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/product-info.js b/assets/product-info.js index 1fa35239125..5c362e35c12 100644 --- a/assets/product-info.js +++ b/assets/product-info.js @@ -2,85 +2,358 @@ 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.input = this.querySelector('.quantity__input'); - this.currentVariant = this.querySelector('.product-variant-id'); - this.submitButton = this.querySelector('[type="submit"]'); - } - cartUpdateUnsubscriber = undefined; - variantChangeUnsubscriber = undefined; + this.quantityInput = this.querySelector('.quantity__input'); + } connectedCallback() { - if (!this.input) return; + 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)); } - this.variantChangeUnsubscriber = subscribe(PUB_SUB_EVENTS.variantChange, (event) => { - const sectionId = this.dataset.originalSection ? this.dataset.originalSection : this.dataset.section; - if (event.data.sectionId !== sectionId) return; - this.updateQuantityRules(event.data.sectionId, event.data.html); - this.setQuantityBoundries(); - }); } disconnectedCallback() { - if (this.cartUpdateUnsubscriber) { - this.cartUpdateUnsubscriber(); + 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(',')}`); } - if (this.variantChangeUnsubscriber) { - this.variantChangeUnsubscriber(); + + 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.input.dataset.cartQuantity ? parseInt(this.input.dataset.cartQuantity) : 0, - min: this.input.dataset.min ? parseInt(this.input.dataset.min) : 1, - max: this.input.dataset.max ? parseInt(this.input.dataset.max) : null, - step: this.input.step ? parseInt(this.input.step) : 1, + 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.input.min = min; + + this.quantityInput.min = min; if (max) { - this.input.max = max; + this.quantityInput.max = max; } else { - this.input.removeAttribute('max'); + this.quantityInput.removeAttribute('max'); } - this.input.value = min; + this.quantityInput.value = min; + publish(PUB_SUB_EVENTS.quantityUpdate, undefined); } fetchQuantityRules() { - if (!this.currentVariant || !this.currentVariant.value) return; + const currentVariantId = this.productForm?.variantIdInput?.value; + if (!currentVariantId) return; + this.querySelector('.quantity__rules-cart .loading__spinner').classList.remove('hidden'); - fetch(`${this.dataset.url}?variant=${this.currentVariant.value}§ion_id=${this.dataset.section}`) - .then((response) => { - return response.text(); - }) + 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); - this.setQuantityBoundries(); - }) - .catch((e) => { - console.error(e); }) - .finally(() => { - this.querySelector('.quantity__rules-cart .loading__spinner').classList.add('hidden'); - }); + .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) { @@ -102,6 +375,42 @@ if (!customElements.get('product-info')) { } } } + + 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/quick-add-bulk.js b/assets/quick-add-bulk.js index 935d6f6a61d..f9195e2f087 100644 --- a/assets/quick-add-bulk.js +++ b/assets/quick-add-bulk.js @@ -1,16 +1,16 @@ if (!customElements.get('quick-add-bulk')) { customElements.define( 'quick-add-bulk', - class QuickAddBulk extends HTMLElement { + class QuickAddBulk extends BulkAdd { constructor() { super(); this.quantity = this.querySelector('quantity-input'); const debouncedOnChange = debounce((event) => { - if (parseInt(event.target.dataset.cartQuantity) === 0) { - this.addToCart(event); + if (parseInt(event.target.value) === 0) { + this.startQueue(event.target.dataset.index, parseInt(event.target.value)); } else { - this.updateCart(event); + this.validateQuantity(event); } }, ON_CHANGE_DEBOUNCE_TIMER); @@ -24,7 +24,11 @@ if (!customElements.get('quick-add-bulk')) { connectedCallback() { this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (event) => { - if (event.source === 'quick-add') { + 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 @@ -65,12 +69,6 @@ if (!customElements.get('quick-add-bulk')) { }); } - resetQuantityInput(id) { - const input = document.getElementById(id); - input.value = input.getAttribute('value'); - this.isEnterPressed = false; - } - cleanErrorMessageOnType(event) { event.target.addEventListener( 'keypress', @@ -102,81 +100,37 @@ if (!customElements.get('quick-add-bulk')) { }); } - updateCart(event) { - this.lastActiveInputId = event.target.getAttribute('data-index'); - this.quantity.classList.add('quantity__input-disabled'); + updateMultipleQty(items) { this.selectProgressBar().classList.remove('hidden'); + + const ids = Object.keys(items); const body = JSON.stringify({ - quantity: event.target.value, - id: event.target.getAttribute('data-index'), + updates: items, sections: this.getSectionsToRender().map((section) => section.section), sections_url: this.getSectionsUrl(), }); - fetch(`${routes.cart_change_url}`, { ...fetchConfig('javascript'), ...{ body } }) + fetch(`${routes.cart_update_url}`, { ...fetchConfig(), ...{ body } }) .then((response) => { return response.text(); }) .then((state) => { const parsedState = JSON.parse(state); - this.quantity.classList.remove('quantity__input-disabled'); - if (parsedState.description || parsedState.errors) { - event.target.setCustomValidity(parsedState.description); - event.target.reportValidity(); - this.resetQuantityInput(event.target.id); - this.selectProgressBar().classList.add('hidden'); - event.target.select(); - this.cleanErrorMessageOnType(event); - return; - } - - this.renderSections(parsedState); - + this.renderSections(parsedState, ids); publish(PUB_SUB_EVENTS.cartUpdate, { source: 'quick-add', cartData: parsedState }); }) - .catch((error) => { - console.log(error, 'error'); - }); - } - - addToCart(event) { - this.quantity.classList.add('quantity__input-disabled'); - this.selectProgressBar().classList.remove('hidden'); - this.lastActiveInputId = event.target.getAttribute('data-index'); - const body = JSON.stringify({ - items: [ - { - quantity: parseInt(event.target.value), - id: parseInt(this.dataset.id), - }, - ], - sections: this.getSectionsToRender().map((section) => section.section), - }); - - fetch(`${routes.cart_add_url}`, { ...fetchConfig('javascript'), ...{ body } }) - .then((response) => { - return response.text(); + .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); }) - .then((state) => { - const parsedState = JSON.parse(state); - this.quantity.classList.remove('quantity__input-disabled'); - if (parsedState.description || parsedState.errors) { - event.target.setCustomValidity(parsedState.description); - event.target.reportValidity(); - this.resetQuantityInput(event.target.id); - this.selectProgressBar().classList.add('hidden'); - event.target.select(); - this.cleanErrorMessageOnType(event); - // Error handling - return; - } - - this.renderSections(parsedState); - - publish(PUB_SUB_EVENTS.cartUpdate, { source: 'quick-add', cartData: parsedState }); - }) - .catch((error) => { - console.error(error); + .finally(() => { + this.selectProgressBar().classList.add('hidden'); + this.requestStarted = false; }); } @@ -200,19 +154,9 @@ if (!customElements.get('quick-add-bulk')) { ]; } - getSectionsUrl() { - if (window.pageNumber) { - return `${window.location.pathname}?page=${window.pageNumber}`; - } else { - return `${window.location.pathname}`; - } - } - - getSectionInnerHTML(html, selector) { - return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML; - } - - renderSections(parsedState) { + 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 ( diff --git a/assets/quick-add.css b/assets/quick-add.css index b9d889ad5a9..0e597b61d48 100644 --- a/assets/quick-add.css +++ b/assets/quick-add.css @@ -32,6 +32,11 @@ .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 { @@ -77,6 +82,10 @@ 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; @@ -87,7 +96,17 @@ 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; } @@ -121,6 +140,11 @@ 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, @@ -153,7 +177,7 @@ width: auto; } -@media screen and (max-width: 990px) { +@media screen and (max-width: 989px) { .quick-add-modal__content-info--bulk .quick-add__content-info__media { display: flex; margin: 0; @@ -169,7 +193,7 @@ } } -@media screen and (min-width: 989px) { +@media screen and (min-width: 990px) { .quick-add-modal__content-info--bulk .quick-add__info { flex-direction: column; position: sticky; @@ -179,7 +203,7 @@ } } -@media screen and (max-width: 990px) { +@media screen and (max-width: 989px) { .quick-add-modal__content-info--bulk { flex-direction: column; } @@ -201,6 +225,10 @@ 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; @@ -251,6 +279,10 @@ 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) { @@ -282,6 +314,7 @@ quick-add-modal .product__column-sticky { } 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); @@ -355,6 +388,7 @@ quick-add-bulk .progress-bar-container { overflow: hidden; border-radius: var(--inputs-radius-outset); border: var(--inputs-border-width) solid transparent; + z-index: -1; } quick-add-bulk quantity-input { diff --git a/assets/quick-add.js b/assets/quick-add.js index 6a9d5573ce3..5125a974c2f 100644 --- a/assets/quick-add.js +++ b/assets/quick-add.js @@ -5,6 +5,10 @@ if (!customElements.get('quick-add-modal')) { constructor() { super(); this.modalContent = this.querySelector('[id^="QuickAddInfo-"]'); + + this.addEventListener('product-info:loaded', ({ target }) => { + target.addPreProcessCallback(this.preprocessHTML.bind(this)); + }); } hide(preventFocus = false) { @@ -25,24 +29,16 @@ if (!customElements.get('quick-add-modal')) { .then((response) => response.text()) .then((responseText) => { const responseHTML = new DOMParser().parseFromString(responseText, 'text/html'); - this.productElement = responseHTML.querySelector('section[id^="MainProduct-"]'); - this.productElement.classList.forEach((classApplied) => { - if (classApplied.startsWith('color-') || classApplied === 'gradient') - this.modalContent.classList.add(classApplied); - }); - this.preventDuplicatedIDs(); - this.removeDOMElements(); - this.setInnerHTML(this.modalContent, this.productElement.innerHTML); + 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(); - this.removeGalleryListSemantic(); - this.updateImageSizes(); - this.preventVariantURLSwitching(); super.show(opener); }) .finally(() => { @@ -52,57 +48,59 @@ if (!customElements.get('quick-add-modal')) { }); } - setInnerHTML(element, html) { - element.innerHTML = html; - - // Reinjects the script tags to allow execution. By default, scripts are disabled when using element.innerHTML. - element.querySelectorAll('script').forEach((oldScriptTag) => { - const newScriptTag = document.createElement('script'); - Array.from(oldScriptTag.attributes).forEach((attribute) => { - newScriptTag.setAttribute(attribute.name, attribute.value); - }); - newScriptTag.appendChild(document.createTextNode(oldScriptTag.innerHTML)); - oldScriptTag.parentNode.replaceChild(newScriptTag, oldScriptTag); + 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() { - const variantPicker = this.modalContent.querySelector('variant-selects'); - if (!variantPicker) return; - - variantPicker.setAttribute('data-update-url', 'false'); + preventVariantURLSwitching(productElement) { + productElement.setAttribute('data-update-url', 'false'); } - removeDOMElements() { - const pickupAvailability = this.productElement.querySelector('pickup-availability'); + removeDOMElements(productElement) { + const pickupAvailability = productElement.querySelector('pickup-availability'); if (pickupAvailability) pickupAvailability.remove(); - const productModal = this.productElement.querySelector('product-modal'); + const productModal = productElement.querySelector('product-modal'); if (productModal) productModal.remove(); - const modalDialog = this.productElement.querySelectorAll('modal-dialog'); + const modalDialog = productElement.querySelectorAll('modal-dialog'); if (modalDialog) modalDialog.forEach((modal) => modal.remove()); } - preventDuplicatedIDs() { - const sectionId = this.productElement.dataset.section; - this.productElement.innerHTML = this.productElement.innerHTML.replaceAll(sectionId, `quickadd-${sectionId}`); - this.productElement.querySelectorAll('variant-selects, product-info').forEach((element) => { - element.dataset.originalSection = sectionId; + 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() { - const galleryList = this.modalContent.querySelector('[id^="Slider-Gallery"]'); + 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() { - const product = this.modalContent.querySelector('.product'); - const desktopColumns = product.classList.contains('product--columns'); + updateImageSizes(productElement) { + const product = productElement.querySelector('.product'); + const desktopColumns = product?.classList.contains('product--columns'); if (!desktopColumns) return; const mediaImages = product.querySelectorAll('.product__media img'); diff --git a/assets/quick-order-list.css b/assets/quick-order-list.css index e2a3c010ab9..fb1468e309a 100644 --- a/assets/quick-order-list.css +++ b/assets/quick-order-list.css @@ -36,6 +36,10 @@ quick-order-list .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; @@ -305,6 +309,10 @@ quick-order-list-remove-button .icon-remove { left: 2rem; top: 1.2rem; } + + .variant-remove-total--empty .loading__spinner { + top: -1rem; + } } quick-order-list-remove-button:hover .icon-remove { @@ -442,6 +450,10 @@ quick-order-list-remove-button:hover .icon-remove { } } +.quick-order-list__button-text { + text-align: center; +} + .quick-order-list-total__confirmation { display: flex; justify-content: center; diff --git a/assets/quick-order-list.js b/assets/quick-order-list.js index bc4d6d0843f..d4a77ffac57 100644 --- a/assets/quick-order-list.js +++ b/assets/quick-order-list.js @@ -1,13 +1,12 @@ if (!customElements.get('quick-order-list-remove-button')) { customElements.define( 'quick-order-list-remove-button', - class QuickOrderListRemoveButton extends HTMLElement { + class QuickOrderListRemoveButton extends BulkAdd { constructor() { super(); this.addEventListener('click', (event) => { event.preventDefault(); - const quickOrderList = this.closest('quick-order-list'); - quickOrderList.updateQuantity(this.dataset.index, 0); + this.startQueue(this.dataset.index, 0); }); } } @@ -69,16 +68,11 @@ if (!customElements.get('quick-order-list-remove-all-button')) { if (!customElements.get('quick-order-list')) { customElements.define( 'quick-order-list', - class QuickOrderList extends HTMLElement { + class QuickOrderList extends BulkAdd { constructor() { super(); this.cart = document.querySelector('cart-drawer'); - this.actions = { - add: 'ADD', - update: 'UPDATE', - }; - - this.quickOrderListId = `quick-order-list-${this.dataset.productId}`; + this.quickOrderListId = `${this.dataset.section}-${this.dataset.productId}`; this.defineInputsAndQuickOrderTable(); this.variantItemStatusElement = document.getElementById('shopping-cart-variant-item-status'); @@ -119,7 +113,14 @@ if (!customElements.get('quick-order-list')) { connectedCallback() { this.cartUpdateUnsubscriber = subscribe(PUB_SUB_EVENTS.cartUpdate, (event) => { - if (event.source === this.quickOrderListId) { + const variantIds = []; + this.querySelectorAll('.variant-item').forEach((item) => { + variantIds.push(parseInt(item.dataset.variantId)); + }); + if ( + event.source === this.quickOrderListId || + !event.cartData.items?.some((element) => variantIds.includes(element.variant_id)) + ) { return; } // If its another section that made the update @@ -128,7 +129,7 @@ if (!customElements.get('quick-order-list')) { this.addMultipleDebounce(); }); }); - this.sectionId = this.dataset.id; + this.sectionId = this.dataset.section; } disconnectedCallback() { @@ -143,16 +144,11 @@ if (!customElements.get('quick-order-list')) { onChange(event) { const inputValue = parseInt(event.target.value); - const cartQuantity = parseInt(event.target.dataset.cartQuantity); - const index = event.target.dataset.index; - const name = document.activeElement.getAttribute('name'); - - const quantity = inputValue - cartQuantity; this.cleanErrorMessageOnType(event); if (inputValue == 0) { - this.updateQuantity(index, inputValue, name, this.actions.update); + this.startQueue(event.target.dataset.index, inputValue); } else { - this.validateQuantity(event, name, index, inputValue, cartQuantity, quantity); + this.validateQuantity(event); } } @@ -163,35 +159,6 @@ if (!customElements.get('quick-order-list')) { }); } - validateQuantity(event, name, index, inputValue, cartQuantity, quantity) { - 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(); - if (cartQuantity > 0) { - this.updateQuantity(index, inputValue, name, this.actions.update); - } else { - this.updateQuantity(index, quantity, name, this.actions.add); - } - } - } - - setValidity(event, index, message) { - event.target.setCustomValidity(message); - event.target.reportValidity(); - this.resetQuantityInput(index); - event.target.select(); - } - validateInput(target) { if (target.max) { return ( @@ -232,7 +199,7 @@ if (!customElements.get('quick-order-list')) { return [ { id: this.quickOrderListId, - section: document.getElementById(this.quickOrderListId).dataset.id, + section: document.getElementById(this.quickOrderListId).dataset.section, selector: `#${this.quickOrderListId} .js-contents`, }, { @@ -246,8 +213,8 @@ if (!customElements.get('quick-order-list')) { selector: '.shopify-section', }, { - id: `quick-order-list-total-${this.dataset.productId}`, - section: document.getElementById(this.quickOrderListId).dataset.id, + id: `quick-order-list-total-${this.dataset.productId}-${this.dataset.section}`, + section: document.getElementById(this.quickOrderListId).dataset.section, selector: `#${this.quickOrderListId} .quick-order-list__total`, }, { @@ -262,20 +229,16 @@ if (!customElements.get('quick-order-list')) { this.querySelectorAll('quantity-input').forEach((qty) => { const debouncedOnChange = debounce((event) => { this.onChange(event); - }, ON_CHANGE_DEBOUNCE_TIMER); + }, 100); qty.addEventListener('change', debouncedOnChange.bind(this)); }); } - addDebounce(id) { - const element = this.querySelector(`#Variant-${id} quantity-input`); - const debouncedOnChange = debounce((event) => { - this.onChange(event); - }, ON_CHANGE_DEBOUNCE_TIMER); - element.addEventListener('change', debouncedOnChange.bind(this)); - } + renderSections(parsedState, ids) { + this.ids.push(ids); + const intersection = this.queue.filter((element) => ids.includes(element.id)); + if (intersection.length !== 0) return; - renderSections(parsedState, id) { this.getSectionsToRender().forEach((section) => { const sectionElement = document.getElementById(section.id); if ( @@ -295,11 +258,13 @@ if (!customElements.get('quick-order-list')) { ? sectionElement.querySelector(section.selector) : sectionElement; if (elementToReplace) { - if (section.selector === `#${this.quickOrderListId} .js-contents` && id !== undefined) { - elementToReplace.querySelector(`#Variant-${id}`).innerHTML = this.getSectionInnerHTML( - parsedState.sections[section.section], - `#Variant-${id}` - ); + if (section.selector === `#${this.quickOrderListId} .js-contents` && this.ids.length > 0) { + this.ids.flat().forEach((i) => { + elementToReplace.querySelector(`#Variant-${i}`).innerHTML = this.getSectionInnerHTML( + parsedState.sections[section.section], + `#Variant-${i}` + ); + }); } else { elementToReplace.innerHTML = this.getSectionInnerHTML( parsedState.sections[section.section], @@ -309,11 +274,8 @@ if (!customElements.get('quick-order-list')) { } }); this.defineInputsAndQuickOrderTable(); - if (id) { - this.addDebounce(id); - } else { - this.addMultipleDebounce(); - } + this.addMultipleDebounce(); + this.ids = []; } getTableHead() { @@ -407,12 +369,13 @@ if (!customElements.get('quick-order-list')) { } updateMultipleQty(items) { - this.querySelector('.variant-remove-total .loading__spinner').classList.remove('hidden'); + this.querySelector('.variant-remove-total .loading__spinner')?.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(), + sections_url: this.dataset.url, }); this.updateMessage(); @@ -424,121 +387,18 @@ if (!customElements.get('quick-order-list')) { }) .then((state) => { const parsedState = JSON.parse(state); - this.renderSections(parsedState); - }) - .catch(() => { - this.setErrorMessage(window.cartStrings.error); - }) - .finally(() => { - this.querySelector('.variant-remove-total .loading__spinner').classList.add('hidden'); - }); - } - - getSectionsUrl() { - if (window.pageNumber) { - return `${window.location.pathname}?page=${window.pageNumber}`; - } else { - return `${window.location.pathname}`; - } - } - - updateQuantity(id, quantity, name, action) { - this.toggleLoading(id, true); - this.cleanErrors(); - - let routeUrl = routes.cart_change_url; - let body = JSON.stringify({ - quantity, - id, - sections: this.getSectionsToRender().map((section) => section.section), - sections_url: this.getSectionsUrl(), - }); - let fetchConfigType; - if (action === this.actions.add) { - fetchConfigType = 'javascript'; - routeUrl = routes.cart_add_url; - body = JSON.stringify({ - items: [ - { - quantity: parseInt(quantity), - id: parseInt(id), - }, - ], - sections: this.getSectionsToRender().map((section) => section.section), - sections_url: this.getSectionsUrl(), - }); - } - - this.updateMessage(); - this.setErrorMessage(); - - fetch(`${routeUrl}`, { ...fetchConfig(fetchConfigType), ...{ body } }) - .then((response) => { - return response.text(); - }) - .then((state) => { - const parsedState = JSON.parse(state); - const quantityElement = document.getElementById(`Quantity-${id}`); - const items = document.querySelectorAll('.variant-item'); - - if (parsedState.description || parsedState.errors) { - const variantItem = document.querySelector( - `[id^="Variant-${id}"] .variant-item__totals.small-hide .loading__spinner` - ); - variantItem.classList.add('loading__spinner--error'); - this.resetQuantityInput(id, quantityElement); - if (parsedState.errors) { - this.updateLiveRegions(id, parsedState.errors); - } else { - this.updateLiveRegions(id, parsedState.description); - } - return; - } - - this.classList.toggle('is-empty', parsedState.item_count === 0); - - this.renderSections(parsedState, id); - - let hasError = false; - - const currentItem = parsedState.items.find((item) => item.variant_id === parseInt(id)); - const updatedValue = currentItem ? currentItem.quantity : undefined; - if (updatedValue && updatedValue !== quantity) { - this.updateError(updatedValue, id); - hasError = true; - } - + this.renderSections(parsedState, ids); publish(PUB_SUB_EVENTS.cartUpdate, { source: this.quickOrderListId, cartData: parsedState }); - - if (hasError) { - this.updateMessage(); - } else if (action === this.actions.add) { - this.updateMessage(parseInt(quantity)); - } else if (action === this.actions.update) { - this.updateMessage(parseInt(quantity - quantityElement.dataset.cartQuantity)); - } else { - this.updateMessage(-parseInt(quantityElement.dataset.cartQuantity)); - } }) - .catch((error) => { - this.querySelectorAll('.loading__spinner').forEach((overlay) => overlay.classList.add('hidden')); - this.resetQuantityInput(id); - console.error(error); + .catch(() => { this.setErrorMessage(window.cartStrings.error); }) .finally(() => { - this.toggleLoading(id); - if (this.lastKey && this.lastElement === id) { - this.querySelector(`#Variant-${id} input`).select(); - } + this.querySelector('.variant-remove-total .loading__spinner')?.classList.add('hidden'); + this.requestStarted = false; }); } - resetQuantityInput(id, quantityElement) { - const input = quantityElement ?? document.getElementById(`Quantity-${id}`); - input.value = input.getAttribute('value'); - } - setErrorMessage(message = null) { this.errorMessageTemplate = this.errorMessageTemplate ?? @@ -592,9 +452,9 @@ if (!customElements.get('quick-order-list')) { this.updateLiveRegions(id, message); } - cleanErrors() { - this.querySelectorAll('.desktop-row-error').forEach((error) => error.classList.add('hidden')); - this.querySelectorAll(`.variant-item__error-text`).forEach((error) => (error.innerHTML = '')); + cleanErrors(id) { + // this.querySelectorAll('.desktop-row-error').forEach((error) => error.classList.add('hidden')); + // this.querySelectorAll(`.variant-item__error-text`).forEach((error) => error.innerHTML = ''); } updateLiveRegions(id, message) { @@ -617,10 +477,6 @@ if (!customElements.get('quick-order-list')) { }, 1000); } - getSectionInnerHTML(html, selector) { - return new DOMParser().parseFromString(html, 'text/html').querySelector(selector).innerHTML; - } - toggleLoading(id, enable) { const quickOrderListItems = this.querySelectorAll(`#Variant-${id} .loading__spinner`); const quickOrderListItem = this.querySelector(`#Variant-${id}`); diff --git a/assets/section-main-product.css b/assets/section-main-product.css index 96e6763eaee..2b7afd744f0 100644 --- a/assets/section-main-product.css +++ b/assets/section-main-product.css @@ -1,3 +1,7 @@ +product-info { + display: block; +} + .product { margin: 0; } diff --git a/config/settings_schema.json b/config/settings_schema.json index b06a9fc7047..c08c9e94fbe 100644 --- a/config/settings_schema.json +++ b/config/settings_schema.json @@ -2,7 +2,7 @@ { "name": "theme_info", "theme_name": "Dawn", - "theme_version": "13.0.0", + "theme_version": "15.0.0", "theme_author": "Shopify", "theme_documentation_url": "https://help.shopify.com/manual/online-store/themes", "theme_support_url": "https://support.shopify.com/" diff --git a/layout/theme.liquid b/layout/theme.liquid index aec1924cc34..35f9fb6f77f 100644 --- a/layout/theme.liquid +++ b/layout/theme.liquid @@ -26,6 +26,10 @@ + + + + {%- if settings.animations_reveal_on_scroll -%} {%- endif -%} @@ -241,6 +245,17 @@ {% endstyle %} {{ 'base.css' | asset_url | stylesheet_tag }} {{ 'custom-icletta.css' | asset_url | stylesheet_tag }} + + + + {%- if settings.cart_type == 'drawer' -%} + {{ 'component-cart-drawer.css' | asset_url | stylesheet_tag }} + {{ 'component-cart.css' | asset_url | stylesheet_tag }} + {{ 'component-totals.css' | asset_url | stylesheet_tag }} + {{ 'component-price.css' | asset_url | stylesheet_tag }} + {{ 'component-discounts.css' | asset_url | stylesheet_tag }} + {%- endif -%} + {%- unless settings.type_body_font.system? -%} {% comment %}theme-check-disable AssetPreload{% endcomment %} @@ -335,6 +350,9 @@ {%- if settings.predictive_search_enabled -%} {%- endif -%} - {% render 'bc_banner' %} + + {%- if settings.cart_type == 'drawer' -%} + + {%- endif -%} diff --git a/locales/bg-BG.json b/locales/bg.json similarity index 92% rename from locales/bg-BG.json rename to locales/bg.json index be40f31e88b..b18ad2bee2c 100644 --- a/locales/bg-BG.json +++ b/locales/bg.json @@ -155,7 +155,6 @@ "image_available": "Изображение {{ index }} вече е налично във визуализатора на галерията" }, "view_full_details": "Покажи пълните подробности", - "include_taxes": "С включени данъци.", "shipping_policy_html": "Доставката се изчислява при плащане.", "choose_options": "Изберете опции", "choose_product_options": "Изберете опции за {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "при {{ price }}/бр.", "price_range": "{{ minimum }} – {{ maximum }}" }, - "product_variants": "Варианти на продукта" + "product_variants": "Варианти на продукта", + "taxes_included": "С включени данъци.", + "duties_included": "С включено мито.", + "duties_and_taxes_included": "С включено мито и данъци." }, "modal": { "label": "Мултимедийна галерия" @@ -279,10 +281,6 @@ "empty": "Количката ви е празна.", "cart_error": "При актуализирането на количката ви възникна грешка. Опитайте отново.", "cart_quantity_error_html": "Можете да добавите само {{ quantity }} броя от този артикул в количката си.", - "taxes_and_shipping_policy_at_checkout_html": "Данъците, отстъпките и доставката се изчисляват при плащане", - "taxes_included_but_shipping_at_checkout": "Данъците са включени, а доставката и отстъпките се изчисляват при плащане", - "taxes_included_and_shipping_policy_html": "С включени данъци. Доставката и отстъпките се изчисляват при плащане.", - "taxes_and_shipping_at_checkout": "Данъците, отстъпките и доставката се изчисляват при плащане", "headings": { "product": "Продукт", "price": "Цена", @@ -297,7 +295,15 @@ "paragraph_html": "Влезте за по-бързо преминаване към плащане." }, "estimated_total": "Очаквана обща сума", - "new_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": "Начини на плащане" diff --git a/locales/cs.json b/locales/cs.json index de225dbd249..89de44039f6 100644 --- a/locales/cs.json +++ b/locales/cs.json @@ -157,7 +157,6 @@ "image_available": "Obrázek {{ index }} je nyní k dispozici v zobrazení galerie" }, "view_full_details": "Zobrazit veškeré podrobnosti", - "include_taxes": "Včetně daní.", "shipping_policy_html": "Poštovné se vypočítá na pokladně.", "choose_options": "Výběr možností", "choose_product_options": "Zvolte možnosti pro: {{ product_name }}", @@ -177,7 +176,10 @@ "price_at_each": "{{ price }} / ks", "price_range": "{{ minimum }}–{{ maximum }}" }, - "product_variants": "Varianty produktu" + "product_variants": "Varianty produktu", + "taxes_included": "Včetně daní.", + "duties_included": "Včetně cla.", + "duties_and_taxes_included": "Včetně cla a daní." }, "modal": { "label": "Galerie multimédií" @@ -300,10 +302,6 @@ "empty": "Košík je prázdný", "cart_error": "Při aktualizaci vašeho košíku došlo k chybě. Zkuste to prosím znovu.", "cart_quantity_error_html": "Do košíku můžete přidat jen následující množství dané položky: {{ quantity }}.", - "taxes_and_shipping_policy_at_checkout_html": "Daně, slevy a poštovné se vypočítají na pokladně.", - "taxes_included_but_shipping_at_checkout": "Příslušná daň, poštovné a slevy se vypočítají na pokladně.", - "taxes_included_and_shipping_policy_html": "Včetně daní. Poštovné a slevy se vypočítají na pokladně.", - "taxes_and_shipping_at_checkout": "Daně, slevy a poštovné se vypočítají na pokladně.", "update": "Aktualizovat", "headings": { "product": "Produkt", @@ -317,7 +315,15 @@ "paragraph_html": "Přihlaste se, abyste si urychlili proces pokladny." }, "estimated_total": "Odhadovaný součet", - "new_estimated_total": "Nový odhadovaný součet" + "new_estimated_total": "Nový odhadovaný součet", + "duties_and_taxes_included_shipping_at_checkout_with_policy_html": "Včetně cla a daní. Slevy a poštovné se vypočítají na pokladně.", + "duties_and_taxes_included_shipping_at_checkout_without_policy": "Včetně cla a daní. Slevy a poštovné se vypočítají na pokladně.", + "taxes_included_shipping_at_checkout_with_policy_html": "Včetně daní. Slevy a poštovné se vypočítají na pokladně.", + "taxes_included_shipping_at_checkout_without_policy": "Včetně daní. Slevy a poštovné se vypočítají na pokladně.", + "duties_included_taxes_at_checkout_shipping_at_checkout_with_policy_html": "Včetně cla. Daně, slevy a poštovné se vypočítají na pokladně.", + "duties_included_taxes_at_checkout_shipping_at_checkout_without_policy": "Včetně cla. Daně, slevy a poštovné se vypočítají na pokladně.", + "taxes_at_checkout_shipping_at_checkout_with_policy_html": "Daně, slevy a poštovné se vypočítají na pokladně.", + "taxes_at_checkout_shipping_at_checkout_without_policy": "Daně, slevy a poštovné se vypočítají na pokladně." }, "footer": { "payment": "Platební metody" diff --git a/locales/cs.schema.json b/locales/cs.schema.json index 38aa8828499..65e11d93dca 100644 --- a/locales/cs.schema.json +++ b/locales/cs.schema.json @@ -139,7 +139,7 @@ "label": "Povolit návrhy hledaných výrazů" }, "predictive_search_show_vendor": { - "label": "Zobrazit dodavatele produktu", + "label": "Zobrazit vendora produktu", "info": "Zobrazuje se v případě, že jsou povoleny návrhy hledaných výrazů." }, "predictive_search_show_price": { @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra velká" + }, + "options__5": { + "label": "Extra extra velká" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Oznámení", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Vítejte v našem obchodě" }, "text_alignment": { "label": "Zarovnání textu", @@ -511,7 +515,8 @@ "name": "Koláž", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Multimediální koláž" }, "desktop_layout": { "label": "Desktopové rozvržení", @@ -586,7 +591,8 @@ }, "description": { "label": "Alternativní text videa", - "info": "Popište video pro zákazníky používající čtečky obrazovky. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "Popište video pro zákazníky používající čtečky obrazovky. [Zjistit více](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "Popište video" } } } @@ -599,7 +605,8 @@ "name": "Seznam kolekcí", "settings": { "title": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Kolekce" }, "image_ratio": { "label": "Poměr obrázku", @@ -654,6 +661,12 @@ "name": "Kontaktní formulář", "presets": { "name": "Kontaktní formulář" + }, + "settings": { + "title": { + "default": "Kontaktní formulář", + "label": "Nadpis" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blogové příspěvky", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Blogové příspěvky" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Propagovaná kolekce", "settings": { "title": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Propagovaná kolekce" }, "collection": { "label": "Kolekce" @@ -811,7 +826,8 @@ "name": "Nabídka", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Rychlé odkazy" }, "menu": { "label": "Nabídka", @@ -823,10 +839,12 @@ "name": "Text", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Nadpis" }, "subtext": { - "label": "Text nižší úrovně" + "label": "Text nižší úrovně", + "default": "

Uveďte pro zákazníky kontaktní informace a popište jim podrobně svůj obchod a značky nabízeného zboží.

" } } }, @@ -851,7 +869,8 @@ "label": "Zobrazit přihlášení k odběru e-mailů" }, "newsletter_heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Přihlaste se k odběru našich e-mailů" }, "header__1": { "content": "Přihlášení k odběru e-mailů", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Barevné schéma nabídky" + }, + "header__7": { + "content": "Přihlášení k zákaznickým účtům", + "info": "Pokud chcete spravovat zákaznické účty, přejděte do [jejich nastavení](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Zobrazit avatar", + "info": "Zákazníci po přihlášení v aplikaci Shop zobrazí jen svůj avatar." } } }, @@ -1103,7 +1130,8 @@ "name": "Nadpis", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Obrázkový banner" } } }, @@ -1111,7 +1139,8 @@ "name": "Text", "settings": { "text": { - "label": "Popis" + "label": "Popis", + "default": "Poskytněte zákazníkům podrobnosti o obrázcích banneru nebo obsahu v šabloně." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "První text tlačítka", - "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text." + "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text.", + "default": "Text tlačítka" }, "button_link_1": { "label": "První tlačítkový odkaz" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Druhý text tlačítka", - "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text." + "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text.", + "default": "Text tlačítka" }, "button_link_2": { "label": "Druhý tlačítkový odkaz" @@ -1252,7 +1283,8 @@ "name": "Nadpis", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Obrázek s textem" } } }, @@ -1260,7 +1292,8 @@ "name": "Text", "settings": { "text": { - "label": "Obsah" + "label": "Obsah", + "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": "Textový styl", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Text tlačítka", - "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text." + "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text.", + "default": "Text tlačítka" }, "button_link": { "label": "Tlačítkový odkaz" @@ -1292,7 +1326,8 @@ "name": "Titulek", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Přidejte slogan" }, "text_style": { "label": "Textový styl", @@ -1370,7 +1405,8 @@ "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" + "label": "Text", + "default": "Sdílet" } } } @@ -1539,7 +1575,8 @@ "name": "Stránka se seznamem kolekcí", "settings": { "title": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Kolekce" }, "sort": { "label": "Seřadit kolekce:", @@ -1616,7 +1653,8 @@ "name": "Text", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Textový blok" }, "text_style": { "label": "Textový styl", @@ -1697,7 +1735,8 @@ "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" + "label": "Text", + "default": "Sdílet" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Připojte nadpis, který popíše obsah.", - "label": "Nadpis" + "label": "Nadpis", + "default": "Sbalitelný řádek" }, "content": { "label": "Obsah řádku" @@ -1855,7 +1895,8 @@ "name": "Automaticky otevírané okno", "settings": { "link_label": { - "label": "Text odkazu" + "label": "Text odkazu", + "default": "Text odkazu automaticky otevíraného okna" }, "page": { "label": "Stránka" @@ -1877,7 +1918,8 @@ "content": "Pokud chcete vybrat doplňkové produkty, přidejte si aplikaci Search & Discovery. [Zjistit více](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Vhodná kombinace:" }, "make_collapsible_row": { "label": "Zobrazit jako sbalitelný řádek" @@ -1940,7 +1982,8 @@ "label": "První obrázek" }, "heading_1": { - "label": "První nadpis" + "label": "První nadpis", + "default": "Nadpis" }, "icon_2": { "label": "Druhá ikona" @@ -1949,7 +1992,8 @@ "label": "Druhý obrázek" }, "heading_2": { - "label": "Druhý nadpis" + "label": "Druhý nadpis", + "default": "Nadpis" }, "icon_3": { "label": "Třetí ikona" @@ -1958,7 +2002,8 @@ "label": "Třetí obrázek" }, "heading_3": { - "label": "Třetí nadpis" + "label": "Třetí nadpis", + "default": "Nadpis" } } }, @@ -2154,7 +2199,8 @@ "name": "Více sloupců", "settings": { "title": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Více sloupců" }, "image_width": { "label": "Šířka obrázku", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Text tlačítka" + "label": "Text tlačítka", + "default": "Text tlačítka" }, "button_link": { "label": "Tlačítkový odkaz" @@ -2234,10 +2281,12 @@ "label": "Obrázek" }, "title": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Sloupec" }, "text": { - "label": "Popis" + "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" @@ -2267,7 +2316,8 @@ "name": "Nadpis", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Přihlaste se k odběru našich e-mailů" } } }, @@ -2275,7 +2325,8 @@ "name": "Podnadpis", "settings": { "paragraph": { - "label": "Popis" + "label": "Popis", + "default": "

Získejte jako první informace o nových kolekcích a exkluzivních nabídkách.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Nadpis", "settings": { "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Informujte o své značce" } } }, @@ -2343,7 +2395,8 @@ "name": "Text", "settings": { "text": { - "label": "Popis" + "label": "Popis", + "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ě.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "První text tlačítka", - "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text." + "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text.", + "default": "Text tlačítka" }, "button_link_1": { "label": "První tlačítkový odkaz" @@ -2376,7 +2430,8 @@ "name": "Titulek", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Přidejte slogan" }, "text_style": { "label": "Textový styl", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Záhlaví" + "label": "Záhlaví", + "default": "Video" }, "cover_image": { "label": "Titulní obrázek" @@ -2471,7 +2527,8 @@ "name": "Text", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Textový blok" }, "text_style": { "label": "Textový styl", @@ -2545,7 +2602,8 @@ "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" + "label": "Text", + "default": "Sdílet" } } }, @@ -2711,7 +2769,8 @@ "name": "Záhlaví", "settings": { "heading": { - "label": "Záhlaví" + "label": "Záhlaví", + "default": "Brzy otevíráme" } } }, @@ -2719,7 +2778,8 @@ "name": "Odstavec", "settings": { "paragraph": { - "label": "Popis" + "label": "Popis", + "default": "

Zjistěte jako první, kdy začínáme prodávat.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Přístupnost", "label": "Popis prezentace", - "info": "Popište prezentaci pro zákazníky používající čtečky obrazovky." + "info": "Popište prezentaci pro zákazníky používající čtečky obrazovky.", + "default": "Prezentace o značce" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Obrázek" }, "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Obrázkový snímek" }, "subheading": { - "label": "Podnadpis" + "label": "Podnadpis", + "default": "Představte příběh své značky prostřednictvím obrázků" }, "button_label": { "label": "Text tlačítka", - "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text." + "info": "Pokud chcete tlačítko skrýt, nezadávejte žádný text.", + "default": "Text tlačítka" }, "link": { "label": "Tlačítkový odkaz" @@ -2895,7 +2959,8 @@ "label": "Titulek" }, "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Sbalitelný obsah" }, "heading_alignment": { "label": "Zarovnání nadpisu", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Připojte nadpis, který popíše obsah.", - "label": "Nadpis" + "label": "Nadpis", + "default": "Sbalitelný řádek" }, "row_content": { "label": "Obsah řádku" @@ -3150,7 +3216,8 @@ "label": "Počet sloupců v počítači" }, "paragraph__1": { - "content": "Dynamická doporučení využívají informace o objednávkách a produktech, aby se postupem času měnila a vylepšovala. [Zjistit více](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dynamická doporučení využívají informace o objednávkách a produktech, aby se postupem času měnila a vylepšovala. [Zjistit více](https://help.shopify.com/themes/development/recommended-products)", + "default": "Mohlo by se vám také líbit" }, "header__2": { "content": "Karta produktu" @@ -3225,18 +3292,6 @@ "label": "Šířka obrázku v počítači", "info": "Obrázek se automaticky optimalizuje pro mobilní prostředí." }, - "heading_size": { - "options__1": { - "label": "Malý" - }, - "options__2": { - "label": "Střední" - }, - "options__3": { - "label": "Velký" - }, - "label": "Velikost nadpisu" - }, "text_style": { "options__1": { "label": "Hlavní část" @@ -3323,16 +3378,20 @@ "label": "Obrázek" }, "caption": { - "label": "Titulek" + "label": "Titulek", + "default": "Titulek" }, "heading": { - "label": "Nadpis" + "label": "Nadpis", + "default": "Řádek" }, "text": { - "label": "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" + "label": "Text tlačítka", + "default": "Text tlačítka" }, "button_link": { "label": "Tlačítkový odkaz" diff --git a/locales/da.json b/locales/da.json index 161ae2ffe5c..e3339062e27 100644 --- a/locales/da.json +++ b/locales/da.json @@ -155,7 +155,6 @@ "image_available": "Billedet {{ index }} er nu tilgængeligt i gallerivisning" }, "view_full_details": "Se komplette oplysninger", - "include_taxes": "Inklusive skat.", "shipping_policy_html": "Levering beregnes ved betaling.", "choose_options": "Vælg muligheder", "choose_product_options": "Vælg muligheder for {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "til {{ price }}/stk", "price_range": "{{ minimum }} – {{ maximum }}" }, - "product_variants": "Produktvarianter" + "product_variants": "Produktvarianter", + "taxes_included": "Inklusive skatter.", + "duties_included": "Inklusive told.", + "duties_and_taxes_included": "Inklusive told og skatter." }, "modal": { "label": "Mediegalleri" @@ -280,10 +282,6 @@ "empty": "Din indkøbskurv er tom", "cart_error": "Der opstod en fejl under opdatering af din indkøbskurv. Prøv igen.", "cart_quantity_error_html": "Du kan kun lægge {{ quantity }} af denne vare i indkøbskurven.", - "taxes_and_shipping_policy_at_checkout_html": "Skatter, rabatter og levering beregnes ved betaling", - "taxes_included_but_shipping_at_checkout": "Inklusive skat. Levering og rabatter beregnes ved betaling", - "taxes_included_and_shipping_policy_html": "Inklusive skat. Levering og rabatter beregnes ved betaling.", - "taxes_and_shipping_at_checkout": "Skatter, rabatter og levering beregnes ved betaling", "headings": { "product": "Produkt", "price": "Pris", @@ -297,7 +295,15 @@ "paragraph_html": "Log ind for at betale hurtigere." }, "estimated_total": "Estimeret totalbeløb", - "new_estimated_total": "Ny 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" diff --git a/locales/da.schema.json b/locales/da.schema.json index 136c38d5f73..6c8af62fb2f 100644 --- a/locales/da.schema.json +++ b/locales/da.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Ekstra stor" + }, + "options__5": { + "label": "Ekstra, ekstra stor" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Meddelelse", "settings": { "text": { - "label": "Tekstfarve" + "label": "Tekstfarve", + "default": "Velkommen til vores butik" }, "text_alignment": { "label": "Tekstjustering", @@ -511,7 +515,8 @@ "name": "Collage", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Multimedie-kollage" }, "desktop_layout": { "label": "Skrivebordslayout", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Kollektionsliste", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Kollektioner" }, "image_ratio": { "label": "Billedforhold", @@ -610,7 +617,7 @@ "label": "Stående" }, "options__3": { - "label": "Firkantet" + "label": "Kvadrat" }, "info": "Tilføj billeder ved at redigere dine kollektioner. [Få mere at vide](https://help.shopify.com/manual/products/collections)" }, @@ -654,6 +661,12 @@ "name": "Kontaktformular", "presets": { "name": "Kontaktformular" + }, + "settings": { + "title": { + "default": "Kontaktformular", + "label": "Overskrift" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blogopslag", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Blogopslag" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Udvalgt kollektion", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Udvalgt kollektion" }, "collection": { "label": "Kollektion" @@ -728,7 +743,7 @@ "label": "Stående" }, "options__3": { - "label": "Firkantet" + "label": "Kvadrat" } }, "show_secondary_image": { @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Genvejslinks" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Tekst", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Overskrift" }, "subtext": { - "label": "Undertekst" + "label": "Undertekst", + "default": "

Del kontaktoplysninger, butiksoplysninger og brandindhold med dine kunder.

" } } }, @@ -851,7 +869,8 @@ "label": "Vis tilmelding med mail" }, "newsletter_heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Tilmeld dig vores mails" }, "header__1": { "content": "Tilmelding med mail", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Farveskema for menu" + }, + "header__7": { + "content": "Login for kundekonti", + "info": "For at administrere kundekonti skal du gå til [indstillingerne for kundekonti](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Vis avatar", + "info": "Kunder ser kun deres avatar, når de er logget ind med Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Billedbanner" } } }, @@ -1111,7 +1139,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "Giv kunder oplysninger om bannerbillederne eller indholdet i skabelonen." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Første knaptekst", - "info": "Lad feltet være tomt for at skjule knappen." + "info": "Lad feltet være tomt for at skjule knappen.", + "default": "Knaptekst" }, "button_link_1": { "label": "Første knaplink" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Anden knaptekst", - "info": "Lad feltet være tomt for at skjule knappen." + "info": "Lad feltet være tomt for at skjule knappen.", + "default": "Knaptekst" }, "button_link_2": { "label": "Andet knaplink" @@ -1252,7 +1283,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Billede med tekst" } } }, @@ -1260,7 +1292,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Indhold" + "label": "Indhold", + "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": "Teksttypografi", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Knaptekst", - "info": "Lad feltet være tomt for at skjule knappen." + "info": "Lad feltet være tomt for at skjule knappen.", + "default": "Knaptekst" }, "button_link": { "label": "Knaplink" @@ -1292,7 +1326,8 @@ "name": "Billedtekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tilføj et slogan" }, "text_style": { "label": "Teksttypografi", @@ -1370,7 +1405,8 @@ "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" + "label": "Tekst", + "default": "Del" } } } @@ -1466,7 +1502,7 @@ "label": "Stående" }, "options__3": { - "label": "Firkantet" + "label": "Kvadrat" } }, "show_secondary_image": { @@ -1539,7 +1575,8 @@ "name": "Siden Kollektionsliste", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Kollektioner" }, "sort": { "label": "Sortér kollektioner efter:", @@ -1571,7 +1608,7 @@ "label": "Stående" }, "options__3": { - "label": "Firkantet" + "label": "Kvadrat" }, "info": "Tilføj billeder ved at redigere dine kollektioner. [Få mere at vide](https://help.shopify.com/manual/products/collections)" }, @@ -1616,7 +1653,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekstfarve" + "label": "Tekstfarve", + "default": "Tekstblok" }, "text_style": { "label": "Teksttypografi", @@ -1697,7 +1735,8 @@ "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" + "label": "Tekst", + "default": "Del" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Inkluder en overskrift, der forklarer indholdet.", - "label": "Overskrift" + "label": "Overskrift", + "default": "Række, der kan skjules" }, "content": { "label": "Rækkeindhold" @@ -1855,7 +1895,8 @@ "name": "Pop-op", "settings": { "link_label": { - "label": "Navn på link" + "label": "Navn på link", + "default": "Pop op-linktekst" }, "page": { "label": "Side" @@ -1877,7 +1918,8 @@ "content": "Tilføj Search & Discovery-appen for at vælge supplerende produkter. [Få mere at vide](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Kan kombineres med" }, "make_collapsible_row": { "label": "Vis som række, der kan skjules" @@ -1940,7 +1982,8 @@ "label": "Første billede" }, "heading_1": { - "label": "Første overskrift" + "label": "Første overskrift", + "default": "Overskrift" }, "icon_2": { "label": "Andet ikon" @@ -1949,7 +1992,8 @@ "label": "Andet billede" }, "heading_2": { - "label": "Anden overskrift" + "label": "Anden overskrift", + "default": "Overskrift" }, "icon_3": { "label": "Tredje ikon" @@ -1958,7 +2002,8 @@ "label": "Tredje billede" }, "heading_3": { - "label": "Tredje overskrift" + "label": "Tredje overskrift", + "default": "Overskrift" } } }, @@ -2107,7 +2152,7 @@ "label": "Stående" }, "options__3": { - "label": "Firkantet" + "label": "Kvadrat" } }, "show_secondary_image": { @@ -2154,7 +2199,8 @@ "name": "Flere kolonner", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Flere kolonner" }, "image_width": { "label": "Billedbredde", @@ -2177,7 +2223,7 @@ "label": "Stående" }, "options__3": { - "label": "Firkantet" + "label": "Kvadrat" }, "options__4": { "label": "Cirkel" @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Knaptekst" + "label": "Knaptekst", + "default": "Knaptekst" }, "button_link": { "label": "Knaplink" @@ -2234,10 +2281,12 @@ "label": "Billede" }, "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Kolonne" }, "text": { - "label": "Beskrivelse" + "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" @@ -2267,7 +2316,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Tilmeld dig vores mails" } } }, @@ -2275,7 +2325,8 @@ "name": "Underoverskrift", "settings": { "paragraph": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "

Vær blandt de første til at få besked om nye kollektioner og eksklusive tilbud.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Fortæl om dit brand" } } }, @@ -2343,7 +2395,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "

Del oplysninger om dit brand med dine kunder. Beskriv et produkt, del meddelelser, eller byd velkommen til din butik.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Første knaptekst", - "info": "Lad feltet være tomt for at skjule knappen." + "info": "Lad feltet være tomt for at skjule knappen.", + "default": "Knaptekst" }, "button_link_1": { "label": "Første knaplink" @@ -2376,7 +2430,8 @@ "name": "Billedtekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tilføj et slogan" }, "text_style": { "label": "Teksttypografi", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Video" }, "cover_image": { "label": "Coverbillede" @@ -2471,7 +2527,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tekstblok" }, "text_style": { "label": "Teksttypografi", @@ -2545,7 +2602,8 @@ "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" + "label": "Tekst", + "default": "Del" } } }, @@ -2711,7 +2769,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Åbner snart" } } }, @@ -2719,7 +2778,8 @@ "name": "Afsnit", "settings": { "paragraph": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "

Vær blandt de første til at få besked ved lancering.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Tilgængelighed", "label": "Beskrivelse af diasshow", - "info": "Beskriv diasshowet for kunder med en skærmlæser." + "info": "Beskriv diasshowet for kunder med en skærmlæser.", + "default": "Diasshow om vores brand" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Billede" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Billeddias" }, "subheading": { - "label": "Underoverskrift" + "label": "Underoverskrift", + "default": "Fortæl dit brands historie gennem billeder" }, "button_label": { "label": "Knaptekst", - "info": "Lad feltet være tomt for at skjule knappen." + "info": "Lad feltet være tomt for at skjule knappen.", + "default": "Knaptekst" }, "link": { "label": "Knaplink" @@ -2895,7 +2959,8 @@ "label": "Billedtekst" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Indhold, der kan skjules" }, "heading_alignment": { "label": "Justering af overskrift", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Inkluder en overskrift, der forklarer indholdet.", - "label": "Overskrift" + "label": "Overskrift", + "default": "Række, der kan skjules" }, "row_content": { "label": "Rækkeindhold" @@ -3150,7 +3216,8 @@ "label": "Antallet af kolonner på computer" }, "paragraph__1": { - "content": "Dynamiske anbefalinger bruger ordre- og produktoplysninger til at foretage ændringer og forbedringer med tiden. [Få mere at vide](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dynamiske anbefalinger bruger ordre- og produktoplysninger til at foretage ændringer og forbedringer med tiden. [Få mere at vide](https://help.shopify.com/themes/development/recommended-products)", + "default": "Du vil muligvis også synes om" }, "header__2": { "content": "Produktkort" @@ -3225,18 +3292,6 @@ "label": "Billedbredde på computer", "info": "Billedet er automatisk optimeret til mobiltelefoner." }, - "heading_size": { - "options__1": { - "label": "Lille" - }, - "options__2": { - "label": "Mellem" - }, - "options__3": { - "label": "Stor" - }, - "label": "Størrelse for overskrift" - }, "text_style": { "options__1": { "label": "Brødtekst" @@ -3323,16 +3378,20 @@ "label": "Billede" }, "caption": { - "label": "Billedtekst" + "label": "Billedtekst", + "default": "Billedtekst" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Række" }, "text": { - "label": "Sms" + "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" + "label": "Knaptekst", + "default": "Knaptekst" }, "button_link": { "label": "Knaplink" diff --git a/locales/de.json b/locales/de.json index 66dfa0ac30f..cd7468287a4 100644 --- a/locales/de.json +++ b/locales/de.json @@ -135,7 +135,7 @@ "from_price_html": "Von {{ price }}", "regular_price": "Normaler Preis", "sale_price": "Verkaufspreis", - "unit_price": "Stückpreis" + "unit_price": "Grundpreis" }, "share": "Dieses Produkt teilen", "sold_out": "Ausverkauft", @@ -164,8 +164,7 @@ "image_available": "Bild {{ index }} ist nun in der Galerieansicht verfügbar" }, "view_full_details": "Vollständige Details anzeigen", - "include_taxes": "inkl. MwSt.", - "shipping_policy_html": "Versand<\/a> wird beim Checkout berechnet", + "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", @@ -185,7 +184,10 @@ "price_at_each": "bei {{ price }}/Stück", "price_range": "{{ minimum }}–{{ maximum }}" }, - "product_variants": "Produktvarianten" + "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" @@ -296,10 +298,6 @@ "empty": "Dein Warenkorb ist leer", "cart_error": "Beim Aktualisieren deines Warenkorbs ist ein Fehler aufgetreten. Bitte versuche es erneut.", "cart_quantity_error_html": "Du kannst deinem Warenkorb nur {{ quantity }} Stück dieses Artikels hinzufügen.", - "taxes_and_shipping_policy_at_checkout_html": "Steuern, Rabatte und Versand werden beim Checkout berechnet", - "taxes_included_but_shipping_at_checkout": "Inklusive Steuern, Versand und Rabatte werden beim Checkout berechnet", - "taxes_included_and_shipping_policy_html": "Inklusive Steuern. Versand und Rabatte werden beim Checkout berechnet.", - "taxes_and_shipping_at_checkout": "Steuern, Rabatte und Versand werden beim Checkout berechnet", "headings": { "product": "Produkt", "price": "Preis", @@ -313,7 +311,15 @@ "paragraph_html": "Logge dich ein, damit es beim Checkout schneller geht." }, "estimated_total": "Geschätzte Gesamtkosten", - "new_estimated_total": "Neuer geschätzter Gesamtbetrag" + "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" diff --git a/locales/de.schema.json b/locales/de.schema.json index 8704f9f7487..9d66cea8e18 100644 --- a/locales/de.schema.json +++ b/locales/de.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra groß" + }, + "options__5": { + "label": "Extra, extra groß" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Ankündigung", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Willkommen in unserem Shop" }, "link": { "label": "Link" @@ -511,7 +515,8 @@ "name": "Collage", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Multimedia-Collage" }, "desktop_layout": { "label": "Desktop-Layout", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Kollektionsliste", "settings": { "title": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Kollektionen" }, "image_ratio": { "label": "Bildverhältnis", @@ -610,7 +617,7 @@ "label": "Porträt" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" }, "info": "Bearbeite deine Kollektionen, um Bilder hinzuzufügen. [Mehr Informationen](https:\/\/help.shopify.com\/manual\/products\/collections)" }, @@ -654,6 +661,12 @@ "name": "Kontaktformular", "presets": { "name": "Kontaktformular" + }, + "settings": { + "title": { + "default": "Kontaktformular", + "label": "Titel" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blog-Beiträge", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Blog-Beiträge" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Vorgestellte Kollektion", "settings": { "title": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Vorgestellte Kollektion" }, "collection": { "label": "Kategorie" @@ -728,7 +743,7 @@ "label": "Porträt" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" } }, "show_secondary_image": { @@ -811,7 +826,8 @@ "name": "Menü", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Quick-Links" }, "menu": { "label": "Menü", @@ -823,10 +839,12 @@ "name": "Text", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Titel" }, "subtext": { - "label": "Subtext" + "label": "Subtext", + "default": "

Teile Kontaktinformationen, Shop-Details und Markeninhalte mit deinen Kunden.

" } } }, @@ -851,7 +869,8 @@ "label": "E-Mail-Anmeldung anzeigen" }, "newsletter_heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Abonniere unsere E-Mails" }, "header__1": { "content": "E-Mail-Anmeldung", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Menü-Farbschema" + }, + "header__7": { + "content": "Einloggen mit Kundenkonten", + "info": "Um deine Kundenkonten zu verwalten, gehe zu deinen [Kundenkonto-Einstellungen](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Avatar anzeigen", + "info": "Kunden sehen nur ihren Avatar, wenn sie bei Shop angemeldet sind." } } }, @@ -1103,7 +1130,8 @@ "name": "Titel", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Bild-Banner" } } }, @@ -1111,7 +1139,8 @@ "name": "Text", "settings": { "text": { - "label": "Beschreibung" + "label": "Beschreibung", + "default": "Stelle Kunden Details zu Banner-Bildern oder Inhalt auf der Vorlage zur Verfügung." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Erste Beschriftung der Schaltfläche", - "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden." + "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden.", + "default": "Schaltflächenbeschriftung" }, "button_link_1": { "label": "Erster Link der Schaltfläche" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Zweite Beschriftung der Schaltfläche", - "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden." + "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden.", + "default": "Schaltflächenbeschriftung" }, "button_link_2": { "label": "Zweiter Link der Schaltfläche" @@ -1252,7 +1283,8 @@ "name": "Titel", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Bild mit Text" } } }, @@ -1260,7 +1292,8 @@ "name": "Text", "settings": { "text": { - "label": "Inhalt" + "label": "Inhalt", + "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": "Textstil", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Schaltflächenbeschriftung", - "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden." + "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden.", + "default": "Schaltflächenbeschriftung" }, "button_link": { "label": "Schaltflächenlink" @@ -1292,7 +1326,8 @@ "name": "Bildtext", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Tagline hinzufügen" }, "text_style": { "label": "Textstil", @@ -1370,7 +1405,8 @@ "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" + "label": "Text", + "default": "Teilen" } } } @@ -1473,7 +1509,7 @@ "label": "Porträt" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" } }, "show_secondary_image": { @@ -1539,7 +1575,8 @@ "name": "Listenseite für Kollektionen", "settings": { "title": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Kollektionen" }, "sort": { "label": "Kollektionen sortieren nach:", @@ -1571,7 +1608,7 @@ "label": "Porträt" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" }, "info": "Bearbeite deine Kollektionen, um Bilder hinzuzufügen. [Mehr Informationen](https:\/\/help.shopify.com\/manual\/products\/collections)" }, @@ -1615,7 +1652,8 @@ "name": "Text", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Textblock" }, "text_style": { "label": "Textstil", @@ -1696,7 +1734,8 @@ "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" + "label": "Text", + "default": "Teilen" } } }, @@ -1705,7 +1744,8 @@ "settings": { "heading": { "info": "Füge eine Überschrift ein, die den Inhalt erklärt.", - "label": "Überschrift" + "label": "Überschrift", + "default": "Einklappbare Reihe" }, "content": { "label": "Reiheninhalt" @@ -1854,7 +1894,8 @@ "name": "Pop-up", "settings": { "link_label": { - "label": "Link-Label" + "label": "Link-Label", + "default": "Pop-up-Linktext" }, "page": { "label": "Seite" @@ -1876,7 +1917,8 @@ "content": "Um ergänzende Produkte auszuwählen, füge die Search & Discovery-App hinzu. [Mehr Informationen](https:\/\/help.shopify.com\/manual\/online-store\/search-and-discovery\/product-recommendations)" }, "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Passt gut zu" }, "make_collapsible_row": { "label": "Als einklappbare Reihe anzeigen" @@ -1905,7 +1947,7 @@ "label": "Bildverhältnis", "options": { "option_1": "Hochformat", - "option_2": "Quadratisch" + "option_2": "Quadrat" } }, "enable_quick_add": { @@ -1939,7 +1981,8 @@ "label": "Erstes Bild" }, "heading_1": { - "label": "Erste Überschrift" + "label": "Erste Überschrift", + "default": "Titel" }, "icon_2": { "label": "Zweites Symbol" @@ -1948,7 +1991,8 @@ "label": "Zweites Bild" }, "heading_2": { - "label": "Zweite Überschrift" + "label": "Zweite Überschrift", + "default": "Titel" }, "icon_3": { "label": "Drittes Symbol" @@ -1957,7 +2001,8 @@ "label": "Drittes Bild" }, "heading_3": { - "label": "Dritte Überschrift" + "label": "Dritte Überschrift", + "default": "Titel" } } }, @@ -2107,7 +2152,7 @@ "label": "Porträt" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" } }, "show_secondary_image": { @@ -2154,7 +2199,8 @@ "name": "Mit mehreren Spalten", "settings": { "title": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Mit mehreren Spalten" }, "image_width": { "label": "Bildbreite", @@ -2177,7 +2223,7 @@ "label": "Porträt" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" }, "options__4": { "label": "Kreis" @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Schaltflächenbeschriftung" + "label": "Schaltflächenbeschriftung", + "default": "Schaltflächenbeschriftung" }, "button_link": { "label": "Schaltflächenlink" @@ -2234,10 +2281,12 @@ "label": "Bild" }, "title": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Spalte" }, "text": { - "label": "Beschreibung" + "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" @@ -2267,7 +2316,8 @@ "name": "Titel", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Abonniere unsere E-Mails" } } }, @@ -2275,7 +2325,8 @@ "name": "Unter-Überschrift", "settings": { "paragraph": { - "label": "Beschreibung" + "label": "Beschreibung", + "default": "

Erfahre als Erster von neuen Kollektionen und exklusiven Angeboten.

" } } }, @@ -2344,7 +2395,8 @@ "name": "Titel", "settings": { "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Erzähle etwas über deine Marke" } } }, @@ -2352,7 +2404,8 @@ "name": "Text", "settings": { "text": { - "label": "Beschreibung" + "label": "Beschreibung", + "default": "

Teile Infos über deine Marke mit deinen Kunden. Beschreibe ein Produkt, kündige etwas an oder heiße Kunden willkommen.

" } } }, @@ -2361,7 +2414,8 @@ "settings": { "button_label_1": { "label": "Erste Schaltflächenbeschriftung", - "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden." + "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden.", + "default": "Schaltflächenbeschriftung" }, "button_link_1": { "label": "Erster Schaltflächenlink" @@ -2385,7 +2439,8 @@ "name": "Bildtext", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Tagline hinzufügen" }, "text_style": { "label": "Textstil", @@ -2430,7 +2485,8 @@ "name": "Video", "settings": { "heading": { - "label": "Titel" + "label": "Titel", + "default": "Video" }, "cover_image": { "label": "Titelbild" @@ -2480,7 +2536,8 @@ "name": "Text", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Textblock" }, "text_style": { "label": "Textstil", @@ -2554,7 +2611,8 @@ "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" + "label": "Text", + "default": "Teilen" } } }, @@ -2720,7 +2778,8 @@ "name": "Titel", "settings": { "heading": { - "label": "Titel" + "label": "Titel", + "default": "Eröffnet demnächst" } } }, @@ -2728,7 +2787,8 @@ "name": "Absatz", "settings": { "paragraph": { - "label": "Beschreibung" + "label": "Beschreibung", + "default": "

Erfahre als Erster von unserem Launch.

" }, "text_style": { "options__1": { @@ -2803,7 +2863,8 @@ "accessibility": { "content": "Barrierefreiheit", "label": "Slideshow-Beschreibung", - "info": "Beschreibe die Slideshow für Kunden, die Bildschirmlesegeräte benutzen." + "info": "Beschreibe die Slideshow für Kunden, die Bildschirmlesegeräte benutzen.", + "default": "Slideshow zu deiner Marke" } }, "blocks": { @@ -2814,14 +2875,17 @@ "label": "Bild" }, "heading": { - "label": "Titel" + "label": "Titel", + "default": "Slideshow" }, "subheading": { - "label": "Unter-Überschrift" + "label": "Unter-Überschrift", + "default": "Erzähle deine Geschichte mit Fotos" }, "button_label": { "label": "Schaltflächenbeschriftung", - "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden." + "info": "Lasse die Beschriftung leer, um die Schaltfläche auszublenden.", + "default": "Schaltflächenbeschriftung" }, "link": { "label": "Schaltflächenlink" @@ -2904,7 +2968,8 @@ "label": "Bildtext" }, "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Einklappbarer Inhalt" }, "heading_alignment": { "label": "Ausrichtung der Überschrift", @@ -2972,7 +3037,8 @@ "settings": { "heading": { "info": "Füge eine Überschrift ein, die den Inhalt erklärt.", - "label": "Überschrift" + "label": "Überschrift", + "default": "Einklappbare Reihe" }, "row_content": { "label": "Reiheninhalt" @@ -3159,7 +3225,8 @@ "label": "Anzahl der Spalten auf dem Desktop" }, "paragraph__1": { - "content": "Dynamische Empfehlungen nutzen Bestell- und Produktinformationen, um sich mit der Zeit zu verändern und zu verbessern. [Mehr Informationen](https:\/\/help.shopify.com\/themes\/development\/recommended-products)" + "content": "Dynamische Empfehlungen nutzen Bestell- und Produktinformationen, um sich mit der Zeit zu verändern und zu verbessern. [Mehr Informationen](https://help.shopify.com/themes/development/recommended-products)", + "default": "Das könnte dir auch gefallen" }, "header__2": { "content": "Produktkarte" @@ -3173,7 +3240,7 @@ "label": "Hochformat" }, "options__3": { - "label": "Quadratisch" + "label": "Quadrat" } }, "show_secondary_image": { @@ -3234,18 +3301,6 @@ "label": "Desktop-Bildbreite", "info": "Bild wird automatisch für die mobile Nutzung optimiert." }, - "heading_size": { - "options__1": { - "label": "Klein" - }, - "options__2": { - "label": "Mittel" - }, - "options__3": { - "label": "Groß" - }, - "label": "Größe der Überschrift" - }, "text_style": { "options__1": { "label": "Nachricht" @@ -3332,16 +3387,20 @@ "label": "Bild" }, "caption": { - "label": "Bildtext" + "label": "Bildtext", + "default": "Bildtext" }, "heading": { - "label": "Überschrift" + "label": "Überschrift", + "default": "Reihe" }, "text": { - "label": "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" + "label": "Schaltflächenbeschriftung", + "default": "Schaltflächenbeschriftung" }, "button_link": { "label": "Schaltflächenlink" diff --git a/locales/el.json b/locales/el.json index 8253cd7d593..79f1bfdcb73 100644 --- a/locales/el.json +++ b/locales/el.json @@ -156,7 +156,6 @@ "image_available": "Η εικόνα {{ index }} είναι τώρα διαθέσιμη στην προβολή συλλογής" }, "view_full_details": "Προβολή όλων των λεπτομερειών", - "include_taxes": "Ο φόρος συμπεριλαμβάνεται.", "shipping_policy_html": "Τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς.", "choose_options": "Ορίστε επιλογές", "choose_product_options": "Ορίστε επιλογές για {{ product_name }}", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "στα {{ price }}/τμχ", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "taxes_included": "Οι φόροι συμπεριλαμβάνονται.", + "duties_included": "Οι δασμοί συμπεριλαμβάνονται.", + "duties_and_taxes_included": "Οι δασμοί και οι φόροι συμπεριλαμβάνονται." }, "modal": { "label": "Συλλογή μέσων" @@ -280,10 +282,6 @@ "empty": "Το καλάθι σας είναι κενό", "cart_error": "Παρουσιάστηκε σφάλμα κατά την ενημέρωση του καλαθιού. Δοκιμάστε ξανά.", "cart_quantity_error_html": "Μπορείτε να προσθέσετε μόνο {{ quantity }} από αυτό το προϊόν στο καλάθι σας.", - "taxes_and_shipping_policy_at_checkout_html": "Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς", - "taxes_included_but_shipping_at_checkout": "Ο φόρος που συμπεριλαμβάνεται, τα έξοδα αποστολής και οι εκπτώσεις υπολογίζονται κατά την ολοκλήρωση της αγοράς", - "taxes_included_and_shipping_policy_html": "Ο φόρος συμπεριλαμβάνεται. Τα έξοδα αποστολής και οι εκπτώσεις υπολογίζονται κατά την ολοκλήρωση της αγοράς.", - "taxes_and_shipping_at_checkout": "Οι φόροι, οι εκπτώσεις και τα έξοδα αποστολής υπολογίζονται κατά την ολοκλήρωση της αγοράς", "headings": { "product": "Προϊόν", "price": "Τιμή", @@ -297,7 +295,15 @@ "paragraph_html": "Συνδεθείτε για ταχύτερη ολοκλήρωση των αγορών σας." }, "estimated_total": "Εκτιμώμενο σύνολο", - "new_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": "Μέθοδοι πληρωμής" diff --git a/locales/en.default.json b/locales/en.default.json index 1b61e67c79c..87949eb35d6 100644 --- a/locales/en.default.json +++ b/locales/en.default.json @@ -183,9 +183,10 @@ "view_full_details": "View full details", "xr_button": "View in your space", "xr_button_label": "View in your space, loads item in augmented reality window", - "include_taxes": "Tax included.", - "shipping_policy_html": "Shipping<\/a> calculated at checkout.", - "assembly_instructions": "Assembly instructions" + "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" @@ -305,10 +306,14 @@ "empty": "Your cart is empty", "cart_error": "There was an error while updating your cart. Please try again.", "cart_quantity_error_html": "You can only add {{ quantity }} of this item to your cart.", - "taxes_and_shipping_policy_at_checkout_html": "Taxes, Discounts and shipping calculated at checkout", - "taxes_included_but_shipping_at_checkout": "Tax included and shipping and discounts calculated at checkout", - "taxes_included_and_shipping_policy_html": "Tax included. Shipping and discounts calculated at checkout.", - "taxes_and_shipping_at_checkout": "Taxes, discounts and shipping calculated at checkout", + "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", diff --git a/locales/en.default.schema.json b/locales/en.default.schema.json index 0f2b219b290..fd574327c96 100644 --- a/locales/en.default.schema.json +++ b/locales/en.default.schema.json @@ -413,6 +413,9 @@ }, "options__4": { "label": "Extra large" + }, + "options__5": { + "label": "Extra extra large" } }, "image_shape": { @@ -483,7 +486,8 @@ "name": "Announcement", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Welcome to our store" }, "text_alignment": { "label": "Text alignment", @@ -522,6 +526,7 @@ "name": "Collage", "settings": { "heading": { + "default": "Multimedia collage", "label": "Heading" }, "desktop_layout": { @@ -596,6 +601,7 @@ "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)" } @@ -610,6 +616,7 @@ "name": "Collection list", "settings": { "title": { + "default": "Collections", "label": "Heading" }, "image_ratio": { @@ -665,6 +672,12 @@ "name": "Contact Form", "presets": { "name": "Contact form" + }, + "settings": { + "title": { + "default": "Contact form", + "label": "Heading" + } } }, "custom-liquid": { @@ -683,6 +696,7 @@ "name": "Blog posts", "settings": { "heading": { + "default": "Blog posts", "label": "Heading" }, "blog": { @@ -716,7 +730,8 @@ "name": "Featured collection", "settings": { "title": { - "label": "Heading" + "label": "Heading", + "default": "Featured collection" }, "description": { "label": "Description" @@ -822,6 +837,7 @@ "name": "Text", "settings": { "text": { + "default": "Text block", "label": "Text" }, "text_style": { @@ -907,7 +923,8 @@ "name": "Share", "settings": { "text": { - "label": "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)" @@ -965,7 +982,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Quick links" }, "menu": { "label": "Menu", @@ -992,10 +1010,12 @@ "name": "Text", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Heading" }, "subtext": { - "label": "Subtext" + "label": "Subtext", + "default": "

Share contact information, store details, and brand content with your customers.

" } } } @@ -1005,7 +1025,8 @@ "label": "Show email signup" }, "newsletter_heading": { - "label": "Heading" + "label": "Heading", + "default": "Subscribe to our emails" }, "header__1": { "content": "Email Signup", @@ -1154,6 +1175,14 @@ "options__2": { "label": "Left" } + }, + "header__7": { + "content": "Customer accounts log in", + "info": "To manage customer accounts, go to your [customer accounts settings](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Show avatar", + "info": "Customers will only see their avatar when they're signed in with Shop" } } }, @@ -1257,7 +1286,8 @@ "name": "Heading", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Image banner" } } }, @@ -1265,7 +1295,8 @@ "name": "Text", "settings": { "text": { - "label": "Description" + "label": "Description", + "default": "Give customers details about the banner image(s) or content on the template." }, "text_style": { "options__1": { @@ -1286,7 +1317,8 @@ "settings": { "button_label_1": { "label": "First button label", - "info": "Leave the label blank to hide the button." + "info": "Leave the label blank to hide the button.", + "default": "Button label" }, "button_link_1": { "label": "First button link" @@ -1296,7 +1328,8 @@ }, "button_label_2": { "label": "Second button label", - "info": "Leave the label blank to hide the button." + "info": "Leave the label blank to hide the button.", + "default": "Button label" }, "button_link_2": { "label": "Second button link" @@ -1406,7 +1439,8 @@ "name": "Heading", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Image with text" } } }, @@ -1414,7 +1448,8 @@ "name": "Caption", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Add a tagline" }, "text_style": { "label": "Text style", @@ -1443,7 +1478,8 @@ "name": "Text", "settings": { "text": { - "label": "Content" + "label": "Content", + "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": "Text style", @@ -1461,7 +1497,8 @@ "settings": { "button_label": { "label": "Button label", - "info": "Leave the label blank to hide the button." + "info": "Leave the label blank to hide the button.", + "default": "Button label" }, "button_link": { "label": "Button link" @@ -1510,18 +1547,6 @@ "label": "Desktop image width", "info": "Image is automatically optimized for mobile." }, - "heading_size": { - "options__1": { - "label": "Small" - }, - "options__2": { - "label": "Medium" - }, - "options__3": { - "label": "Large" - }, - "label": "Heading size" - }, "text_style": { "options__1": { "label": "Body" @@ -1608,16 +1633,20 @@ "label": "Image" }, "caption": { - "label": "Caption" + "label": "Caption", + "default": "Caption" }, "heading": { - "label": "Heading" + "label": "Heading", + "default": "Row" }, "text": { - "label": "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" + "label": "Button label", + "default": "Button label" }, "button_link": { "label": "Button link" @@ -1680,7 +1709,8 @@ "name": "Share", "settings": { "text": { - "label": "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)." @@ -1855,7 +1885,8 @@ "name": "Collections list page", "settings": { "title": { - "label": "Heading" + "label": "Heading", + "default": "Collections" }, "sort": { "label": "Sort collections by:", @@ -1941,7 +1972,8 @@ "name": "Text", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Text block" }, "text_style": { "label": "Text style", @@ -2057,7 +2089,8 @@ "name": "Share", "settings": { "text": { - "label": "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)." @@ -2072,7 +2105,8 @@ "settings": { "heading": { "info": "Include a heading that explains the content.", - "label": "Heading" + "label": "Heading", + "default": "Collapsible row" }, "content": { "label": "Row content" @@ -2221,7 +2255,8 @@ "name": "Pop-up", "settings": { "link_label": { - "label": "Link label" + "label": "Link label", + "default": "Pop-up link text" }, "page": { "label": "Page" @@ -2243,7 +2278,8 @@ "content": "To select complementary products, add the Search & Discovery app. [Learn more](https:\/\/help.shopify.com\/manual\/online-store\/search-and-discovery\/product-recommendations)" }, "heading": { - "label": "Heading" + "label": "Heading", + "default": "Pairs well with" }, "make_collapsible_row": { "label": "Show as collapsible row" @@ -2306,7 +2342,8 @@ "label": "First image" }, "heading_1": { - "label": "First heading" + "label": "First heading", + "default": "Heading" }, "icon_2": { "label": "Second icon" @@ -2315,7 +2352,8 @@ "label": "Second image" }, "heading_2": { - "label": "Second heading" + "label": "Second heading", + "default": "Heading" }, "icon_3": { "label": "Third icon" @@ -2324,7 +2362,8 @@ "label": "Third image" }, "heading_3": { - "label": "Third heading" + "label": "Third heading", + "default": "Heading" } } } @@ -2485,7 +2524,8 @@ "name": "Multicolumn", "settings": { "title": { - "label": "Heading" + "label": "Heading", + "default": "Multicolumn" }, "image_width": { "label": "Image width", @@ -2536,7 +2576,8 @@ } }, "button_label": { - "label": "Button label" + "label": "Button label", + "default": "Button label" }, "button_link": { "label": "Button link" @@ -2565,10 +2606,12 @@ "label": "Image" }, "title": { - "label": "Heading" + "label": "Heading", + "default": "Column" }, "text": { - "label": "Description" + "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" @@ -2598,7 +2641,8 @@ "name": "Heading", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Subscribe to our emails" } } }, @@ -2606,7 +2650,8 @@ "name": "Subheading", "settings": { "paragraph": { - "label": "Description" + "label": "Description", + "default": "

Be the first to know about new collections and exclusive offers.

" } } }, @@ -2722,7 +2767,8 @@ "name": "Heading", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Opening soon" } } }, @@ -2730,7 +2776,8 @@ "name": "Paragraph", "settings": { "paragraph": { - "label": "Description" + "label": "Description", + "default": "

Be the first to know when we launch.

" }, "text_style": { "options__1": { @@ -2789,7 +2836,8 @@ "label": "Number of columns on desktop" }, "paragraph__1": { - "content": "Dynamic recommendations use order and product information to change and improve over time. [Learn more](https:\/\/help.shopify.com\/themes\/development\/recommended-products)" + "content": "Dynamic recommendations use order and product information to change and improve over time. [Learn more](https://help.shopify.com/themes/development/recommended-products)", + "default": "You may also like" }, "header__2": { "content": "Product card" @@ -2876,7 +2924,8 @@ "name": "Heading", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Talk about your brand" } } }, @@ -2884,7 +2933,8 @@ "name": "Caption", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Add a tagline" }, "text_style": { "label": "Text style", @@ -2913,7 +2963,8 @@ "name": "Text", "settings": { "text": { - "label": "Description" + "label": "Description", + "default": "

Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.

" } } }, @@ -2922,7 +2973,8 @@ "settings": { "button_label_1": { "label": "First button label", - "info": "Leave the label blank to hide the button." + "info": "Leave the label blank to hide the button.", + "default": "Button label" }, "button_link_1": { "label": "First button link" @@ -2951,7 +3003,8 @@ "name": "Video", "settings": { "heading": { - "label": "Heading" + "label": "Heading", + "default": "Video" }, "cover_image": { "label": "Cover image" @@ -3048,7 +3101,8 @@ "accessibility": { "content": "Accessibility", "label": "Slideshow description", - "info": "Describe the slideshow for customers using screen readers." + "info": "Describe the slideshow for customers using screen readers.", + "default": "Slideshow about our brand" } }, "blocks": { @@ -3059,14 +3113,17 @@ "label": "Image" }, "heading": { - "label": "Heading" + "label": "Heading", + "default": "Image slide" }, "subheading": { - "label": "Subheading" + "label": "Subheading", + "default": "Tell your brand's story through images" }, "button_label": { "label": "Button label", - "info": "Leave the label blank to hide the button." + "info": "Leave the label blank to hide the button.", + "default": "Button label" }, "link": { "label": "Button link" @@ -3149,7 +3206,8 @@ "label": "Caption" }, "heading": { - "label": "Heading" + "label": "Heading", + "default": "Collapsible content" }, "heading_alignment": { "label": "Heading alignment", @@ -3216,6 +3274,7 @@ "name": "Collapsible row", "settings": { "heading": { + "default": "Collapsible row", "info": "Include a heading that explains the content.", "label": "Heading" }, diff --git a/locales/es.json b/locales/es.json index 2c08844e079..0176af32f92 100644 --- a/locales/es.json +++ b/locales/es.json @@ -156,7 +156,6 @@ "image_available": "La imagen {{ index }} ya está disponible en la vista de la galería" }, "view_full_details": "Ver todos los detalles", - "include_taxes": "Impuesto incluido.", "shipping_policy_html": "Los gastos de envío se calculan en la pantalla de pago.", "choose_options": "Seleccionar opciones", "choose_product_options": "Elegir opciones para {{ product_name }}", @@ -176,7 +175,10 @@ "price_at_each": "a {{ price }} por unidad", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "Variantes de producto" + "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" @@ -290,10 +292,6 @@ "empty": "Tu carrito esta vacío", "cart_error": "Hubo un error al actualizar tu carrito de compra. Inténtalo de nuevo.", "cart_quantity_error_html": "Solo puedes agregar {{ quantity }} de este artículo a tu carrito.", - "taxes_and_shipping_policy_at_checkout_html": "Impuestos, descuentos y envío calculados en la pantalla de pago", - "taxes_included_but_shipping_at_checkout": "Impuesto incluido, envío y descuentos calculados en la pantalla de pago", - "taxes_included_and_shipping_policy_html": "Impuesto incluido. Envío y descuentos calculados en la pantalla de pago.", - "taxes_and_shipping_at_checkout": "Impuestos, descuentos y envío calculados en la pantalla de pago", "headings": { "product": "Producto", "price": "Precio", @@ -307,7 +305,15 @@ "paragraph_html": "Inicia sesión para finalizar tus compras con mayor rapidez." }, "estimated_total": "Total estimado", - "new_estimated_total": "Nuevo 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" diff --git a/locales/es.schema.json b/locales/es.schema.json index f89d3e19ad5..99ed1dacf7b 100644 --- a/locales/es.schema.json +++ b/locales/es.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra grande" + }, + "options__5": { + "label": "Superextragrande" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Anuncio", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Te damos la bienvenida a nuestra tienda" }, "text_alignment": { "label": "Alineación de texto", @@ -511,7 +515,8 @@ "name": "Collage", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Collage multimedia" }, "desktop_layout": { "label": "Diseño para computadora", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Lista de colecciones", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Colecciones" }, "image_ratio": { "label": "Relación de aspecto de imagen", @@ -654,6 +661,12 @@ "name": "Formulario de contacto", "presets": { "name": "Formulario de contacto" + }, + "settings": { + "title": { + "default": "Formulario de contacto", + "label": "Encabezado" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Artículos de blog", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Artículos del blog" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Colección destacada", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Colección destacada" }, "collection": { "label": "Colección" @@ -811,7 +826,8 @@ "name": "Menú", "settings": { "heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Enlaces rápidos" }, "menu": { "label": "Menú", @@ -823,10 +839,12 @@ "name": "Texto", "settings": { "heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Encabezado" }, "subtext": { - "label": "Subtexto" + "label": "Subtexto", + "default": "

Comparte la información de contacto, los detalles de la tienda y el contenido de la marca con tus clientes.

" } } }, @@ -851,7 +869,8 @@ "label": "Mostrar suscriptor de correo electrónico" }, "newsletter_heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Suscribirse a nuestros correos electrónicos" }, "header__1": { "content": "Suscriptor de correo electrónico", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Esquema de colores del menú" + }, + "header__7": { + "content": "Inicio de sesión de cuentas de cliente", + "info": "Para gestionar las cuentas de cliente, ve a la [configuración de cuentas de cliente](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Mostrar avatar", + "info": "Los clientes solo verán su avatar cuando inicien sesión en Shop." } } }, @@ -1103,7 +1130,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Banner de imagen" } } }, @@ -1111,7 +1139,8 @@ "name": "Texto", "settings": { "text": { - "label": "Descripción" + "label": "Descripción", + "default": "Ofrece a los clientes información sobre las imágenes del banner o el contenido de la plantilla." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Primera etiqueta de botón", - "info": "Deja la etiqueta en blanco para ocultar el botón." + "info": "Deja la etiqueta en blanco para ocultar el botón.", + "default": "Etiqueta de botón" }, "button_link_1": { "label": "Primer enlace de botón" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Primera etiqueta de botón", - "info": "Deja la etiqueta en blanco para ocultar el botón." + "info": "Deja la etiqueta en blanco para ocultar el botón.", + "default": "Etiqueta de botón" }, "button_link_2": { "label": "Segundo enlace de botón" @@ -1252,7 +1283,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Imagen con texto" } } }, @@ -1260,7 +1292,8 @@ "name": "Texto", "settings": { "text": { - "label": "Contenido" + "label": "Contenido", + "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 de texto", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Etiqueta de botón", - "info": "Deja la etiqueta en blanco para ocultar el botón." + "info": "Deja la etiqueta en blanco para ocultar el botón.", + "default": "Etiqueta de botón" }, "button_link": { "label": "Enlace de botón" @@ -1292,7 +1326,8 @@ "name": "Leyenda", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Agregar un eslogan" }, "text_style": { "label": "Estilo de texto", @@ -1370,7 +1405,8 @@ "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" + "label": "texto", + "default": "Compartir" } } } @@ -1539,7 +1575,8 @@ "name": "Página de lista de colecciones", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Colecciones" }, "sort": { "label": "Ordenar colecciones por:", @@ -1616,7 +1653,8 @@ "name": "Texto", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bloque de texto" }, "text_style": { "label": "Text style", @@ -1697,7 +1735,8 @@ "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" + "label": "texto", + "default": "Compartir" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Incluye un título que explique el contenido.", - "label": "Título" + "label": "Título", + "default": "Fila desplegable" }, "content": { "label": "Contenido de fila" @@ -1855,7 +1895,8 @@ "name": "Ventana emergente", "settings": { "link_label": { - "label": "Vincular etiqueta" + "label": "Vincular etiqueta", + "default": "Texto del enlace emergente" }, "page": { "label": "Página" @@ -1877,7 +1918,8 @@ "content": "Para seleccionar productos complementarios, agrega la aplicación Search & Discovery. [Más información](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Combina bien con" }, "make_collapsible_row": { "label": "Mostrar como una fila plegable" @@ -1940,7 +1982,8 @@ "label": "Primera imagen" }, "heading_1": { - "label": "Primer encabezado" + "label": "Primer encabezado", + "default": "Encabezado" }, "icon_2": { "label": "Segundo ícono" @@ -1949,7 +1992,8 @@ "label": "Segunda imagen" }, "heading_2": { - "label": "Segundo encabezado" + "label": "Segundo encabezado", + "default": "Encabezado" }, "icon_3": { "label": "Tercer ícono" @@ -1958,7 +2002,8 @@ "label": "Tercera imagen" }, "heading_3": { - "label": "Tercer encabezado" + "label": "Tercer encabezado", + "default": "Encabezado" } } }, @@ -2154,7 +2199,8 @@ "name": "Multicolumna", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Varias columnas" }, "image_width": { "label": "Ancho de imagen", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Etiqueta de botón" + "label": "Etiqueta de botón", + "default": "Etiqueta de botón" }, "button_link": { "label": "Enlace de botón" @@ -2234,10 +2281,12 @@ "label": "Imagen" }, "title": { - "label": "Título" + "label": "Título", + "default": "Columna" }, "text": { - "label": "Descripción" + "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" @@ -2267,7 +2316,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Suscribirse a nuestros correos electrónicos" } } }, @@ -2275,7 +2325,8 @@ "name": "Subtítulo", "settings": { "paragraph": { - "label": "Descripción" + "label": "Descripción", + "default": "

Conoce las nuevas colecciones y las ofertas exclusivas antes que nadie.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Coméntanos sobre tu marca" } } }, @@ -2343,7 +2395,8 @@ "name": "Texto", "settings": { "text": { - "label": "Descripción" + "label": "Descripción", + "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.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Primera etiqueta de botón", - "info": "Deja la etiqueta en blanco para ocultar el botón." + "info": "Deja la etiqueta en blanco para ocultar el botón.", + "default": "Etiqueta de botón" }, "button_link_1": { "label": "Primer enlace de botón" @@ -2376,7 +2430,8 @@ "name": "Leyenda", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Agregar un eslogan" }, "text_style": { "label": "Estilo de texto", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Video" }, "cover_image": { "label": "Imagen de portada" @@ -2471,7 +2527,8 @@ "name": "Texto", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bloque de texto" }, "text_style": { "label": "Estilo de texto", @@ -2545,7 +2602,8 @@ "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" + "label": "Texto", + "default": "Compartir" } } }, @@ -2711,7 +2769,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Apertura próximamente" } } }, @@ -2719,7 +2778,8 @@ "name": "Párrafo", "settings": { "paragraph": { - "label": "Descripción" + "label": "Descripción", + "default": "

Entérate de nuestros lanzamientos antes que los demás.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Accesibilidad", "label": "Descripción de la presentación de diapositivas", - "info": "Describe la presentación de diapositivas para los clientes utilizando lectores de pantallas." + "info": "Describe la presentación de diapositivas para los clientes utilizando lectores de pantallas.", + "default": "Presentación de diapositivas sobre tu marca" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Imagen" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Diapositiva de imagen" }, "subheading": { - "label": "Subtítulo" + "label": "Subtítulo", + "default": "Cuenta la historia de tu marca a través de imágenes" }, "button_label": { "label": "Etiqueta de botón", - "info": "Deja la etiqueta en blanco para ocultar el botón." + "info": "Deja la etiqueta en blanco para ocultar el botón.", + "default": "Etiqueta de botón" }, "link": { "label": "Enlace de botón" @@ -2895,7 +2959,8 @@ "label": "Leyenda" }, "heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Contenido desplegable" }, "heading_alignment": { "label": "Alineación del encabezado", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Incluye un título que explique el contenido.", - "label": "Encabezado" + "label": "Encabezado", + "default": "Fila desplegable" }, "row_content": { "label": "Contenido de fila" @@ -3150,7 +3216,8 @@ "label": "Número de columnas en la versión para computadora" }, "paragraph__1": { - "content": "Las recomendaciones dinámicas usan la información de pedidos y productos para cambiar y mejorar con el tiempo. [Más información](https://help.shopify.com/themes/development/recommended-products)" + "content": "Las recomendaciones dinámicas usan la información de pedidos y productos para cambiar y mejorar con el tiempo. [Más información](https://help.shopify.com/themes/development/recommended-products)", + "default": "También te puede interesar" }, "header__2": { "content": "Tarjeta de producto" @@ -3225,18 +3292,6 @@ "label": "Ancho de la imagen en la computadora", "info": "La imagen se optimiza automáticamente para el celular." }, - "heading_size": { - "options__1": { - "label": "Pequeña" - }, - "options__2": { - "label": "Mediana" - }, - "options__3": { - "label": "Grande" - }, - "label": "Tamaño del título" - }, "text_style": { "options__1": { "label": "Cuerpo" @@ -3323,16 +3378,20 @@ "label": "Imagen" }, "caption": { - "label": "Leyenda" + "label": "Leyenda", + "default": "Leyenda" }, "heading": { - "label": "Encabezado" + "label": "Encabezado", + "default": "Fila" }, "text": { - "label": "Texto" + "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" + "label": "Etiqueta de botón", + "default": "Etiqueta de botón" }, "button_link": { "label": "Enlace de botón" diff --git a/locales/fi.json b/locales/fi.json index de8fce4cec5..73fc3b54223 100644 --- a/locales/fi.json +++ b/locales/fi.json @@ -155,7 +155,6 @@ "image_available": "Kuva {{ index }} on nyt saatavilla gallerianäkymässä" }, "view_full_details": "Näytä kaikki tiedot", - "include_taxes": "Sisältää veron.", "shipping_policy_html": "Toimituskulut lasketaan kassalla.", "choose_options": "Valitse vaihtoehdot", "choose_product_options": "Valitse vaihtoehtoja tuotteelle {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "{{ price }}/kpl", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "Tuoteversiot" + "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" @@ -280,10 +282,6 @@ "empty": "Ostoskorisi on tyhjä", "cart_error": "Ostoskorisi päivityksessä tapahtui virhe. Yritä uudelleen.", "cart_quantity_error_html": "Voit lisätä ostoskoriisi vain {{ quantity }} kappaletta tätä tuotetta.", - "taxes_and_shipping_policy_at_checkout_html": "Verot, alennukset ja toimituskulut lasketaan kassalla", - "taxes_included_but_shipping_at_checkout": "Sisältää veron; toimituskulut ja alennukset lasketaan kassalla", - "taxes_included_and_shipping_policy_html": "Sisältää veron. Toimituskulut ja alennukset lasketaan kassalla.", - "taxes_and_shipping_at_checkout": "Verot, alennukset ja toimituskulut lasketaan kassalla", "headings": { "product": "Tuote", "price": "Hinta", @@ -297,7 +295,15 @@ "paragraph_html": "Kirjaudu sisään, jotta voit maksaa kassalla nopeammin." }, "estimated_total": "Arvioitu kokonaishinta", - "new_estimated_total": "Uusi 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" diff --git a/locales/fi.schema.json b/locales/fi.schema.json index 85f6e3527de..6b27ee76c3c 100644 --- a/locales/fi.schema.json +++ b/locales/fi.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Erittäin suuri" + }, + "options__5": { + "label": "XXL" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Ilmoitus", "settings": { "text": { - "label": "Teksti" + "label": "Teksti", + "default": "Tervetuloa kauppaamme" }, "text_alignment": { "label": "Tekstin tasaus", @@ -511,7 +515,8 @@ "name": "Kollaasi", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Multimediakollaasi" }, "desktop_layout": { "label": "Työpöytäasettelu", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Kokoelmaluettelo", "settings": { "title": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Kokoelmat" }, "image_ratio": { "label": "Kuvasuhde", @@ -654,6 +661,12 @@ "name": "Yhteydenottolomake", "presets": { "name": "Yhteydenottolomake" + }, + "settings": { + "title": { + "default": "Yhteydenottolomake", + "label": "Otsikko" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blogipostaukset", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Blogipostaukset" }, "blog": { "label": "Blogi" @@ -705,7 +719,8 @@ "name": "Esittelykokoelma", "settings": { "title": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Esittelykokoelma" }, "collection": { "label": "Kokoelma" @@ -811,7 +826,8 @@ "name": "Valikko", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Pikalinkit" }, "menu": { "label": "Valikko", @@ -823,10 +839,12 @@ "name": "Teksti", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Otsikko" }, "subtext": { - "label": "Alateksti" + "label": "Alateksti", + "default": "

Jaa asiakkaillesi yhteystiedot, kaupan tiedot ja brändin sisältöä.

" } } }, @@ -851,7 +869,8 @@ "label": "Näytä sähköpostirekisteröityminen" }, "newsletter_heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Tilaa sähköpostiviestejämme" }, "header__1": { "content": "Sähköpostitilaaja", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Värimallivalikko" + }, + "header__7": { + "content": "Asiakastilille kirjautuminen", + "info": "Voit hallinnoida asiakastilejä [asiakastilien asetuksista](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Näytä avatar", + "info": "Asiakkaat näkevät oman avatarinsa vain ollessaan kirjautuneena Shopiin" } } }, @@ -1103,7 +1130,8 @@ "name": "Otsikko", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Kuvabanneri" } } }, @@ -1111,7 +1139,8 @@ "name": "Teksti", "settings": { "text": { - "label": "Kuvaus" + "label": "Kuvaus", + "default": "Anna asiakkaille tietoa bannerin kuvista tai sisällöstä mallissa." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Ensimmäinen tekstipainike", - "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi." + "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi.", + "default": "Tekstipainike" }, "button_link_1": { "label": "Ensimmäinen painikelinkki" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Toinen tekstipainike", - "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi." + "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi.", + "default": "Tekstipainike" }, "button_link_2": { "label": "Toinen painikelinkki" @@ -1252,7 +1283,8 @@ "name": "Otsikko", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Kuva tekstillä" } } }, @@ -1260,7 +1292,8 @@ "name": "Teksti", "settings": { "text": { - "label": "Sisältö" + "label": "Sisältö", + "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": "Tekstityyli", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Tekstipainike", - "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi." + "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi.", + "default": "Tekstipainike" }, "button_link": { "label": "Painikelinkki" @@ -1292,7 +1326,8 @@ "name": "Kuvateksti", "settings": { "text": { - "label": "Teksti" + "label": "Teksti", + "default": "Lisää iskulause" }, "text_style": { "label": "Tekstityyli", @@ -1370,7 +1405,8 @@ "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" + "label": "Teksti", + "default": "Jaa" } } } @@ -1539,7 +1575,8 @@ "name": "Kokoelmaluettelosivu", "settings": { "title": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Kokoelmat" }, "sort": { "label": "Lajittele kokoelmat seuraavasti:", @@ -1615,7 +1652,8 @@ "name": "Teksti", "settings": { "text": { - "label": "Teksti" + "label": "Teksti", + "default": "Tekstilohko" }, "text_style": { "label": "Tekstityyli", @@ -1696,7 +1734,8 @@ "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" + "label": "Teksti", + "default": "Jaa" } } }, @@ -1705,7 +1744,8 @@ "settings": { "heading": { "info": "Lisää sisältöä kuvaava otsikko.", - "label": "Otsikko" + "label": "Otsikko", + "default": "Pienenettävä rivi" }, "content": { "label": "Rivin sisältö" @@ -1854,7 +1894,8 @@ "name": "Ponnahdusikkuna", "settings": { "link_label": { - "label": "Linkin teksti" + "label": "Linkin teksti", + "default": "Ponnahduslinkin teksti" }, "page": { "label": "Sivu" @@ -1876,7 +1917,8 @@ "content": "Lisää Search & Discovery -sovellus, jotta voit valita täydentäviä tuotteita. [Lisätietoja](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Sopii yhteen seuraavien kanssa" }, "make_collapsible_row": { "label": "Näytä pienennettävänä rivinä" @@ -1939,7 +1981,8 @@ "label": "Ensimmäinen kuva" }, "heading_1": { - "label": "Ensimmäinen otsikko" + "label": "Ensimmäinen otsikko", + "default": "Otsikko" }, "icon_2": { "label": "Toinen kuvake" @@ -1948,7 +1991,8 @@ "label": "Toinen kuva" }, "heading_2": { - "label": "Toinen otsikko" + "label": "Toinen otsikko", + "default": "Otsikko" }, "icon_3": { "label": "Kolmas kuvake" @@ -1957,7 +2001,8 @@ "label": "Kolmas kuva" }, "heading_3": { - "label": "Kolmas otsikko" + "label": "Kolmas otsikko", + "default": "Otsikko" } } }, @@ -2154,7 +2199,8 @@ "name": "Monisarakkeinen", "settings": { "title": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Monisarakkeinen" }, "image_width": { "label": "Kuvan leveys", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Tekstipainike" + "label": "Tekstipainike", + "default": "Tekstipainike" }, "button_link": { "label": "Painikelinkki" @@ -2234,10 +2281,12 @@ "label": "Kuva" }, "title": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Sarake" }, "text": { - "label": "Kuvaus" + "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" @@ -2267,7 +2316,8 @@ "name": "Otsikko", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Tilaa sähköpostiviestejämme" } } }, @@ -2275,7 +2325,8 @@ "name": "Alaotsikko", "settings": { "paragraph": { - "label": "Kuvaus" + "label": "Kuvaus", + "default": "

Saa ensimmäisten joukossa tietoa uusista kokoelmista ja ainutlaatuisista tarjouksista.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Otsikko", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Kerro brändistäsi" } } }, @@ -2343,7 +2395,8 @@ "name": "Teksti", "settings": { "text": { - "label": "Kuvaus" + "label": "Kuvaus", + "default": "

Kerro brändiäsi koskevia tietoja asiakkaillesi. Kuvaile tuotetta, jaa ilmoituksia tai toivota asiakkaat tervetulleiksi kauppaasi.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Ensimmäinen tekstipainike", - "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi." + "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi.", + "default": "Tekstipainike" }, "button_link_1": { "label": "Ensimmäinen painikelinkki" @@ -2376,7 +2430,8 @@ "name": "Kuvateksti", "settings": { "text": { - "label": "Teksti" + "label": "Teksti", + "default": "Lisää iskulause" }, "text_style": { "label": "Tekstityyli", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Video" }, "cover_image": { "label": "Kansikuva" @@ -2471,7 +2527,8 @@ "name": "Teksti", "settings": { "text": { - "label": "Teksti" + "label": "Teksti", + "default": "Tekstilohko" }, "text_style": { "label": "Tekstityyli", @@ -2545,7 +2602,8 @@ "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" + "label": "Teksti", + "default": "Jaa" } } }, @@ -2711,7 +2769,8 @@ "name": "Otsikko", "settings": { "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Avataan pian" } } }, @@ -2719,7 +2778,8 @@ "name": "Kohta", "settings": { "paragraph": { - "label": "Kuvaus" + "label": "Kuvaus", + "default": "

Saa tietoa avaamisesta ensimmäisten joukossa.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Käytettävyys", "label": "Diaesityksen kuvaus", - "info": "Kuvaile diaesitystä näytönlukijoita käyttäviä asiakkaita varten." + "info": "Kuvaile diaesitystä näytönlukijoita käyttäviä asiakkaita varten.", + "default": "Diaesitys brändistäsi" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Kuva" }, "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Kuvadia" }, "subheading": { - "label": "Alaotsikko" + "label": "Alaotsikko", + "default": "Kerro brändisi tarina kuvilla" }, "button_label": { "label": "Tekstipainike", - "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi." + "info": "Jos haluat piilottaa painikkeen, jätä painikkeen teksti tyhjäksi.", + "default": "Tekstipainike" }, "link": { "label": "Painikelinkki" @@ -2895,7 +2959,8 @@ "label": "Kuvateksti" }, "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Pienenettävä sisältö" }, "heading_alignment": { "label": "Otsikon tasaus", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Lisää sisältöä kuvaava otsikko.", - "label": "Otsikko" + "label": "Otsikko", + "default": "Pienenettävä rivi" }, "row_content": { "label": "Rivin sisältö" @@ -3150,7 +3216,8 @@ "label": "Sarakkeiden määrä työpöydällä" }, "paragraph__1": { - "content": "Dynaamisissa suosituksissa käytetään tilaus- ja tuotetietoja, jotta suositukset muuttuvat ja paranevat ajan myötä. [Lisätietoja](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dynaamisissa suosituksissa käytetään tilaus- ja tuotetietoja, jotta suositukset muuttuvat ja paranevat ajan myötä. [Lisätietoja](https://help.shopify.com/themes/development/recommended-products)", + "default": "Saatat pitää myös näistä" }, "header__2": { "content": "Tuotekortti" @@ -3225,18 +3292,6 @@ "label": "Työpöytäkuvan leveys", "info": "Kuva optimoidaan automaattisesti mobiililaitteille." }, - "heading_size": { - "options__1": { - "label": "Pieni" - }, - "options__2": { - "label": "Keskisuuri" - }, - "options__3": { - "label": "Suuri" - }, - "label": "Otsikon koko" - }, "text_style": { "options__1": { "label": "Leipäteksti" @@ -3323,16 +3378,20 @@ "label": "Kuva" }, "caption": { - "label": "Kuvateksti" + "label": "Kuvateksti", + "default": "Kuvateksti" }, "heading": { - "label": "Otsikko" + "label": "Otsikko", + "default": "Rivi" }, "text": { - "label": "Teksti" + "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" + "label": "Tekstipainike", + "default": "Tekstipainike" }, "button_link": { "label": "Painikelinkki" diff --git a/locales/fr.json b/locales/fr.json index b4a7f36bc57..86fbaa6c6d3 100644 --- a/locales/fr.json +++ b/locales/fr.json @@ -132,7 +132,7 @@ }, "share": "Partager ce produit", "sold_out": "Épuisé", - "unavailable": "Non disponible", + "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", @@ -157,7 +157,6 @@ "image_available": "L'image {{ index }} est maintenant disponible dans la galerie" }, "view_full_details": "Afficher tous les détails", - "include_taxes": "Taxes incluses.", "shipping_policy_html": "Frais d'expédition calculés à l'étape de paiement.", "choose_options": "Choisir des options", "choose_product_options": "Choisir des options pour {{ product_name }}", @@ -176,7 +175,10 @@ "minimum": "{{ quantity }} ou plus", "price_at_each": "à {{ price }}/pièce", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "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" @@ -290,10 +292,6 @@ "empty": "Votre panier est vide", "cart_error": "Une erreur est survenue lors de l’actualisation de votre panier. Veuillez réessayer.", "cart_quantity_error_html": "Vous ne pouvez pas ajouter plus de {{ quantity }} de ce produit à votre panier.", - "taxes_and_shipping_policy_at_checkout_html": "Taxes, réductions et frais d’expédition calculés à l’étape du paiement", - "taxes_included_but_shipping_at_checkout": "Taxe incluse, frais d’expédition et réductions calculés à l’étape du paiement", - "taxes_included_and_shipping_policy_html": "Taxe incluse. Frais d’expédition et réductions calculés à l’étape du paiement.", - "taxes_and_shipping_at_checkout": "Taxes, réductions et frais d’expédition calculés à l’étape du paiement", "headings": { "product": "Produit", "price": "Prix", @@ -307,7 +305,15 @@ "paragraph_html": "Connectez-vous pour payer plus vite." }, "estimated_total": "Total estimé", - "new_estimated_total": "Nouveau 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" diff --git a/locales/fr.schema.json b/locales/fr.schema.json index 262d7920b7e..46d2a123303 100644 --- a/locales/fr.schema.json +++ b/locales/fr.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Très grand" + }, + "options__5": { + "label": "Très très grand" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Annonce", "settings": { "text": { - "label": "Texte" + "label": "Texte", + "default": "Bienvenue dans notre boutique" }, "text_alignment": { "label": "Alignement du texte", @@ -511,7 +515,8 @@ "name": "Collage", "settings": { "heading": { - "label": "Titre" + "label": "Titre", + "default": "Collage multimédia" }, "desktop_layout": { "label": "Mise en page du bureau", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Liste des collections", "settings": { "title": { - "label": "Titre" + "label": "Titre", + "default": "Collections" }, "image_ratio": { "label": "Rapport d'image", @@ -610,7 +617,7 @@ "label": "Portrait" }, "options__3": { - "label": "Square" + "label": "Carré" }, "info": "Pour ajouter des images, modifiez vos collections. [En savoir plus](https://help.shopify.com/manual/products/collections)" }, @@ -654,6 +661,12 @@ "name": "Formulaire de contact", "presets": { "name": "Formulaire de contact" + }, + "settings": { + "title": { + "default": "Formulaire de contact", + "label": "Titre" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Articles de blog", "settings": { "heading": { - "label": "Titre" + "label": "Titre", + "default": "Articles de blog" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Collection en vedette", "settings": { "title": { - "label": "Titre" + "label": "Titre", + "default": "Collection en vedette" }, "collection": { "label": "Collection" @@ -728,7 +743,7 @@ "label": "Portrait" }, "options__3": { - "label": "Square" + "label": "Carré" } }, "show_secondary_image": { @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "Liens rapides" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Texte", "settings": { "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "Titre" }, "subtext": { - "label": "Sous-texte" + "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.

" } } }, @@ -851,7 +869,8 @@ "label": "Afficher l'inscription à la liste de diffusion" }, "newsletter_heading": { - "label": "En-tête" + "label": "En-tête", + "default": "S’abonner à nos e-mails" }, "header__1": { "content": "Inscription à la liste de diffusion", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Nuancier de couleurs de menu" + }, + "header__7": { + "content": "Connexion au comptes clients", + "info": "Pour gérer les comptes clients, allez dans vos [paramètres de compte client](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Afficher l’avatar", + "info": "Les clients ne verront leur avatar que lorsqu’ils seront connectés à Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Titre", "settings": { "heading": { - "label": "Titre" + "label": "Titre", + "default": "Bannière avec image" } } }, @@ -1111,7 +1139,8 @@ "name": "Texte", "settings": { "text": { - "label": "Description" + "label": "Description", + "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": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Texte du premier bouton", - "info": "Laisser le texte vide pour masquer le bouton." + "info": "Laisser le texte vide pour masquer le bouton.", + "default": "Texte du bouton" }, "button_link_1": { "label": "Lien du premier bouton" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Texte du deuxième bouton", - "info": "Laisser le texte vide pour masquer le bouton." + "info": "Laisser le texte vide pour masquer le bouton.", + "default": "Texte du bouton" }, "button_link_2": { "label": "Lien du deuxième bouton" @@ -1252,7 +1283,8 @@ "name": "Titre", "settings": { "heading": { - "label": "Titre" + "label": "Titre", + "default": "Image avec texte" } } }, @@ -1260,7 +1292,8 @@ "name": "Texte", "settings": { "text": { - "label": "Contenu" + "label": "Contenu", + "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 de texte", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Texte du bouton", - "info": "Laisser le texte vide pour masquer le bouton." + "info": "Laisser le texte vide pour masquer le bouton.", + "default": "Texte du bouton" }, "button_link": { "label": "Lien du bouton" @@ -1292,7 +1326,8 @@ "name": "Légende", "settings": { "text": { - "label": "Texte" + "label": "Texte", + "default": "Ajouter un slogan" }, "text_style": { "label": "Style de texte", @@ -1370,7 +1405,8 @@ "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" + "label": "Texte", + "default": "Partager" } } } @@ -1473,7 +1509,7 @@ "label": "Portrait" }, "options__3": { - "label": "Square" + "label": "Carré" } }, "show_secondary_image": { @@ -1526,11 +1562,11 @@ }, "quick_add": { "label": "Ajout rapide", - "info": "La fonction En bloc est optimisée pour les articles achetés en grande quantité.", + "info": "La fonction En gros est optimisée pour les articles achetés en grande quantité.", "options": { "option_1": "Aucun", "option_2": "Standard", - "option_3": "En bloc" + "option_3": "En gros" } } } @@ -1539,7 +1575,8 @@ "name": "Page de liste des collections", "settings": { "title": { - "label": "Titre" + "label": "Titre", + "default": "Collections" }, "sort": { "label": "Trier les collections par :", @@ -1571,7 +1608,7 @@ "label": "Portrait" }, "options__3": { - "label": "Square" + "label": "Carré" }, "info": "Pour ajouter des images, modifiez vos collections. [En savoir plus](https://help.shopify.com/manual/products/collections)" }, @@ -1615,7 +1652,8 @@ "name": "Texte", "settings": { "text": { - "label": "Texte" + "label": "Texte", + "default": "Bloc de texte" }, "text_style": { "label": "Style de texte", @@ -1696,7 +1734,8 @@ "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" + "label": "Texte", + "default": "Partager" } } }, @@ -1705,7 +1744,8 @@ "settings": { "heading": { "info": "Incluez un titre qui explique le contenu.", - "label": "Titre" + "label": "Titre", + "default": "Rangée réductible" }, "content": { "label": "Contenu de la rangée" @@ -1854,7 +1894,8 @@ "name": "Pop-up", "settings": { "link_label": { - "label": "Étiquette de lien" + "label": "Étiquette de lien", + "default": "Lien texte pop-up" }, "page": { "label": "Page" @@ -1876,7 +1917,8 @@ "content": "Pour sélectionner des produits complémentaires, ajoutez l'application Search & Discovery. [En savoir plus](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "S’associe bien avec" }, "make_collapsible_row": { "label": "Afficher sous forme de ligne réductible" @@ -1905,7 +1947,7 @@ "label": "Rapport d’aspect de l’image", "options": { "option_1": "Portrait", - "option_2": "Carrés" + "option_2": "Carré" } }, "enable_quick_add": { @@ -1939,7 +1981,8 @@ "label": "Première image" }, "heading_1": { - "label": "Premier titre" + "label": "Premier titre", + "default": "Titre" }, "icon_2": { "label": "Deuxième icône" @@ -1948,7 +1991,8 @@ "label": "Deuxième image" }, "heading_2": { - "label": "Deuxième titre" + "label": "Deuxième titre", + "default": "Titre" }, "icon_3": { "label": "Troisième icône" @@ -1957,7 +2001,8 @@ "label": "Troisième image" }, "heading_3": { - "label": "Troisième titre" + "label": "Troisième titre", + "default": "Titre" } } }, @@ -2107,7 +2152,7 @@ "label": "Portrait" }, "options__3": { - "label": "Square" + "label": "Carré" } }, "show_secondary_image": { @@ -2154,7 +2199,8 @@ "name": "Multicolonne", "settings": { "title": { - "label": "Titre" + "label": "Titre", + "default": "Multicolonne" }, "image_width": { "label": "Largeur d'image", @@ -2177,7 +2223,7 @@ "label": "Portrait" }, "options__3": { - "label": "Square" + "label": "Carré" }, "options__4": { "label": "Cercle" @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Texte du bouton" + "label": "Texte du bouton", + "default": "Texte du bouton" }, "button_link": { "label": "Lien du bouton" @@ -2234,10 +2281,12 @@ "label": "Image" }, "title": { - "label": "Titre" + "label": "Titre", + "default": "Colonne" }, "text": { - "label": "Description" + "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" @@ -2267,7 +2316,8 @@ "name": "Titre", "settings": { "heading": { - "label": "Titre" + "label": "Titre", + "default": "S’abonner à nos e-mails" } } }, @@ -2275,7 +2325,8 @@ "name": "Sous-titre", "settings": { "paragraph": { - "label": "Description" + "label": "Description", + "default": "

Faites partie des premières personnes à être informées des nouvelles collections et des offres exclusives.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Titre", "settings": { "heading": { - "label": "Titre" + "label": "Titre", + "default": "Parler de sa marque" } } }, @@ -2343,7 +2395,8 @@ "name": "Texte", "settings": { "text": { - "label": "Description" + "label": "Description", + "default": "

Partagez des informations sur votre marque. Décrivez un produit, partagez des annonces ou souhaitez la bienvenue à vos clients dans votre boutique.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Texte du premier bouton", - "info": "Laissez le texte vide pour masquer le bouton." + "info": "Laissez le texte vide pour masquer le bouton.", + "default": "Texte du bouton" }, "button_link_1": { "label": "Lien du premier bouton" @@ -2376,7 +2430,8 @@ "name": "Légende", "settings": { "text": { - "label": "Texte" + "label": "Texte", + "default": "Ajouter un slogan" }, "text_style": { "label": "Style de texte", @@ -2421,7 +2476,8 @@ "name": "Vidéo", "settings": { "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "Vidéo" }, "cover_image": { "label": "Image de couverture" @@ -2471,7 +2527,8 @@ "name": "Texte", "settings": { "text": { - "label": "Texte" + "label": "Texte", + "default": "Bloc de texte" }, "text_style": { "label": "Style de texte", @@ -2545,7 +2602,8 @@ "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" + "label": "Texte", + "default": "Partager" } } }, @@ -2711,7 +2769,8 @@ "name": "En-tête", "settings": { "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "Ouverture prochaine" } } }, @@ -2719,7 +2778,8 @@ "name": "Paragraphe", "settings": { "paragraph": { - "label": "Description" + "label": "Description", + "default": "

Faites partie des premières personnes à être informées de notre lancement.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Accessibilité", "label": "Description du diaporama", - "info": "Décrivez le diaporama pour les clients utilisant des lecteurs d'écran." + "info": "Décrivez le diaporama pour les clients utilisant des lecteurs d'écran.", + "default": "Diaporama sur votre marque" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Image" }, "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "Diapositive (image)" }, "subheading": { - "label": "Sous-titre" + "label": "Sous-titre", + "default": "Racontez votre histoire avec des images" }, "button_label": { "label": "Texte du bouton", - "info": "Laissez le texte vide pour masquer le bouton." + "info": "Laissez le texte vide pour masquer le bouton.", + "default": "Texte du bouton" }, "link": { "label": "Lien du bouton" @@ -2895,7 +2959,8 @@ "label": "Légende" }, "heading": { - "label": "Titre" + "label": "Titre", + "default": "Contenu réductible" }, "heading_alignment": { "label": "Alignement des titres", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Incluez un titre qui explique le contenu.", - "label": "Titre" + "label": "Titre", + "default": "Rangée réductible" }, "row_content": { "label": "Contenu de la rangée" @@ -3150,7 +3216,8 @@ "label": "Nombre de colonnes sur ordinateur" }, "paragraph__1": { - "content": "Les recommandations dynamiques utilisent les informations relatives aux commandes et aux produits pour changer et s’améliorer au fil du temps. [En savoir plus](https://help.shopify.com/themes/development/recommended-products)" + "content": "Les recommandations dynamiques utilisent les informations relatives aux commandes et aux produits pour changer et s’améliorer au fil du temps. [En savoir plus](https://help.shopify.com/themes/development/recommended-products)", + "default": "Vous aimerez peut-être aussi" }, "header__2": { "content": "Carte de produit" @@ -3225,18 +3292,6 @@ "label": "Largeur de l’image sur ordinateur", "info": "L’image est automatiquement optimisée pour les mobiles." }, - "heading_size": { - "options__1": { - "label": "Petit" - }, - "options__2": { - "label": "Moyenne" - }, - "options__3": { - "label": "Grand" - }, - "label": "Taille du titre" - }, "text_style": { "options__1": { "label": "Corps" @@ -3323,16 +3378,20 @@ "label": "Image" }, "caption": { - "label": "Légende" + "label": "Légende", + "default": "Légende" }, "heading": { - "label": "En-tête" + "label": "En-tête", + "default": "Rangée" }, "text": { - "label": "Texte" + "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" + "label": "Texte du bouton", + "default": "Texte du bouton" }, "button_link": { "label": "Lien du bouton" diff --git a/locales/hr-HR.json b/locales/hr.json similarity index 92% rename from locales/hr-HR.json rename to locales/hr.json index 8cd1be36d85..c6f30078544 100644 --- a/locales/hr-HR.json +++ b/locales/hr.json @@ -157,7 +157,6 @@ "image_available": "Slika {{ index }} sada je dostupna za prikaz u galeriji" }, "view_full_details": "Prikaži sve pojedinosti", - "include_taxes": "Porez je uključen.", "shipping_policy_html": "Poštarina se obračunava prilikom završetka kupnje.", "choose_options": "Odaberite opcije", "choose_product_options": "Odaberite željene opcije za {{ product_name }}", @@ -176,7 +175,10 @@ "minimum": "Više od {{ quantity }}", "price_at_each": "po cijeni od {{ price }}/ea", "price_range": "{{ minimum }} – {{ maximum }}" - } + }, + "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" @@ -290,10 +292,6 @@ "empty": "Vaša je košarica prazna", "cart_error": "Došlo je do pogreške prilikom ažuriranja košarice. Pokušajte ponovno.", "cart_quantity_error_html": "U svoju košaricu možete dodati {{ quantity }} kom ovog artikla.", - "taxes_and_shipping_policy_at_checkout_html": "Porezi, popusti i poštarina obračunavaju se prilikom plaćanja", - "taxes_included_but_shipping_at_checkout": "Porez je uključen u cijenu, a poštarina i popusti obračunavaju se prilikom plaćanja", - "taxes_included_and_shipping_policy_html": "Porez je uključen. Poštarina i popusti obračunavaju se prilikom plaćanja.", - "taxes_and_shipping_at_checkout": "Porezi, popusti i poštarina obračunavaju se prilikom plaćanja", "update": "Ažuriraj", "headings": { "product": "Proizvod", @@ -307,7 +305,15 @@ "paragraph_html": "Prijavite se za bržu provjeru." }, "estimated_total": "Procijenjen ukupni iznos", - "new_estimated_total": "Novi procijenjeni 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" diff --git a/locales/hu.json b/locales/hu.json index 552342fa638..8ebfa49c12f 100644 --- a/locales/hu.json +++ b/locales/hu.json @@ -156,7 +156,6 @@ "image_available": "{{ index }}. kép betöltve galérianézetben" }, "view_full_details": "Minden részlet megtekintése", - "include_taxes": "Tartalmazza az adót.", "shipping_policy_html": "A szállítási költséget a megrendeléskor számítjuk ki.", "choose_options": "Válassz a lehetőségek közül", "choose_product_options": "Termékváltozatok – {{ product_name }}", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "{{ price }}/db", "price_range": "{{ minimum }} – {{ maximum }}" - } + }, + "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" @@ -280,10 +282,6 @@ "empty": "A kosarad üres", "cart_error": "Hiba történt a kosár frissítése közben. Próbálkozz újra.", "cart_quantity_error_html": "Ebből a termékből legfeljebb {{ quantity }} darabot rakhatsz a kosárba.", - "taxes_and_shipping_policy_at_checkout_html": "Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki", - "taxes_included_but_shipping_at_checkout": "Tartalmazza az adót. A szállítási költséget és a kedvezményeket a megrendeléskor számítjuk ki", - "taxes_included_and_shipping_policy_html": "Tartalmazza az adót. A szállítási költséget és a kedvezményeket a megrendeléskor számítjuk ki.", - "taxes_and_shipping_at_checkout": "Az adókat, a kedvezményeket és a szállítási költséget a megrendeléskor számítjuk ki", "headings": { "product": "Termék", "price": "Ár", @@ -297,7 +295,15 @@ "paragraph_html": "Jelentkezz be a gyorsabb fizetéshez." }, "estimated_total": "Becsült végösszeg", - "new_estimated_total": "Új 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" diff --git a/locales/id.json b/locales/id.json index 547e0dfbbf6..ca29920077e 100644 --- a/locales/id.json +++ b/locales/id.json @@ -156,7 +156,6 @@ "image_available": "Gambar {{ index }} kini tersedia di tampilan galeri" }, "view_full_details": "Lihat detail lengkap", - "include_taxes": "Termasuk pajak.", "shipping_policy_html": "Biaya pengiriman dihitung saat checkout.", "choose_options": "Pilih opsi", "choose_product_options": "Pilih opsi untuk {{ product_name }}", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "harga {{ price }}/satuan", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "taxes_included": "Termasuk pajak.", + "duties_included": "Termasuk bea cukai.", + "duties_and_taxes_included": "Termasuk bea cukai dan pajak." }, "modal": { "label": "Galeri media" @@ -280,10 +282,6 @@ "empty": "Keranjang Anda kosong", "cart_error": "Terjadi kesalahan saat memperbarui keranjang. Silakan coba lagi.", "cart_quantity_error_html": "Hanya dapat menambahkan {{ quantity }} item ini ke keranjang Anda.", - "taxes_and_shipping_policy_at_checkout_html": "Pajak, Diskon dan biaya pengiriman dihitung saat checkout", - "taxes_included_but_shipping_at_checkout": "Pajak yang berlaku dan biaya pengiriman serta diskon dihitung saat checkout", - "taxes_included_and_shipping_policy_html": "Termasuk pajak. Biaya pengiriman dan diskon dihitung saat checkout.", - "taxes_and_shipping_at_checkout": "Pajak, diskon dan biaya pengiriman dihitung saat checkout", "headings": { "product": "Produk", "price": "Harga", @@ -297,7 +295,15 @@ "paragraph_html": "Login untuk checkout lebih cepat." }, "estimated_total": "Estimasi total", - "new_estimated_total": "Estimasi total baru" + "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" diff --git a/locales/it.json b/locales/it.json index a8f7a554a2f..71450d28547 100644 --- a/locales/it.json +++ b/locales/it.json @@ -156,7 +156,6 @@ "image_available": "L'immagine {{ index }} è ora disponibile in visualizzazione galleria" }, "view_full_details": "Visualizza dettagli completi", - "include_taxes": "Imposte incluse.", "shipping_policy_html": "Spese di spedizione calcolate al check-out.", "choose_options": "Scegli opzioni", "choose_product_options": "Scegli opzioni per {{ product_name }}", @@ -176,7 +175,10 @@ "price_at_each": "a {{ price }}/ciascuno", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "Varianti di prodotto" + "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" @@ -290,10 +292,6 @@ "empty": "Il tuo carrello è vuoto", "cart_error": "Si è verificato un errore durante l'aggiornamento del carrello. Riprova più tardi.", "cart_quantity_error_html": "Puoi aggiungere soltanto {{ quantity }} di questo articolo al tuo carrello.", - "taxes_and_shipping_policy_at_checkout_html": "Imposte, sconti e spedizione calcolati al check-out", - "taxes_included_but_shipping_at_checkout": "Imposte incluse e spedizione e sconti calcolati al check-out", - "taxes_included_and_shipping_policy_html": "Imposte incluse. Spedizione e sconti calcolati al check-out.", - "taxes_and_shipping_at_checkout": "Imposte, sconti e spedizione calcolati al check-out", "headings": { "product": "Prodotto", "price": "Prezzo", @@ -307,7 +305,15 @@ "paragraph_html": "Accedi per un check-out più veloce." }, "estimated_total": "Totale stimato", - "new_estimated_total": "Nuovo 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" diff --git a/locales/it.schema.json b/locales/it.schema.json index d280dc7ea52..2a1688d2946 100644 --- a/locales/it.schema.json +++ b/locales/it.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra large" + }, + "options__5": { + "label": "Extra extra large" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Annuncio", "settings": { "text": { - "label": "Testo" + "label": "Testo", + "default": "Ti diamo il benvenuto nel nostro negozio" }, "text_alignment": { "label": "Allineamento testo", @@ -511,7 +515,8 @@ "name": "Collage", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Collage multimediale" }, "desktop_layout": { "label": "Layout desktop", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Elenco delle collezioni", "settings": { "title": { - "label": "Titolo" + "label": "Titolo", + "default": "Collezioni" }, "image_ratio": { "label": "Proporzioni delle immagini", @@ -654,6 +661,12 @@ "name": "Modulo di contatto", "presets": { "name": "Modulo di contatto" + }, + "settings": { + "title": { + "default": "Modulo di contatto", + "label": "Titolo" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Articoli del blog", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Articoli del blog" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Collezione in evidenza", "settings": { "title": { - "label": "Titolo" + "label": "Titolo", + "default": "Collezione in evidenza" }, "collection": { "label": "Collezione" @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Link rapidi" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Testo", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Titolo" }, "subtext": { - "label": "Sottotesto" + "label": "Sottotesto", + "default": "

Condividi informazioni di contatto, dettagli del negozio e contenuti del brand con i clienti.

" } } }, @@ -851,7 +869,8 @@ "label": "Mostra iscrizione alla newsletter" }, "newsletter_heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Iscriviti alle nostre email" }, "header__1": { "content": "Iscrizione alla newsletter", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Schema di colori del menu" + }, + "header__7": { + "content": "Come accedere agli account cliente", + "info": "Per gestire gli account cliente vai su [customer accounts settings](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Mostra avatar", + "info": "I clienti vedranno i propri avatar quando avranno effettuato l'accesso a Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Titolo", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Immagine banner" } } }, @@ -1111,7 +1139,8 @@ "name": "Testo", "settings": { "text": { - "label": "Descrizione" + "label": "Descrizione", + "default": "Fornisci ai clienti dettagli sulle immagini del banner o sul contenuto del modello." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Prima etichetta pulsante", - "info": "Lascia vuota l'etichetta per nascondere il pulsante." + "info": "Lascia vuota l'etichetta per nascondere il pulsante.", + "default": "Etichetta pulsante" }, "button_link_1": { "label": "Primo link pulsante" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Seconda etichetta pulsante", - "info": "Lascia vuota l'etichetta per nascondere il pulsante." + "info": "Lascia vuota l'etichetta per nascondere il pulsante.", + "default": "Etichetta pulsante" }, "button_link_2": { "label": "Secondo link pulsante" @@ -1252,7 +1283,8 @@ "name": "Titolo", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Immagine con testo" } } }, @@ -1260,7 +1292,8 @@ "name": "Testo", "settings": { "text": { - "label": "Contenuto" + "label": "Contenuto", + "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 del testo", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Etichetta pulsante", - "info": "Lascia vuota l'etichetta per nascondere il pulsante." + "info": "Lascia vuota l'etichetta per nascondere il pulsante.", + "default": "Etichetta pulsante" }, "button_link": { "label": "Link pulsante" @@ -1292,7 +1326,8 @@ "name": "Didascalia", "settings": { "text": { - "label": "Testo" + "label": "Testo", + "default": "Aggiungi una tagline" }, "text_style": { "label": "Stile testo", @@ -1370,7 +1405,8 @@ "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" + "label": "Testo", + "default": "Condividi" } } } @@ -1539,7 +1575,8 @@ "name": "Pagina con l'elenco delle collezioni", "settings": { "title": { - "label": "Titolo" + "label": "Titolo", + "default": "Collezioni" }, "sort": { "label": "Ordina le collezioni per:", @@ -1616,7 +1653,8 @@ "name": "Testo", "settings": { "text": { - "label": "Testo" + "label": "Testo", + "default": "Blocco di testo" }, "text_style": { "label": "Stile del testo", @@ -1697,7 +1735,8 @@ "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" + "label": "Testo", + "default": "Condividi" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Includi un titolo che spieghi il contenuto.", - "label": "Titolo" + "label": "Titolo", + "default": "Riga comprimibile" }, "content": { "label": "Contenuto riga" @@ -1855,7 +1895,8 @@ "name": "Pop up", "settings": { "link_label": { - "label": "Etichetta link" + "label": "Etichetta link", + "default": "Link pop-up con testo" }, "page": { "label": "Pagina" @@ -1877,7 +1918,8 @@ "content": "Aggiungi l'app Search & Discovery per selezionare i prodotti complementari. [Maggiori informazioni](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Si abbina con" }, "make_collapsible_row": { "label": "Mostra come riga comprimibile" @@ -1906,7 +1948,7 @@ "label": "Proporzioni immagine", "options": { "option_1": "Verticale", - "option_2": "Square" + "option_2": "Quadrate" } }, "enable_quick_add": { @@ -1940,7 +1982,8 @@ "label": "Prima immagine" }, "heading_1": { - "label": "Primo titolo" + "label": "Primo titolo", + "default": "Titolo" }, "icon_2": { "label": "Seconda icona" @@ -1949,7 +1992,8 @@ "label": "Seconda immagine" }, "heading_2": { - "label": "Secondo titolo" + "label": "Secondo titolo", + "default": "Titolo" }, "icon_3": { "label": "Terza icona" @@ -1958,7 +2002,8 @@ "label": "Terza immagine" }, "heading_3": { - "label": "Terzo titolo" + "label": "Terzo titolo", + "default": "Titolo" } } }, @@ -2154,7 +2199,8 @@ "name": "Multicolonna", "settings": { "title": { - "label": "Titolo" + "label": "Titolo", + "default": "Multicolonna" }, "image_width": { "label": "Larghezza immagine", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Etichetta pulsante" + "label": "Etichetta pulsante", + "default": "Etichetta pulsante" }, "button_link": { "label": "Link pulsante" @@ -2234,10 +2281,12 @@ "label": "Immagine" }, "title": { - "label": "Titolo" + "label": "Titolo", + "default": "Colonna" }, "text": { - "label": "Descrizione" + "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" @@ -2267,7 +2316,8 @@ "name": "Titolo", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Iscriviti alle nostre email" } } }, @@ -2275,7 +2325,8 @@ "name": "Sottotitolo", "settings": { "paragraph": { - "label": "Descrizione" + "label": "Descrizione", + "default": "

Sii tra i primi a scoprire le nuove collezioni e le offerte esclusive.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Titolo", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Parla del tuo brand" } } }, @@ -2343,7 +2395,8 @@ "name": "Testo", "settings": { "text": { - "label": "Descrizione" + "label": "Descrizione", + "default": "

Condividi informazioni sul tuo brand con i clienti. Descrivi un prodotto, condividi gli annunci o dai il benvenuto ai clienti nel tuo negozio.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Prima etichetta pulsante", - "info": "Lascia vuota l'etichetta per nascondere il pulsante." + "info": "Lascia vuota l'etichetta per nascondere il pulsante.", + "default": "Etichetta pulsante" }, "button_link_1": { "label": "Primo link pulsante" @@ -2376,7 +2430,8 @@ "name": "Didascalia", "settings": { "text": { - "label": "Testo" + "label": "Testo", + "default": "Aggiungi una tagline" }, "text_style": { "label": "Stile testo", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Video" }, "cover_image": { "label": "Immagine di copertina" @@ -2471,7 +2527,8 @@ "name": "Testo", "settings": { "text": { - "label": "Testo" + "label": "Testo", + "default": "Blocco di testo" }, "text_style": { "label": "Stile del testo", @@ -2545,7 +2602,8 @@ "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" + "label": "Testo", + "default": "Condividi" } } }, @@ -2711,7 +2769,8 @@ "name": "Titolo", "settings": { "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Prossima apertura" } } }, @@ -2719,7 +2778,8 @@ "name": "Paragrafo", "settings": { "paragraph": { - "label": "Descrizione" + "label": "Descrizione", + "default": "

Sii tra i primi a sapere quando apriremo.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Accessibilità", "label": "Descrizione presentazione", - "info": "Descrivi la presentazione per i clienti che utilizzano i lettori di schermo." + "info": "Descrivi la presentazione per i clienti che utilizzano i lettori di schermo.", + "default": "Presentazione sul nostro brand" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Image" }, "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Slide immagine" }, "subheading": { - "label": "Sottotitolo" + "label": "Sottotitolo", + "default": "Racconta la storia del tuo brand con video e immagini" }, "button_label": { "label": "Etichetta pulsante", - "info": "Lascia vuota l'etichetta per nascondere il pulsante." + "info": "Lascia vuota l'etichetta per nascondere il pulsante.", + "default": "Etichetta pulsante" }, "link": { "label": "Link pulsante" @@ -2895,7 +2959,8 @@ "label": "Didascalia" }, "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Contenuto comprimibile" }, "heading_alignment": { "label": "Allineamento titolo", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Includi un titolo che spieghi il contenuto.", - "label": "Titolo" + "label": "Titolo", + "default": "Riga comprimibile" }, "row_content": { "label": "Contenuto riga" @@ -3150,7 +3216,8 @@ "label": "Numero di colonne su desktop" }, "paragraph__1": { - "content": "Le raccomandazioni dinamiche utilizzano i dati di ordini e prodotti per cambiare e migliorare nel tempo. [Maggiori informazioni](https://help.shopify.com/themes/development/recommended-products)" + "content": "Le raccomandazioni dinamiche utilizzano i dati di ordini e prodotti per cambiare e migliorare nel tempo. [Maggiori informazioni](https://help.shopify.com/themes/development/recommended-products)", + "default": "Potrebbero interessarti anche" }, "header__2": { "content": "Scheda prodotto" @@ -3225,18 +3292,6 @@ "label": "Larghezza immagine su desktop", "info": "L'immagine viene automaticamente ottimizzata per il mobile." }, - "heading_size": { - "options__1": { - "label": "Piccola" - }, - "options__2": { - "label": "Media" - }, - "options__3": { - "label": "Grande" - }, - "label": "Dimensione titolo" - }, "text_style": { "options__1": { "label": "Corpo" @@ -3323,16 +3378,20 @@ "label": "Immagine" }, "caption": { - "label": "Didascalia" + "label": "Didascalia", + "default": "Didascalia" }, "heading": { - "label": "Titolo" + "label": "Titolo", + "default": "Riga" }, "text": { - "label": "Testo" + "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" + "label": "Etichetta pulsante", + "default": "Etichetta pulsante" }, "button_link": { "label": "Link pulsante" diff --git a/locales/ja.json b/locales/ja.json index 88e12204bd6..23dd5683a0a 100644 --- a/locales/ja.json +++ b/locales/ja.json @@ -156,7 +156,6 @@ "image_available": "ギャラリービューで画像 ({{ index }}) が利用できるようになりました" }, "view_full_details": "詳細を表示する", - "include_taxes": "税込", "shipping_policy_html": "配送料はチェックアウト時に計算されます。", "choose_options": "オプションを選択", "choose_product_options": "{{ product_name }}のオプションを選択する", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}個以上", "price_at_each": "{{ price }}/ユニットで", "price_range": "{{ minimum }}~{{ maximum }}" - } + }, + "taxes_included": "税込。", + "duties_included": "関税込。", + "duties_and_taxes_included": "関税と税金が含まれます。" }, "modal": { "label": "メディアギャラリー" @@ -280,10 +282,6 @@ "empty": "カートは空です", "cart_error": "カートをアップデートするときにエラーが発生しました。もう一度お試しください。", "cart_quantity_error_html": "このアイテムは{{ quantity }}個しかカートに追加することができません。", - "taxes_and_shipping_policy_at_checkout_html": "税、ディスカウント、および配送料はチェックアウト時に計算されます", - "taxes_included_but_shipping_at_checkout": "税込みで、配送料とディスカウントはチェックアアウト時に計算されます", - "taxes_included_and_shipping_policy_html": "税込。配送料とディスカウントはチェックアウト時に計算されます", - "taxes_and_shipping_at_checkout": "税、ディスカウント、および配送料はチェックアウト時に計算されます", "headings": { "product": "商品", "price": "価格", @@ -297,7 +295,15 @@ "paragraph_html": "ログインすることで、チェックアウトがスピーディーに行えます。" }, "estimated_total": "見積もり合計", - "new_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": "決済方法" diff --git a/locales/ja.schema.json b/locales/ja.schema.json index fa4b408c287..1ed7adf1d92 100644 --- a/locales/ja.schema.json +++ b/locales/ja.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "特大" + }, + "options__5": { + "label": "4L" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "テキスト" + "label": "テキスト", + "default": "ストアへようこそ" }, "text_alignment": { "label": "テキストアラインメント", @@ -511,7 +515,8 @@ "name": "コラージュ", "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "マルチメディアコラージュ" }, "desktop_layout": { "label": "デスクトップのレイアウト", @@ -585,7 +590,8 @@ }, "description": { "label": "動画の代替テキスト", - "info": "スクリーンリーダーを使用しているお客様向けにビデオの説明を記入してください。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "スクリーンリーダーを使用しているお客様向けにビデオの説明を記入してください。[詳しくはこちら](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "動画の説明をする" } }, "name": "ビデオ" @@ -599,7 +605,8 @@ "name": "コレクションリスト", "settings": { "title": { - "label": "見出し" + "label": "見出し", + "default": "コレクション" }, "image_ratio": { "label": "画像比", @@ -654,6 +661,12 @@ "name": "お問い合わせフォーム", "presets": { "name": "お問い合わせフォーム" + }, + "settings": { + "title": { + "default": "お問い合わせフォーム", + "label": "見出し" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "ブログ記事", "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "ブログ記事" }, "blog": { "label": "ブログ" @@ -705,7 +719,8 @@ "name": "特集コレクション", "settings": { "title": { - "label": "見出し" + "label": "見出し", + "default": "特集コレクション" }, "collection": { "label": "コレクション" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "クイックリンク" }, "menu": { "label": "メニュー", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "見出し" }, "subtext": { - "label": "サブテキスト" + "label": "サブテキスト", + "default": "

連絡先情報、ストア詳細、ブランドのコンテンツをお客様と共有します。

" } }, "name": "テキスト" @@ -851,7 +869,8 @@ "label": "メール登録を表示する" }, "newsletter_heading": { - "label": "見出し" + "label": "見出し", + "default": "ストアからのメールを受け取る" }, "header__1": { "info": "「マーケティングを受け入れる」のお客様リストに自動的に追加された購読者。[詳しくはこちら](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "メニューの配色" + }, + "header__7": { + "content": "お客様アカウントのログイン", + "info": "お客様アカウントを管理するには、[お客様アカウント設定](/admin/settings/customer_accounts) に移動します。" + }, + "enable_customer_avatar": { + "label": "アバターを表示", + "info": "お客様はShopにログインしているときのみアバターを見ることができます" } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "画像バナー" } }, "name": "見出し" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "説明" + "label": "説明", + "default": "テンプレートのバナー画像またはコンテンツに関する詳細をお客様に提供します。" }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "最初のボタンのラベル", - "info": "ボタンを非表示にするには、ラベルを空白にします。" + "info": "ボタンを非表示にするには、ラベルを空白にします。", + "default": "ボタンのラベル" }, "button_link_1": { "label": "最初のボタンのリンク" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "2番目のボタンのラベル", - "info": "ボタンを非表示にするには、ラベルを空白にします。" + "info": "ボタンを非表示にするには、ラベルを空白にします。", + "default": "ボタンのラベル" }, "button_link_2": { "label": "2番目のボタンのリンク" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "テキスト付き画像" } }, "name": "見出し" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "コンテンツ" + "label": "コンテンツ", + "default": "

選択した商品、コレクション、ブログ記事に注目を集めるため、テキストと画像を組み合わせます。可用性、スタイル、またはレビュー提供についての詳細を追加します。

" }, "text_style": { "label": "テキストスタイル", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "ボタンのラベル", - "info": "ボタンを非表示にするには、ラベルを空白にします。" + "info": "ボタンを非表示にするには、ラベルを空白にします。", + "default": "ボタンのラベル" }, "button_link": { "label": "ボタンのリンク" @@ -1292,7 +1326,8 @@ "name": "キャプション", "settings": { "text": { - "label": "テキスト" + "label": "テキスト", + "default": "タグラインを追加" }, "text_style": { "label": "テキストスタイル", @@ -1370,7 +1405,8 @@ "content": "プレビュー画像には、ストアタイトルと説明文が表示されます。[詳しくはこちら](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。" }, "text": { - "label": "テキスト" + "label": "テキスト", + "default": "共有" } } } @@ -1539,7 +1575,8 @@ "name": "コレクションリストのページ", "settings": { "title": { - "label": "見出し" + "label": "見出し", + "default": "コレクション" }, "sort": { "label": "コレクションの並べ替え方法:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "テキスト" + "label": "テキスト", + "default": "テキストブロック" }, "text_style": { "label": "テキストスタイル", @@ -1681,7 +1719,8 @@ "content": "プレビュー画像には、ストアタイトルと説明文が表示されます。[詳しくはこちら](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。" }, "text": { - "label": "テキスト" + "label": "テキスト", + "default": "共有" } }, "name": "共有" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "コンテンツを説明する見出しを含めます。", - "label": "見出し" + "label": "見出し", + "default": "折りたたみ可能な行" }, "content": { "label": "行のコンテンツ" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "リンクラベル" + "label": "リンクラベル", + "default": "ポップアップリンクのテキスト" }, "page": { "label": "ページ" @@ -1877,7 +1918,8 @@ "content": "補完する商品を選択するには、Search & Discoveryアプリを追加してください。[詳しくはこちら](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "見出し" + "label": "見出し", + "default": "相性が良い" }, "make_collapsible_row": { "label": "折りたたみ可能な行として表示する" @@ -1940,7 +1982,8 @@ "label": "最初の画像" }, "heading_1": { - "label": "最初の見出し" + "label": "最初の見出し", + "default": "見出し" }, "icon_2": { "label": "2番目のアイコン" @@ -1949,7 +1992,8 @@ "label": "2番目の画像" }, "heading_2": { - "label": "2番目の見出し" + "label": "2番目の見出し", + "default": "見出し" }, "icon_3": { "label": "3番目のアイコン" @@ -1958,7 +2002,8 @@ "label": "3番目の画像" }, "heading_3": { - "label": "3番目の見出し" + "label": "3番目の見出し", + "default": "見出し" } } }, @@ -2154,7 +2199,8 @@ "name": "マルチカラム", "settings": { "title": { - "label": "見出し" + "label": "見出し", + "default": "マルチカラム" }, "image_width": { "label": "画像の幅", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "ボタンのラベル" + "label": "ボタンのラベル", + "default": "ボタンのラベル" }, "button_link": { "label": "ボタンのリンク" @@ -2233,10 +2280,12 @@ "label": "画像" }, "title": { - "label": "見出し" + "label": "見出し", + "default": "列" }, "text": { - "label": "説明" + "label": "説明", + "default": "

選択した商品、コレクション、ブログ記事に注目を集めるため、テキストと画像を組み合わせます。可用性、スタイル、またはレビュー提供についての詳細を追加します。

" }, "link_label": { "label": "リンクラベル" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "ストアからのメールを受け取る" } }, "name": "見出し" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "説明" + "label": "説明", + "default": "

新しいコレクションや限定オファーに関する最新情報をお知らせします。

" } }, "name": "小見出し" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "ブランドについて説明する" } }, "name": "見出し" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "説明" + "label": "説明", + "default": "

ブランドに関する情報をお客様と共有します。商品を説明したり、告知をしたり、ストアへのお客様を歓迎したりします。

" } }, "name": "テキスト" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "最初のボタンのラベル", - "info": "ボタンを非表示にするには、ラベルを空白にします。" + "info": "ボタンを非表示にするには、ラベルを空白にします。", + "default": "ボタンのラベル" }, "button_link_1": { "label": "最初のボタンのリンク" @@ -2376,7 +2430,8 @@ "name": "キャプション", "settings": { "text": { - "label": "テキスト" + "label": "テキスト", + "default": "タグラインを追加" }, "text_style": { "label": "テキストスタイル", @@ -2421,7 +2476,8 @@ "name": "動画", "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "動画" }, "cover_image": { "label": "カバー画像" @@ -2471,7 +2527,8 @@ "name": "テキスト", "settings": { "text": { - "label": "テキスト" + "label": "テキスト", + "default": "テキストブロック" }, "text_style": { "label": "テキストスタイル", @@ -2545,7 +2602,8 @@ "content": "プレビュー画像には、ストアタイトルと説明文が表示されます。[詳しくはこちら](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "テキスト" + "label": "テキスト", + "default": "共有" } } }, @@ -2711,7 +2769,8 @@ "name": "見出し", "settings": { "heading": { - "label": "見出し" + "label": "見出し", + "default": "まもなく公開" } } }, @@ -2719,7 +2778,8 @@ "name": "段落", "settings": { "paragraph": { - "label": "説明" + "label": "説明", + "default": "

ストアに関する最新情報をお知らせします。

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "アクセシビリティ", "label": "スライドショーの説明", - "info": "スクリーンリーダーを使用しているお客様向けにスライドショーの説明を記入してください。" + "info": "スクリーンリーダーを使用しているお客様向けにスライドショーの説明を記入してください。", + "default": "ブランドについてのスライドショー" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "画像" }, "heading": { - "label": "見出し" + "label": "見出し", + "default": "画像スライド" }, "subheading": { - "label": "小見出し" + "label": "小見出し", + "default": "ブランドのストーリーを画像で伝える" }, "button_label": { "label": "ボタンのラベル", - "info": "ボタンを非表示にするには、ラベルを空白にします。" + "info": "ボタンを非表示にするには、ラベルを空白にします。", + "default": "ボタンのラベル" }, "link": { "label": "ボタンのリンク" @@ -2895,7 +2959,8 @@ "label": "キャプション" }, "heading": { - "label": "見出し" + "label": "見出し", + "default": "折りたたみ可能なコンテンツ" }, "heading_alignment": { "label": "見出しの配置", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "コンテンツを説明する見出しを含めます。", - "label": "見出し" + "label": "見出し", + "default": "折りたたみ可能な行" }, "row_content": { "label": "行のコンテンツ" @@ -3150,7 +3216,8 @@ "label": "デスクトップでの列数" }, "paragraph__1": { - "content": "動的レコメンデーションでは、注文や商品の情報を利用して、時間の経過とともに変化し改善していきます。[詳しくはこちら](https://help.shopify.com/themes/development/recommended-products)" + "content": "動的レコメンデーションでは、注文や商品の情報を利用して、時間の経過とともに変化し改善していきます。[詳しくはこちら](https://help.shopify.com/themes/development/recommended-products)", + "default": "おすすめ" }, "header__2": { "content": "商品カード" @@ -3225,18 +3292,6 @@ "label": "デスクトップ画像の幅", "info": "画像はモバイル用に自動で最適化されます。" }, - "heading_size": { - "options__1": { - "label": "小" - }, - "options__2": { - "label": "中" - }, - "options__3": { - "label": "大" - }, - "label": "見出しのサイズ" - }, "text_style": { "options__1": { "label": "本文" @@ -3323,16 +3378,20 @@ "label": "画像" }, "caption": { - "label": "キャプション" + "label": "キャプション", + "default": "キャプション" }, "heading": { - "label": "見出し" + "label": "見出し", + "default": "行" }, "text": { - "label": "テキスト" + "label": "テキスト", + "default": "

選択した商品、コレクション、ブログ記事に注目を集めるため、テキストと画像を組み合わせます。可用性、スタイル、またはレビュー提供についての詳細を追加します。

" }, "button_label": { - "label": "ボタンのラベル" + "label": "ボタンのラベル", + "default": "ボタンのラベル" }, "button_link": { "label": "ボタンのリンク" diff --git a/locales/ko.json b/locales/ko.json index 89f6113cc4a..b0bc41430b2 100644 --- a/locales/ko.json +++ b/locales/ko.json @@ -156,7 +156,6 @@ "image_available": "이제 갤러리 뷰에서 이미지 {{ index }} 사용 가능" }, "view_full_details": "전체 세부 정보 보기", - "include_taxes": "세금이 포함됩니다.", "shipping_policy_html": "배송료는 결제 시 계산됩니다.", "choose_options": "옵션 선택하기", "choose_product_options": "{{ product_name }}의 옵션 선택", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "개당 {{ price }}", "price_range": "{{ minimum }} ~ {{ maximum }}" - } + }, + "taxes_included": "세금이 포함된 가격입니다.", + "duties_included": "관세가 포함된 가격입니다.", + "duties_and_taxes_included": "관세 및 세금이 포함된 가격입니다." }, "modal": { "label": "미디어 갤러리" @@ -280,10 +282,6 @@ "empty": "카트가 비어 있습니다", "cart_error": "카트를 업데이트하는 중 오류가 발생했습니다. 다시 시도하십시오.", "cart_quantity_error_html": "카트에는 이 품목을 {{ quantity }}개만 추가할 수 있습니다.", - "taxes_and_shipping_policy_at_checkout_html": "결제 시 세금, 할인 및 배송료 계산됨", - "taxes_included_but_shipping_at_checkout": "세금 포함 및 결제 시 배송료 계산됨", - "taxes_included_and_shipping_policy_html": "세금이 포함된 가격입니다. 배송료 및 할인은 결제 시 계산됩니다.", - "taxes_and_shipping_at_checkout": "결제 시 세금, 할인 및 배송료 계산됨", "headings": { "product": "제품", "price": "가격", @@ -297,7 +295,15 @@ "paragraph_html": "더 빠르게 결제하려면 로그인하십시오." }, "estimated_total": "예상 총액", - "new_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": "결제 방법" diff --git a/locales/ko.schema.json b/locales/ko.schema.json index 1a082973f42..9ba7187ef57 100644 --- a/locales/ko.schema.json +++ b/locales/ko.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "특대" + }, + "options__5": { + "label": "매우 매우 크게" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "텍스트" + "label": "텍스트", + "default": "스토어에 오신 것을 환영합니다" }, "text_alignment": { "label": "텍스트 정렬", @@ -511,7 +515,8 @@ "name": "콜라주", "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "멀티미디어 콜라주" }, "desktop_layout": { "label": "데스크톱 레이아웃", @@ -585,7 +590,8 @@ }, "description": { "label": "동영상 대체 텍스트", - "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다. [자세히 알아보기](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "비디오 설명" } }, "name": "동영상" @@ -599,7 +605,8 @@ "name": "컬렉션 목록", "settings": { "title": { - "label": "제목" + "label": "제목", + "default": "컬렉션" }, "image_ratio": { "label": "이미지 비율", @@ -654,6 +661,12 @@ "name": "연락처 양식", "presets": { "name": "연락처 양식" + }, + "settings": { + "title": { + "default": "연락처 양식", + "label": "제목" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "블로그 게시물", "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "블로그 게시물" }, "blog": { "label": "블로그" @@ -705,7 +719,8 @@ "name": "추천 컬렉션", "settings": { "title": { - "label": "제목" + "label": "제목", + "default": "추천 컬렉션" }, "collection": { "label": "컬렉션" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "빠른 링크" }, "menu": { "label": "메뉴", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "제목" }, "subtext": { - "label": "하위 텍스트" + "label": "하위 텍스트", + "default": "

연락처 정보, 스토어 세부 정보, 브랜드 콘텐츠를 고객과 공유하십시오.

" } }, "name": "텍스트" @@ -851,7 +869,8 @@ "label": "이메일 가입 표시" }, "newsletter_heading": { - "label": "제목" + "label": "제목", + "default": "이메일 구독" }, "header__1": { "info": "가입자가 “마케팅 수락” 고객 목록에 자동으로 추가되었습니다. [자세히 알아보기](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "메뉴 색상 구성표" + }, + "header__7": { + "content": "고객 계정 로그인", + "info": "고객 계정을 관리하려면 [고객 계정 설정](/admin/settings/customer_accounts)으로 이동하십시오." + }, + "enable_customer_avatar": { + "label": "아바타 표시", + "info": "고객이 Shop으로 로그인하면 본인의 아바타를 보기만 할 수 있습니다." } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "이미지 배너" } }, "name": "제목" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "설명" + "label": "설명", + "default": "템플릿에서 배너 이미지 또는 콘텐츠의 세부 정보를 고객에게 제공하십시오." }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "첫 번째 버튼 레이블", - "info": "버튼을 숨기려면 레이블을 비워둡니다." + "info": "버튼을 숨기려면 레이블을 비워둡니다.", + "default": "버튼 레이블" }, "button_link_1": { "label": "첫 번째 버튼 링크" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "두 번째 버튼 레이블", - "info": "버튼을 숨기려면 레이블을 비워둡니다." + "info": "버튼을 숨기려면 레이블을 비워둡니다.", + "default": "버튼 레이블" }, "button_link_2": { "label": "두 번째 버튼 링크" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "텍스트 포함 이미지" } }, "name": "제목" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "콘텐츠" + "label": "콘텐츠", + "default": "

이미지와 텍스트를 짝지어 선택한 제품, 컬렉션, 블로그 게시물을 강조합니다. 사용 가능성, 스타일에 대한 자세한 정보를 추가하거나 리뷰를 제공합니다.

" }, "text_style": { "label": "텍스트 스타일", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "버튼 레이블", - "info": "버튼을 숨기려면 레이블을 비워둡니다." + "info": "버튼을 숨기려면 레이블을 비워둡니다.", + "default": "버튼 레이블" }, "button_link": { "label": "버튼 링크" @@ -1292,7 +1326,8 @@ "name": "캡션", "settings": { "text": { - "label": "텍스트" + "label": "텍스트", + "default": "슬로건 추가" }, "text_style": { "label": "텍스트 스타일", @@ -1370,7 +1405,8 @@ "content": "미리 보기 이미지에 스토어 제목 및 설명이 포함됩니다. [자세히 알아보기](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "텍스트" + "label": "텍스트", + "default": "공유" } } } @@ -1539,7 +1575,8 @@ "name": "컬렉션 목록 페이지", "settings": { "title": { - "label": "제목" + "label": "제목", + "default": "컬렉션" }, "sort": { "label": "컬렉션 정렬 기준:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "텍스트" + "label": "텍스트", + "default": "텍스트 블록" }, "text_style": { "label": "텍스트 스타일", @@ -1681,7 +1719,8 @@ "content": "미리 보기 이미지에 스토어 제목 및 설명이 포함됩니다. [자세히 알아보기](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "텍스트" + "label": "텍스트", + "default": "공유" } }, "name": "공유" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "콘텐츠를 설명하는 제목을 포함합니다.", - "label": "제목" + "label": "제목", + "default": "축소 가능한 행" }, "content": { "label": "행 콘텐츠" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "레이블 링크" + "label": "레이블 링크", + "default": "팝업 링크 텍스트" }, "page": { "label": "페이지" @@ -1877,7 +1918,8 @@ "content": "보완 제품을 선택하려면 Search & Discovery 앱을 추가하십시오. [자세히 알아보기](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "제목" + "label": "제목", + "default": "잘 어울리는 아이템" }, "make_collapsible_row": { "label": "축소 가능한 행으로 표시" @@ -1940,7 +1982,8 @@ "label": "첫 번째 이미지" }, "heading_1": { - "label": "첫 번째 제목" + "label": "첫 번째 제목", + "default": "제목" }, "icon_2": { "label": "두 번째 아이콘" @@ -1949,7 +1992,8 @@ "label": "두 번째 이미지" }, "heading_2": { - "label": "두 번째 제목" + "label": "두 번째 제목", + "default": "제목" }, "icon_3": { "label": "세 번째 아이콘" @@ -1958,7 +2002,8 @@ "label": "세 번째 이미지" }, "heading_3": { - "label": "세 번째 제목" + "label": "세 번째 제목", + "default": "제목" } } }, @@ -2154,7 +2199,8 @@ "name": "여러 열", "settings": { "title": { - "label": "제목" + "label": "제목", + "default": "여러 열" }, "image_width": { "label": "이미지 폭", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "버튼 레이블" + "label": "버튼 레이블", + "default": "버튼 레이블" }, "button_link": { "label": "버튼 링크" @@ -2233,10 +2280,12 @@ "label": "이미지" }, "title": { - "label": "제목" + "label": "제목", + "default": "열" }, "text": { - "label": "설명" + "label": "설명", + "default": "

이미지와 텍스트를 짝지어 선택한 제품, 컬렉션, 블로그 게시물을 강조합니다. 사용 가능성, 스타일에 대한 자세한 정보를 추가하거나 리뷰를 제공합니다.

" }, "link_label": { "label": "레이블 링크" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "이메일 구독" } }, "name": "제목" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "설명" + "label": "설명", + "default": "

새로운 컬렉션과 독점 혜택 소식을 가장 먼저 알려드립니다.

" } }, "name": "소제목" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "브랜드에 대해 이야기하기" } }, "name": "제목" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "설명" + "label": "설명", + "default": "

고객과 브랜드 정보를 공유하세요. 제품을 설명하고 공지 사항을 제공하고, 스토어를 방문하는 고객을 환영할 수 있습니다.

" } }, "name": "텍스트" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "첫 번째 버튼 레이블", - "info": "버튼을 숨기려면 레이블을 비워둡니다." + "info": "버튼을 숨기려면 레이블을 비워둡니다.", + "default": "버튼 레이블" }, "button_link_1": { "label": "첫 번째 버튼 링크" @@ -2376,7 +2430,8 @@ "name": "캡션", "settings": { "text": { - "label": "텍스트" + "label": "텍스트", + "default": "슬로건 추가" }, "text_style": { "label": "텍스트 스타일", @@ -2421,7 +2476,8 @@ "name": "동영상", "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "동영상" }, "cover_image": { "label": "커버 이미지" @@ -2471,7 +2527,8 @@ "name": "텍스트", "settings": { "text": { - "label": "텍스트" + "label": "텍스트", + "default": "텍스트 블록" }, "text_style": { "label": "텍스트 스타일", @@ -2545,7 +2602,8 @@ "content": "미리 보기 이미지에 스토어 제목 및 설명이 포함됩니다. [자세히 알아보기](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "텍스트" + "label": "텍스트", + "default": "공유" } } }, @@ -2711,7 +2769,8 @@ "name": "제목", "settings": { "heading": { - "label": "제목" + "label": "제목", + "default": "곧 개장 예정" } } }, @@ -2719,7 +2778,8 @@ "name": "단락", "settings": { "paragraph": { - "label": "설명" + "label": "설명", + "default": "

출시 할 때 가장 먼저 알려드립니다.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "접근성", "label": "슬라이드 쇼 설명", - "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다." + "info": "스크린리더를 사용하는 고객에게 슬라이드 쇼를 설명합니다.", + "default": "브랜드 소개 슬라이드 쇼" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "이미지" }, "heading": { - "label": "제목" + "label": "제목", + "default": "이미지 슬라이드" }, "subheading": { - "label": "소제목" + "label": "소제목", + "default": "이미지를 통해 브랜드 스토리 이야기하기" }, "button_label": { "label": "버튼 레이블", - "info": "버튼을 숨기려면 레이블을 비워 둡니다." + "info": "버튼을 숨기려면 레이블을 비워 둡니다.", + "default": "버튼 레이블" }, "link": { "label": "버튼 링크" @@ -2895,7 +2959,8 @@ "label": "캡션" }, "heading": { - "label": "제목" + "label": "제목", + "default": "축소 가능한 콘텐츠" }, "heading_alignment": { "label": "제목 정렬", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "콘텐츠를 설명하는 제목을 포함합니다.", - "label": "제목" + "label": "제목", + "default": "축소 가능한 행" }, "row_content": { "label": "행 콘텐츠" @@ -3150,7 +3216,8 @@ "label": "데스크톱의 열 수" }, "paragraph__1": { - "content": "동적 추천은 주문 및 제품 정보를 사용하여 시간에 따라 변경되고 개선됩니다. [자세히 알아보기](https://help.shopify.com/themes/development/recommended-products)" + "content": "동적 추천은 주문 및 제품 정보를 사용하여 시간에 따라 변경되고 개선됩니다. [자세히 알아보기](https://help.shopify.com/themes/development/recommended-products)", + "default": "회원님이 좋아할 만한 추천 제품" }, "header__2": { "content": "제품 카드" @@ -3225,18 +3292,6 @@ "label": "데스크톱 이미지 너비", "info": "이미지는 자동으로 모바일에 최적화됩니다." }, - "heading_size": { - "options__1": { - "label": "작게" - }, - "options__2": { - "label": "보통" - }, - "options__3": { - "label": "크게" - }, - "label": "제목 크기" - }, "text_style": { "options__1": { "label": "본문" @@ -3323,16 +3378,20 @@ "label": "이미지" }, "caption": { - "label": "캡션" + "label": "캡션", + "default": "캡션" }, "heading": { - "label": "제목" + "label": "제목", + "default": "열" }, "text": { - "label": "텍스트" + "label": "텍스트", + "default": "

이미지와 텍스트를 짝지어 선택한 제품, 컬렉션, 블로그 게시물을 강조합니다. 사용 가능성, 스타일에 대한 자세한 정보를 추가하거나 리뷰를 제공합니다.

" }, "button_label": { - "label": "버튼 레이블" + "label": "버튼 레이블", + "default": "버튼 레이블" }, "button_link": { "label": "버튼 링크" diff --git a/locales/lt-LT.json b/locales/lt.json similarity index 92% rename from locales/lt-LT.json rename to locales/lt.json index 75eaa104d05..f46572a94a8 100644 --- a/locales/lt-LT.json +++ b/locales/lt.json @@ -158,7 +158,6 @@ "image_available": "Vaizdas {{ index }} dabar prieinamas galerijos rodinyje" }, "view_full_details": "Žiūrėti visą informaciją", - "include_taxes": "Mokesčiai įtraukti.", "shipping_policy_html": "Siuntimo išlaidos apskaičiuojamos atsiskaitant.", "choose_options": "Rinktis variantus", "choose_product_options": "Rinktis {{ product_name }} variantus", @@ -177,7 +176,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "po {{ price }}/vnt.", "price_range": "{{ minimum }}–{{ maximum }}" - } + }, + "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" @@ -300,10 +302,6 @@ "empty": "Jūsų krepšelis tuščias", "cart_error": "Atnaujinant krepšelį įvyko klaida. Bandykite dar kartą.", "cart_quantity_error_html": "Į krepšelį galite įdėti tik {{ quantity }}šios prekės vnt.", - "taxes_and_shipping_policy_at_checkout_html": "Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojami atsiskaitant", - "taxes_included_but_shipping_at_checkout": "Mokesčiai įtraukti, o siuntimo išlaidos ir nuolaidos apskaičiuojamos atsiskaitant", - "taxes_included_and_shipping_policy_html": "Mokesčiai įtraukti. Siuntimo išlaidos ir nuolaidos apskaičiuojamos atsiskaitant.", - "taxes_and_shipping_at_checkout": "Mokesčiai, nuolaidos ir siuntimo išlaidos apskaičiuojami atsiskaitant", "update": "Atnaujinti", "headings": { "product": "Gaminys", @@ -317,7 +315,15 @@ "paragraph_html": "Prisijunkite ir atsiskaitysite greičiau." }, "estimated_total": "Apskaičiuota bendra suma", - "new_estimated_total": "Nauja 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" diff --git a/locales/nb.json b/locales/nb.json index c3ca788379a..a8ea936bfe9 100644 --- a/locales/nb.json +++ b/locales/nb.json @@ -155,7 +155,6 @@ "image_available": "Bilde {{ index }} er nå tilgjengelig i gallerivisning" }, "view_full_details": "Vis alle detaljer", - "include_taxes": "Avgift inkludert.", "shipping_policy_html": "Frakt beregnes ved kassen.", "choose_options": "Velg alternativer", "choose_product_options": "Velg alternativer for {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "til {{ price }}/pr. stk", "price_range": "{{ minimum }}–{{ maximum }}" }, - "product_variants": "Produktvarianter" + "product_variants": "Produktvarianter", + "taxes_included": "Inkludert avgifter.", + "duties_included": "Inkluder tollplikter.", + "duties_and_taxes_included": "Inkludert tollplikter og avgifter." }, "modal": { "label": "Mediegalleri" @@ -280,10 +282,6 @@ "empty": "Handlekurven din er tom", "cart_error": "Det oppstod en feil under oppdateringen av handlekurven din. Prøv på nytt.", "cart_quantity_error_html": "Du kan bare legge {{ quantity }} av denne varen i handlekurven.", - "taxes_and_shipping_policy_at_checkout_html": "Avgifter, rabatter og frakt beregnes i kassen", - "taxes_included_but_shipping_at_checkout": "Inkluderte avgifter, frakt og rabatter beregnes i kassen", - "taxes_included_and_shipping_policy_html": "Inkluderte avgifter. Frakt og rabatter beregnes i kassen.", - "taxes_and_shipping_at_checkout": "Avgifter, rabatter og frakt beregnes i kassen", "headings": { "product": "Produkt", "price": "Pris", @@ -297,7 +295,15 @@ "paragraph_html": "Logg på for å betale raskere." }, "estimated_total": "Estimert totalsum", - "new_estimated_total": "Ny 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" diff --git a/locales/nb.schema.json b/locales/nb.schema.json index 001aa7f01fd..0384af70d9f 100644 --- a/locales/nb.schema.json +++ b/locales/nb.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Ekstra stort" + }, + "options__5": { + "label": "Ekstra ekstra stor" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Kunngjøring", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Velkommen til butikken vår" }, "text_alignment": { "label": "Tekstjustering", @@ -511,7 +515,8 @@ "name": "Fotomontasje", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Multimedia-kollasj" }, "desktop_layout": { "label": "Layout på datamaskin", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Liste over samlinger", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Samlinger" }, "image_ratio": { "label": "Bildeforhold", @@ -610,7 +617,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" }, "info": "Legg til bilder ved å redigere samlingene dine. [Finn ut mer](https://help.shopify.com/manual/products/collections)" }, @@ -654,6 +661,12 @@ "name": "Kontaktskjema", "presets": { "name": "Kontaktskjema" + }, + "settings": { + "title": { + "default": "Kontaktskjema", + "label": "Overskrift" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blogginnlegg", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Blogginnlegg" }, "blog": { "label": "Blogg" @@ -705,7 +719,8 @@ "name": "Fremhevet samling", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Fremhevet samling" }, "collection": { "label": "Samling" @@ -728,7 +743,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" } }, "show_secondary_image": { @@ -811,7 +826,8 @@ "name": "Meny", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Hurtigkoblinger" }, "menu": { "label": "Meny", @@ -823,10 +839,12 @@ "name": "Tekst", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Overskrift" }, "subtext": { - "label": "Undertekst" + "label": "Undertekst", + "default": "

Del kontaktopplysninger, butikkdetaljer og merkevareinnhold med kundene dine.

" } } }, @@ -851,7 +869,8 @@ "label": "Vis e-postregistrering" }, "newsletter_heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Abonner på e-postmeldingene våre" }, "header__1": { "content": "E-postregistrering", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Menyens fargepalett" + }, + "header__7": { + "content": "Pålogging til kundekontoer", + "info": "Gå til [kundekontoinnstillingene](/admin/settings/customer_accounts) for å administrere kundekontoer." + }, + "enable_customer_avatar": { + "label": "Vis avatar", + "info": "Kundene ser bare avataren sin når de er logget på med Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Bildeoverskrift" } } }, @@ -1111,7 +1139,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "Gi kundene mer informasjon om bannerbildet/-bildene eller innholdet i malen." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Første knappetikett", - "info": "La etiketten stå tom for å skjule knappen." + "info": "La etiketten stå tom for å skjule knappen.", + "default": "Knappetikett" }, "button_link_1": { "label": "Første knappekobling" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Andre knappetikett", - "info": "La etiketten stå tom for å skjule knappen." + "info": "La etiketten stå tom for å skjule knappen.", + "default": "Knappetikett" }, "button_link_2": { "label": "Andre knappekobling" @@ -1252,7 +1283,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Bilde med tekst" } } }, @@ -1260,7 +1292,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Innhold" + "label": "Innhold", + "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": "Tekststil", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Knappetikett", - "info": "La etiketten stå tom for å skjule knappen." + "info": "La etiketten stå tom for å skjule knappen.", + "default": "Knappetikett" }, "button_link": { "label": "Knappekobling" @@ -1292,7 +1326,8 @@ "name": "Bildetekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Legg til et slagord" }, "text_style": { "label": "Tekststil", @@ -1370,7 +1405,8 @@ "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" + "label": "Tekst", + "default": "Del" } } } @@ -1473,7 +1509,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" } }, "show_secondary_image": { @@ -1539,7 +1575,8 @@ "name": "Samlingsliste-side", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Samlinger" }, "sort": { "label": "Sorter samlinger etter:", @@ -1571,7 +1608,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" }, "info": "Legg til bilder ved å redigere samlingene dine. [Finn ut mer](https://help.shopify.com/manual/products/collections)" }, @@ -1615,7 +1652,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tekstblokk" }, "text_style": { "label": "Tekststil", @@ -1659,7 +1697,7 @@ "label": "Sirkel" }, "options__2": { - "label": "Firkant" + "label": "Kvadratisk" }, "options__3": { "label": "Ingen" @@ -1696,7 +1734,8 @@ "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" + "label": "Tekst", + "default": "Del" } } }, @@ -1705,7 +1744,8 @@ "settings": { "heading": { "info": "Inkluder en overskrift som forklarer innholdet.", - "label": "Overskrift" + "label": "Overskrift", + "default": "Sammenleggbar rad" }, "content": { "label": "Radinnhold" @@ -1854,7 +1894,8 @@ "name": "Pop-up", "settings": { "link_label": { - "label": "Koblingsetikett" + "label": "Koblingsetikett", + "default": "Tekst for popup-kobling" }, "page": { "label": "Side" @@ -1876,7 +1917,8 @@ "content": "Legg til Search & Discovery-appen for å velge komplimentære produkter. [Finn ut mer](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Kan kombineres med" }, "make_collapsible_row": { "label": "Vis som sammenleggbar rad" @@ -1905,7 +1947,7 @@ "label": "Bildeforhold", "options": { "option_1": "Portrett", - "option_2": "Firkant" + "option_2": "Kvadratisk" } }, "enable_quick_add": { @@ -1939,7 +1981,8 @@ "label": "Første bilde" }, "heading_1": { - "label": "Første overskrift" + "label": "Første overskrift", + "default": "Overskrift" }, "icon_2": { "label": "Andre ikon" @@ -1948,7 +1991,8 @@ "label": "Andre bilde" }, "heading_2": { - "label": "Andre overskrift" + "label": "Andre overskrift", + "default": "Overskrift" }, "icon_3": { "label": "Tredje ikon" @@ -1957,7 +2001,8 @@ "label": "Tredje bilde" }, "heading_3": { - "label": "Tredje overskrift" + "label": "Tredje overskrift", + "default": "Overskrift" } } }, @@ -2107,7 +2152,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" } }, "show_secondary_image": { @@ -2154,7 +2199,8 @@ "name": "Flerkolonne", "settings": { "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Flerkolonne" }, "image_width": { "label": "Bildebredde", @@ -2177,7 +2223,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" }, "options__4": { "label": "Sirkel" @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Knappetikett" + "label": "Knappetikett", + "default": "Knappetikett" }, "button_link": { "label": "Knappekobling" @@ -2234,10 +2281,12 @@ "label": "Bilde" }, "title": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Kolonne" }, "text": { - "label": "Beskrivelse" + "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" @@ -2267,7 +2316,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Abonner på e-postmeldingene våre" } } }, @@ -2275,7 +2325,8 @@ "name": "Underoverskrift", "settings": { "paragraph": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "

Vær blant de første som får høre om nye samlinger og eksklusive tilbud.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Snakk om merkevaren din" } } }, @@ -2343,7 +2395,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "

Del informasjon om merkevaren din med kundene. Beskriv et produkt, gjør kunngjøringer eller ønsk kundene velkommen til butikken.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Første knappetikett", - "info": "La etiketten stå tom for å skjule knappen." + "info": "La etiketten stå tom for å skjule knappen.", + "default": "Knappetikett" }, "button_link_1": { "label": "Første knappekobling" @@ -2376,7 +2430,8 @@ "name": "Bildetekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Legg til et slagord" }, "text_style": { "label": "Tekststil", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Video" }, "cover_image": { "label": "Forsidebilde" @@ -2471,7 +2527,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tekstblokk" }, "text_style": { "label": "Tekststil", @@ -2515,7 +2572,7 @@ "label": "Sirkel" }, "options__2": { - "label": "Firkant" + "label": "Kvadratisk" }, "options__3": { "label": "Ingen" @@ -2545,7 +2602,8 @@ "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" + "label": "Tekst", + "default": "Del" } } }, @@ -2711,7 +2769,8 @@ "name": "Overskrift", "settings": { "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Åpner snart" } } }, @@ -2719,7 +2778,8 @@ "name": "Avsnitt", "settings": { "paragraph": { - "label": "Beskrivelse" + "label": "Beskrivelse", + "default": "

Vær blant de første som får vite når vi lanserer.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Tilgjengelighet", "label": "Beskrivelse av lysbildefremvisning", - "info": "Beskriv lysbildefremvisningen for kunder som bruker skjermlesere." + "info": "Beskriv lysbildefremvisningen for kunder som bruker skjermlesere.", + "default": "Lysbildefremvisning om merkevaren" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Bilde" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Lysbilde" }, "subheading": { - "label": "Underoverskrift" + "label": "Underoverskrift", + "default": "Fortell merkevarens historie gjennom bilder" }, "button_label": { "label": "Knappetikett", - "info": "La etiketten stå tom for å skjule knappen." + "info": "La etiketten stå tom for å skjule knappen.", + "default": "Knappetikett" }, "link": { "label": "Knappekobling" @@ -2895,7 +2959,8 @@ "label": "Bildetekst" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Sammenleggbart innhold" }, "heading_alignment": { "label": "Justering av overskrift", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Inkluder en overskrift som forklarer innholdet.", - "label": "Overskrift" + "label": "Overskrift", + "default": "Sammenleggbar rad" }, "row_content": { "label": "Radinnhold" @@ -3150,7 +3216,8 @@ "label": "Antall kolonner på datamaskin" }, "paragraph__1": { - "content": "Dynamiske anbefalinger bruker bestillings- og produktinformasjon til å endres og forbedres over tid. [Finn ut mer](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dynamiske anbefalinger bruker bestillings- og produktinformasjon til å endres og forbedres over tid. [Finn ut mer](https://help.shopify.com/themes/development/recommended-products)", + "default": "Kanskje du også liker" }, "header__2": { "content": "Produktkort" @@ -3164,7 +3231,7 @@ "label": "Portrett" }, "options__3": { - "label": "Firkant" + "label": "Kvadratisk" } }, "show_secondary_image": { @@ -3225,18 +3292,6 @@ "label": "Bildebredde på datamaskiner", "info": "Bildet optimaliseres automatisk for mobil." }, - "heading_size": { - "options__1": { - "label": "Liten" - }, - "options__2": { - "label": "Medie" - }, - "options__3": { - "label": "Stor" - }, - "label": "Overskriftsstørrelse" - }, "text_style": { "options__1": { "label": "Brødtekst" @@ -3323,16 +3378,20 @@ "label": "Bilde" }, "caption": { - "label": "Bildetekst" + "label": "Bildetekst", + "default": "Bildetekst" }, "heading": { - "label": "Overskrift" + "label": "Overskrift", + "default": "Rad" }, "text": { - "label": "Tekst" + "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" + "label": "Knappetikett", + "default": "Knappetikett" }, "button_link": { "label": "Knappekobling" diff --git a/locales/nl.json b/locales/nl.json index e5b7c0dc116..2d153527396 100644 --- a/locales/nl.json +++ b/locales/nl.json @@ -155,7 +155,6 @@ "image_available": "Afbeelding {{ index }} is nu beschikbaar in gallery-weergave" }, "view_full_details": "Alle details bekijken", - "include_taxes": "Inclusief btw.", "shipping_policy_html": "Verzendkosten worden berekend bij de checkout.", "choose_options": "Opties kiezen", "choose_product_options": "Opties kiezen voor {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "{{ price }}/st.", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "Productvarianten" + "product_variants": "Productvarianten", + "taxes_included": "Belastingen inbegrepen.", + "duties_included": "Douanerechten inbegrepen.", + "duties_and_taxes_included": "Douanerechten en belastingen inbegrepen." }, "modal": { "label": "Mediagalerij" @@ -280,10 +282,6 @@ "empty": "Je winkelwagen is leeg", "cart_error": "Er is een fout opgetreden bij het bijwerken van je winkelwagen. Probeer het opnieuw.", "cart_quantity_error_html": "Je kunt maar {{ quantity }} van dit artikel toevoegen aan je winkelwagen.", - "taxes_and_shipping_policy_at_checkout_html": "Belastingen, kortingen en verzending worden bij de checkout berekend", - "taxes_included_but_shipping_at_checkout": "Inclusief belasting; verzendkosten en kortingen worden bij de checkout berekend", - "taxes_included_and_shipping_policy_html": "Inclusief belasting. Verzending en kortingen worden bij de checkout berekend.", - "taxes_and_shipping_at_checkout": "Belastingen, kortingen en verzending worden bij de checkout berekend", "headings": { "product": "Product", "price": "Prijs", @@ -297,7 +295,15 @@ "paragraph_html": "Log in om sneller af te rekenen." }, "estimated_total": "Geschat totaal", - "new_estimated_total": "Nieuw 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" diff --git a/locales/nl.schema.json b/locales/nl.schema.json index 4448c092b40..11151991a79 100644 --- a/locales/nl.schema.json +++ b/locales/nl.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra groot" + }, + "options__5": { + "label": "Extra extra groot" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Aankondiging", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Welkom in onze winkel" }, "text_alignment": { "label": "Tekstuitlijning", @@ -511,7 +515,8 @@ "name": "Collage", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Multimediacollage" }, "desktop_layout": { "label": "Opmaak bureaublad", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Collectielijst", "settings": { "title": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Collecties" }, "image_ratio": { "label": "Breedte-/hoogteverhouding van afbeeldingen", @@ -610,7 +617,7 @@ "label": "Portret" }, "options__3": { - "label": "Square" + "label": "Vierkant" }, "info": "Voeg afbeeldingen toe door je collecties bij te werken. [Meer informatie](https://help.shopify.com/manual/products/collections)" }, @@ -654,6 +661,12 @@ "name": "Contactformulier", "presets": { "name": "Contactformulier" + }, + "settings": { + "title": { + "default": "Contactformulier", + "label": "Koptekst" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blogberichten", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Blogposts" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Uitgelichte collectie", "settings": { "title": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Uitgelichte collectie" }, "collection": { "label": "Collectie" @@ -728,7 +743,7 @@ "label": "Portret" }, "options__3": { - "label": "Square" + "label": "Vierkant" } }, "show_secondary_image": { @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Snelle links" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Tekst", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Koptekst" }, "subtext": { - "label": "Subtekst" + "label": "Subtekst", + "default": "

Deel contactgegevens, winkelgegevens en merkcontent met klanten.

" } } }, @@ -851,7 +869,8 @@ "label": "Aanmelding voor het ontvangen van e-mail weergeven" }, "newsletter_heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Abonneren op onze e-mails" }, "header__1": { "content": "Aanmelding voor het ontvangen van e-mail", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Kleurschemamenu" + }, + "header__7": { + "content": "Inloggen bij klantaccounts", + "info": "Ga om klantaccounts te beheren naar je instellingen voor klantaccounts ](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Avatar weergeven", + "info": "Klanten kunnen de avatar alleen zien als ze zijn ingelogd bij Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Opschrift", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Banner voor afbeeldingen" } } }, @@ -1111,7 +1139,8 @@ "name": "Tekstkleur", "settings": { "text": { - "label": "Beschrijving" + "label": "Beschrijving", + "default": "Geef klanten details over de bannerafbeelding(en) of content op de template." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Eerste knoplabel", - "info": "Laat het label leeg om de knop te verbergen." + "info": "Laat het label leeg om de knop te verbergen.", + "default": "Knoplabel" }, "button_link_1": { "label": "Eerste knoplink" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Tweede knoplabel", - "info": "Laat het label leeg om de knop te verbergen." + "info": "Laat het label leeg om de knop te verbergen.", + "default": "Knoplabel" }, "button_link_2": { "label": "Tweede knoplink" @@ -1252,7 +1283,8 @@ "name": "Opschrift", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Afbeelding met tekst" } } }, @@ -1260,7 +1292,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Content" + "label": "Content", + "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": "Tekststijl", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Knop met tekstlabel", - "info": "Laat het label leeg om de knop te verbergen." + "info": "Laat het label leeg om de knop te verbergen.", + "default": "Knoplabel" }, "button_link": { "label": "Knop met link" @@ -1292,7 +1326,8 @@ "name": "Bijschrift", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Voeg een tagline toe" }, "text_style": { "label": "Tekststijl", @@ -1370,7 +1405,8 @@ "content": "Een winkelnaam en beschrijving worden weergegeven in de voorbeeldafbeelding. [Meer informatie](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Delen" } } } @@ -1466,7 +1502,7 @@ "label": "Portret" }, "options__3": { - "label": "Square" + "label": "Vierkant" } }, "show_secondary_image": { @@ -1539,7 +1575,8 @@ "name": "Pagina collectielijst", "settings": { "title": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Collecties" }, "sort": { "label": "Collecties sorteren op:", @@ -1571,7 +1608,7 @@ "label": "Portret" }, "options__3": { - "label": "Square" + "label": "Vierkant" }, "info": "Voeg afbeeldingen toe door je collecties bij te werken. [Meer informatie](https://help.shopify.com/manual/products/collections)" }, @@ -1616,7 +1653,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tekstblok" }, "text_style": { "label": "TextStyle", @@ -1697,7 +1735,8 @@ "content": "Een winkelnaam en beschrijving worden weergegeven in de voorbeeldafbeelding. [Meer informatie](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Delen" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Gebruik een kop die de content verklaart.", - "label": "Opschrift" + "label": "Opschrift", + "default": "Inklapbare rij" }, "content": { "label": "Content rij" @@ -1855,7 +1895,8 @@ "name": "Pop-up", "settings": { "link_label": { - "label": "Link-label" + "label": "Link-label", + "default": "Tekst voor pop-uplink" }, "page": { "label": "Pagina" @@ -1877,7 +1918,8 @@ "content": "Als je aanvullende producten wilt selecteren, voeg je de Search en Zichtbaarheid-app toe. [Meer informatie](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Koptekst" + "label": "Koptekst", + "default": "Gaat goed samen met" }, "make_collapsible_row": { "label": "Weergeven als inklapbare rij" @@ -1940,7 +1982,8 @@ "label": "Eerste afbeelding" }, "heading_1": { - "label": "Eerste opschrift" + "label": "Eerste opschrift", + "default": "Koptekst" }, "icon_2": { "label": "Tweede pictogram" @@ -1949,7 +1992,8 @@ "label": "Tweede afbeelding" }, "heading_2": { - "label": "Tweede opschrift" + "label": "Tweede opschrift", + "default": "Koptekst" }, "icon_3": { "label": "Derde pictogram" @@ -1958,7 +2002,8 @@ "label": "Derde afbeelding" }, "heading_3": { - "label": "Derde opschrift" + "label": "Derde opschrift", + "default": "Koptekst" } } }, @@ -2107,7 +2152,7 @@ "label": "Portret" }, "options__3": { - "label": "Square" + "label": "Vierkant" } }, "show_secondary_image": { @@ -2154,7 +2199,8 @@ "name": "Meerdere kolommen", "settings": { "title": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Meerdere kolommen" }, "image_width": { "label": "Breedte afbeelding", @@ -2177,7 +2223,7 @@ "label": "Portret" }, "options__3": { - "label": "Square" + "label": "Vierkant" }, "options__4": { "label": "Cirkel" @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Knop met tekstlabel" + "label": "Knop met tekstlabel", + "default": "Knoplabel" }, "button_link": { "label": "Knop met link" @@ -2234,10 +2281,12 @@ "label": "Afbeelding" }, "title": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Kolom" }, "text": { - "label": "Beschrijving" + "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" @@ -2267,7 +2316,8 @@ "name": "Opschrift", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Abonneren op onze e-mails" } } }, @@ -2275,7 +2325,8 @@ "name": "Subkop", "settings": { "paragraph": { - "label": "Beschrijving" + "label": "Beschrijving", + "default": "

Kom als eerste te weten als er nieuwe collecties en exclusieve aanbiedingen zijn.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Opschrift", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Vertel over je merk" } } }, @@ -2343,7 +2395,8 @@ "name": "Tekstkleur", "settings": { "text": { - "label": "Beschrijving" + "label": "Beschrijving", + "default": "

Deel informatie over je merk met klanten. Beschrijf een product, doe aankondigingen of verwelkom klanten in je winkel.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Eerste knoplabel", - "info": "Laat het label leeg om de knop te verbergen." + "info": "Laat het label leeg om de knop te verbergen.", + "default": "Knoplabel" }, "button_link_1": { "label": "Eerste knoplink" @@ -2376,7 +2430,8 @@ "name": "Bijschrift", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Voeg een tagline toe" }, "text_style": { "label": "Tekststijl", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Video" }, "cover_image": { "label": "Coverafbeelding" @@ -2471,7 +2527,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Tekstblok" }, "text_style": { "label": "TextStyle", @@ -2545,7 +2602,8 @@ "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" + "label": "Tekstkleur", + "default": "Delen" } } }, @@ -2711,7 +2769,8 @@ "name": "Opschrift", "settings": { "heading": { - "label": "Opschrift" + "label": "Opschrift", + "default": "Opent binnenkort" } } }, @@ -2719,7 +2778,8 @@ "name": "Paragraaf", "settings": { "paragraph": { - "label": "Beschrijving" + "label": "Beschrijving", + "default": "

Kom als eerste te weten wanneer we van start gaan.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Toegankelijkheid", "label": "Beschrijving van diavoorstelling", - "info": "Geef een beschrijving van de diavoorstelling voor klanten die schermlezers gebruiken." + "info": "Geef een beschrijving van de diavoorstelling voor klanten die schermlezers gebruiken.", + "default": "Diavoorstelling over ons merk" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Afbeelding" }, "heading": { - "label": "Kop" + "label": "Kop", + "default": "Afbeelding dia" }, "subheading": { - "label": "Subkop" + "label": "Subkop", + "default": "Vertel met afbeeldingen het verhaal van je merk" }, "button_label": { "label": "Knoplabel", - "info": "Laat het label leeg om de knop te verbergen." + "info": "Laat het label leeg om de knop te verbergen.", + "default": "Knoplabel" }, "link": { "label": "Knoplink" @@ -2895,7 +2959,8 @@ "label": "Bijschrift" }, "heading": { - "label": "Kop" + "label": "Kop", + "default": "Inklapbare content" }, "heading_alignment": { "label": "Uitlijning kop", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Gebruik een kop die de content verklaart.", - "label": "Kop" + "label": "Kop", + "default": "Inklapbare rij" }, "row_content": { "label": "Content rij" @@ -3150,7 +3216,8 @@ "label": "Aantal kolommen op desktopcomputers" }, "paragraph__1": { - "content": "In de loop van de tijd worden veranderingen en verbeteringen doorgevoerd dankzij dynamische aanbevelingen, waarbij gebruik wordt gemaakt van informatie over bestellingen en producten. [Meer informatie](https://help.shopify.com/themes/development/recommended-products)" + "content": "In de loop van de tijd worden veranderingen en verbeteringen doorgevoerd dankzij dynamische aanbevelingen, waarbij gebruik wordt gemaakt van informatie over bestellingen en producten. [Meer informatie](https://help.shopify.com/themes/development/recommended-products)", + "default": "Wellicht vind je dit ook leuk" }, "header__2": { "content": "Productkaart" @@ -3225,18 +3292,6 @@ "label": "Breedte van bureaubladafbeelding", "info": "De afbeelding wordt automatisch geoptimaliseerd voor mobiel." }, - "heading_size": { - "options__1": { - "label": "Klein" - }, - "options__2": { - "label": "Gemiddeld" - }, - "options__3": { - "label": "Groot" - }, - "label": "Grootte koptekst" - }, "text_style": { "options__1": { "label": "Hoofdtekst" @@ -3323,16 +3378,20 @@ "label": "Afbeelding" }, "caption": { - "label": "Bijschrift" + "label": "Bijschrift", + "default": "Bijschrift" }, "heading": { - "label": "Koptekst" + "label": "Koptekst", + "default": "Rij" }, "text": { - "label": "Tekst" + "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" + "label": "Knoplabel", + "default": "Knoplabel" }, "button_link": { "label": "Knoplink" diff --git a/locales/pl.json b/locales/pl.json index 957ae862d64..6fb2548fdd8 100644 --- a/locales/pl.json +++ b/locales/pl.json @@ -157,7 +157,6 @@ "image_available": "Obraz {{ index }} jest teraz dostępny w widoku galerii" }, "view_full_details": "Pokaż kompletne dane", - "include_taxes": "Z wliczonym podatkiem.", "shipping_policy_html": "Koszt wysyłki obliczony przy realizacji zakupu.", "choose_options": "Wybierz opcje", "choose_product_options": "Wybierz opcje dla {{ product_name }}", @@ -177,7 +176,10 @@ "price_at_each": "{{ price }}/szt.", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "Warianty produktów" + "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" @@ -300,10 +302,6 @@ "empty": "Twój koszyk jest pusty", "cart_error": "Wystąpił błąd podczas aktualizowania Twojego koszyka. Spróbuj ponownie.", "cart_quantity_error_html": "Możesz dodać do koszyka tylko {{ quantity }} sztuk(i) tej pozycji.", - "taxes_and_shipping_policy_at_checkout_html": "Podatki, rabaty i wysyłki obliczane przy realizacji zakupu", - "taxes_included_but_shipping_at_checkout": "Podatek wliczony w cenę, koszty wysyłki i rabaty są obliczane przy realizacji zakupu", - "taxes_included_and_shipping_policy_html": "Z wliczonym podatkiem. Koszt wysyłki obliczony przy realizacji zakupu. Wysyłka i rabaty obliczone przy realizacji zakupu.", - "taxes_and_shipping_at_checkout": "Podatki, rabaty i wysyłki obliczane przy realizacji zakupu", "update": "Aktualizuj", "headings": { "product": "Produkt", @@ -317,7 +315,15 @@ "paragraph_html": "Zaloguj się, aby szybciej realizować zakupy." }, "estimated_total": "Przewidywana suma", - "new_estimated_total": "Nowa 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" diff --git a/locales/pl.schema.json b/locales/pl.schema.json index 9e5b092ea77..8c7caed1477 100644 --- a/locales/pl.schema.json +++ b/locales/pl.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Bardzo duży" + }, + "options__5": { + "label": "Bardzo, bardzo duży" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Ogłoszenie", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Witamy w naszym sklepie" }, "text_alignment": { "label": "Wyrównanie tekstu", @@ -511,7 +515,8 @@ "name": "Kolaż", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Kolaż multimedialny" }, "desktop_layout": { "label": "Układ pulpitu", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Lista kolekcji", "settings": { "title": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Kolekcje" }, "image_ratio": { "label": "Proporcja obrazu", @@ -654,6 +661,12 @@ "name": "Formularz kontaktowy", "presets": { "name": "Formularz kontaktowy" + }, + "settings": { + "title": { + "default": "Formularz kontaktowy", + "label": "Nagłówek" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Posty na blogu", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Posty na blogu" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Polecana kolekcja", "settings": { "title": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Polecana kolekcja" }, "collection": { "label": "Kolekcja" @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Szybkie linki" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Tekst", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Nagłówek" }, "subtext": { - "label": "Tekst podrzędny" + "label": "Tekst podrzędny", + "default": "

Udostępniaj klientom informacje kontaktowe, dane sklepu i treści związane z marką.

" } } }, @@ -851,7 +869,8 @@ "label": "Pokaż rejestrację w celu otrzymywania e-maili." }, "newsletter_heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Subskrybuj nasze wiadomości e-mail" }, "header__1": { "content": "Osoba zarejestrowana w celu otrzymywania e-maili", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Kolorystyka menu" + }, + "header__7": { + "content": "Logowanie do kont klientów", + "info": "Aby zarządzać kontami klientów, przejdź do [ustawień kont klientów](/admin/settings/customer_accounts)]." + }, + "enable_customer_avatar": { + "label": "Pokaż awatar", + "info": "Klienci zobaczą swój awatar tylko po zalogowaniu się przez Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Nagłówek", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Baner z obrazem" } } }, @@ -1111,7 +1139,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Opis" + "label": "Opis", + "default": "Podaj klientom szczegóły dotyczące obrazów banerów lub treści w szablonie." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Pierwszy przycisk z etykietą", - "info": "Pozostaw etykietę pustą, aby ukryć przycisk." + "info": "Pozostaw etykietę pustą, aby ukryć przycisk.", + "default": "Przycisk z etykietą" }, "button_link_1": { "label": "Pierwszy link przycisku" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Drugi przycisk z etykietą", - "info": "Pozostaw etykietę pustą, aby ukryć przycisk." + "info": "Pozostaw etykietę pustą, aby ukryć przycisk.", + "default": "Przycisk z etykietą" }, "button_link_2": { "label": "Drugi link przycisku" @@ -1252,7 +1283,8 @@ "name": "Nagłówek", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Obraz z tekstem" } } }, @@ -1260,7 +1292,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Treść" + "label": "Treść", + "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 tekstu", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Przycisk z etykietą", - "info": "Pozostaw etykietę pustą, aby ukryć przycisk." + "info": "Pozostaw etykietę pustą, aby ukryć przycisk.", + "default": "Przycisk z etykietą" }, "button_link": { "label": "Link przycisku" @@ -1292,7 +1326,8 @@ "name": "Napisy", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Dodaj slogan" }, "text_style": { "label": "Styl tekstu", @@ -1370,7 +1405,8 @@ "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" + "label": "Tekst", + "default": "Udostępnij" } } } @@ -1539,7 +1575,8 @@ "name": "Strona listy kolekcji", "settings": { "title": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Kolekcje" }, "sort": { "label": "Sortuj kolekcje według:", @@ -1616,7 +1653,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Blok tekstowy" }, "text_style": { "label": "Text style", @@ -1697,7 +1735,8 @@ "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" + "label": "Tekst", + "default": "Udostępnij" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Dołącz nagłówek, który wyjaśnia treść.", - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Zwijany wiersz" }, "content": { "label": "Treść wiersza" @@ -1855,7 +1895,8 @@ "name": "Wyskakujące okienko", "settings": { "link_label": { - "label": "Etykieta linku" + "label": "Etykieta linku", + "default": "Wyskakujące okienko tekstowe" }, "page": { "label": "Strona" @@ -1877,7 +1918,8 @@ "content": "Aby wybrać produkty uzupełniające, dodaj aplikację Search & Discovery. [Dowiedz się więcej](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Pasuje do" }, "make_collapsible_row": { "label": "Pokaż jako zwijany wiersz" @@ -1940,7 +1982,8 @@ "label": "Pierwszy obraz" }, "heading_1": { - "label": "Pierwszy nagłówek" + "label": "Pierwszy nagłówek", + "default": "Nagłówek" }, "icon_2": { "label": "Druga ikona" @@ -1949,7 +1992,8 @@ "label": "Drugi obraz" }, "heading_2": { - "label": "Drugi nagłówek" + "label": "Drugi nagłówek", + "default": "Nagłówek" }, "icon_3": { "label": "Trzecia ikona" @@ -1958,7 +2002,8 @@ "label": "Trzeci obraz" }, "heading_3": { - "label": "Trzeci nagłówek" + "label": "Trzeci nagłówek", + "default": "Nagłówek" } } }, @@ -2154,7 +2199,8 @@ "name": "Wielokolumnowy", "settings": { "title": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Wielokolumnowy" }, "image_width": { "label": "Szerokość obrazu", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Przycisk z etykietą" + "label": "Przycisk z etykietą", + "default": "Przycisk z etykietą" }, "button_link": { "label": "Link przycisku" @@ -2234,10 +2281,12 @@ "label": "Obraz" }, "title": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Kolumna" }, "text": { - "label": "Opis" + "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" @@ -2267,7 +2316,8 @@ "name": "Nagłówek", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Subskrybuj nasze wiadomości e-mail" } } }, @@ -2275,7 +2325,8 @@ "name": "Nagłówek podrzędny", "settings": { "paragraph": { - "label": "Opis" + "label": "Opis", + "default": "

Dowiedz się jako pierwszy o nowych kolekcjach i ekskluzywnych ofertach.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Nagłówek", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Opowiedz o swojej marce" } } }, @@ -2343,7 +2395,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Opis" + "label": "Opis", + "default": "

Udostępnij klientom informacje o swojej marce. Opisz produkt, udostępnij ogłoszenia lub przywitaj klientów w swoim sklepie.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Pierwszy przycisk z etykietą", - "info": "Pozostaw etykietę pustą, aby ukryć przycisk." + "info": "Pozostaw etykietę pustą, aby ukryć przycisk.", + "default": "Przycisk z etykietą" }, "button_link_1": { "label": "Pierwszy link przycisku" @@ -2376,7 +2430,8 @@ "name": "Napisy", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Dodaj slogan" }, "text_style": { "label": "Styl tekstu", @@ -2421,7 +2476,8 @@ "name": "Film", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Film" }, "cover_image": { "label": "Obraz w tle" @@ -2471,7 +2527,8 @@ "name": "Tekst", "settings": { "text": { - "label": "Tekst" + "label": "Tekst", + "default": "Blok tekstowy" }, "text_style": { "label": "Styl tekstu", @@ -2545,7 +2602,8 @@ "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" + "label": "Tekst", + "default": "Udostępnij" } } }, @@ -2711,7 +2769,8 @@ "name": "Nagłówek", "settings": { "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Wkrótce otwarcie" } } }, @@ -2719,7 +2778,8 @@ "name": "Akapit", "settings": { "paragraph": { - "label": "Opis" + "label": "Opis", + "default": "

Bądź pierwszą osobą, która dowie się, kiedy wystartujemy.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Dostępność", "label": "Opis pokazu slajdów", - "info": "Opisz pokaz slajdów dla klientów korzystających z czytników ekranu." + "info": "Opisz pokaz slajdów dla klientów korzystających z czytników ekranu.", + "default": "Pokaz slajdów na temat naszej marki" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Obraz" }, "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Slajd obrazu" }, "subheading": { - "label": "Nagłówek podrzędny" + "label": "Nagłówek podrzędny", + "default": "Opowiedz historię swojej marki za pomocą obrazów" }, "button_label": { "label": "Przycisk z etykietą", - "info": "Pozostaw etykietę pustą, aby ukryć przycisk." + "info": "Pozostaw etykietę pustą, aby ukryć przycisk.", + "default": "Przycisk z etykietą" }, "link": { "label": "Link przycisku" @@ -2895,7 +2959,8 @@ "label": "Napisy" }, "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Zwijana treść" }, "heading_alignment": { "label": "Wyrównanie nagłówka", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Dołącz nagłówek, który wyjaśnia treść.", - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Zwijany wiersz" }, "row_content": { "label": "Treść wiersza" @@ -3150,7 +3216,8 @@ "label": "Liczba kolumn na komputerze" }, "paragraph__1": { - "content": "Dynamiczne rekomendacje wykorzystują informacje o zamówieniach i produktach do ciągłego zmieniania i ulepszania. [Dowiedz się więcej](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dynamiczne rekomendacje wykorzystują informacje o zamówieniach i produktach do ciągłego zmieniania i ulepszania. [Dowiedz się więcej](https://help.shopify.com/themes/development/recommended-products)", + "default": "Może Ci się spodobać również" }, "header__2": { "content": "Karta produktów" @@ -3225,18 +3292,6 @@ "label": "Szerokość obrazu na komputerze", "info": "Obraz jest automatycznie optymalizowany dla urządzeń mobilnych." }, - "heading_size": { - "options__1": { - "label": "Mały" - }, - "options__2": { - "label": "Średni" - }, - "options__3": { - "label": "Duży" - }, - "label": "Rozmiar nagłówka" - }, "text_style": { "options__1": { "label": "Tekst podstawowy" @@ -3323,16 +3378,20 @@ "label": "Obraz" }, "caption": { - "label": "Napisy" + "label": "Napisy", + "default": "Napis" }, "heading": { - "label": "Nagłówek" + "label": "Nagłówek", + "default": "Wiersz" }, "text": { - "label": "Tekst" + "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ą" + "label": "Przycisk z etykietą", + "default": "Przycisk z etykietą" }, "button_link": { "label": "Link przycisku" diff --git a/locales/pt-BR.json b/locales/pt-BR.json index 6f1f13d6c15..d50474a06e3 100644 --- a/locales/pt-BR.json +++ b/locales/pt-BR.json @@ -156,7 +156,6 @@ "image_available": "A imagem {{ index }} está disponível no visualizador da galeria" }, "view_full_details": "Ver informações completas", - "include_taxes": "Tributo incluído.", "shipping_policy_html": "Frete calculado no checkout.", "choose_options": "Escolher opções", "choose_product_options": "Escolha opções para {{ product_name }}", @@ -176,7 +175,10 @@ "price_at_each": "{{ price }}/cada", "price_range": "{{ minimum }} – {{ maximum }}" }, - "product_variants": "Variantes do produto" + "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" @@ -290,10 +292,6 @@ "empty": "O carrinho está vazio", "cart_error": "Ocorreu um erro ao atualizar o carrinho. Tente de novo.", "cart_quantity_error_html": "É possível adicionar apenas {{ quantity }} unidade(s) desse item ao carrinho.", - "taxes_and_shipping_policy_at_checkout_html": "Tributos, descontos e frete calculados no checkout", - "taxes_included_but_shipping_at_checkout": "Tributos incluídos e frete e descontos calculados no checkout", - "taxes_included_and_shipping_policy_html": "Tributos incluídos. Frete e descontos calculados no checkout.", - "taxes_and_shipping_at_checkout": "Tributos, descontos e frete calculados no checkout", "headings": { "product": "Produto", "price": "Preço", @@ -307,7 +305,15 @@ "paragraph_html": "Faça login para finalizar a compra com mais rapidez." }, "estimated_total": "Total estimado", - "new_estimated_total": "Novo 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" diff --git a/locales/pt-BR.schema.json b/locales/pt-BR.schema.json index 4d29b3fc0e0..36ffb9aeb2a 100644 --- a/locales/pt-BR.schema.json +++ b/locales/pt-BR.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra grande" + }, + "options__5": { + "label": "Extraextragrande" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Comunicado", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Boas-vindas à nossa loja" }, "text_alignment": { "label": "Alinhamento do texto", @@ -511,7 +515,8 @@ "name": "Colagem", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Colagem multimídia" }, "desktop_layout": { "label": "Layout para desktop", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Lista de coleções", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Coleções" }, "image_ratio": { "label": "Proporção da imagem", @@ -654,6 +661,12 @@ "name": "Formulário de contato", "presets": { "name": "Formulário de contato" + }, + "settings": { + "title": { + "default": "Formulário de contato", + "label": "Título" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Posts do blog", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Posts do blog" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Coleção em destaque", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Coleção em destaque" }, "collection": { "label": "Coleção" @@ -760,7 +775,7 @@ "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" }, "options__3": { "label": "Letras maiúsculas" @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Links rápidos" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Texto", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Título" }, "subtext": { - "label": "Subtexto" + "label": "Subtexto", + "default": "

Compartilhe informações de contato, detalhes da loja e conteúdo de marca com clientes.

" } } }, @@ -851,7 +869,8 @@ "label": "Exibir assinante de e-mail" }, "newsletter_heading": { - "label": "Título" + "label": "Título", + "default": "Assine nossos e-mails" }, "header__1": { "content": "Assinante de e-mail", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Esquema de cores do menu" + }, + "header__7": { + "content": "Login de contas de cliente", + "info": "Para gerenciar as contas de cliente, acesse as [configurações relacionadas](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Mostrar avatar", + "info": "Os clientes só veem o avatar deles depois de fazer login no Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Banner gráfico" } } }, @@ -1111,14 +1139,15 @@ "name": "Texto", "settings": { "text": { - "label": "Descrição" + "label": "Descrição", + "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": "Legenda" + "label": "Subtítulo" }, "options__3": { "label": "Letras maiúsculas" @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Primeira etiqueta de botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta de botão" }, "button_link_1": { "label": "Primeiro link de botão" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Segunda etiqueta de botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta de botão" }, "button_link_2": { "label": "Segundo link de botão" @@ -1252,7 +1283,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Imagem com texto" } } }, @@ -1260,7 +1292,8 @@ "name": "Texto", "settings": { "text": { - "label": "Conteúdo" + "label": "Conteúdo", + "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 de texto", @@ -1268,7 +1301,7 @@ "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" } } } @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Etiqueta de botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta de botão" }, "button_link": { "label": "Link de botão" @@ -1292,12 +1326,13 @@ "name": "Legenda", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Adicione um slogan" }, "text_style": { "label": "Estilo de texto", "options__1": { - "label": "Legenda" + "label": "Subtítulo" }, "options__2": { "label": "Letras maiúsculas" @@ -1370,7 +1405,8 @@ "content": "Um título e uma descrição da loja estão incluídos na prévia da imagem. [Saiba mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)." }, "text": { - "label": "Texto" + "label": "Texto", + "default": "Compartilhar" } } } @@ -1539,7 +1575,8 @@ "name": "Página da lista de coleções", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Coleções" }, "sort": { "label": "Ordenar coleções por:", @@ -1615,7 +1652,8 @@ "name": "Texto", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bloco de texto" }, "text_style": { "label": "Estilo de texto", @@ -1623,7 +1661,7 @@ "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" }, "options__3": { "label": "Letras maiúsculas" @@ -1696,7 +1734,8 @@ "content": "Um título e uma descrição da loja estão incluídos na prévia da imagem. [Saiba mais](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)." }, "text": { - "label": "Texto" + "label": "Texto", + "default": "Compartilhar" } } }, @@ -1705,7 +1744,8 @@ "settings": { "heading": { "info": "Inclua um título que explique o conteúdo.", - "label": "Título" + "label": "Título", + "default": "Linha recolhível" }, "content": { "label": "Conteúdo da linha" @@ -1854,7 +1894,8 @@ "name": "Pop-up", "settings": { "link_label": { - "label": "Etiqueta de link" + "label": "Etiqueta de link", + "default": "Texto do link pop-up" }, "page": { "label": "Página" @@ -1876,7 +1917,8 @@ "content": "Para selecionar produtos complementares, adicione o app Search & Discovery. [Saiba mais](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Combina bem com" }, "make_collapsible_row": { "label": "Exibir como linha recolhível" @@ -1939,7 +1981,8 @@ "label": "Primeira imagem" }, "heading_1": { - "label": "Primeiro título" + "label": "Primeiro título", + "default": "Título" }, "icon_2": { "label": "Segundo ícone" @@ -1948,7 +1991,8 @@ "label": "Segunda imagem" }, "heading_2": { - "label": "Segundo título" + "label": "Segundo título", + "default": "Título" }, "icon_3": { "label": "Terceiro ícone" @@ -1957,7 +2001,8 @@ "label": "Terceira imagem" }, "heading_3": { - "label": "Terceiro título" + "label": "Terceiro título", + "default": "Título" } } }, @@ -1987,7 +2032,7 @@ "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" }, "options__3": { "label": "Letras maiúsculas" @@ -2154,7 +2199,8 @@ "name": "Multicoluna", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Várias colunas" }, "image_width": { "label": "Largura da imagem", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Etiqueta de botão" + "label": "Etiqueta de botão", + "default": "Etiqueta de botão" }, "button_link": { "label": "Link de botão" @@ -2234,10 +2281,12 @@ "label": "Imagem" }, "title": { - "label": "Título" + "label": "Título", + "default": "Coluna" }, "text": { - "label": "Descrição" + "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" @@ -2267,7 +2316,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Assine nossos e-mails" } } }, @@ -2275,7 +2325,8 @@ "name": "Subtítulo", "settings": { "paragraph": { - "label": "Descrição" + "label": "Descrição", + "default": "

Seja a primeira pessoa a saber sobre novas coleções e ofertas exclusivas.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Fale sobre a marca" } } }, @@ -2343,7 +2395,8 @@ "name": "Texto", "settings": { "text": { - "label": "Descrição" + "label": "Descrição", + "default": "

Compartilhe informações sobre a marca com clientes. Descreva um produto, faça comunicados ou dê as boas-vindas aos clientes na loja.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Primeira etiqueta de botão", - "info": "Deixar a etiqueta em branco para ocultar o botão." + "info": "Deixar a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta de botão" }, "button_link_1": { "label": "Primeiro link de botão" @@ -2376,12 +2430,13 @@ "name": "Legenda", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Adicione um slogan" }, "text_style": { "label": "Estilo de texto", "options__1": { - "label": "Legenda" + "label": "Subtítulo" }, "options__2": { "label": "Letras maiúsculas" @@ -2421,7 +2476,8 @@ "name": "Vídeo", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Vídeo" }, "cover_image": { "label": "Imagem de capa" @@ -2471,7 +2527,8 @@ "name": "Texto", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bloco de texto" }, "text_style": { "label": "Estilo de texto", @@ -2479,7 +2536,7 @@ "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" }, "options__3": { "label": "Letras maiúsculas" @@ -2545,7 +2602,8 @@ "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" + "label": "Texto", + "default": "Compartilhar" } } }, @@ -2711,7 +2769,8 @@ "name": "Título", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Abertura em breve" } } }, @@ -2719,14 +2778,15 @@ "name": "Parágrafo", "settings": { "paragraph": { - "label": "Descrição" + "label": "Descrição", + "default": "

Seja a primeira pessoa a saber quando lançarmos.

" }, "text_style": { "options__1": { "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" }, "label": "Estilo de texto" } @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Acessibilidade", "label": "Descrição da apresentação de slides", - "info": "Descreva a apresentação de slides para clientes que usam leitores de tela." + "info": "Descreva a apresentação de slides para clientes que usam leitores de tela.", + "default": "Apresentação de slides sobre nossa marca" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Imagem" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Slide de imagem" }, "subheading": { - "label": "Subtítulo" + "label": "Subtítulo", + "default": "Conte a história de sua marca com vídeos e imagens" }, "button_label": { "label": "Etiqueta de botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta de botão" }, "link": { "label": "Link de botão" @@ -2895,7 +2959,8 @@ "label": "Legenda" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Conteúdo recolhível" }, "heading_alignment": { "label": "Alinhamento do título", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Inclua um título que explique o conteúdo.", - "label": "Título" + "label": "Título", + "default": "Linha recolhível" }, "row_content": { "label": "Conteúdo da linha" @@ -3150,7 +3216,8 @@ "label": "Número de colunas no desktop" }, "paragraph__1": { - "content": "As recomendações dinâmicas usam informações sobre pedidos e produtos para mudar e melhorar com o tempo. [Saiba mais](https://help.shopify.com/themes/development/recommended-products)" + "content": "As recomendações dinâmicas usam informações sobre pedidos e produtos para mudar e melhorar com o tempo. [Saiba mais](https://help.shopify.com/themes/development/recommended-products)", + "default": "Talvez você também goste de" }, "header__2": { "content": "Cartão de produto" @@ -3164,7 +3231,7 @@ "label": "Retrato" }, "options__3": { - "label": "Square" + "label": "Quadrada" } }, "show_secondary_image": { @@ -3225,18 +3292,6 @@ "label": "Largura da imagem no desktop", "info": "A imagem é otimizada automaticamente em dispositivos móveis." }, - "heading_size": { - "options__1": { - "label": "Pequeno" - }, - "options__2": { - "label": "Médio" - }, - "options__3": { - "label": "Grande" - }, - "label": "Tamanho do título" - }, "text_style": { "options__1": { "label": "Corpo" @@ -3323,16 +3378,20 @@ "label": "Imagem" }, "caption": { - "label": "Legenda" + "label": "Legenda", + "default": "Legenda" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Linha" }, "text": { - "label": "Texto" + "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" + "label": "Etiqueta de botão", + "default": "Etiqueta de botão" }, "button_link": { "label": "Link de botão" diff --git a/locales/pt-PT.json b/locales/pt-PT.json index f819cf8fcfc..e0d23b6a990 100644 --- a/locales/pt-PT.json +++ b/locales/pt-PT.json @@ -157,7 +157,6 @@ "image_available": "A imagem {{ index }} está agora disponível na vista de galeria" }, "view_full_details": "Ver detalhes completos", - "include_taxes": "Imposto incluído.", "shipping_policy_html": "Envio calculado na finalização da compra.", "choose_options": "Escolher opções", "choose_product_options": "Escolha opções para {{ product_name }}", @@ -176,7 +175,10 @@ "minimum": "{{ quantity }} ou mais", "price_at_each": "a {{ price }}/ea", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "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" @@ -290,10 +292,6 @@ "empty": "O seu carrinho está vazio", "cart_error": "Ocorreu um erro ao atualizar o seu carrinho. Tente novamente.", "cart_quantity_error_html": "É possível adicionar apenas {{ quantity }} unidade(s) deste item ao carrinho.", - "taxes_and_shipping_policy_at_checkout_html": "Impostos, descontos e envio calculados na finalização da compra", - "taxes_included_but_shipping_at_checkout": "Imposto incluído, envio e descontos calculados na finalização da compra", - "taxes_included_and_shipping_policy_html": "Imposto incluído. Envio e descontos calculados na finalização da compra.", - "taxes_and_shipping_at_checkout": "Impostos, descontos e envio calculados na finalização da compra", "headings": { "product": "Produto", "price": "Preço", @@ -307,7 +305,15 @@ "paragraph_html": "Inicie sessão para finalizar a compra mais rápido." }, "estimated_total": "Total estimado", - "new_estimated_total": "Novo 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" diff --git a/locales/pt-PT.schema.json b/locales/pt-PT.schema.json index 0f14fd52213..ac9b0d7b904 100644 --- a/locales/pt-PT.schema.json +++ b/locales/pt-PT.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra grande" + }, + "options__5": { + "label": "Extremamente grande" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bem-vindo à nossa loja" }, "text_alignment": { "label": "Alinhamento do texto", @@ -511,7 +515,8 @@ "name": "Colagem", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Colagem multimédia" }, "desktop_layout": { "label": "Esquema do desktop", @@ -585,7 +590,8 @@ }, "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)" + "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" @@ -599,7 +605,8 @@ "name": "Lista de coleções", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Coleções" }, "image_ratio": { "label": "Proporção de imagem", @@ -654,6 +661,12 @@ "name": "Formulário de contacto", "presets": { "name": "Formulário de contacto" + }, + "settings": { + "title": { + "default": "Formulário de contacto", + "label": "Cabeçalho" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Publicações no blogue", "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Publicações no blogue" }, "blog": { "label": "Blogue" @@ -705,7 +719,8 @@ "name": "Coleção em destaque", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Coleção em destaque" }, "collection": { "label": "Coleção" @@ -760,7 +775,7 @@ "label": "Corpo" }, "options__2": { - "label": "Legenda" + "label": "Subtítulo" }, "options__3": { "label": "Maiúsculas" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Ligações rápidas" }, "menu": { "label": "Menu", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Cabeçalho" }, "subtext": { - "label": "Subtexto" + "label": "Subtexto", + "default": "

Partilhe informações de contacto, detalhes da loja e conteúdo de marca com os seus clientes.

" } }, "name": "Texto" @@ -851,7 +869,8 @@ "label": "Mostrar registo de e-mail" }, "newsletter_heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Subscreva os nossos e-mails" }, "header__1": { "info": "Subscritores adicionados automaticamente à sua lista de clientes que \"aceitam marketing\". [Saber mais](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Esquema de cores do menu" + }, + "header__7": { + "content": "Início de sessão de contas de cliente", + "info": "Para gerir contas de cliente, aceda às suas [definições de contas de cliente](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Mostrar avatar", + "info": "Os clientes apenas verão o respetivo avatar quando iniciarem sessão com o Shop" } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Banner de imagem" } }, "name": "Cabeçalho" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "Descrição" + "label": "Descrição", + "default": "Dê informações aos clientes sobre a(s) imagem(s) ou o conteúdo do banner no modelo." }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "Primeira etiqueta do botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta do botão" }, "button_link_1": { "label": "Primeira ligação do botão" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "Segunda etiqueta do botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta do botão" }, "button_link_2": { "label": "Segunda ligação do botão" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Imagem com texto" } }, "name": "Cabeçalho" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "Conteúdo" + "label": "Conteúdo", + "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 de texto", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "Etiqueta do botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta do botão" }, "button_link": { "label": "Ligação do botão" @@ -1292,7 +1326,8 @@ "name": "Legenda", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Adicionar um slogan" }, "text_style": { "label": "Estilo de texto", @@ -1370,7 +1405,8 @@ "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" + "label": "Texto", + "default": "Partilhar" } } } @@ -1539,7 +1575,8 @@ "name": "Página da lista de coleções", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Coleções" }, "sort": { "label": "Ordenar coleções por:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bloco de texto" }, "text_style": { "label": "Estilo de texto", @@ -1681,7 +1719,8 @@ "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" + "label": "Texto", + "default": "Partilhar" } }, "name": "Partilhar" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "Inclua um título que explique o conteúdo.", - "label": "Título" + "label": "Título", + "default": "Linha recolhível" }, "content": { "label": "Conteúdo da linha" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "Etiqueta de ligação" + "label": "Etiqueta de ligação", + "default": "Texto da ligação pop-up" }, "page": { "label": "Página" @@ -1877,7 +1918,8 @@ "content": "Para selecionar produtos complementares, adicione a aplicação Search & Discovery. [Saber mais](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Emparelha com" }, "make_collapsible_row": { "label": "Mostrar como linha recolhível" @@ -1940,7 +1982,8 @@ "label": "Primeira imagem" }, "heading_1": { - "label": "Primeiro título" + "label": "Primeiro título", + "default": "Cabeçalho" }, "icon_2": { "label": "Segundo ícone" @@ -1949,7 +1992,8 @@ "label": "Segunda imagem" }, "heading_2": { - "label": "Segundo título" + "label": "Segundo título", + "default": "Cabeçalho" }, "icon_3": { "label": "Terceiro ícone" @@ -1958,7 +2002,8 @@ "label": "Terceira imagem" }, "heading_3": { - "label": "Terceiro título" + "label": "Terceiro título", + "default": "Cabeçalho" } } }, @@ -2154,7 +2199,8 @@ "name": "Várias colunas", "settings": { "title": { - "label": "Título" + "label": "Título", + "default": "Várias colunas" }, "image_width": { "label": "Largura da imagem", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Etiqueta do botão" + "label": "Etiqueta do botão", + "default": "Etiqueta do botão" }, "button_link": { "label": "Ligação do botão" @@ -2233,10 +2280,12 @@ "label": "Imagem" }, "title": { - "label": "Título" + "label": "Título", + "default": "Coluna" }, "text": { - "label": "Descrição" + "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" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Subscreva os nossos e-mails" } }, "name": "Cabeçalho" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "Descrição" + "label": "Descrição", + "default": "

Seja a primeira pessoa a saber sobre novas coleções e ofertas exclusivas.

" } }, "name": "Subtítulo" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "Título" + "label": "Título", + "default": "Fale sobre a sua marca" } }, "name": "Cabeçalho" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "Descrição" + "label": "Descrição", + "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" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "Primeira etiqueta do botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta do botão" }, "button_link_1": { "label": "Primeira ligação do botão" @@ -2376,7 +2430,8 @@ "name": "Legenda", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Adicionar um slogan" }, "text_style": { "label": "Estilo de texto", @@ -2421,7 +2476,8 @@ "name": "Vídeo", "settings": { "heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Vídeo" }, "cover_image": { "label": "Imagem de capa" @@ -2471,7 +2527,8 @@ "name": "Texto", "settings": { "text": { - "label": "Texto" + "label": "Texto", + "default": "Bloco de texto" }, "text_style": { "label": "Estilo de texto", @@ -2545,7 +2602,8 @@ "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" + "label": "Texto", + "default": "Partilhar" } } }, @@ -2711,7 +2769,8 @@ "name": "Cabeçalho", "settings": { "heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Abre brevemente" } } }, @@ -2719,7 +2778,8 @@ "name": "Parágrafo", "settings": { "paragraph": { - "label": "Descrição" + "label": "Descrição", + "default": "

Seja a primeira pessoa a saber quando é o lançamento.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Acessibilidade", "label": "Descrição da apresentação de diapositivos", - "info": "Descreve a apresentação de diapositivos para que seja acessível a clientes que usam leitores de ecrã." + "info": "Descreve a apresentação de diapositivos para que seja acessível a clientes que usam leitores de ecrã.", + "default": "Apresentação de diapositivos sobre a nossa marca" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Imagem" }, "heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Diapositivo de imagem" }, "subheading": { - "label": "Subtítulo" + "label": "Subtítulo", + "default": "Conte a história da sua marca através de imagens" }, "button_label": { "label": "Etiqueta do botão", - "info": "Deixe a etiqueta em branco para ocultar o botão." + "info": "Deixe a etiqueta em branco para ocultar o botão.", + "default": "Etiqueta do botão" }, "link": { "label": "Ligação do botão" @@ -2895,7 +2959,8 @@ "label": "Legenda" }, "heading": { - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Conteúdo recolhível" }, "heading_alignment": { "label": "Alinhamento do título", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Inclua um título que explique o conteúdo.", - "label": "Cabeçalho" + "label": "Cabeçalho", + "default": "Linha recolhível" }, "row_content": { "label": "Conteúdo da linha" @@ -3150,7 +3216,8 @@ "label": "Número de colunas no computador" }, "paragraph__1": { - "content": "As recomendações dinâmicas utilizam informações de encomenda e de produto para mudar e melhorar ao longo do tempo. [Saber mais](https://help.shopify.com/themes/development/recommended-products)" + "content": "As recomendações dinâmicas utilizam informações de encomenda e de produto para mudar e melhorar ao longo do tempo. [Saber mais](https://help.shopify.com/themes/development/recommended-products)", + "default": "Também poderá gostar de" }, "header__2": { "content": "Cartão de produtos" @@ -3225,18 +3292,6 @@ "label": "Largura da imagem em computador", "info": "A imagem é otimizada automaticamente em dispositivos móveis." }, - "heading_size": { - "options__1": { - "label": "Pequeno" - }, - "options__2": { - "label": "Médio" - }, - "options__3": { - "label": "Grande" - }, - "label": "Tamanho do título" - }, "text_style": { "options__1": { "label": "Corpo" @@ -3323,16 +3378,20 @@ "label": "Imagem" }, "caption": { - "label": "Legenda" + "label": "Legenda", + "default": "Legenda" }, "heading": { - "label": "Título" + "label": "Título", + "default": "Linha" }, "text": { - "label": "Texto" + "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" + "label": "Etiqueta do botão", + "default": "Etiqueta do botão" }, "button_link": { "label": "Ligação do botão" diff --git a/locales/ro-RO.json b/locales/ro.json similarity index 92% rename from locales/ro-RO.json rename to locales/ro.json index 99bf0a94a32..0a1255cee6d 100644 --- a/locales/ro-RO.json +++ b/locales/ro.json @@ -157,7 +157,6 @@ "image_available": "Imaginea {{ index }} este disponibilă acum în vizualizarea galeriei" }, "view_full_details": "Vedeți detaliile complete", - "include_taxes": "Taxe incluse.", "shipping_policy_html": "Taxele de expediere sunt calculate la finalizarea comenzii.", "choose_options": "Alege opțiunile", "choose_product_options": "Alege opțiunile pentru {{ product_name }}", @@ -176,7 +175,10 @@ "minimum": "Peste {{ quantity }}", "price_at_each": "la {{ price }}/buc.", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "taxes_included": "Taxe incluse.", + "duties_included": "Taxe vamale incluse.", + "duties_and_taxes_included": "Taxe și taxe vamale incluse." }, "modal": { "label": "Galerie media" @@ -290,10 +292,6 @@ "empty": "Coșul dvs. este gol", "cart_error": "A apărut o eroare în timpul actualizării coșului. Încercați din nou.", "cart_quantity_error_html": "Cantitatea maximă pe care o poți adăuga în coș din acest articol: {{ quantity }}.", - "taxes_and_shipping_policy_at_checkout_html": "Taxele, reducerile și transportul sunt calculate la finalizarea comenzii", - "taxes_included_but_shipping_at_checkout": "Taxele sunt incluse, iar transportul și reducerile sunt calculate la finalizarea comenzii", - "taxes_included_and_shipping_policy_html": "Taxele sunt incluse. Transportul și reducerile sunt calculate la finalizarea comenzii.", - "taxes_and_shipping_at_checkout": "Taxele, reducerile și transportul sunt calculate la finalizarea comenzii", "update": "Actualizați", "headings": { "product": "Produs", @@ -307,7 +305,15 @@ "paragraph_html": "Conectează-te pentru a finaliza comanda mai rapid." }, "estimated_total": "Total estimat", - "new_estimated_total": "Noul 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ă" diff --git a/locales/ru.json b/locales/ru.json index c08423b29a2..faefbc2c0b9 100644 --- a/locales/ru.json +++ b/locales/ru.json @@ -157,7 +157,6 @@ "image_available": "Изображение {{ index }} доступно в средстве просмотра галереи" }, "view_full_details": "Просмотреть всю информацию", - "include_taxes": "Сумма налога включена.", "shipping_policy_html": "Стоимость доставки рассчитывается при оформлении заказа.", "choose_options": "Выберите варианты", "choose_product_options": "Выберите варианты для {{ product_name }}", @@ -177,7 +176,10 @@ "price_at_each": "{{ price }}/кажд.", "price_range": "{{ minimum }} — {{ maximum }}" }, - "product_variants": "Варианты товара" + "product_variants": "Варианты товара", + "taxes_included": "Налоги включены.", + "duties_included": "Пошлины включены.", + "duties_and_taxes_included": "Пошлины и налоги включены." }, "modal": { "label": "Галерея мультимедиа" @@ -300,10 +302,6 @@ "empty": "Корзина пуста.", "cart_error": "Не удалось обновить корзину. Повторите попытку.", "cart_quantity_error_html": "Максимально допустимое количество единиц этого товара в корзине: {{ quantity }}.", - "taxes_and_shipping_policy_at_checkout_html": "Налоги, скидки и стоимость доставки, рассчитанные при оформлении заказа", - "taxes_included_but_shipping_at_checkout": "Сумма налога, скидки и стоимость доставки, рассчитанные при оформлении заказа", - "taxes_included_and_shipping_policy_html": "Налоги включены. Стоимость доставки и скидки рассчитываются при оформлении заказа.", - "taxes_and_shipping_at_checkout": "Налоги, скидки и стоимость доставки, рассчитанные при оформлении заказа", "update": "Обновить", "headings": { "product": "Товар", @@ -317,7 +315,15 @@ "paragraph_html": "Войти, чтобы оформить заказ быстрее." }, "estimated_total": "Ориентировочная общая сумма", - "new_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": "Способы оплаты" diff --git a/locales/sk-SK.json b/locales/sk.json similarity index 93% rename from locales/sk-SK.json rename to locales/sk.json index 0300c17e1d2..2a1636670c1 100644 --- a/locales/sk-SK.json +++ b/locales/sk.json @@ -158,7 +158,6 @@ "image_available": "Obrázok {{ index }} je teraz dostupný v zobrazení galérie" }, "view_full_details": "Zobraziť všetky podrobnosti", - "include_taxes": "Vrátane dane.", "shipping_policy_html": "Doprava sa vypočíta pri platbe.", "choose_options": "Vybrať možnosti", "choose_product_options": "Vyberte možnosti pre: {{ product_name }}", @@ -177,7 +176,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "{{ price }}/kus", "price_range": "{{ minimum }} – {{ maximum }}" - } + }, + "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í" @@ -300,10 +302,6 @@ "empty": "Váš košík je prázdny", "cart_error": "Pri aktualizácii košíka sa vyskytla chyba. Skúste to znova.", "cart_quantity_error_html": "Do košíka môžete túto položku pridať len v počte {{ quantity }}.", - "taxes_and_shipping_policy_at_checkout_html": "Dane, zľavy a doprava sa vypočítajú pri platbe", - "taxes_included_but_shipping_at_checkout": "Dane sa zahrnú a doprava a zľavy sa vypočítajú pri platbe", - "taxes_included_and_shipping_policy_html": "Vrátane dane. Doprava a zľavy sa vypočítajú pri platbe.", - "taxes_and_shipping_at_checkout": "Dane, zľavy a doprava sa vypočítajú pri platbe", "update": "Aktualizovať", "headings": { "product": "Produkt", @@ -317,7 +315,15 @@ "paragraph_html": "Prihláste sa a prejdite pokladňou rýchlejšie." }, "estimated_total": "Odhadovaná celková suma", - "new_estimated_total": "Nová 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" diff --git a/locales/sl-SI.json b/locales/sl.json similarity index 92% rename from locales/sl-SI.json rename to locales/sl.json index 094634384e8..c6a1d559c4d 100644 --- a/locales/sl-SI.json +++ b/locales/sl.json @@ -158,7 +158,6 @@ "image_available": "Slika {{ index }} je zdaj na voljo v pogledu galerije" }, "view_full_details": "Prikaži vse podrobnosti", - "include_taxes": "Vključno z davkom.", "shipping_policy_html": "Dostava se obračuna ob zaključku nakupa.", "choose_options": "Izberite možnosti", "choose_product_options": "Izberite možnosti za izdelek {{ product_name }}", @@ -177,7 +176,10 @@ "minimum": "{{ quantity }} in več", "price_at_each": "po ceni {{ price }}/kos", "price_range": "{{ minimum }}–{{ maximum }}" - } + }, + "taxes_included": "Davki vključeni.", + "duties_included": "Dajatve vključene.", + "duties_and_taxes_included": "Dajatve in davki vključeni." }, "modal": { "label": "Galerija predstavnostnih vsebin" @@ -300,10 +302,6 @@ "empty": "Vaša košarica je prazna", "cart_error": "Pri posodabljanju vaše košarice je prišlo do napake. Poskusite znova.", "cart_quantity_error_html": "V košarico lahko dodate največ toliko tovrstnih izdelkov: {{ quantity }}.", - "taxes_and_shipping_policy_at_checkout_html": "Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa", - "taxes_included_but_shipping_at_checkout": "Vključeni davek ter strošek dostave in popusti se obračunajo ob zaključku nakupa", - "taxes_included_and_shipping_policy_html": "Davek vključen. Strošek dostave in popusti se obračunajo ob zaključku nakupa.", - "taxes_and_shipping_at_checkout": "Davki, popusti in strošek dostave se obračunajo ob zaključku nakupa", "update": "Posodobitev", "headings": { "product": "Izdelek", @@ -317,7 +315,15 @@ "paragraph_html": "Za hitrejši zaključek nakupa se prijavite." }, "estimated_total": "Predvideni skupni znesek", - "new_estimated_total": "Nov 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" diff --git a/locales/sv.json b/locales/sv.json index e06b87390a2..eba6980223e 100644 --- a/locales/sv.json +++ b/locales/sv.json @@ -130,7 +130,7 @@ }, "share": "Dela den här produkten", "sold_out": "Slutsåld", - "unavailable": "Ej tillgänglig", + "unavailable": "Inte tillgängliga", "vendor": "Säljare", "video_exit_message": "{{ title }} öppnar helskärmsvideo i samma fönster.", "xr_button": "Visa i ditt utrymme", @@ -155,7 +155,6 @@ "image_available": "Bilden {{ index }} är nu tillgänglig i gallerivisning" }, "view_full_details": "Visa alla uppgifter", - "include_taxes": "Skatt ingår.", "shipping_policy_html": "Frakt beräknas i kassan.", "choose_options": "Välj alternativ", "choose_product_options": "Välj alternativ för {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "för {{ price }}/styck", "price_range": "{{ minimum }}–{{ maximum }}" }, - "product_variants": "Produktvarianter" + "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" @@ -280,10 +282,6 @@ "empty": "Din varukorg är tom", "cart_error": "Ett fel uppstod när du uppdaterade din varukorg. Försök igen.", "cart_quantity_error_html": "Du kan endast lägga till {{ quantity }} av denna artikel i din varukorg.", - "taxes_and_shipping_policy_at_checkout_html": "Skatter, rabatter och leverans beräknas i kassan", - "taxes_included_but_shipping_at_checkout": "Skatt ingår och leverans och rabatter beräknas i kassan", - "taxes_included_and_shipping_policy_html": "Skatt ingår. Leverans och rabatter beräknas i kassan.", - "taxes_and_shipping_at_checkout": "Skatter, rabatter och leverans beräknas i kassan", "headings": { "product": "Produkt", "price": "Pris", @@ -297,7 +295,15 @@ "paragraph_html": "Logga in för att gå till kassan snabbare." }, "estimated_total": "Beräknad totalsumma", - "new_estimated_total": "Nytt beräknat totalbelopp" + "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" diff --git a/locales/sv.schema.json b/locales/sv.schema.json index a850bb35843..2e29a743c0f 100644 --- a/locales/sv.schema.json +++ b/locales/sv.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Extra stor" + }, + "options__5": { + "label": "Extra extra stor" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Välkommen till vår butik" }, "text_alignment": { "label": "Textjustering", @@ -511,7 +515,8 @@ "name": "Kollage", "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Multimediakollage" }, "desktop_layout": { "label": "Layout för dator", @@ -585,7 +590,8 @@ }, "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)" + "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" @@ -599,7 +605,8 @@ "name": "Kollektionslista", "settings": { "title": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Produktserier" }, "image_ratio": { "label": "Bildförhållande", @@ -654,6 +661,12 @@ "name": "Kontaktformulär", "presets": { "name": "Kontaktformulär" + }, + "settings": { + "title": { + "default": "Kontaktformulär", + "label": "Rubrik" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blogginlägg", "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Bloggposter" }, "blog": { "label": "Blogg" @@ -705,7 +719,8 @@ "name": "Utvald produktserie", "settings": { "title": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Utvald produktserie" }, "collection": { "label": "Produktserie" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Snabblänkar" }, "menu": { "label": "Meny", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Rubrik" }, "subtext": { - "label": "Undertext" + "label": "Undertext", + "default": "

Dela kontaktinformation, butiksinformation och varumärkesinnehåll med dina kunder.

" } }, "name": "Text" @@ -851,7 +869,8 @@ "label": "Visa e-postregistrering" }, "newsletter_heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Prenumerera på e-post från oss" }, "header__1": { "info": "Prenumeranter som lagts till automatiskt till listan med ”accepterar marknadsföring”. [Mer information](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Färgschema för meny" + }, + "header__7": { + "content": "Inloggning till kundkonton", + "info": "Gå till [kundkontoinställningar](/admin/settings/customer_accounts) för att hantera kundkonton." + }, + "enable_customer_avatar": { + "label": "Visa avatar", + "info": "Kunder ser endast sin avatar när de är inloggade med Shop" } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Bildbanner" } }, "name": "Rubrik" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "Beskrivning" + "label": "Beskrivning", + "default": "Ge kunder information om bannerbild(er) eller innehåll i mallen." }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "Första knappetikett", - "info": "Lämna etiketten tom eller dölj knappen." + "info": "Lämna etiketten tom eller dölj knappen.", + "default": "Knappetikett" }, "button_link_1": { "label": "Första knapplänk" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "Andra knappetikett", - "info": "Lämna etiketten tom eller dölj knappen." + "info": "Lämna etiketten tom eller dölj knappen.", + "default": "Knappetikett" }, "button_link_2": { "label": "Andra knapplänk" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Bild med text" } }, "name": "Rubrik" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "Innehåll" + "label": "Innehåll", + "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": "Textstil", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "Knappetikett", - "info": "Lämna etiketten tom eller dölj knappen." + "info": "Lämna etiketten tom eller dölj knappen.", + "default": "Knappetikett" }, "button_link": { "label": "Knapplänk" @@ -1292,7 +1326,8 @@ "name": "Rubrik", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Lägg till en slogan" }, "text_style": { "label": "Textstil", @@ -1370,7 +1405,8 @@ "content": "Ett butiksnamn och en beskrivning inkluderas med förhandsgranskningsbilden. [Läs mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)." }, "text": { - "label": "Text" + "label": "Text", + "default": "Dela" } } } @@ -1539,7 +1575,8 @@ "name": "Kollektionslistsida", "settings": { "title": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Produktserier" }, "sort": { "label": "Sortera kollektioner efter:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Textblock" }, "text_style": { "label": "Textstil", @@ -1681,7 +1719,8 @@ "content": "Ett butiksnamn och en beskrivning inkluderas med förhandsgranskningsbilden. [Läs mer](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)." }, "text": { - "label": "Text" + "label": "Text", + "default": "Dela" } }, "name": "Dela" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "Inkludera en rubrik som beskriver innehållet.", - "label": "Rubrik" + "label": "Rubrik", + "default": "Rad som kan döljas" }, "content": { "label": "Radinnehåll" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "Länketikett" + "label": "Länketikett", + "default": "Text i popup-länk" }, "page": { "label": "Sida" @@ -1877,7 +1918,8 @@ "content": "Lägg till appen Search & Discovery för att välja tilläggsprodukter. [Mer information](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Passar bra med" }, "make_collapsible_row": { "label": "Visa som komprimerbar rad" @@ -1940,7 +1982,8 @@ "label": "Första bild" }, "heading_1": { - "label": "Första rubrik" + "label": "Första rubrik", + "default": "Rubrik" }, "icon_2": { "label": "Andra ikon" @@ -1949,7 +1992,8 @@ "label": "Andra bild" }, "heading_2": { - "label": "Andra rubrik" + "label": "Andra rubrik", + "default": "Rubrik" }, "icon_3": { "label": "Tredje ikon" @@ -1958,7 +2002,8 @@ "label": "Tredje bild" }, "heading_3": { - "label": "Tredje rubrik" + "label": "Tredje rubrik", + "default": "Rubrik" } } }, @@ -2154,7 +2199,8 @@ "name": "Multikolumn", "settings": { "title": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Multikolumn" }, "image_width": { "label": "Bildbredd", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Knappetikett" + "label": "Knappetikett", + "default": "Knappetikett" }, "button_link": { "label": "Knapplänk" @@ -2233,10 +2280,12 @@ "label": "Bild" }, "title": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Kolumn" }, "text": { - "label": "Beskrivning" + "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" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Prenumerera på e-post från oss" } }, "name": "Rubrik" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "Beskrivning" + "label": "Beskrivning", + "default": "

Var först med att få veta om nya produktserier och exklusiva erbjudanden.

" } }, "name": "Underrubrik" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Prata om ditt varumärke" } }, "name": "Rubrik" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "Beskrivning" + "label": "Beskrivning", + "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" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "Första knappetikett", - "info": "Lämna etiketten tom eller dölj knappen." + "info": "Lämna etiketten tom eller dölj knappen.", + "default": "Knappetikett" }, "button_link_1": { "label": "Första knapplänk" @@ -2376,12 +2430,13 @@ "name": "Rubrik", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Lägg till en slogan" }, "text_style": { "label": "Textstil", "options__1": { - "label": "Underrubrik" + "label": "Undertext" }, "options__2": { "label": "Stora bokstäver" @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Video" }, "cover_image": { "label": "Omslagsbild" @@ -2471,7 +2527,8 @@ "name": "Text", "settings": { "text": { - "label": "Text" + "label": "Text", + "default": "Textblock" }, "text_style": { "label": "Textstil", @@ -2545,7 +2602,8 @@ "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" + "label": "Text", + "default": "Dela" } } }, @@ -2711,7 +2769,8 @@ "name": "Rubrik", "settings": { "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Öppnar snart" } } }, @@ -2719,14 +2778,15 @@ "name": "Stycke", "settings": { "paragraph": { - "label": "Beskrivning" + "label": "Beskrivning", + "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": "Underrubrik" + "label": "Undertext" }, "label": "Textstil" } @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Tillgänglighet", "label": "Beskrivning bildspel", - "info": "Beskriv bildspelet för kunder som använder skärmläsare." + "info": "Beskriv bildspelet för kunder som använder skärmläsare.", + "default": "Bildspel om vårt varumärke" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Bild" }, "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Bild i bildspel" }, "subheading": { - "label": "Underrubrik" + "label": "Underrubrik", + "default": "Berätta ditt varumärkes historia genom video och bilder" }, "button_label": { "label": "Knappetikett", - "info": "Lämna etiketten tom eller dölj knappen." + "info": "Lämna etiketten tom eller dölj knappen.", + "default": "Knappetikett" }, "link": { "label": "Knapplänk" @@ -2895,7 +2959,8 @@ "label": "Rubrik" }, "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Innehåll som kan döljas" }, "heading_alignment": { "label": "Rubriklinjering", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Inkludera en rubrik som beskriver innehållet.", - "label": "Rubrik" + "label": "Rubrik", + "default": "Rad som kan döljas" }, "row_content": { "label": "Radinnehåll" @@ -3150,7 +3216,8 @@ "label": "Antalet kolumner på skrivbordet" }, "paragraph__1": { - "content": "Dynamiska rekommendationer använder order- och produktinformation för att ändras och förbättras över tid. [Mer information](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dynamiska rekommendationer använder order- och produktinformation för att ändras och förbättras över tid. [Mer information](https://help.shopify.com/themes/development/recommended-products)", + "default": "Du kanske också gillar" }, "header__2": { "content": "Produktkort" @@ -3225,18 +3292,6 @@ "label": "Bildbredd för dator", "info": "Bilden optimeras automatiskt för mobilen." }, - "heading_size": { - "options__1": { - "label": "Liten" - }, - "options__2": { - "label": "Medel" - }, - "options__3": { - "label": "Stor" - }, - "label": "Rubrikstorlek" - }, "text_style": { "options__1": { "label": "Brödtext" @@ -3323,16 +3378,20 @@ "label": "Bild" }, "caption": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Rubrik" }, "heading": { - "label": "Rubrik" + "label": "Rubrik", + "default": "Rad" }, "text": { - "label": "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" + "label": "Knappetikett", + "default": "Knappetikett" }, "button_link": { "label": "Knapplänk" diff --git a/locales/th.json b/locales/th.json index 53f52e80930..54bb9861cd1 100644 --- a/locales/th.json +++ b/locales/th.json @@ -155,7 +155,6 @@ "image_available": "รูปภาพ {{ index }} พร้อมใช้งานในมุมมองแกลเลอรี" }, "view_full_details": "ดูรายละเอียดทั้งหมด", - "include_taxes": "รวมภาษี", "shipping_policy_html": "ค่าจัดส่งที่คำนวณในขั้นตอนการชำระเงิน", "choose_options": "เลือกตัวเลือก", "choose_product_options": "เลือกตัวเลือกสำหรับ {{ product_name }}", @@ -175,7 +174,10 @@ "price_at_each": "ที่ {{ price }}/หน่วย", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "ตัวเลือกสินค้า" + "product_variants": "ตัวเลือกสินค้า", + "taxes_included": "รวมภาษีแล้ว", + "duties_included": "รวมอากรแล้ว", + "duties_and_taxes_included": "รวมภาษีและอากรแล้ว" }, "modal": { "label": "แกลเลอรีสื่อ" @@ -280,10 +282,6 @@ "empty": "ตะกร้าสินค้าของคุณว่างอยู่", "cart_error": "เกิดข้อผิดพลาดระหว่างการอัปเดตตะกร้าสินค้าของคุณ โปรดลองอีกครั้ง", "cart_quantity_error_html": "คุณสามารถเพิ่มรายการนี้ {{ quantity }} รายการลงในตะกร้าสินค้าของคุณเท่านั้น", - "taxes_and_shipping_policy_at_checkout_html": "ระบบจะคำนวณภาษี ส่วนลด และค่าจัดส่งในขั้นตอนการชำระเงิน", - "taxes_included_but_shipping_at_checkout": "ภาษีที่ใส่และค่าจัดส่งและส่วนลดที่คำนวณไว้ในขั้นตอนการชำระเงิน", - "taxes_included_and_shipping_policy_html": "รวมภาษีแล้ว ระบบจะคำนวณค่าจัดส่งและส่วนลดในขั้นตอนการชำระเงิน", - "taxes_and_shipping_at_checkout": "ระบบจะคำนวณภาษีและค่าจัดส่งในขั้นตอนการชำระเงิน", "headings": { "product": "สินค้า", "price": "ราคา", @@ -297,7 +295,15 @@ "paragraph_html": "เข้าสู่ระบบเพื่อชำระเงินให้รวดเร็วยิ่งขึ้น" }, "estimated_total": "ยอดทั้งหมดโดยประมาณ", - "new_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": "วิธีการชำระเงิน" diff --git a/locales/th.schema.json b/locales/th.schema.json index fba582497db..fd5e0bafee2 100644 --- a/locales/th.schema.json +++ b/locales/th.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "ขนาดใหญ่พิเศษ" + }, + "options__5": { + "label": "ขนาดใหญ่พิเศษ" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "ยินดีต้อนรับสู่ร้านค้าของเรา" }, "text_alignment": { "label": "การจัดวางข้อความ", @@ -511,7 +515,8 @@ "name": "คอลลาจ", "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "ภาพคอลลาจมัลติมีเดีย" }, "desktop_layout": { "label": "เลย์เอาต์ของเดสก์ท็อป", @@ -585,7 +590,8 @@ }, "description": { "label": "ข้อความแสดงแทนวิดีโอ", - "info": "อธิบายวิดีโอให้กับลูกค้าที่ใช้ตัวอ่านออกเสียงหน้าจอ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "อธิบายวิดีโอให้กับลูกค้าที่ใช้ตัวอ่านออกเสียงหน้าจอ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "อธิบายวิดีโอ" } }, "name": "วิดีโอ" @@ -599,7 +605,8 @@ "name": "รายการคอลเลกชัน", "settings": { "title": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "คอลเลกชัน" }, "image_ratio": { "label": "อัตราส่วนรูปภาพ", @@ -654,6 +661,12 @@ "name": "แบบฟอร์มการติดต่อ", "presets": { "name": "แบบฟอร์มการติดต่อ" + }, + "settings": { + "title": { + "default": "แบบฟอร์มการติดต่อ", + "label": "หัวเรื่อง" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "บล็อกโพสต์", "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "บล็อกโพสต์" }, "blog": { "label": "บล็อก" @@ -705,7 +719,8 @@ "name": "คอลเลกชันเด่น", "settings": { "title": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "คอลเลกชันเด่น" }, "collection": { "label": "คอลเลกชัน" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "ลิงก์ด่วน" }, "menu": { "label": "เมนู", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "หัวเรื่อง" }, "subtext": { - "label": "ข้อความรอง" + "label": "ข้อความรอง", + "default": "

แชร์ข้อมูลติดต่อ รายละเอียดร้านค้า และเนื้อหาแบรนด์กับลูกค้าของคุณ

" } }, "name": "ข้อความ" @@ -851,7 +869,8 @@ "label": "แสดงการลงทะเบียนอีเมล" }, "newsletter_heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "สมัครรับข้อมูลของเราทางอีเมล" }, "header__1": { "info": "เพิ่มผู้สมัครรับข้อมูลไปยังรายการลูกค้า “ยอมรับการทำการตลาด” ของคุณโดยอัตโนมัติแล้ว [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "รูปแบบสีเมนู" + }, + "header__7": { + "content": "บัญชีผู้ใช้ของลูกค้าเข้าสู่ระบบ", + "info": "หากต้องการจัดการบัญชีผู้ใช้ของลูกค้า ให้ไปที่การตั้งค่า[บัญชีผู้ใช้ของลูกค้า](/admin/settings/customer_accounts)" + }, + "enable_customer_avatar": { + "label": "แสดงอวาตาร์", + "info": "ลูกค้าจะเห็นอวาตาร์ของตนเมื่อลูกค้าเข้าสู่ระบบด้วย Shop" } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "แบนเนอร์รูปภาพ" } }, "name": "หัวเรื่อง" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "คำอธิบาย" + "label": "คำอธิบาย", + "default": "ให้ลูกค้าเห็นรายละเอียดเกี่ยวกับเนื้อหาหรือรูปภาพในแบนเนอร์บนเทมเพลต" }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "ป้ายกำกับปุ่มแรก", - "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม" + "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "button_link_1": { "label": "ลิงก์ปุ่มแรก" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "ป้ายกำกับปุ่มที่สอง", - "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม" + "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "button_link_2": { "label": "ลิงก์ปุ่มที่สอง" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "รูปภาพพร้อมข้อความ" } }, "name": "หัวเรื่อง" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "เนื้อหา" + "label": "เนื้อหา", + "default": "

จับคู่ข้อความกับรูปภาพเพื่อให้ความสำคัญกับสินค้า คอลเลกชัน หรือบล็อกโพสต์ที่คุณเลือก เพิ่มรายละเอียดเกี่ยวกับความพร้อม สไตล์ หรือแม้กระทั่งเขียนรีวิว

" }, "text_style": { "label": "รูปแบบข้อความ", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "ป้ายกำกับปุ่ม", - "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม" + "info": "เว้นป้ายให้ว่างไว้เพื่อซ่อนปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "button_link": { "label": "ลิงก์ปุ่ม" @@ -1292,7 +1326,8 @@ "name": "คำบรรยาย", "settings": { "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "เพิ่มสโลแกน" }, "text_style": { "label": "รูปแบบข้อความ", @@ -1370,7 +1405,8 @@ "content": "ชื่อร้านค้าและคำอธิบายจะรวมอยู่ในรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "แชร์" } } } @@ -1539,7 +1575,8 @@ "name": "หน้ารายการคอลเลกชัน", "settings": { "title": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "คอลเลกชัน" }, "sort": { "label": "จัดเรียงคอลเลกชันตาม:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "บล็อกข้อความ" }, "text_style": { "label": "รูปแบบข้อความ", @@ -1681,7 +1719,8 @@ "content": "ชื่อร้านและคำอธิบายจะรวมอยู่ในรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "แชร์" } }, "name": "แชร์" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "เพิ่มหัวเรื่องที่ช่วยอธิบายเนื้อหา", - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "แถวที่ย่อได้" }, "content": { "label": "เนื้อหาในแถว" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "ป้ายกำกับลิงก์" + "label": "ป้ายกำกับลิงก์", + "default": "ข้อความลิงก์แบบป๊อปอัป" }, "page": { "label": "หน้า" @@ -1877,7 +1918,8 @@ "content": "หากต้องการเลือกสินค้าเสริม ให้เพิ่มแอปค้นหาและการค้นพบ [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "จับคู่ได้ดีกับ" }, "make_collapsible_row": { "label": "แสดงเป็นแถวที่ย่อได้" @@ -1940,7 +1982,8 @@ "label": "รูปภาพแรก" }, "heading_1": { - "label": "ส่วนหัวแรก" + "label": "ส่วนหัวแรก", + "default": "หัวเรื่อง" }, "icon_2": { "label": "ไอคอนที่สอง" @@ -1949,7 +1992,8 @@ "label": "รูปภาพที่สอง" }, "heading_2": { - "label": "ส่วนหัวที่สอง" + "label": "ส่วนหัวที่สอง", + "default": "หัวเรื่อง" }, "icon_3": { "label": "ไอคอนที่สาม" @@ -1958,7 +2002,8 @@ "label": "รูปภาพที่สาม" }, "heading_3": { - "label": "ส่วนหัวที่สาม" + "label": "ส่วนหัวที่สาม", + "default": "หัวเรื่อง" } } }, @@ -2154,7 +2199,8 @@ "name": "หลายคอลัมน์", "settings": { "title": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "หลายคอลัมน์" }, "image_width": { "label": "ความกว้างของรูปภาพ", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "ป้ายกำกับปุ่ม" + "label": "ป้ายกำกับปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "button_link": { "label": "ลิงก์ปุ่ม" @@ -2233,10 +2280,12 @@ "label": "รูปภาพ" }, "title": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "คอลัมน์" }, "text": { - "label": "คำอธิบาย" + "label": "คำอธิบาย", + "default": "

จับคู่ข้อความกับรูปภาพเพื่อให้ความสำคัญกับสินค้า คอลเลกชัน หรือบล็อกโพสต์ที่คุณเลือก เพิ่มรายละเอียดเกี่ยวกับความพร้อม สไตล์ หรือแม้กระทั่งเขียนรีวิว

" }, "link_label": { "label": "ป้ายกำกับลิงก์" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "สมัครรับข้อมูลของเราทางอีเมล" } }, "name": "หัวเรื่อง" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "คำอธิบาย" + "label": "คำอธิบาย", + "default": "

รับรู้ข่าวสารเกี่ยวกับคอลเลกชันใหม่และข้อเสนอพิเศษก่อนใคร

" } }, "name": "หัวเรื่องย่อย" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "พูดถึงแบรนด์ของคุณ" } }, "name": "หัวเรื่อง" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "คำอธิบาย" + "label": "คำอธิบาย", + "default": "

แชร์ข้อมูลเกี่ยวกับแบรนด์ของคุณให้ลูกค้าทราบ โดยอธิบายคุณสมบัติของสินค้า แชร์ประกาศ หรือกล่าวต้อนรับลูกค้าสู่ร้านค้าของคุณ

" } }, "name": "ข้อความ" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "ป้ายกำกับปุ่มแรก", - "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม" + "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "button_link_1": { "label": "ลิงก์ปุ่มแรก" @@ -2376,7 +2430,8 @@ "name": "คำบรรยาย", "settings": { "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "เพิ่มสโลแกน" }, "text_style": { "label": "รูปแบบข้อความ", @@ -2421,7 +2476,8 @@ "name": "วิดีโอ", "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "วิดีโอ" }, "cover_image": { "label": "รูปภาพหน้าปก" @@ -2471,7 +2527,8 @@ "name": "ข้อความ", "settings": { "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "บล็อกข้อความ" }, "text_style": { "label": "รูปแบบข้อความ", @@ -2545,7 +2602,8 @@ "content": "ชื่อร้านค้าและคำอธิบายจะรวมอยู่ในรูปภาพตัวอย่าง [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "แชร์" } } }, @@ -2711,7 +2769,8 @@ "name": "หัวเรื่อง", "settings": { "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "จะเปิดเร็วๆ นี้" } } }, @@ -2719,7 +2778,8 @@ "name": "ย่อหน้า", "settings": { "paragraph": { - "label": "คำอธิบาย" + "label": "คำอธิบาย", + "default": "

รับรู้ข่าวสารการเปิดตัวของเราก่อนใคร

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "การเข้าถึง", "label": "คำอธิบายสไลด์โชว์", - "info": "อธิบายสไลด์โชว์ให้กับลูกค้าที่ใช้เครื่องอ่านหน้าจอ" + "info": "อธิบายสไลด์โชว์ให้กับลูกค้าที่ใช้เครื่องอ่านหน้าจอ", + "default": "สไลด์โชว์เกี่ยวกับแบรนด์ของเรา" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "รูปภาพ" }, "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "สไลด์รูปภาพ" }, "subheading": { - "label": "หัวเรื่องย่อย" + "label": "หัวเรื่องย่อย", + "default": "บอกเล่าเรื่องราวของแบรนด์คุณผ่านรูปภาพ" }, "button_label": { "label": "ป้ายกำกับปุ่ม", - "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม" + "info": "เว้นป้ายกำกับให้ว่างไว้เพื่อซ่อนปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "link": { "label": "ลิงก์ปุ่ม" @@ -2895,7 +2959,8 @@ "label": "คำบรรยาย" }, "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "เนื้อหาที่ย่อได้" }, "heading_alignment": { "label": "การจัดวางหัวเรื่อง", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "รวมหัวเรื่องที่ช่วยอธิบายเนื้อหาเอาไว้", - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "แถวที่ย่อได้" }, "row_content": { "label": "เนื้อหาในแถว" @@ -3150,7 +3216,8 @@ "label": "จำนวนคอลัมน์บนเดสก์ท็อป" }, "paragraph__1": { - "content": "คำแนะนำแบบไดนามิกต้องใช้ข้อมูลคำสั่งซื้อและข้อมูลสินค้าในการปรับปรุงและเปลี่ยนแปลงตลอดระยะเวลา [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/themes/development/recommended-products)" + "content": "คำแนะนำแบบไดนามิกต้องใช้ข้อมูลคำสั่งซื้อและข้อมูลสินค้าในการปรับปรุงและเปลี่ยนแปลงตลอดระยะเวลา [ดูข้อมูลเพิ่มเติม](https://help.shopify.com/themes/development/recommended-products)", + "default": "สินค้าที่คุณอาจจะชอบ" }, "header__2": { "content": "บัตรสินค้า" @@ -3225,18 +3292,6 @@ "label": "ความกว้างของรูปภาพบนเดสก์ท็อป", "info": "ระบบจะปรับรูปภาพให้เหมาะสมกับมือถือโดยอัตโนมัติ" }, - "heading_size": { - "options__1": { - "label": "เล็ก" - }, - "options__2": { - "label": "ปานกลาง" - }, - "options__3": { - "label": "ใหญ่" - }, - "label": "ขนาดของส่วนหัว" - }, "text_style": { "options__1": { "label": "เนื้อหา" @@ -3323,16 +3378,20 @@ "label": "รูปภาพ" }, "caption": { - "label": "คำบรรยาย" + "label": "คำบรรยาย", + "default": "คำบรรยาย" }, "heading": { - "label": "หัวเรื่อง" + "label": "หัวเรื่อง", + "default": "แถว" }, "text": { - "label": "ข้อความ" + "label": "ข้อความ", + "default": "

จับคู่ข้อความกับรูปภาพเพื่อให้ความสำคัญกับสินค้า คอลเลกชัน หรือบล็อกโพสต์ที่คุณเลือก เพิ่มรายละเอียดเกี่ยวกับความพร้อม สไตล์ หรือแม้กระทั่งเขียนรีวิว

" }, "button_label": { - "label": "ป้ายกำกับปุ่ม" + "label": "ป้ายกำกับปุ่ม", + "default": "ป้ายกำกับปุ่ม" }, "button_link": { "label": "ลิงก์ปุ่ม" diff --git a/locales/tr.json b/locales/tr.json index 30e1452f875..6dd81063ebd 100644 --- a/locales/tr.json +++ b/locales/tr.json @@ -155,7 +155,6 @@ "image_available": "Görsel {{ index }} artık galeri görüntüleyicide kullanılabilir" }, "view_full_details": "Tüm ayrıntıları görüntüle", - "include_taxes": "Vergi dahildir.", "shipping_policy_html": "Kargo, ödeme sayfasında hesaplanır.", "choose_options": "Seçenekleri belirle", "choose_product_options": "{{ product_name }} için seçenekleri belirle", @@ -175,7 +174,10 @@ "price_at_each": "{{ price }}/adet", "price_range": "{{ minimum }} - {{ maximum }}" }, - "product_variants": "Ürün varyasyonları" + "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" @@ -280,10 +282,6 @@ "empty": "Sepetiniz boş", "cart_error": "Sepetiniz güncellenirken bir hata oluştu. Lütfen tekrar deneyin.", "cart_quantity_error_html": "Sepetinize bu üründen yalnızca {{ quantity }} adet ekleyebilirsiniz.", - "taxes_and_shipping_policy_at_checkout_html": "Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır", - "taxes_included_but_shipping_at_checkout": "Vergi dahildir ve kargo ile indirimler, ödeme sayfasında hesaplanır", - "taxes_included_and_shipping_policy_html": "Vergi dahildir. Kargo ve indirimler, ödeme sayfasında hesaplanır.", - "taxes_and_shipping_at_checkout": "Vergiler, indirimler ve kargo, ödeme sayfasında hesaplanır", "headings": { "product": "Ürün", "price": "Fiyat", @@ -297,7 +295,15 @@ "paragraph_html": "Daha hızlı ödeme yapmak için oturum açın." }, "estimated_total": "Tahmini toplam", - "new_estimated_total": "Yeni 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" diff --git a/locales/tr.schema.json b/locales/tr.schema.json index 0cd92c8a984..c19e3a65d32 100644 --- a/locales/tr.schema.json +++ b/locales/tr.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Çok büyük" + }, + "options__5": { + "label": "Çok çok büyük" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Duyuru", "settings": { "text": { - "label": "Metin" + "label": "Metin", + "default": "Mağazamıza hoş geldiniz" }, "text_alignment": { "label": "Metin hizalaması", @@ -511,7 +515,8 @@ "name": "Kolaj", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Multimedya kolajı" }, "desktop_layout": { "label": "Masaüstü düzeni", @@ -586,7 +591,8 @@ }, "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)" + "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" } } } @@ -599,7 +605,8 @@ "name": "Koleksiyon listesi", "settings": { "title": { - "label": "Başlık" + "label": "Başlık", + "default": "Koleksiyonlar" }, "image_ratio": { "label": "Görsel oranı", @@ -654,6 +661,12 @@ "name": "İletişim Formu", "presets": { "name": "İletişim formu" + }, + "settings": { + "title": { + "default": "İletişim formu", + "label": "Başlık" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Blog gönderileri", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Blog gönderileri" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Öne çıkan koleksiyon", "settings": { "title": { - "label": "Başlık" + "label": "Başlık", + "default": "Öne çıkan koleksiyon" }, "collection": { "label": "Koleksiyon" @@ -811,7 +826,8 @@ "name": "Menü", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Hızlı bağlantılar" }, "menu": { "label": "Menü", @@ -823,10 +839,12 @@ "name": "Metin rengi", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Başlık" }, "subtext": { - "label": "Alt metin" + "label": "Alt metin", + "default": "

İletişim bilgilerini, mağaza ayrıntılarını ve marka içeriklerini müşterilerinizle paylaşın.

" } } }, @@ -851,7 +869,8 @@ "label": "E-posta kaydını göster" }, "newsletter_heading": { - "label": "Başlık" + "label": "Başlık", + "default": "E-posta listemize kaydolun" }, "header__1": { "content": "E-posta Kaydı", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Menü renk şeması" + }, + "header__7": { + "content": "Müşteri hesaplarında oturum açma", + "info": "Müşteri hesaplarını yönetmek için [müşteri hesabı ayarlarınıza gidin ](/admin/settings/customer_accounts)" + }, + "enable_customer_avatar": { + "label": "Avatarı göster", + "info": "Müşteriler, avatarlarını yalnızca Shop'a giriş yaptıkları zaman görür" } } }, @@ -1103,7 +1130,8 @@ "name": "Başlık", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Görsel banner'ı" } } }, @@ -1111,7 +1139,8 @@ "name": "Metin rengi", "settings": { "text": { - "label": "Açıklama" + "label": "Açıklama", + "default": "Müşterilerle şablonlardaki banner görseller veya içerikler hakkında ayrıntıları paylaşın." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "İlk düğme etiketi", - "info": "Düğmeyi gizlemek için etiketi boş bırakın." + "info": "Düğmeyi gizlemek için etiketi boş bırakın.", + "default": "Düğme etiketi" }, "button_link_1": { "label": "İlk düğme bağlantısı" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "İkinci düğme etiketi", - "info": "Düğmeyi gizlemek için etiketi boş bırakın." + "info": "Düğmeyi gizlemek için etiketi boş bırakın.", + "default": "Düğme etiketi" }, "button_link_2": { "label": "İkinci düğme bağlantısı" @@ -1252,7 +1283,8 @@ "name": "Başlık", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Metin içeren görsel" } } }, @@ -1260,7 +1292,8 @@ "name": "Metin rengi", "settings": { "text": { - "label": "İçerik" + "label": "İçerik", + "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": "Metin stili", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Düğme etiketi", - "info": "Düğmeyi gizlemek için etiketi boş bırakın." + "info": "Düğmeyi gizlemek için etiketi boş bırakın.", + "default": "Düğme etiketi" }, "button_link": { "label": "Düğme bağlantısı" @@ -1292,7 +1326,8 @@ "name": "Alt yazı", "settings": { "text": { - "label": "Metin" + "label": "Metin", + "default": "Reklam sloganı ekleyin" }, "text_style": { "label": "Metin stili", @@ -1370,7 +1405,8 @@ "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" + "label": "Metin", + "default": "Paylaş" } } } @@ -1539,7 +1575,8 @@ "name": "Koleksiyonlar listesi sayfası", "settings": { "title": { - "label": "Başlık" + "label": "Başlık", + "default": "Koleksiyonlar" }, "sort": { "label": "Koleksiyonları sıralama ölçütü:", @@ -1615,7 +1652,8 @@ "name": "Metin rengi", "settings": { "text": { - "label": "Metin" + "label": "Metin", + "default": "Metin bloku" }, "text_style": { "label": "Text style", @@ -1696,7 +1734,8 @@ "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" + "label": "Metin", + "default": "Paylaş" } } }, @@ -1705,7 +1744,8 @@ "settings": { "heading": { "info": "İçeriği açıklayan bir başlık ekleyin.", - "label": "Başlık" + "label": "Başlık", + "default": "Daraltılabilir satır" }, "content": { "label": "Satır içeriği" @@ -1854,7 +1894,8 @@ "name": "Açılır pencere", "settings": { "link_label": { - "label": "Bağlantı etiketi" + "label": "Bağlantı etiketi", + "default": "Açılır bağlantı metni" }, "page": { "label": "Sayfa" @@ -1876,7 +1917,8 @@ "content": "Tamamlayıcı ürünleri seçmek için Search & Discovery uygulamasını ekleyin. [Daha fazla bilgi edinin](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Uygun eşleşmeler" }, "make_collapsible_row": { "label": "Daraltılabilir satır olarak göster" @@ -1939,7 +1981,8 @@ "label": "İlk görsel" }, "heading_1": { - "label": "İlk başlık" + "label": "İlk başlık", + "default": "Başlık" }, "icon_2": { "label": "İkinci simge" @@ -1948,7 +1991,8 @@ "label": "İkinci görsel" }, "heading_2": { - "label": "İkinci başlık" + "label": "İkinci başlık", + "default": "Başlık" }, "icon_3": { "label": "Üçüncü simge" @@ -1957,7 +2001,8 @@ "label": "Üçüncü görsel" }, "heading_3": { - "label": "Üçüncü başlık" + "label": "Üçüncü başlık", + "default": "Başlık" } } }, @@ -2154,7 +2199,8 @@ "name": "Çoklu sütun", "settings": { "title": { - "label": "Başlık" + "label": "Başlık", + "default": "Çoklu sütun" }, "image_width": { "label": "Görsel genişliği", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Düğme etiketi" + "label": "Düğme etiketi", + "default": "Düğme etiketi" }, "button_link": { "label": "Düğme bağlantısı" @@ -2234,10 +2281,12 @@ "label": "Görsel" }, "title": { - "label": "Başlık" + "label": "Başlık", + "default": "Sütun" }, "text": { - "label": "Açıklama" + "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" @@ -2267,7 +2316,8 @@ "name": "Başlık", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "E-posta listemize kaydolun" } } }, @@ -2275,7 +2325,8 @@ "name": "Alt başlık", "settings": { "paragraph": { - "label": "Açıklama" + "label": "Açıklama", + "default": "

Yeni koleksiyonlar ve özel tekliflerden ilk siz haberdar olun.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Başlık", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Markanızdan bahsedin" } } }, @@ -2343,7 +2395,8 @@ "name": "Metin rengi", "settings": { "text": { - "label": "Açıklama" + "label": "Açıklama", + "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.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "İlk düğme etiketi", - "info": "Düğmeyi gizlemek için etiketi boş bırakın." + "info": "Düğmeyi gizlemek için etiketi boş bırakın.", + "default": "Düğme etiketi" }, "button_link_1": { "label": "İlk düğme bağlantısı" @@ -2376,7 +2430,8 @@ "name": "Alt yazı", "settings": { "text": { - "label": "Metin rengi" + "label": "Metin rengi", + "default": "Reklam sloganı ekleyin" }, "text_style": { "label": "Metin stili", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Video" }, "cover_image": { "label": "Kapak görseli" @@ -2471,7 +2527,8 @@ "name": "Metin", "settings": { "text": { - "label": "Metin" + "label": "Metin", + "default": "Metin bloku" }, "text_style": { "label": "Metin stili", @@ -2545,7 +2602,8 @@ "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" + "label": "Metin rengi", + "default": "Paylaş" } } }, @@ -2711,7 +2769,8 @@ "name": "Başlık", "settings": { "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Yakında açılıyor" } } }, @@ -2719,7 +2778,8 @@ "name": "Paragraf", "settings": { "paragraph": { - "label": "Açıklama" + "label": "Açıklama", + "default": "

Yeni çıkardıklarımızı ilk siz öğrenin.

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Erişilebilirlik", "label": "Slayt gösterisi açıklaması", - "info": "Ekran koruyucu kullanan müşteriler için slayt gösterisini açıklayın." + "info": "Ekran koruyucu kullanan müşteriler için slayt gösterisini açıklayın.", + "default": "Markamız hakkında slayt gösterisi" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Görsel" }, "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Görsel slaytı" }, "subheading": { - "label": "Alt başlık" + "label": "Alt başlık", + "default": "Görsellerle marka öykünüzü anlatın" }, "button_label": { "label": "Düğme etiketi", - "info": "Düğmeyi gizlemek için etiketi boş bırakın." + "info": "Düğmeyi gizlemek için etiketi boş bırakın.", + "default": "Düğme etiketi" }, "link": { "label": "Düğme bağlantısı" @@ -2895,7 +2959,8 @@ "label": "Alt yazı" }, "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Daraltılabilir içerik" }, "heading_alignment": { "label": "Başlık hizalaması", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "İçeriği açıklayan bir başlık ekleyin.", - "label": "Başlık" + "label": "Başlık", + "default": "Daraltılabilir satır" }, "row_content": { "label": "Satır içeriği" @@ -3150,7 +3216,8 @@ "label": "Masaüstündeki sütun sayısı" }, "paragraph__1": { - "content": "Dinamik önerilerin zamanla değişmesi ve gelişmesi için sipariş ve ürün bilgileri kullanılır. [Daha fazla bilgi edinin](https://help.shopify.com/themes/development/recommended-products)" + "content": "Dinamik önerilerin zamanla değişmesi ve gelişmesi için sipariş ve ürün bilgileri kullanılır. [Daha fazla bilgi edinin](https://help.shopify.com/themes/development/recommended-products)", + "default": "Şu ürünler de hoşunuza gidebilir:" }, "header__2": { "content": "Ürün kartı" @@ -3225,18 +3292,6 @@ "label": "Masaüstü görsel genişliği", "info": "Görsel, mobil cihazlar için otomatik olarak optimize edilir." }, - "heading_size": { - "options__1": { - "label": "Küçük" - }, - "options__2": { - "label": "Orta" - }, - "options__3": { - "label": "Büyük" - }, - "label": "Başlık boyutu" - }, "text_style": { "options__1": { "label": "Gövde" @@ -3323,16 +3378,20 @@ "label": "Görsel" }, "caption": { - "label": "Alt yazı" + "label": "Alt yazı", + "default": "Alt yazı" }, "heading": { - "label": "Başlık" + "label": "Başlık", + "default": "Satır" }, "text": { - "label": "Metin" + "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" + "label": "Düğme etiketi", + "default": "Düğme etiketi" }, "button_link": { "label": "Düğme bağlantısı" diff --git a/locales/vi.json b/locales/vi.json index ac1c61b31d8..0a3fc619f89 100644 --- a/locales/vi.json +++ b/locales/vi.json @@ -156,7 +156,6 @@ "image_available": "Hình ảnh {{ index }} hiện đã có trong chế độ xem thư viện" }, "view_full_details": "Xem toàn bộ chi tiết", - "include_taxes": "Đã bao gồm thuế.", "shipping_policy_html": "Phí vận chuyển được tính khi thanh toán.", "choose_options": "Chọn các tùy chọn", "choose_product_options": "Chọn tùy chọn cho {{ product_name }}", @@ -175,7 +174,10 @@ "minimum": "Hơn {{ quantity }}", "price_at_each": "với giá {{ price }}/chiếc", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "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" @@ -280,10 +282,6 @@ "empty": "Giỏ hàng của bạn đang trống", "cart_error": "Đã xảy ra lỗi khi cập nhật giỏ hàng. Vui lòng thử lại.", "cart_quantity_error_html": "Bạn chỉ có thể thêm {{ quantity }} mặt hàng này vào giỏ hàng.", - "taxes_and_shipping_policy_at_checkout_html": "Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán", - "taxes_included_but_shipping_at_checkout": "Đã bao gồm thuế, còn phí vận chuyển và ưu đãi giảm giá được tính khi thanh toán", - "taxes_included_and_shipping_policy_html": "Đã bao gồm thuế. Phí vận chuyển và ưu đãi giảm giá được tính khi thanh toán.", - "taxes_and_shipping_at_checkout": "Thuế, ưu đãi giảm giá và phí vận chuyển được tính khi thanh toán", "headings": { "product": "Sản phẩm", "price": "Giá", @@ -297,7 +295,15 @@ "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" + "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" diff --git a/locales/vi.schema.json b/locales/vi.schema.json index 1d6cc888a72..9b4109da120 100644 --- a/locales/vi.schema.json +++ b/locales/vi.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "Cực lớn" + }, + "options__5": { + "label": "Cực cực lớn" } }, "image_shape": { @@ -451,7 +454,8 @@ "name": "Thông báo", "settings": { "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Chào mừng đến với cửa hàng của chúng tôi" }, "text_alignment": { "label": "Căn chỉnh văn bản", @@ -511,7 +515,8 @@ "name": "Ghép", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Ảnh ghép đa phương tiện" }, "desktop_layout": { "label": "Bố cục màn hình nền", @@ -586,7 +591,8 @@ }, "description": { "label": "Văn bản thay thế cho video", - "info": "Mô tả video cho khách hàng bằng trình đọc màn hình. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "Mô tả video cho khách hàng bằng trình đọc màn hình. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "Mô tả video" } } } @@ -599,7 +605,8 @@ "name": "Danh sách bộ sưu tập", "settings": { "title": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Bộ sưu tập" }, "image_ratio": { "label": "Tỷ lệ hình ảnh", @@ -654,6 +661,12 @@ "name": "Biểu mẫu liên hệ", "presets": { "name": "Biểu mẫu liên hệ" + }, + "settings": { + "title": { + "default": "Biểu mẫu liên hệ", + "label": "Tiêu đề" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "Bài viết blog", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Bài viết blog" }, "blog": { "label": "Blog" @@ -705,7 +719,8 @@ "name": "Bộ sưu tập nổi bật", "settings": { "title": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Bộ sưu tập nổi bật" }, "collection": { "label": "Bộ sưu tập" @@ -811,7 +826,8 @@ "name": "Menu", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Liên kết nhanh" }, "menu": { "label": "Menu", @@ -823,10 +839,12 @@ "name": "Văn bản", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Tiêu đề" }, "subtext": { - "label": "Văn bản phụ" + "label": "Văn bản phụ", + "default": "

Chia sẻ thông tin liên hệ, chi tiết cửa hàng và nội dung thương hiệu với khách hàng.

" } } }, @@ -851,7 +869,8 @@ "label": "Hiển thị đăng ký nhận email" }, "newsletter_heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Đăng ký nhận email của chúng tôi" }, "header__1": { "content": "Đăng ký nhận email", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "Bảng màu của menu" + }, + "header__7": { + "content": "Đăng nhập tài khoản khách hàng", + "info": "Để quản lý tài khoản khách hàng, vào mục [cài đặt tài khoản khách hàng](/admin/settings/customer_accounts)." + }, + "enable_customer_avatar": { + "label": "Hiển thị hình đại diện", + "info": "Khách hàng sẽ chỉ nhìn thấy hình đại diện của họ khi họ đăng nhập bằng Shop" } } }, @@ -1103,7 +1130,8 @@ "name": "Tiêu đề", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Biểu ngữ hình ảnh" } } }, @@ -1111,7 +1139,8 @@ "name": "Văn bản", "settings": { "text": { - "label": "Mô tả" + "label": "Mô tả", + "default": "Cung cấp cho khách hàng thông tin chi tiết về ảnh biểu ngữ hoặc nội dung trên mẫu." }, "text_style": { "options__1": { @@ -1132,7 +1161,8 @@ "settings": { "button_label_1": { "label": "Nhãn nút thứ nhất", - "info": "Để nhãn trống để ẩn nút." + "info": "Để nhãn trống để ẩn nút.", + "default": "Nhãn nút" }, "button_link_1": { "label": "Liên kết trên nút thứ nhất" @@ -1142,7 +1172,8 @@ }, "button_label_2": { "label": "Nhãn nút thứ hai", - "info": "Để nhãn trống để ẩn nút." + "info": "Để nhãn trống để ẩn nút.", + "default": "Nhãn nút" }, "button_link_2": { "label": "Liên kết trên nút thứ hai" @@ -1252,7 +1283,8 @@ "name": "Tiêu đề", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Hình ảnh có chữ" } } }, @@ -1260,7 +1292,8 @@ "name": "Văn bản", "settings": { "text": { - "label": "Nội dung" + "label": "Nội dung", + "default": "

Ghép nối văn bản với hình ảnh để làm nổi bật sản phẩm, bộ sưu tập hoặc bài viết blog đã chọn. Thêm chi tiết về tình trạng còn hàng, kiểu hoặc đưa ra đánh giá.

" }, "text_style": { "label": "Kiểu văn bản", @@ -1278,7 +1311,8 @@ "settings": { "button_label": { "label": "Nhãn nút", - "info": "Để nhãn trống để ẩn nút." + "info": "Để nhãn trống để ẩn nút.", + "default": "Nhãn nút" }, "button_link": { "label": "Liên kết trên nút" @@ -1292,7 +1326,8 @@ "name": "Phụ đề", "settings": { "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Thêm tagline" }, "text_style": { "label": "Kiểu văn bản", @@ -1370,7 +1405,8 @@ "content": "Hình ảnh xem trước có chứa tiêu đề và mô tả của cửa hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)." }, "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Chia sẻ" } } } @@ -1539,7 +1575,8 @@ "name": "Trang danh sách bộ sưu tập", "settings": { "title": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Bộ sưu tập" }, "sort": { "label": "Sắp xếp bộ sưu tập theo:", @@ -1616,7 +1653,8 @@ "name": "Văn bản", "settings": { "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Khối văn bản" }, "text_style": { "label": "Kiểu văn bản", @@ -1697,7 +1735,8 @@ "content": "Hình ảnh xem trước có chứa tiêu đề và mô tả của cửa hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)." }, "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Chia sẻ" } } }, @@ -1706,7 +1745,8 @@ "settings": { "heading": { "info": "Bao gồm tiêu đề giải thích nội dung.", - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Hàng có thể thu gọn" }, "content": { "label": "Nội dung hàng" @@ -1855,7 +1895,8 @@ "name": "Cửa sổ bật lên", "settings": { "link_label": { - "label": "Nhãn liên kết" + "label": "Nhãn liên kết", + "default": "Văn bản liên kết cửa sổ bật lên" }, "page": { "label": "Trang" @@ -1877,7 +1918,8 @@ "content": "Để chọn sản phẩm bổ sung, hãy thêm ứng dụng Search & Discovery. [Tìm hiểu thêm](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Phù hợp với" }, "make_collapsible_row": { "label": "Hiển thị dưới dạng hàng có thể thu gọn" @@ -1940,7 +1982,8 @@ "label": "Hình ảnh đầu tiên" }, "heading_1": { - "label": "Tiêu đề đầu tiên" + "label": "Tiêu đề đầu tiên", + "default": "Tiêu đề" }, "icon_2": { "label": "Biểu tượng thứ hai" @@ -1949,7 +1992,8 @@ "label": "Hình ảnh thứ hai" }, "heading_2": { - "label": "Tiêu đề thứ hai" + "label": "Tiêu đề thứ hai", + "default": "Tiêu đề" }, "icon_3": { "label": "Biểu tượng thứ ba" @@ -1958,7 +2002,8 @@ "label": "Hình ảnh thứ ba" }, "heading_3": { - "label": "Tiêu đề thứ ba" + "label": "Tiêu đề thứ ba", + "default": "Tiêu đề" } } }, @@ -2154,7 +2199,8 @@ "name": "Nhiều cột", "settings": { "title": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Nhiều cột" }, "image_width": { "label": "Chiều rộng hình ảnh", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "Nhãn nút" + "label": "Nhãn nút", + "default": "Nhãn nút" }, "button_link": { "label": "Liên kết trên nút" @@ -2234,10 +2281,12 @@ "label": "Hình ảnh" }, "title": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Cột" }, "text": { - "label": "Mô tả" + "label": "Mô tả", + "default": "

Ghép nối văn bản với hình ảnh để làm nổi bật sản phẩm, bộ sưu tập hoặc bài viết blog đã chọn. Thêm chi tiết về tình trạng còn hàng, kiểu hoặc đưa ra đánh giá.

" }, "link_label": { "label": "Nhãn liên kết" @@ -2267,7 +2316,8 @@ "name": "Tiêu đề", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Đăng ký nhận email của chúng tôi" } } }, @@ -2275,7 +2325,8 @@ "name": "Tiêu đề phụ", "settings": { "paragraph": { - "label": "Mô tả" + "label": "Mô tả", + "default": "

Trở thành người đầu tiên nắm được thông tin về bộ sưu tập mới và ưu đãi độc quyền.

" } } }, @@ -2335,7 +2386,8 @@ "name": "Tiêu đề", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Chia sẻ về thương hiệu của bạn" } } }, @@ -2343,7 +2395,8 @@ "name": "Văn bản", "settings": { "text": { - "label": "Mô tả" + "label": "Mô tả", + "default": "

Chia sẻ thông tin về thương hiệu của bạn với khách hàng. Mô tả sản phẩm, gửi thông báo hoặc chào mừng khách hàng tới cửa hàng của bạn.

" } } }, @@ -2352,7 +2405,8 @@ "settings": { "button_label_1": { "label": "Nhãn nút thứ nhất", - "info": "Để trống nhãn này để ẩn nút." + "info": "Để trống nhãn này để ẩn nút.", + "default": "Nhãn nút" }, "button_link_1": { "label": "Liên kết trên nút thứ nhất" @@ -2376,7 +2430,8 @@ "name": "Phụ đề", "settings": { "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Thêm tagline" }, "text_style": { "label": "Kiểu văn bản", @@ -2421,7 +2476,8 @@ "name": "Video", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Video" }, "cover_image": { "label": "Ảnh bìa" @@ -2471,7 +2527,8 @@ "name": "Văn bản", "settings": { "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Khối văn bản" }, "text_style": { "label": "Kiểu văn bản", @@ -2545,7 +2602,8 @@ "content": "Hình ảnh xem trước có chứa tiêu đề và mô tả của cửa hàng. [Tìm hiểu thêm](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "Chia sẻ" } } }, @@ -2711,7 +2769,8 @@ "name": "Tiêu đề", "settings": { "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Sắp khai trương" } } }, @@ -2719,7 +2778,8 @@ "name": "Đoạn", "settings": { "paragraph": { - "label": "Mô tả" + "label": "Mô tả", + "default": "

Trở thành người đầu tiên nắm được thời điểm chúng tôi ra mắt

." }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "Khả năng truy cập", "label": "Mô tả bản trình chiếu", - "info": "Mô tả bản trình chiếu cho khách hàng bằng trình đọc màn hình." + "info": "Mô tả bản trình chiếu cho khách hàng bằng trình đọc màn hình.", + "default": "Bản trình chiếu về thương hiệu của chúng tôi" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "Hình ảnh" }, "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Trang chiếu hình ảnh" }, "subheading": { - "label": "Tiêu đề phụ" + "label": "Tiêu đề phụ", + "default": "Chia sẻ câu chuyện thương hiệu của bạn qua hình ảnh" }, "button_label": { "label": "Nhãn nút", - "info": "Để trống nhãn này để ẩn nút." + "info": "Để trống nhãn này để ẩn nút.", + "default": "Nhãn nút" }, "link": { "label": "Liên kết trên nút" @@ -2895,7 +2959,8 @@ "label": "Phụ đề" }, "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Nội dung có thể thu gọn" }, "heading_alignment": { "label": "Căn chỉnh tiêu đề", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "Bao gồm tiêu đề giải thích nội dung.", - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Hàng có thể thu gọn" }, "row_content": { "label": "Nội dung hàng" @@ -3150,7 +3216,8 @@ "label": "Số cột trên máy tính để bàn" }, "paragraph__1": { - "content": "Đề xuất động sử dụng thông tin về đơn hàng và sản phẩm để thay đổi và cải thiện theo thời gian. [Tìm hiểu thêm](https://help.shopify.com/themes/development/recommended-products)" + "content": "Đề xuất động sử dụng thông tin về đơn hàng và sản phẩm để thay đổi và cải thiện theo thời gian. [Tìm hiểu thêm](https://help.shopify.com/themes/development/recommended-products)", + "default": "Có thể bạn cũng thích" }, "header__2": { "content": "Thẻ sản phẩm" @@ -3225,18 +3292,6 @@ "label": "Chiều rộng hình ảnh trên màn hình nền", "info": "Hình ảnh được tự động tối ưu hóa cho thiết bị di động." }, - "heading_size": { - "options__1": { - "label": "Nhỏ" - }, - "options__2": { - "label": "Trung bình" - }, - "options__3": { - "label": "Lớn" - }, - "label": "Cỡ tiêu đề" - }, "text_style": { "options__1": { "label": "Nội dung" @@ -3323,16 +3378,20 @@ "label": "Hình ảnh" }, "caption": { - "label": "Phụ đề" + "label": "Phụ đề", + "default": "Chú thích" }, "heading": { - "label": "Tiêu đề" + "label": "Tiêu đề", + "default": "Hàng" }, "text": { - "label": "Văn bản" + "label": "Văn bản", + "default": "

Ghép nối văn bản với hình ảnh để làm nổi bật sản phẩm, bộ sưu tập hoặc bài viết blog đã chọn. Thêm chi tiết về tình trạng còn hàng, kiểu hoặc đưa ra đánh giá.

" }, "button_label": { - "label": "Nhãn nút" + "label": "Nhãn nút", + "default": "Nhãn nút" }, "button_link": { "label": "Liên kết trên nút" diff --git a/locales/zh-CN.json b/locales/zh-CN.json index 75e0a6312ed..645aca5f2d0 100644 --- a/locales/zh-CN.json +++ b/locales/zh-CN.json @@ -156,7 +156,6 @@ "image_available": "图片 {{ index }} 现已在图库视图中可用" }, "view_full_details": "查看完整详细信息", - "include_taxes": "含税费。", "shipping_policy_html": "结账时计算的运费。", "choose_options": "选择选项", "choose_product_options": "选择用于 {{ product_name }} 的选项", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "{{ price }}/件", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "taxes_included": "已含税费。", + "duties_included": "已含关税。", + "duties_and_taxes_included": "已含关税和税费。" }, "modal": { "label": "媒体图库" @@ -280,10 +282,6 @@ "empty": "您的购物车为空", "cart_error": "更新购物车时出错。请重试。", "cart_quantity_error_html": "您只能向购物车添加 {{ quantity }} 件此商品。", - "taxes_and_shipping_policy_at_checkout_html": "结账时计算的税费、折扣和运费", - "taxes_included_but_shipping_at_checkout": "含税费以及结账时计算的运费和折扣", - "taxes_included_and_shipping_policy_html": "含税费。结账时计算的运费和折扣。", - "taxes_and_shipping_at_checkout": "结账时计算的税费、折扣和运费", "headings": { "product": "产品", "price": "价格", @@ -297,7 +295,15 @@ "paragraph_html": "登录以快速结账。" }, "estimated_total": "预计总额", - "new_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": "付款方式" diff --git a/locales/zh-CN.schema.json b/locales/zh-CN.schema.json index 1adb1cd086f..8897318b6fe 100644 --- a/locales/zh-CN.schema.json +++ b/locales/zh-CN.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "特大" + }, + "options__5": { + "label": "特特大号" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "文本" + "label": "文本", + "default": "欢迎访问我们的商店" }, "text_alignment": { "label": "文本对齐方式", @@ -511,7 +515,8 @@ "name": "拼贴画", "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "多媒体拼贴" }, "desktop_layout": { "label": "桌面布局", @@ -585,7 +590,8 @@ }, "description": { "label": "视频替代文本", - "info": "为使用屏幕阅读器的客户描述视频。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "为使用屏幕阅读器的客户描述视频。[详细了解](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "描述视频" } }, "name": "视频" @@ -599,7 +605,8 @@ "name": "产品系列列表", "settings": { "title": { - "label": "标题" + "label": "标题", + "default": "产品系列" }, "image_ratio": { "label": "图片比", @@ -654,6 +661,12 @@ "name": "联系表", "presets": { "name": "联系表" + }, + "settings": { + "title": { + "default": "联系表", + "label": "标题" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "博客文章", "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "博客文章" }, "blog": { "label": "博客" @@ -705,7 +719,8 @@ "name": "特色产品系列", "settings": { "title": { - "label": "标题" + "label": "标题", + "default": "特色产品系列" }, "collection": { "label": "产品系列" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "快速链接" }, "menu": { "label": "菜单", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "标题" }, "subtext": { - "label": "子文本" + "label": "子文本", + "default": "

与您的客户分享联系信息、商店详细信息和品牌内容。

" } }, "name": "文本" @@ -851,7 +869,8 @@ "label": "显示电子邮件注册信息" }, "newsletter_heading": { - "label": "标题" + "label": "标题", + "default": "订阅我们的电子邮件" }, "header__1": { "info": "订阅者已自动添加到您的“已接受营销”客户列表。[详细了解](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "菜单配色方案" + }, + "header__7": { + "content": "客户账户登录", + "info": "若要管理客户账户,请前往您的[客户账户设置](/admin/settings/customer_accounts)。" + }, + "enable_customer_avatar": { + "label": "显示头像", + "info": "客户将仅在使用 Shop 登录时才会看到自己的头像" } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "图片横幅" } }, "name": "标题" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "描述" + "label": "描述", + "default": "为客户提供有关模板中的横幅图片或内容的详细信息。" }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "第一个按钮标签", - "info": "将标签留空以隐藏按钮。" + "info": "将标签留空以隐藏按钮。", + "default": "按钮标签" }, "button_link_1": { "label": "第一个按钮链接" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "第二个按钮标签", - "info": "将标签留空以隐藏按钮。" + "info": "将标签留空以隐藏按钮。", + "default": "按钮标签" }, "button_link_2": { "label": "第二个按钮链接" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "带文本图片" } }, "name": "标题" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "内容" + "label": "内容", + "default": "

将文本与图片配对,以便将焦点置于您选择的产品、产品系列或博客文章。添加有关供货情况和样式的详细信息,甚至是提供评论。

" }, "text_style": { "label": "文本样式", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "按钮标签", - "info": "将标签留空以隐藏按钮。" + "info": "将标签留空以隐藏按钮。", + "default": "按钮标签" }, "button_link": { "label": "按钮链接" @@ -1292,7 +1326,8 @@ "name": "字幕", "settings": { "text": { - "label": "文本" + "label": "文本", + "default": "添加标语" }, "text_style": { "label": "文本样式", @@ -1370,7 +1405,8 @@ "content": "预览图片中包含商店标题和描述。[了解详细信息](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。" }, "text": { - "label": "文本" + "label": "文本", + "default": "分享" } } } @@ -1539,7 +1575,8 @@ "name": "产品系列列表页面", "settings": { "title": { - "label": "标题" + "label": "标题", + "default": "产品系列" }, "sort": { "label": "产品系列排序依据:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "文本" + "label": "文本", + "default": "文本块" }, "text_style": { "label": "文本样式", @@ -1681,7 +1719,8 @@ "content": "预览图片中包含商店标题和描述。[了解详细信息](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)。" }, "text": { - "label": "文本" + "label": "文本", + "default": "分享" } }, "name": "共享" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "包含可解释相关内容的标题。", - "label": "标题" + "label": "标题", + "default": "可折叠行" }, "content": { "label": "行内容" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "链接标签" + "label": "链接标签", + "default": "弹窗链接文本" }, "page": { "label": "页面" @@ -1877,7 +1918,8 @@ "content": "若要选择互补产品,请添加 Search & Discovery 应用。[详细了解](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "标题" + "label": "标题", + "default": "适用于" }, "make_collapsible_row": { "label": "显示为可折叠行" @@ -1940,7 +1982,8 @@ "label": "第一张图片" }, "heading_1": { - "label": "第一个标题" + "label": "第一个标题", + "default": "标题" }, "icon_2": { "label": "第二个图标" @@ -1949,7 +1992,8 @@ "label": "第二张图片" }, "heading_2": { - "label": "第二个标题" + "label": "第二个标题", + "default": "标题" }, "icon_3": { "label": "第三个图标" @@ -1958,7 +2002,8 @@ "label": "第三张图片" }, "heading_3": { - "label": "第三个标题" + "label": "第三个标题", + "default": "标题" } } }, @@ -2154,7 +2199,8 @@ "name": "多列", "settings": { "title": { - "label": "标题" + "label": "标题", + "default": "多列" }, "image_width": { "label": "图片宽度", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "按钮标签" + "label": "按钮标签", + "default": "按钮标签" }, "button_link": { "label": "按钮链接" @@ -2233,10 +2280,12 @@ "label": "图片" }, "title": { - "label": "标题" + "label": "标题", + "default": "列" }, "text": { - "label": "描述" + "label": "描述", + "default": "

将文本与图片配对,以便将焦点置于您选择的产品、产品系列或博客文章。添加有关供货情况和样式的详细信息,甚至是提供评论。

" }, "link_label": { "label": "链接标签" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "订阅我们的电子邮件" } }, "name": "标题" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "描述" + "label": "描述", + "default": "

成为第一批了解新产品系列和专属优惠的客户。

" } }, "name": "副标题" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "介绍您的品牌" } }, "name": "标题" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "描述" + "label": "描述", + "default": "

与客户分享有关您品牌的信息。描述产品、发布公告或欢迎客户访问您的商店。

" } }, "name": "文本" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "第一个按钮标签", - "info": "将标签留空可隐藏按钮。" + "info": "将标签留空可隐藏按钮。", + "default": "按钮标签" }, "button_link_1": { "label": "第一个按钮链接" @@ -2376,7 +2430,8 @@ "name": "字幕", "settings": { "text": { - "label": "文本" + "label": "文本", + "default": "添加标语" }, "text_style": { "label": "文本样式", @@ -2421,7 +2476,8 @@ "name": "视频", "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "视频" }, "cover_image": { "label": "封面图片" @@ -2471,7 +2527,8 @@ "name": "文本", "settings": { "text": { - "label": "文本" + "label": "文本", + "default": "文本块" }, "text_style": { "label": "文本样式", @@ -2545,7 +2602,8 @@ "content": "预览图片中包含商店标题和描述。[详细了解](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "文本" + "label": "文本", + "default": "分享" } } }, @@ -2711,7 +2769,8 @@ "name": "标题", "settings": { "heading": { - "label": "标题" + "label": "标题", + "default": "即将开业" } } }, @@ -2719,7 +2778,8 @@ "name": "段落", "settings": { "paragraph": { - "label": "描述" + "label": "描述", + "default": "

成为第一批知道我们何时推出新内容的客户。

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "辅助功能", "label": "幻灯片描述", - "info": "为使用屏幕阅读器的客户描述幻灯片。" + "info": "为使用屏幕阅读器的客户描述幻灯片。", + "default": "关于我们品牌的幻灯片" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "图片" }, "heading": { - "label": "标题" + "label": "标题", + "default": "图片幻灯片" }, "subheading": { - "label": "副标题" + "label": "副标题", + "default": "通过图片讲述您的品牌故事" }, "button_label": { "label": "按钮标签", - "info": "将标签留空可隐藏按钮。" + "info": "将标签留空可隐藏按钮。", + "default": "按钮标签" }, "link": { "label": "按钮链接" @@ -2895,7 +2959,8 @@ "label": "字幕" }, "heading": { - "label": "标题" + "label": "标题", + "default": "可折叠内容" }, "heading_alignment": { "label": "标题对齐方式", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "包含可解释相关内容的标题。", - "label": "标题" + "label": "标题", + "default": "可折叠行" }, "row_content": { "label": "行内容" @@ -3150,7 +3216,8 @@ "label": "台式设备上的列数" }, "paragraph__1": { - "content": "动态推荐使用订单和产品信息来随着时间而变化和改进。[详细了解](https://help.shopify.com/themes/development/recommended-products)" + "content": "动态推荐使用订单和产品信息来随着时间而变化和改进。[详细了解](https://help.shopify.com/themes/development/recommended-products)", + "default": "您可能还喜欢" }, "header__2": { "content": "产品卡" @@ -3225,18 +3292,6 @@ "label": "台式设备图片宽度", "info": "图片会针对移动设备进行自动优化。" }, - "heading_size": { - "options__1": { - "label": "小" - }, - "options__2": { - "label": "中" - }, - "options__3": { - "label": "大" - }, - "label": "标题大小" - }, "text_style": { "options__1": { "label": "正文" @@ -3323,16 +3378,20 @@ "label": "图片" }, "caption": { - "label": "字幕" + "label": "字幕", + "default": "大标题" }, "heading": { - "label": "标题" + "label": "标题", + "default": "行" }, "text": { - "label": "文本" + "label": "文本", + "default": "

将文本与图片配对,以便将焦点置于您选择的产品、产品系列或博客文章。添加有关供货情况和样式的详细信息,甚至是提供评论。

" }, "button_label": { - "label": "按钮标签" + "label": "按钮标签", + "default": "按钮标签" }, "button_link": { "label": "按钮链接" diff --git a/locales/zh-TW.json b/locales/zh-TW.json index f8efb9aed0a..6ffa215733c 100644 --- a/locales/zh-TW.json +++ b/locales/zh-TW.json @@ -156,7 +156,6 @@ "image_available": "現在可在圖庫檢視畫面中查看圖片 {{ index }}" }, "view_full_details": "查看完整資訊", - "include_taxes": "內含稅金。", "shipping_policy_html": "結帳時計算運費。", "choose_options": "選擇選項", "choose_product_options": "選擇 {{ product_name }} 的選項", @@ -175,7 +174,10 @@ "minimum": "{{ quantity }}+", "price_at_each": "{{ price }}/每項", "price_range": "{{ minimum }} - {{ maximum }}" - } + }, + "taxes_included": "已包含稅額。", + "duties_included": "已包含關稅。", + "duties_and_taxes_included": "已包含關稅和稅額。" }, "modal": { "label": "媒體庫" @@ -280,10 +282,6 @@ "empty": "您的購物車是空的", "cart_error": "更新購物車時發生錯誤。請再試一次。", "cart_quantity_error_html": "您只能將 {{ quantity }} 項商品加入您的購物車。", - "taxes_and_shipping_policy_at_checkout_html": "結帳時計算稅金、折扣和運費", - "taxes_included_but_shipping_at_checkout": "內含稅金,結帳時計算運費和折扣", - "taxes_included_and_shipping_policy_html": "內含稅金。結帳時計算運費和折扣。", - "taxes_and_shipping_at_checkout": "結帳時計算稅金、折扣和運費", "headings": { "product": "產品", "price": "價格", @@ -297,7 +295,15 @@ "paragraph_html": "登入以加速結帳。" }, "estimated_total": "估計總金額", - "new_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": "付款方式" diff --git a/locales/zh-TW.schema.json b/locales/zh-TW.schema.json index add9f91db10..65b0605c5a1 100644 --- a/locales/zh-TW.schema.json +++ b/locales/zh-TW.schema.json @@ -395,6 +395,9 @@ }, "options__4": { "label": "超大型" + }, + "options__5": { + "label": "特大型" } }, "image_shape": { @@ -450,7 +453,8 @@ "announcement": { "settings": { "text": { - "label": "文字" + "label": "文字", + "default": "歡迎來到我們的商店" }, "text_alignment": { "label": "文字對齊方式", @@ -511,7 +515,8 @@ "name": "拼貼", "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "多媒體拼貼" }, "desktop_layout": { "label": "電腦版版面配置", @@ -585,7 +590,8 @@ }, "description": { "label": "影片替代文字", - "info": "為使用螢幕助讀程式的顧客說明該影片。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)" + "info": "為使用螢幕助讀程式的顧客說明該影片。[瞭解詳情](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#video-block)", + "default": "描述影片" } }, "name": "影片" @@ -599,7 +605,8 @@ "name": "商品系列清單", "settings": { "title": { - "label": "標題" + "label": "標題", + "default": "商品系列" }, "image_ratio": { "label": "圖片比例", @@ -654,6 +661,12 @@ "name": "聯絡表單", "presets": { "name": "聯絡表單" + }, + "settings": { + "title": { + "default": "聯絡表單", + "label": "標題" + } } }, "custom-liquid": { @@ -672,7 +685,8 @@ "name": "網誌文章", "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "網誌文章" }, "blog": { "label": "網誌" @@ -705,7 +719,8 @@ "name": "精選商品系列", "settings": { "title": { - "label": "標題" + "label": "標題", + "default": "精選商品系列" }, "collection": { "label": "商品系列" @@ -810,7 +825,8 @@ "link_list": { "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "快速連結" }, "menu": { "label": "選單", @@ -822,10 +838,12 @@ "text": { "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "標題" }, "subtext": { - "label": "子文字" + "label": "子文字", + "default": "

與顧客分享聯絡資訊、商店的詳細資訊和品牌內容。

" } }, "name": "文字" @@ -851,7 +869,8 @@ "label": "顯示電子郵件訂閱" }, "newsletter_heading": { - "label": "標題" + "label": "標題", + "default": "訂閱我們的電子郵件" }, "header__1": { "info": "訂閱者已自動新增至您的「接受行銷」顧客名單。[瞭解詳情](https://help.shopify.com/manual/customers/manage-customers)", @@ -1000,6 +1019,14 @@ }, "menu_color_scheme": { "label": "選單顏色配置" + }, + "header__7": { + "content": "顧客帳號登入", + "info": "若要管理顧客帳號,請前往您的[顧客帳號設定](/admin/settings/customer_accounts)。" + }, + "enable_customer_avatar": { + "label": "顯示大頭貼", + "info": "當顧客登入 Shop 時只會看到他們的大頭貼。" } } }, @@ -1102,7 +1129,8 @@ "heading": { "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "圖片橫幅" } }, "name": "標題" @@ -1110,7 +1138,8 @@ "text": { "settings": { "text": { - "label": "說明" + "label": "說明", + "default": "提供顧客關於範本上橫幅圖片或內容的詳細資訊。" }, "text_style": { "options__1": { @@ -1131,7 +1160,8 @@ "settings": { "button_label_1": { "label": "第一個按鈕標籤", - "info": "將標籤保留空白以隱藏按鈕。" + "info": "將標籤保留空白以隱藏按鈕。", + "default": "按鈕標籤" }, "button_link_1": { "label": "第一個按鈕連結" @@ -1141,7 +1171,8 @@ }, "button_label_2": { "label": "第二個按鈕標籤", - "info": "將標籤保留空白以隱藏按鈕。" + "info": "將標籤保留空白以隱藏按鈕。", + "default": "按鈕標籤" }, "button_link_2": { "label": "第二個按鈕連結" @@ -1251,7 +1282,8 @@ "heading": { "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "附文字的圖片" } }, "name": "標題" @@ -1259,7 +1291,8 @@ "text": { "settings": { "text": { - "label": "內容" + "label": "內容", + "default": "

文字搭配圖片,以便強調特定商品、商品系列或網誌文章。您可以加上各種有關可用性、樣式的詳細資料,甚至可以提供使用心得。

" }, "text_style": { "label": "文字樣式", @@ -1277,7 +1310,8 @@ "settings": { "button_label": { "label": "按鈕標籤", - "info": "將標籤保留空白以隱藏按鈕。" + "info": "將標籤保留空白以隱藏按鈕。", + "default": "按鈕標籤" }, "button_link": { "label": "按鈕連結" @@ -1292,7 +1326,8 @@ "name": "說明", "settings": { "text": { - "label": "文字" + "label": "文字", + "default": "新增標語" }, "text_style": { "label": "文字樣式", @@ -1370,7 +1405,8 @@ "content": "商店名稱和說明包含在預覽圖片中。[瞭解詳情](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "文字" + "label": "文字", + "default": "分享" } } } @@ -1539,7 +1575,8 @@ "name": "商品系列清單頁面", "settings": { "title": { - "label": "標題" + "label": "標題", + "default": "商品系列" }, "sort": { "label": "以下列方式排序商品系列:", @@ -1615,7 +1652,8 @@ "text": { "settings": { "text": { - "label": "文字" + "label": "文字", + "default": "文字區塊" }, "text_style": { "label": "文字樣式", @@ -1681,7 +1719,8 @@ "content": "商店名稱和說明包含在預覽圖片中。[瞭解詳情](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "文字" + "label": "文字", + "default": "分享" } }, "name": "分享" @@ -1690,7 +1729,8 @@ "settings": { "heading": { "info": "包含說明內容的標題。", - "label": "標題" + "label": "標題", + "default": "可折疊的橫列" }, "content": { "label": "橫列內容" @@ -1839,7 +1879,8 @@ "popup": { "settings": { "link_label": { - "label": "連結標籤" + "label": "連結標籤", + "default": "彈出式視窗連結文字" }, "page": { "label": "頁面" @@ -1877,7 +1918,8 @@ "content": "若要選取配套商品,請新增 Search & Discovery 應用程式。[瞭解詳情](https://help.shopify.com/manual/online-store/search-and-discovery/product-recommendations)" }, "heading": { - "label": "標題" + "label": "標題", + "default": "適合搭配" }, "make_collapsible_row": { "label": "顯示為可收合的橫列" @@ -1940,7 +1982,8 @@ "label": "第一張圖片" }, "heading_1": { - "label": "第一個標題" + "label": "第一個標題", + "default": "標題" }, "icon_2": { "label": "第二個圖示" @@ -1949,7 +1992,8 @@ "label": "第二張圖片" }, "heading_2": { - "label": "第二個標題" + "label": "第二個標題", + "default": "標題" }, "icon_3": { "label": "第三個圖示" @@ -1958,7 +2002,8 @@ "label": "第三張圖片" }, "heading_3": { - "label": "第三個標題" + "label": "第三個標題", + "default": "標題" } } }, @@ -2154,7 +2199,8 @@ "name": "多列", "settings": { "title": { - "label": "標題" + "label": "標題", + "default": "多欄" }, "image_width": { "label": "圖片寬度", @@ -2202,7 +2248,8 @@ } }, "button_label": { - "label": "按鈕標籤" + "label": "按鈕標籤", + "default": "按鈕標籤" }, "button_link": { "label": "按鈕連結" @@ -2233,10 +2280,12 @@ "label": "圖片" }, "title": { - "label": "標題" + "label": "標題", + "default": "欄" }, "text": { - "label": "說明" + "label": "說明", + "default": "

文字搭配圖片,以便強調特定商品、商品系列或網誌文章。您可以加上各種有關可用性、樣式的詳細資料,甚至可以提供使用心得。

" }, "link_label": { "label": "連結標籤" @@ -2266,7 +2315,8 @@ "heading": { "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "訂閱我們的電子郵件" } }, "name": "標題" @@ -2274,7 +2324,8 @@ "paragraph": { "settings": { "paragraph": { - "label": "說明" + "label": "說明", + "default": "

搶先收到新商品系列和專屬優惠的消息。

" } }, "name": "子標題" @@ -2334,7 +2385,8 @@ "heading": { "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "描述您的品牌" } }, "name": "標題" @@ -2342,7 +2394,8 @@ "text": { "settings": { "text": { - "label": "說明" + "label": "說明", + "default": "

和顧客分享品牌資訊、描述商品、進行公告,或歡迎顧客光臨您的商店。

" } }, "name": "文字" @@ -2351,7 +2404,8 @@ "settings": { "button_label_1": { "label": "第一個按鈕標籤", - "info": "將標籤留白以隱藏按鈕。" + "info": "將標籤留白以隱藏按鈕。", + "default": "按鈕標籤" }, "button_link_1": { "label": "第一個按鈕連結" @@ -2376,7 +2430,8 @@ "name": "說明", "settings": { "text": { - "label": "文字" + "label": "文字", + "default": "新增標語" }, "text_style": { "label": "文字樣式", @@ -2421,7 +2476,8 @@ "name": "影片", "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "影片" }, "cover_image": { "label": "封面圖片" @@ -2471,7 +2527,8 @@ "name": "文字", "settings": { "text": { - "label": "文字" + "label": "文字", + "default": "文字區塊" }, "text_style": { "label": "文字樣式", @@ -2545,7 +2602,8 @@ "content": "商店名稱和說明包含在預覽圖片中。[瞭解詳情](https://help.shopify.com/manual/promoting-marketing/seo/adding-keywords#set-a-title-and-description-for-your-online-store)" }, "text": { - "label": "文字" + "label": "文字", + "default": "分享" } } }, @@ -2711,7 +2769,8 @@ "name": "標題", "settings": { "heading": { - "label": "標題" + "label": "標題", + "default": "即將開張" } } }, @@ -2719,7 +2778,8 @@ "name": "段落", "settings": { "paragraph": { - "label": "說明" + "label": "說明", + "default": "

搶先收到產品發佈消息。

" }, "text_style": { "options__1": { @@ -2794,7 +2854,8 @@ "accessibility": { "content": "無障礙功能", "label": "素材輪播說明", - "info": "為使用螢幕助讀程式的顧客說明該素材輪播。" + "info": "為使用螢幕助讀程式的顧客說明該素材輪播。", + "default": "我們的品牌素材輪播" } }, "blocks": { @@ -2805,14 +2866,17 @@ "label": "圖片" }, "heading": { - "label": "標題" + "label": "標題", + "default": "圖片投影片" }, "subheading": { - "label": "子標題" + "label": "子標題", + "default": "用圖片講述您的品牌故事" }, "button_label": { "label": "按鈕標籤", - "info": "將標籤留白以隱藏按鈕。" + "info": "將標籤留白以隱藏按鈕。", + "default": "按鈕標籤" }, "link": { "label": "按鈕連結" @@ -2895,7 +2959,8 @@ "label": "說明" }, "heading": { - "label": "標題" + "label": "標題", + "default": "可折疊的內容" }, "heading_alignment": { "label": "標題對齊方式", @@ -2963,7 +3028,8 @@ "settings": { "heading": { "info": "包含說明內容的標題。", - "label": "標題" + "label": "標題", + "default": "可折疊的橫列" }, "row_content": { "label": "橫列內容" @@ -3150,7 +3216,8 @@ "label": "電腦版的欄數" }, "paragraph__1": { - "content": "動態推薦會使用訂單和商品資訊,以隨著時間改變與改進。[瞭解詳情](https://help.shopify.com/themes/development/recommended-products)" + "content": "動態推薦會使用訂單和商品資訊,以隨著時間改變與改進。[瞭解詳情](https://help.shopify.com/themes/development/recommended-products)", + "default": "您也可能喜歡" }, "header__2": { "content": "商品卡片" @@ -3225,18 +3292,6 @@ "label": "電腦版圖片寬度", "info": "行動版的圖片會自動調整大小。" }, - "heading_size": { - "options__1": { - "label": "小" - }, - "options__2": { - "label": "中" - }, - "options__3": { - "label": "大" - }, - "label": "標題大小" - }, "text_style": { "options__1": { "label": "內文" @@ -3323,16 +3378,20 @@ "label": "圖片" }, "caption": { - "label": "說明" + "label": "說明", + "default": "說明文字" }, "heading": { - "label": "標題" + "label": "標題", + "default": "列" }, "text": { - "label": "文字" + "label": "文字", + "default": "

文字搭配圖片,以便強調特定商品、商品系列或網誌文章。您可以加上各種有關可用性、樣式的詳細資料,甚至可以提供使用心得。

" }, "button_label": { - "label": "按鈕標籤" + "label": "按鈕標籤", + "default": "按鈕標籤" }, "button_link": { "label": "按鈕連結" diff --git a/release-notes.md b/release-notes.md index 10398c4226a..eb59dc7acfb 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,10 +1,32 @@ -Dawn 13.0.1 introduces a few fixes. +Dawn 15.0.0 adds support for combined listing products and products with over 2,000 variants, includes several enhancements for B2B online stores and localization improvements. +### Added +- Support for products with over 2,000 variants (when released) +- Support for combined listing products +- Structured data for Product and Article drops generated by new structured_data liquid filter +- Now possible to enable/disable the display of customer avatars via the Shopify admin (without editing code) +- New “Extra Extra Large” font size option for headers ### Changed -- The cart drawer header (Product, Total) is not sticky anymore when the content is scrollable +- Default values for sections and blocks are now translated in the store's default language +- Optimized CSS to improve rendering performance +- Store policies are now displayed in the footer by default +- Product page, featured product card and cart now display “Duties included” text +- Country selector no longer requires diacritics to match – for example, in French, typing ‘Etats’ will match ‘États-Unis’ +- Removed drop shadows from variant images in the quick add modal +- Updated root locale keys of the regional locales to their default variations ### Fixes and improvements -- Fix product rating alignment when the product doesn't have a media -- Fix scroll issue on variant change -- Limit width of country selector when the currency is the same for all the countries -- Fix missing alt tags for the collection image on the collection page as well as for collection cards -- Fix cart drawer's cart note to prevent overlapping of the text and caret icon -- Fix cart drawer's header to prevent an overlap with the items in the cart \ No newline at end of file +- Implemented client-side validation to better enforce quantity rules +- Fixed an issue where option value selection was incorrect if the user selected an option before fully loading +- Slideshow updated to address irregular movement during scroll +- Fixed an issue where product variant images were not being displayed on mobile +- Fixed an issue where image thumbnail was not updated when a product variant featured media changed +- Improved quantity accuracy when using Quick Order List to add to cart (no longer dropping clicks) +- Quick Order List allows multiple variants to be updated at once +- Quick Add Bulk now displays “out of stock” for items with no inventory +- Improved quantity accuracy when using Quick Add Bulk to add to cart (no longer dropping clicks) +- Significant network performance improvements for Quick Add Bulk +- Product media correctly displayed in the Quick Add Bulk modal when a user selects a variant +- Several UX improvements for Quick Add Bulk modal on desktop + - Centered "View cart” button text + - Optimized header and footer spacing + - Clicking product name now links to the product details page + - Removed superfluous underlined space on “View full details” link diff --git a/sections/announcement-bar.liquid b/sections/announcement-bar.liquid index a4c86bdfeac..b40c7a95a62 100644 --- a/sections/announcement-bar.liquid +++ b/sections/announcement-bar.liquid @@ -243,7 +243,7 @@ { "type": "text", "id": "text", - "default": "Welcome to our store", + "default": "t:sections.announcement-bar.blocks.announcement.settings.text.default", "label": "t:sections.announcement-bar.blocks.announcement.settings.text.label" }, { diff --git a/sections/bulk-quick-order-list.liquid b/sections/bulk-quick-order-list.liquid new file mode 100644 index 00000000000..321c20b93b3 --- /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/collage.liquid b/sections/collage.liquid index 87e12309911..8617847ee7c 100644 --- a/sections/collage.liquid +++ b/sections/collage.liquid @@ -26,6 +26,7 @@ {%- endif -%}
+ {% assign skip_card_product_styles = false %} {%- for block in section.blocks -%}
Be the first to know when we launch.

", + "default": "t:sections.email-signup-banner.blocks.paragraph.settings.paragraph.default", "label": "t:sections.email-signup-banner.blocks.paragraph.settings.paragraph.label" }, { diff --git a/sections/featured-blog.liquid b/sections/featured-blog.liquid index 2fc8a926bb8..76a9a363e3e 100644 --- a/sections/featured-blog.liquid +++ b/sections/featured-blog.liquid @@ -197,7 +197,7 @@ { "type": "inline_richtext", "id": "heading", - "default": "Blog posts", + "default": "t:sections.featured-blog.settings.heading.default", "label": "t:sections.featured-blog.settings.heading.label" }, { @@ -215,6 +215,14 @@ { "value": "h0", "label": "t:sections.all.heading_size.options__3.label" + }, + { + "value": "hxl", + "label": "t:sections.all.heading_size.options__4.label" + }, + { + "value": "hxxl", + "label": "t:sections.all.heading_size.options__5.label" } ], "default": "h1", diff --git a/sections/featured-collection.liquid b/sections/featured-collection.liquid index 65b7a3720f1..68f5b81fcc3 100644 --- a/sections/featured-collection.liquid +++ b/sections/featured-collection.liquid @@ -19,9 +19,9 @@ {%- if section.settings.quick_add == 'bulk' -%} - + {%- endif -%} {%- style -%} @@ -94,6 +94,7 @@ role="list" aria-label="{{ 'general.slider.name' | t }}" > + {% assign skip_card_product_styles = false %} {%- for product in section.settings.collection.products limit: section.settings.products_to_show -%}
  • + {%- assign skip_card_product_styles = true -%} {%- else -%} {%- for i in (1..section.settings.columns_desktop) -%}
  • + {{ 'section-main-product.css' | asset_url | stylesheet_tag }} + {{ 'section-featured-product.css' | asset_url | stylesheet_tag }} + {{ 'component-accordion.css' | asset_url | stylesheet_tag }} + {{ 'component-price.css' | asset_url | stylesheet_tag }} + {{ 'component-deferred-media.css' | asset_url | stylesheet_tag }} + {{ 'component-rating.css' | asset_url | stylesheet_tag }} + {{ 'component-volume-pricing.css' | asset_url | stylesheet_tag }} + {% unless section.settings.product.has_only_default_variant %} + {{ 'component-product-variant-picker.css' | asset_url | stylesheet_tag }} + {{ 'component-swatch.css' | asset_url | stylesheet_tag }} + {{ 'component-swatch-input.css' | asset_url | stylesheet_tag }} + {% endunless %} - @media screen and (min-width: 750px) { + {%- style -%} .section-{{ section.id }}-padding { - padding-top: {{ section.settings.padding_top }}px; - padding-bottom: {{ section.settings.padding_bottom }}px; + padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px; + padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px; } - } -{%- endstyle -%} - - - + @media screen and (min-width: 750px) { + .section-{{ section.id }}-padding { + padding-top: {{ section.settings.padding_top }}px; + padding-bottom: {{ section.settings.padding_bottom }}px; + } + } + {%- endstyle -%} -{%- liquid - assign product = section.settings.product --%} + + + -{% comment %} TODO: assign `product.selected_or_first_available_variant` to variable and replace usage to reduce verbosity {% endcomment %} + {% comment %} TODO: assign `product.selected_or_first_available_variant` to variable and replace usage to reduce verbosity {% endcomment %} -{%- assign first_3d_model = product.media | where: 'media_type', 'model' | first -%} -{%- if first_3d_model -%} - {{ 'component-product-model.css' | asset_url | stylesheet_tag }} - - -{%- endif -%} + {%- assign first_3d_model = product.media | where: 'media_type', 'model' | first -%} + {%- if first_3d_model -%} + {{ 'component-product-model.css' | asset_url | stylesheet_tag }} + + + {%- endif -%} -{% assign variant_images = product.images | where: 'attached_to_variant?', true | map: 'src' %} + {% assign variant_images = product.images | where: 'attached_to_variant?', true | map: 'src' %} -
    -
    -
    + - -{%- if section.settings.image_zoom == 'hover' -%} - -{%- endif %} -{%- if request.design_mode -%} - -{%- endif -%} + + {%- if section.settings.image_zoom == 'hover' -%} + + {%- endif %} + {%- if request.design_mode -%} + + {%- endif -%} -{%- if first_3d_model -%} - - -{%- endif -%} + {%- if first_3d_model -%} + + + {%- endif -%} -{%- liquid - if product.selected_or_first_available_variant.featured_media - assign seo_media = product.selected_or_first_available_variant.featured_media - else - assign seo_media = product.featured_media - endif --%} + {%- liquid + if product.selected_or_first_available_variant.featured_media + assign seo_media = product.selected_or_first_available_variant.featured_media + else + assign seo_media = product.featured_media + endif + -%} - + -{% if product.media.size > 0 %} - - -{% endif %} + {% if product.media.size > 0 %} + + + {% endif %} + {% schema %} { @@ -526,7 +502,7 @@ { "type": "inline_richtext", "id": "text", - "default": "Text block", + "default": "t:sections.featured-product.blocks.text.settings.text.default", "label": "t:sections.featured-product.blocks.text.settings.text.label" }, { @@ -571,6 +547,14 @@ { "value": "h0", "label": "t:sections.all.heading_size.options__3.label" + }, + { + "value": "hxl", + "label": "t:sections.all.heading_size.options__4.label" + }, + { + "value": "hxxl", + "label": "t:sections.all.heading_size.options__5.label" } ], "default": "h1", @@ -689,7 +673,7 @@ "type": "text", "id": "share_label", "label": "t:sections.featured-product.blocks.share.settings.text.label", - "default": "Share" + "default": "t:sections.featured-product.blocks.share.settings.text.default" }, { "type": "paragraph", @@ -941,7 +925,7 @@ { "type": "inline_richtext", "id": "heading_1", - "default": "Heading", + "default": "t:sections.main-product.blocks.icon_with_text.settings.heading_1.default", "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_1.label", "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info" }, @@ -1137,7 +1121,7 @@ { "type": "inline_richtext", "id": "heading_2", - "default": "Heading", + "default": "t:sections.main-product.blocks.icon_with_text.settings.heading_2.default", "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_2.label", "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info" }, @@ -1333,7 +1317,7 @@ { "type": "inline_richtext", "id": "heading_3", - "default": "Heading", + "default": "t:sections.main-product.blocks.icon_with_text.settings.heading_3.default", "label": "t:sections.main-product.blocks.icon_with_text.settings.heading_3.label", "info": "t:sections.main-product.blocks.icon_with_text.settings.heading.info" } diff --git a/sections/footer.liquid b/sections/footer.liquid index 5bdcf6079cb..ab9ea4535b3 100644 --- a/sections/footer.liquid +++ b/sections/footer.liquid @@ -103,7 +103,7 @@ href="{{ link.url }}" class="link link--text list-menu__item list-menu__item--link{% if link.active %} list-menu__item--active{% endif %}" > - {{ link.title }} + {{ link.title | escape }}
  • {%- endfor -%} @@ -240,10 +240,7 @@ {%- if shop.features.follow_on_shop? and section.settings.enable_follow_on_shop -%} {%- endif -%} @@ -314,7 +311,7 @@ {%- if policy != blank -%}
  • {{ policy.title }}{{ policy.title | escape }}
  • {%- endif -%} @@ -366,7 +363,7 @@ { "type": "inline_richtext", "id": "heading", - "default": "Quick links", + "default": "t:sections.footer.blocks.link_list.settings.heading.default", "label": "t:sections.footer.blocks.link_list.settings.heading.label" }, { @@ -406,13 +403,13 @@ { "type": "inline_richtext", "id": "heading", - "default": "Heading", + "default": "t:sections.footer.blocks.text.settings.heading.default", "label": "t:sections.footer.blocks.text.settings.heading.label" }, { "type": "richtext", "id": "subtext", - "default": "

    Share contact information, store details, and brand content with your customers.

    ", + "default": "t:sections.footer.blocks.text.settings.subtext.default", "label": "t:sections.footer.blocks.text.settings.subtext.label" } ] @@ -480,7 +477,7 @@ { "type": "inline_richtext", "id": "newsletter_heading", - "default": "Subscribe to our emails", + "default": "t:sections.footer.settings.newsletter_heading.default", "label": "t:sections.footer.settings.newsletter_heading.label" }, { @@ -545,7 +542,7 @@ { "type": "checkbox", "id": "show_policy", - "default": false, + "default": true, "label": "t:sections.footer.settings.show_policy.label" }, { diff --git a/sections/header.liquid b/sections/header.liquid index af6d4b5c17f..512d7c9a9a3 100644 --- a/sections/header.liquid +++ b/sections/header.liquid @@ -2,21 +2,15 @@ - + {%- if settings.predictive_search_enabled -%} {%- endif -%} + {%- if section.settings.menu_type_desktop == 'mega' -%} {%- endif -%} -{%- if settings.cart_type == "drawer" -%} - {{ 'component-cart-drawer.css' | asset_url | stylesheet_tag }} - {{ 'component-cart.css' | asset_url | stylesheet_tag }} - {{ 'component-totals.css' | asset_url | stylesheet_tag }} - {{ 'component-price.css' | asset_url | stylesheet_tag }} - {{ 'component-discounts.css' | asset_url | stylesheet_tag }} -{%- endif -%}