@salesforce/retail-react-app 1.0.0-preview.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintignore +7 -0
- package/.eslintrc.js +25 -0
- package/.prettierignore +4 -0
- package/.prettierrc.yaml +7 -0
- package/CHANGELOG.md +173 -0
- package/LICENSE +14 -0
- package/README.md +48 -0
- package/app/assets/svg/account.svg +3 -0
- package/app/assets/svg/alert.svg +3 -0
- package/app/assets/svg/basket.svg +3 -0
- package/app/assets/svg/brand-logo.svg +10 -0
- package/app/assets/svg/cc-amex.svg +7 -0
- package/app/assets/svg/cc-cvv.svg +8 -0
- package/app/assets/svg/cc-discover.svg +14 -0
- package/app/assets/svg/cc-mastercard.svg +8 -0
- package/app/assets/svg/cc-visa.svg +11 -0
- package/app/assets/svg/check-circle.svg +3 -0
- package/app/assets/svg/check.svg +3 -0
- package/app/assets/svg/chevron-down.svg +3 -0
- package/app/assets/svg/chevron-left.svg +3 -0
- package/app/assets/svg/chevron-right.svg +3 -0
- package/app/assets/svg/chevron-up.svg +3 -0
- package/app/assets/svg/close.svg +3 -0
- package/app/assets/svg/dashboard.svg +4 -0
- package/app/assets/svg/figma-logo.svg +14 -0
- package/app/assets/svg/file.svg +3 -0
- package/app/assets/svg/filter.svg +3 -0
- package/app/assets/svg/flag-ca.svg +5 -0
- package/app/assets/svg/flag-cn.svg +19 -0
- package/app/assets/svg/flag-fr.svg +19 -0
- package/app/assets/svg/flag-gb.svg +16 -0
- package/app/assets/svg/flag-it.svg +29 -0
- package/app/assets/svg/flag-jp.svg +10 -0
- package/app/assets/svg/flag-us.svg +7 -0
- package/app/assets/svg/github-logo.svg +40 -0
- package/app/assets/svg/hamburger.svg +8 -0
- package/app/assets/svg/heart-solid.svg +7 -0
- package/app/assets/svg/heart.svg +3 -0
- package/app/assets/svg/info.svg +3 -0
- package/app/assets/svg/like.svg +4 -0
- package/app/assets/svg/location.svg +3 -0
- package/app/assets/svg/lock.svg +3 -0
- package/app/assets/svg/paypal.svg +19 -0
- package/app/assets/svg/plug.svg +3 -0
- package/app/assets/svg/plus.svg +3 -0
- package/app/assets/svg/receipt.svg +3 -0
- package/app/assets/svg/search.svg +8 -0
- package/app/assets/svg/signout.svg +3 -0
- package/app/assets/svg/social-facebook.svg +3 -0
- package/app/assets/svg/social-instagram.svg +3 -0
- package/app/assets/svg/social-pinterest.svg +4 -0
- package/app/assets/svg/social-twitter.svg +3 -0
- package/app/assets/svg/social-youtube.svg +3 -0
- package/app/assets/svg/user.svg +3 -0
- package/app/assets/svg/visibility-off.svg +5 -0
- package/app/assets/svg/visibility.svg +3 -0
- package/app/components/_app/index.jsx +401 -0
- package/app/components/_app/index.test.js +85 -0
- package/app/components/_app/partials/above-header.jsx +10 -0
- package/app/components/_app-config/index.jsx +125 -0
- package/app/components/_app-config/index.test.js +77 -0
- package/app/components/_error/index.jsx +142 -0
- package/app/components/_error/index.test.js +25 -0
- package/app/components/action-card/index.jsx +75 -0
- package/app/components/address-display/index.jsx +30 -0
- package/app/components/basic-tile/index.jsx +65 -0
- package/app/components/basic-tile/index.test.js +23 -0
- package/app/components/breadcrumb/index.jsx +67 -0
- package/app/components/breadcrumb/index.test.js +30 -0
- package/app/components/confirmation-modal/index.jsx +111 -0
- package/app/components/confirmation-modal/index.test.js +98 -0
- package/app/components/drawer-menu/index.jsx +405 -0
- package/app/components/drawer-menu/index.test.js +33 -0
- package/app/components/dynamic-image/index.jsx +56 -0
- package/app/components/field/index.jsx +161 -0
- package/app/components/footer/index.jsx +269 -0
- package/app/components/footer/index.test.js +22 -0
- package/app/components/forms/address-fields.jsx +49 -0
- package/app/components/forms/credit-card-fields.jsx +149 -0
- package/app/components/forms/form-action-buttons.jsx +55 -0
- package/app/components/forms/login-fields.jsx +31 -0
- package/app/components/forms/password-requirements.jsx +99 -0
- package/app/components/forms/post-checkout-registration-fields.jsx +43 -0
- package/app/components/forms/profile-fields.jsx +36 -0
- package/app/components/forms/promo-code-fields.jsx +43 -0
- package/app/components/forms/registration-fields.jsx +42 -0
- package/app/components/forms/reset-password-fields.jsx +31 -0
- package/app/components/forms/state-province-options.jsx +75 -0
- package/app/components/forms/update-password-fields.jsx +49 -0
- package/app/components/forms/useAddressFields.jsx +196 -0
- package/app/components/forms/useCreditCardFields.jsx +146 -0
- package/app/components/forms/useLoginFields.jsx +52 -0
- package/app/components/forms/useProfileFields.jsx +95 -0
- package/app/components/forms/usePromoCodeFields.jsx +39 -0
- package/app/components/forms/useRegistrationFields.jsx +136 -0
- package/app/components/forms/useResetPasswordFields.jsx +40 -0
- package/app/components/forms/useUpdatePasswordFields.jsx +89 -0
- package/app/components/header/index.jsx +290 -0
- package/app/components/header/index.test.js +217 -0
- package/app/components/hero/index.jsx +84 -0
- package/app/components/hero/index.test.js +40 -0
- package/app/components/icons/index.jsx +158 -0
- package/app/components/icons/index.test.js +20 -0
- package/app/components/image-gallery/index.jsx +176 -0
- package/app/components/image-gallery/index.test.js +485 -0
- package/app/components/item-variant/index.jsx +33 -0
- package/app/components/item-variant/item-attributes.jsx +107 -0
- package/app/components/item-variant/item-image.jsx +73 -0
- package/app/components/item-variant/item-name.jsx +28 -0
- package/app/components/item-variant/item-price.jsx +117 -0
- package/app/components/link/index.jsx +32 -0
- package/app/components/link/index.test.js +72 -0
- package/app/components/links-list/index.jsx +89 -0
- package/app/components/links-list/index.test.js +62 -0
- package/app/components/list-menu/index.jsx +280 -0
- package/app/components/list-menu/index.test.js +44 -0
- package/app/components/loading-spinner/index.jsx +46 -0
- package/app/components/locale-selector/index.jsx +124 -0
- package/app/components/locale-selector/index.test.js +37 -0
- package/app/components/locale-text/index.jsx +97 -0
- package/app/components/locale-text/index.test.js +36 -0
- package/app/components/login/index.jsx +96 -0
- package/app/components/nested-accordion/index.jsx +185 -0
- package/app/components/nested-accordion/index.test.js +98 -0
- package/app/components/offline-banner/index.jsx +40 -0
- package/app/components/offline-banner/index.test.js +15 -0
- package/app/components/offline-boundary/index.jsx +104 -0
- package/app/components/offline-boundary/index.test.js +123 -0
- package/app/components/order-summary/index.jsx +331 -0
- package/app/components/page-action-placeholder/index.jsx +50 -0
- package/app/components/pagination/index.jsx +134 -0
- package/app/components/pagination/index.test.js +25 -0
- package/app/components/product-item/index.jsx +146 -0
- package/app/components/product-item/index.test.js +38 -0
- package/app/components/product-scroller/index.jsx +172 -0
- package/app/components/product-scroller/index.test.js +98 -0
- package/app/components/product-tile/index.jsx +195 -0
- package/app/components/product-tile/index.test.js +96 -0
- package/app/components/product-view/index.jsx +538 -0
- package/app/components/product-view/index.test.js +224 -0
- package/app/components/product-view-modal/index.jsx +48 -0
- package/app/components/product-view-modal/index.test.js +72 -0
- package/app/components/promo-code/index.jsx +162 -0
- package/app/components/promo-popover/index.jsx +83 -0
- package/app/components/quantity-picker/index.jsx +58 -0
- package/app/components/radio-card/index.jsx +75 -0
- package/app/components/recommended-products/index.jsx +227 -0
- package/app/components/register/index.jsx +114 -0
- package/app/components/reset-password/index.jsx +87 -0
- package/app/components/responsive/index.jsx +29 -0
- package/app/components/scroll-to-top/index.jsx +24 -0
- package/app/components/scroll-to-top/index.test.js +46 -0
- package/app/components/search/index.jsx +279 -0
- package/app/components/search/index.test.js +127 -0
- package/app/components/search/partials/recent-searches.jsx +76 -0
- package/app/components/search/partials/search-suggestions.jsx +45 -0
- package/app/components/search/partials/suggestions.jsx +43 -0
- package/app/components/section/index.jsx +68 -0
- package/app/components/seo/index.jsx +33 -0
- package/app/components/social-icons/index.jsx +101 -0
- package/app/components/social-icons/index.test.js +30 -0
- package/app/components/swatch-group/index.jsx +77 -0
- package/app/components/swatch-group/index.test.js +136 -0
- package/app/components/swatch-group/swatch.jsx +94 -0
- package/app/components/toggle-card/index.jsx +97 -0
- package/app/components/with-registration/index.jsx +58 -0
- package/app/components/with-registration/index.test.js +85 -0
- package/app/constants.js +109 -0
- package/app/contexts/index.js +92 -0
- package/app/hooks/einstein-mock-data.js +916 -0
- package/app/hooks/index.js +17 -0
- package/app/hooks/use-add-to-cart-modal.js +344 -0
- package/app/hooks/use-add-to-cart-modal.test.js +625 -0
- package/app/hooks/use-auth-modal.js +337 -0
- package/app/hooks/use-auth-modal.test.js +365 -0
- package/app/hooks/use-currency.js +20 -0
- package/app/hooks/use-currency.test.js +41 -0
- package/app/hooks/use-current-basket.js +39 -0
- package/app/hooks/use-current-customer.js +29 -0
- package/app/hooks/use-derived-product.js +77 -0
- package/app/hooks/use-derived-product.test.js +69 -0
- package/app/hooks/use-einstein.js +512 -0
- package/app/hooks/use-einstein.test.js +224 -0
- package/app/hooks/use-intersection-observer.js +64 -0
- package/app/hooks/use-limit-urls.js +31 -0
- package/app/hooks/use-limit-urls.test.js +40 -0
- package/app/hooks/use-multi-site.js +36 -0
- package/app/hooks/use-multi-site.test.js +53 -0
- package/app/hooks/use-navigation.js +37 -0
- package/app/hooks/use-navigation.test.js +109 -0
- package/app/hooks/use-page-urls.js +35 -0
- package/app/hooks/use-page-urls.test.js +39 -0
- package/app/hooks/use-pdp-search-params.js +16 -0
- package/app/hooks/use-pdp-search-params.test.js +52 -0
- package/app/hooks/use-previous.js +17 -0
- package/app/hooks/use-product-view-modal.js +93 -0
- package/app/hooks/use-product-view-modal.test.js +172 -0
- package/app/hooks/use-search-params.js +96 -0
- package/app/hooks/use-search-params.test.js +91 -0
- package/app/hooks/use-sort-urls.js +33 -0
- package/app/hooks/use-sort-urls.test.js +42 -0
- package/app/hooks/use-toast.js +68 -0
- package/app/hooks/use-toast.test.js +58 -0
- package/app/hooks/use-variant.js +32 -0
- package/app/hooks/use-variant.test.js +81 -0
- package/app/hooks/use-variation-attributes.js +138 -0
- package/app/hooks/use-variation-attributes.test.js +119 -0
- package/app/hooks/use-variation-params.js +31 -0
- package/app/hooks/use-variation-params.test.js +73 -0
- package/app/hooks/use-wish-list.js +42 -0
- package/app/main.jsx +14 -0
- package/app/mocks/basket-with-suit.js +146 -0
- package/app/mocks/empty-basket.js +39 -0
- package/app/mocks/mock-data.js +5632 -0
- package/app/mocks/product-set-winter-lookM.js +1224 -0
- package/app/mocks/searchResults.js +144 -0
- package/app/mocks/variant-750518699578M.js +434 -0
- package/app/page-designer/README.md +102 -0
- package/app/page-designer/assets/image-tile/index.jsx +51 -0
- package/app/page-designer/assets/image-tile/index.test.js +30 -0
- package/app/page-designer/assets/image-with-text/index.jsx +140 -0
- package/app/page-designer/assets/image-with-text/index.test.js +38 -0
- package/app/page-designer/assets/index.js +9 -0
- package/app/page-designer/index.js +10 -0
- package/app/page-designer/layouts/carousel/index.jsx +222 -0
- package/app/page-designer/layouts/carousel/index.test.js +43 -0
- package/app/page-designer/layouts/index.js +14 -0
- package/app/page-designer/layouts/mobileGrid1r1c/index.jsx +36 -0
- package/app/page-designer/layouts/mobileGrid1r1c/index.test.js +35 -0
- package/app/page-designer/layouts/mobileGrid2r1c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r1c/index.test.js +47 -0
- package/app/page-designer/layouts/mobileGrid2r2c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r2c/index.test.js +71 -0
- package/app/page-designer/layouts/mobileGrid2r3c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid2r3c/index.test.js +95 -0
- package/app/page-designer/layouts/mobileGrid3r1c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid3r1c/index.test.js +59 -0
- package/app/page-designer/layouts/mobileGrid3r2c/index.jsx +37 -0
- package/app/page-designer/layouts/mobileGrid3r2c/index.test.js +95 -0
- package/app/page-designer/utils.js +14 -0
- package/app/pages/account/addresses.jsx +382 -0
- package/app/pages/account/addresses.test.js +120 -0
- package/app/pages/account/constant.js +57 -0
- package/app/pages/account/index.jsx +237 -0
- package/app/pages/account/index.test.js +188 -0
- package/app/pages/account/order-detail.jsx +397 -0
- package/app/pages/account/order-history.jsx +264 -0
- package/app/pages/account/orders.jsx +30 -0
- package/app/pages/account/orders.test.js +95 -0
- package/app/pages/account/profile.jsx +357 -0
- package/app/pages/account/wishlist/index.jsx +195 -0
- package/app/pages/account/wishlist/index.mock.js +1481 -0
- package/app/pages/account/wishlist/index.test.js +56 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.jsx +170 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.mock.js +1623 -0
- package/app/pages/account/wishlist/partials/wishlist-primary-action.test.js +99 -0
- package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.jsx +120 -0
- package/app/pages/account/wishlist/partials/wishlist-secondary-button-group.test.js +391 -0
- package/app/pages/cart/index.jsx +476 -0
- package/app/pages/cart/index.test.js +481 -0
- package/app/pages/cart/partials/cart-cta.jsx +46 -0
- package/app/pages/cart/partials/cart-secondary-button-group.jsx +135 -0
- package/app/pages/cart/partials/cart-secondary-button-group.test.js +103 -0
- package/app/pages/cart/partials/cart-skeleton.jsx +93 -0
- package/app/pages/cart/partials/cart-title.jsx +27 -0
- package/app/pages/cart/partials/empty-cart.jsx +86 -0
- package/app/pages/checkout/confirmation.jsx +541 -0
- package/app/pages/checkout/confirmation.mock.js +450 -0
- package/app/pages/checkout/confirmation.test.js +114 -0
- package/app/pages/checkout/index.jsx +169 -0
- package/app/pages/checkout/index.test.js +582 -0
- package/app/pages/checkout/partials/cc-radio-group.jsx +122 -0
- package/app/pages/checkout/partials/checkout-footer.jsx +140 -0
- package/app/pages/checkout/partials/checkout-footer.test.js +16 -0
- package/app/pages/checkout/partials/checkout-header.jsx +54 -0
- package/app/pages/checkout/partials/checkout-header.test.js +16 -0
- package/app/pages/checkout/partials/checkout-skeleton.jsx +52 -0
- package/app/pages/checkout/partials/contact-info.jsx +251 -0
- package/app/pages/checkout/partials/contact-info.test.js +43 -0
- package/app/pages/checkout/partials/payment-form.jsx +97 -0
- package/app/pages/checkout/partials/payment.jsx +276 -0
- package/app/pages/checkout/partials/shipping-address-selection.jsx +377 -0
- package/app/pages/checkout/partials/shipping-address.jsx +132 -0
- package/app/pages/checkout/partials/shipping-options.jsx +232 -0
- package/app/pages/checkout/util/checkout-context.js +94 -0
- package/app/pages/home/data.js +134 -0
- package/app/pages/home/index.jsx +301 -0
- package/app/pages/home/index.test.js +23 -0
- package/app/pages/login/index.jsx +123 -0
- package/app/pages/login/index.test.js +229 -0
- package/app/pages/login-redirect/index.jsx +23 -0
- package/app/pages/login-redirect/index.test.js +16 -0
- package/app/pages/page-not-found/index.jsx +90 -0
- package/app/pages/page-not-found/index.test.js +31 -0
- package/app/pages/product-detail/index.jsx +394 -0
- package/app/pages/product-detail/index.mock.js +197 -0
- package/app/pages/product-detail/index.test.js +162 -0
- package/app/pages/product-detail/partials/information-accordion.jsx +121 -0
- package/app/pages/product-list/index.jsx +735 -0
- package/app/pages/product-list/index.test.js +180 -0
- package/app/pages/product-list/partials/above-page-header.jsx +10 -0
- package/app/pages/product-list/partials/checkbox-refinements.jsx +41 -0
- package/app/pages/product-list/partials/checkbox-refinements.test.js +53 -0
- package/app/pages/product-list/partials/color-refinements.jsx +88 -0
- package/app/pages/product-list/partials/empty-results.jsx +118 -0
- package/app/pages/product-list/partials/link-refinements.jsx +38 -0
- package/app/pages/product-list/partials/page-header.jsx +42 -0
- package/app/pages/product-list/partials/radio-refinements.jsx +60 -0
- package/app/pages/product-list/partials/refinements.jsx +144 -0
- package/app/pages/product-list/partials/selected-refinements.jsx +100 -0
- package/app/pages/product-list/partials/size-refinements.jsx +55 -0
- package/app/pages/registration/index.jsx +87 -0
- package/app/pages/registration/index.test.jsx +132 -0
- package/app/pages/reset-password/index.jsx +112 -0
- package/app/pages/reset-password/index.test.jsx +141 -0
- package/app/request-processor.js +118 -0
- package/app/request-processor.test.js +23 -0
- package/app/routes.jsx +111 -0
- package/app/routes.test.js +13 -0
- package/app/ssr.js +70 -0
- package/app/static/ico/favicon.ico +0 -0
- package/app/static/img/global/app-icon-192.png +0 -0
- package/app/static/img/global/app-icon-512.png +0 -0
- package/app/static/img/global/apple-touch-icon.png +0 -0
- package/app/static/img/hero.png +0 -0
- package/app/static/manifest.json +19 -0
- package/app/static/robots.txt +2 -0
- package/app/theme/components/base/accordion.js +21 -0
- package/app/theme/components/base/alert.js +17 -0
- package/app/theme/components/base/badge.js +25 -0
- package/app/theme/components/base/button.js +77 -0
- package/app/theme/components/base/checkbox.js +30 -0
- package/app/theme/components/base/container.js +17 -0
- package/app/theme/components/base/drawer.js +26 -0
- package/app/theme/components/base/formLabel.js +13 -0
- package/app/theme/components/base/icon.js +13 -0
- package/app/theme/components/base/input.js +44 -0
- package/app/theme/components/base/modal.js +11 -0
- package/app/theme/components/base/popover.js +61 -0
- package/app/theme/components/base/radio.js +33 -0
- package/app/theme/components/base/select.js +15 -0
- package/app/theme/components/base/skeleton.js +12 -0
- package/app/theme/components/base/tooltip.js +19 -0
- package/app/theme/components/project/_app.js +25 -0
- package/app/theme/components/project/breadcrumb.js +25 -0
- package/app/theme/components/project/checkout-footer.js +35 -0
- package/app/theme/components/project/drawer-menu.js +66 -0
- package/app/theme/components/project/footer.js +84 -0
- package/app/theme/components/project/header.js +84 -0
- package/app/theme/components/project/image-gallery.js +59 -0
- package/app/theme/components/project/links-list.js +43 -0
- package/app/theme/components/project/list-menu.js +91 -0
- package/app/theme/components/project/locale-selector.js +42 -0
- package/app/theme/components/project/nested-accordion.js +26 -0
- package/app/theme/components/project/offline-banner.js +25 -0
- package/app/theme/components/project/pagination.js +22 -0
- package/app/theme/components/project/product-tile.js +32 -0
- package/app/theme/components/project/social-icons.js +52 -0
- package/app/theme/components/project/swatch-group.js +115 -0
- package/app/theme/foundations/colors.js +170 -0
- package/app/theme/foundations/gradients.js +9 -0
- package/app/theme/foundations/layerStyles.js +41 -0
- package/app/theme/foundations/shadows.js +9 -0
- package/app/theme/foundations/sizes.js +18 -0
- package/app/theme/foundations/space.js +9 -0
- package/app/theme/foundations/styles.js +21 -0
- package/app/theme/index.js +104 -0
- package/app/utils/cc-utils.js +112 -0
- package/app/utils/cc-utils.test.js +41 -0
- package/app/utils/image-groups-utils.js +62 -0
- package/app/utils/image-groups-utils.test.js +65 -0
- package/app/utils/locale.js +78 -0
- package/app/utils/locale.test.js +112 -0
- package/app/utils/password-utils.js +21 -0
- package/app/utils/phone-utils.js +22 -0
- package/app/utils/phone-utils.test.js +15 -0
- package/app/utils/product-utils.js +35 -0
- package/app/utils/product-utils.test.js +51 -0
- package/app/utils/responsive-image.js +198 -0
- package/app/utils/responsive-image.test.js +170 -0
- package/app/utils/routes-utils.js +111 -0
- package/app/utils/routes-utils.test.js +291 -0
- package/app/utils/site-utils.js +222 -0
- package/app/utils/site-utils.test.js +376 -0
- package/app/utils/test-utils.js +257 -0
- package/app/utils/url.js +291 -0
- package/app/utils/url.test.js +421 -0
- package/app/utils/utils.js +201 -0
- package/app/utils/utils.test.js +182 -0
- package/babel.config.js +7 -0
- package/cache-hash-config.json +8 -0
- package/config/default.js +64 -0
- package/config/mocks/default.js +131 -0
- package/config/sites.js +78 -0
- package/jest-setup.js +191 -0
- package/jest.config.js +50 -0
- package/jsconfig.json +13 -0
- package/package.json +105 -0
- package/scripts/extract-default-messages.js +92 -0
- package/tests/lighthouserc.js +37 -0
- package/translations/README.md +127 -0
- package/translations/compiled/de-DE.json +3212 -0
- package/translations/compiled/en-GB.json +3212 -0
- package/translations/compiled/en-US.json +3212 -0
- package/translations/compiled/en-XA.json +6948 -0
- package/translations/compiled/es-MX.json +3216 -0
- package/translations/compiled/fr-FR.json +3216 -0
- package/translations/compiled/it-IT.json +3188 -0
- package/translations/compiled/ja-JP.json +3200 -0
- package/translations/compiled/ko-KR.json +3180 -0
- package/translations/compiled/pt-BR.json +3220 -0
- package/translations/compiled/zh-CN.json +3212 -0
- package/translations/compiled/zh-TW.json +3208 -0
- package/translations/de-DE.json +1417 -0
- package/translations/en-GB.json +1417 -0
- package/translations/en-US.json +1417 -0
- package/translations/es-MX.json +1417 -0
- package/translations/fr-FR.json +1417 -0
- package/translations/it-IT.json +1417 -0
- package/translations/ja-JP.json +1417 -0
- package/translations/ko-KR.json +1417 -0
- package/translations/pt-BR.json +1417 -0
- package/translations/zh-CN.json +1417 -0
- package/translations/zh-TW.json +1417 -0
- package/worker/main.js +36 -0
|
@@ -0,0 +1,3212 @@
|
|
|
1
|
+
{
|
|
2
|
+
"account.accordion.button.my_account": [
|
|
3
|
+
{
|
|
4
|
+
"type": 0,
|
|
5
|
+
"value": "Mein Konto"
|
|
6
|
+
}
|
|
7
|
+
],
|
|
8
|
+
"account.heading.my_account": [
|
|
9
|
+
{
|
|
10
|
+
"type": 0,
|
|
11
|
+
"value": "Mein Konto"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"account.logout_button.button.log_out": [
|
|
15
|
+
{
|
|
16
|
+
"type": 0,
|
|
17
|
+
"value": "Ausloggen"
|
|
18
|
+
}
|
|
19
|
+
],
|
|
20
|
+
"account_addresses.badge.default": [
|
|
21
|
+
{
|
|
22
|
+
"type": 0,
|
|
23
|
+
"value": "Standard"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"account_addresses.button.add_address": [
|
|
27
|
+
{
|
|
28
|
+
"type": 0,
|
|
29
|
+
"value": "Adresse hinzufügen"
|
|
30
|
+
}
|
|
31
|
+
],
|
|
32
|
+
"account_addresses.info.address_updated": [
|
|
33
|
+
{
|
|
34
|
+
"type": 0,
|
|
35
|
+
"value": "Adresse aktualisiert"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"account_addresses.info.new_address_saved": [
|
|
39
|
+
{
|
|
40
|
+
"type": 0,
|
|
41
|
+
"value": "Neue Adresse gespeichert"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"account_addresses.page_action_placeholder.button.add_address": [
|
|
45
|
+
{
|
|
46
|
+
"type": 0,
|
|
47
|
+
"value": "Adresse hinzufügen"
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"account_addresses.page_action_placeholder.heading.no_saved_addresses": [
|
|
51
|
+
{
|
|
52
|
+
"type": 0,
|
|
53
|
+
"value": "Keine gespeicherten Adressen"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"account_addresses.page_action_placeholder.message.add_new_address": [
|
|
57
|
+
{
|
|
58
|
+
"type": 0,
|
|
59
|
+
"value": "Fügen Sie für eine schnellere Kaufabwicklung eine neue Adressmethode hinzu."
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"account_addresses.title.addresses": [
|
|
63
|
+
{
|
|
64
|
+
"type": 0,
|
|
65
|
+
"value": "Adressen"
|
|
66
|
+
}
|
|
67
|
+
],
|
|
68
|
+
"account_detail.title.account_details": [
|
|
69
|
+
{
|
|
70
|
+
"type": 0,
|
|
71
|
+
"value": "Kontodetails"
|
|
72
|
+
}
|
|
73
|
+
],
|
|
74
|
+
"account_order_detail.heading.billing_address": [
|
|
75
|
+
{
|
|
76
|
+
"type": 0,
|
|
77
|
+
"value": "Rechnungsadresse"
|
|
78
|
+
}
|
|
79
|
+
],
|
|
80
|
+
"account_order_detail.heading.num_of_items": [
|
|
81
|
+
{
|
|
82
|
+
"type": 1,
|
|
83
|
+
"value": "count"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"type": 0,
|
|
87
|
+
"value": " Artikel"
|
|
88
|
+
}
|
|
89
|
+
],
|
|
90
|
+
"account_order_detail.heading.payment_method": [
|
|
91
|
+
{
|
|
92
|
+
"type": 0,
|
|
93
|
+
"value": "Zahlungsmethode"
|
|
94
|
+
}
|
|
95
|
+
],
|
|
96
|
+
"account_order_detail.heading.shipping_address": [
|
|
97
|
+
{
|
|
98
|
+
"type": 0,
|
|
99
|
+
"value": "Lieferadresse"
|
|
100
|
+
}
|
|
101
|
+
],
|
|
102
|
+
"account_order_detail.heading.shipping_method": [
|
|
103
|
+
{
|
|
104
|
+
"type": 0,
|
|
105
|
+
"value": "Versandmethode"
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"account_order_detail.label.order_number": [
|
|
109
|
+
{
|
|
110
|
+
"type": 0,
|
|
111
|
+
"value": "Bestellungsnummer: "
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"type": 1,
|
|
115
|
+
"value": "orderNumber"
|
|
116
|
+
}
|
|
117
|
+
],
|
|
118
|
+
"account_order_detail.label.ordered_date": [
|
|
119
|
+
{
|
|
120
|
+
"type": 0,
|
|
121
|
+
"value": "Bestellt: "
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"type": 1,
|
|
125
|
+
"value": "date"
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"account_order_detail.label.pending_tracking_number": [
|
|
129
|
+
{
|
|
130
|
+
"type": 0,
|
|
131
|
+
"value": "Ausstehend"
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
"account_order_detail.label.tracking_number": [
|
|
135
|
+
{
|
|
136
|
+
"type": 0,
|
|
137
|
+
"value": "Sendungsverfolgungsnummer"
|
|
138
|
+
}
|
|
139
|
+
],
|
|
140
|
+
"account_order_detail.link.back_to_history": [
|
|
141
|
+
{
|
|
142
|
+
"type": 0,
|
|
143
|
+
"value": "Zurück zum Bestellverlauf"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"account_order_detail.title.order_details": [
|
|
147
|
+
{
|
|
148
|
+
"type": 0,
|
|
149
|
+
"value": "Bestellungsdetails"
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"account_order_history.button.continue_shopping": [
|
|
153
|
+
{
|
|
154
|
+
"type": 0,
|
|
155
|
+
"value": "Weiter einkaufen"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"account_order_history.description.once_you_place_order": [
|
|
159
|
+
{
|
|
160
|
+
"type": 0,
|
|
161
|
+
"value": "Sobald Sie eine Bestellung aufgegeben haben, werden die Einzelheiten hier angezeigt."
|
|
162
|
+
}
|
|
163
|
+
],
|
|
164
|
+
"account_order_history.heading.no_order_yet": [
|
|
165
|
+
{
|
|
166
|
+
"type": 0,
|
|
167
|
+
"value": "Sie haben noch keine Bestellung aufgegeben."
|
|
168
|
+
}
|
|
169
|
+
],
|
|
170
|
+
"account_order_history.label.num_of_items": [
|
|
171
|
+
{
|
|
172
|
+
"type": 1,
|
|
173
|
+
"value": "count"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"type": 0,
|
|
177
|
+
"value": " Artikel"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"account_order_history.label.order_number": [
|
|
181
|
+
{
|
|
182
|
+
"type": 0,
|
|
183
|
+
"value": "Bestellungsnummer: "
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"type": 1,
|
|
187
|
+
"value": "orderNumber"
|
|
188
|
+
}
|
|
189
|
+
],
|
|
190
|
+
"account_order_history.label.ordered_date": [
|
|
191
|
+
{
|
|
192
|
+
"type": 0,
|
|
193
|
+
"value": "Bestellt: "
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"type": 1,
|
|
197
|
+
"value": "date"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"account_order_history.label.shipped_to": [
|
|
201
|
+
{
|
|
202
|
+
"type": 0,
|
|
203
|
+
"value": "Versand an: "
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"type": 1,
|
|
207
|
+
"value": "name"
|
|
208
|
+
}
|
|
209
|
+
],
|
|
210
|
+
"account_order_history.link.view_details": [
|
|
211
|
+
{
|
|
212
|
+
"type": 0,
|
|
213
|
+
"value": "Details anzeigen"
|
|
214
|
+
}
|
|
215
|
+
],
|
|
216
|
+
"account_order_history.title.order_history": [
|
|
217
|
+
{
|
|
218
|
+
"type": 0,
|
|
219
|
+
"value": "Bestellverlauf"
|
|
220
|
+
}
|
|
221
|
+
],
|
|
222
|
+
"account_payment_methods.button.add_method": [
|
|
223
|
+
{
|
|
224
|
+
"type": 0,
|
|
225
|
+
"value": "Zahlungsmethode hinzufügen"
|
|
226
|
+
}
|
|
227
|
+
],
|
|
228
|
+
"account_payment_methods.description.add_method_for_faster_checkout": [
|
|
229
|
+
{
|
|
230
|
+
"type": 0,
|
|
231
|
+
"value": "Fügen Sie für eine schnellere Kaufabwicklung eine neue Zahlungsmethode hinzu."
|
|
232
|
+
}
|
|
233
|
+
],
|
|
234
|
+
"account_payment_methods.heading.no_saved_methods": [
|
|
235
|
+
{
|
|
236
|
+
"type": 0,
|
|
237
|
+
"value": "Keine gespeicherten Zahlungsmethoden"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"account_payment_methods.info.new_method_saved": [
|
|
241
|
+
{
|
|
242
|
+
"type": 0,
|
|
243
|
+
"value": "Neue Zahlungsmethode gespeichert"
|
|
244
|
+
}
|
|
245
|
+
],
|
|
246
|
+
"account_payment_methods.title.payment_methods": [
|
|
247
|
+
{
|
|
248
|
+
"type": 0,
|
|
249
|
+
"value": "Zahlungsmethoden"
|
|
250
|
+
}
|
|
251
|
+
],
|
|
252
|
+
"account_wishlist.button.continue_shopping": [
|
|
253
|
+
{
|
|
254
|
+
"type": 0,
|
|
255
|
+
"value": "Weiter einkaufen"
|
|
256
|
+
}
|
|
257
|
+
],
|
|
258
|
+
"account_wishlist.description.continue_shopping": [
|
|
259
|
+
{
|
|
260
|
+
"type": 0,
|
|
261
|
+
"value": "Kaufen Sie weiter ein und fügen Sie Ihrer Wunschliste Artikel hinzu."
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"account_wishlist.heading.no_wishlist": [
|
|
265
|
+
{
|
|
266
|
+
"type": 0,
|
|
267
|
+
"value": "Keine Artikel auf der Wunschliste"
|
|
268
|
+
}
|
|
269
|
+
],
|
|
270
|
+
"account_wishlist.title.wishlist": [
|
|
271
|
+
{
|
|
272
|
+
"type": 0,
|
|
273
|
+
"value": "Wunschliste"
|
|
274
|
+
}
|
|
275
|
+
],
|
|
276
|
+
"action_card.action.edit": [
|
|
277
|
+
{
|
|
278
|
+
"type": 0,
|
|
279
|
+
"value": "Bearbeiten"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"action_card.action.remove": [
|
|
283
|
+
{
|
|
284
|
+
"type": 0,
|
|
285
|
+
"value": "Entfernen"
|
|
286
|
+
}
|
|
287
|
+
],
|
|
288
|
+
"add_to_cart_modal.info.added_to_cart": [
|
|
289
|
+
{
|
|
290
|
+
"type": 1,
|
|
291
|
+
"value": "quantity"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"type": 0,
|
|
295
|
+
"value": " "
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"offset": 0,
|
|
299
|
+
"options": {
|
|
300
|
+
"one": {
|
|
301
|
+
"value": [
|
|
302
|
+
{
|
|
303
|
+
"type": 0,
|
|
304
|
+
"value": "Artikel"
|
|
305
|
+
}
|
|
306
|
+
]
|
|
307
|
+
},
|
|
308
|
+
"other": {
|
|
309
|
+
"value": [
|
|
310
|
+
{
|
|
311
|
+
"type": 0,
|
|
312
|
+
"value": "Artikel"
|
|
313
|
+
}
|
|
314
|
+
]
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
"pluralType": "cardinal",
|
|
318
|
+
"type": 6,
|
|
319
|
+
"value": "quantity"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"type": 0,
|
|
323
|
+
"value": " zum Warenkorb hinzugefügt"
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"add_to_cart_modal.label.cart_subtotal": [
|
|
327
|
+
{
|
|
328
|
+
"type": 0,
|
|
329
|
+
"value": "Zwischensumme des Warenkorbs ("
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"type": 1,
|
|
333
|
+
"value": "itemAccumulatedCount"
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"type": 0,
|
|
337
|
+
"value": " Artikel)"
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
"add_to_cart_modal.label.quantity": [
|
|
341
|
+
{
|
|
342
|
+
"type": 0,
|
|
343
|
+
"value": "Menge"
|
|
344
|
+
}
|
|
345
|
+
],
|
|
346
|
+
"add_to_cart_modal.link.checkout": [
|
|
347
|
+
{
|
|
348
|
+
"type": 0,
|
|
349
|
+
"value": "Weiter zum Checkout"
|
|
350
|
+
}
|
|
351
|
+
],
|
|
352
|
+
"add_to_cart_modal.link.view_cart": [
|
|
353
|
+
{
|
|
354
|
+
"type": 0,
|
|
355
|
+
"value": "Warenkorb anzeigen"
|
|
356
|
+
}
|
|
357
|
+
],
|
|
358
|
+
"add_to_cart_modal.recommended_products.title.might_also_like": [
|
|
359
|
+
{
|
|
360
|
+
"type": 0,
|
|
361
|
+
"value": "Das könnte Ihnen auch gefallen"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"auth_modal.description.now_signed_in": [
|
|
365
|
+
{
|
|
366
|
+
"type": 0,
|
|
367
|
+
"value": "Sie sind jetzt angemeldet."
|
|
368
|
+
}
|
|
369
|
+
],
|
|
370
|
+
"auth_modal.error.incorrect_email_or_password": [
|
|
371
|
+
{
|
|
372
|
+
"type": 0,
|
|
373
|
+
"value": "Irgendetwas stimmt mit Ihrer E-Mail-Adresse oder Ihrem Passwort nicht. Bitte versuchen Sie es erneut."
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"auth_modal.info.welcome_user": [
|
|
377
|
+
{
|
|
378
|
+
"type": 0,
|
|
379
|
+
"value": "Willkommen "
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"type": 1,
|
|
383
|
+
"value": "name"
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"type": 0,
|
|
387
|
+
"value": ","
|
|
388
|
+
}
|
|
389
|
+
],
|
|
390
|
+
"auth_modal.password_reset_success.button.back_to_sign_in": [
|
|
391
|
+
{
|
|
392
|
+
"type": 0,
|
|
393
|
+
"value": "Zurück zur Anmeldung"
|
|
394
|
+
}
|
|
395
|
+
],
|
|
396
|
+
"auth_modal.password_reset_success.info.will_email_shortly": [
|
|
397
|
+
{
|
|
398
|
+
"type": 0,
|
|
399
|
+
"value": "Sie erhalten in Kürze eine E-Mail an "
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"children": [
|
|
403
|
+
{
|
|
404
|
+
"type": 1,
|
|
405
|
+
"value": "email"
|
|
406
|
+
}
|
|
407
|
+
],
|
|
408
|
+
"type": 8,
|
|
409
|
+
"value": "b"
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"type": 0,
|
|
413
|
+
"value": " mit einem Link zum Zurücksetzen Ihres Passworts."
|
|
414
|
+
}
|
|
415
|
+
],
|
|
416
|
+
"auth_modal.password_reset_success.title.password_reset": [
|
|
417
|
+
{
|
|
418
|
+
"type": 0,
|
|
419
|
+
"value": "Zurücksetzen des Passworts"
|
|
420
|
+
}
|
|
421
|
+
],
|
|
422
|
+
"card_payment_form.heading.new_payment_method": [
|
|
423
|
+
{
|
|
424
|
+
"type": 0,
|
|
425
|
+
"value": "Neue Zahlungsmethode hinzufügen"
|
|
426
|
+
}
|
|
427
|
+
],
|
|
428
|
+
"cart.info.removed_from_cart": [
|
|
429
|
+
{
|
|
430
|
+
"type": 0,
|
|
431
|
+
"value": "Artikel aus dem Warenkorb entfernt"
|
|
432
|
+
}
|
|
433
|
+
],
|
|
434
|
+
"cart.recommended_products.title.may_also_like": [
|
|
435
|
+
{
|
|
436
|
+
"type": 0,
|
|
437
|
+
"value": "Das könnte Ihnen auch gefallen"
|
|
438
|
+
}
|
|
439
|
+
],
|
|
440
|
+
"cart.recommended_products.title.recently_viewed": [
|
|
441
|
+
{
|
|
442
|
+
"type": 0,
|
|
443
|
+
"value": "Zuletzt angesehen"
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"cart_cta.link.checkout": [
|
|
447
|
+
{
|
|
448
|
+
"type": 0,
|
|
449
|
+
"value": "Weiter zum Checkout"
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"cart_secondary_button_group.action.added_to_wishlist": [
|
|
453
|
+
{
|
|
454
|
+
"type": 0,
|
|
455
|
+
"value": "Zur Wunschliste hinzufügen"
|
|
456
|
+
}
|
|
457
|
+
],
|
|
458
|
+
"cart_secondary_button_group.action.edit": [
|
|
459
|
+
{
|
|
460
|
+
"type": 0,
|
|
461
|
+
"value": "Bearbeiten"
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
"cart_secondary_button_group.action.remove": [
|
|
465
|
+
{
|
|
466
|
+
"type": 0,
|
|
467
|
+
"value": "Entfernen"
|
|
468
|
+
}
|
|
469
|
+
],
|
|
470
|
+
"cart_secondary_button_group.label.this_is_gift": [
|
|
471
|
+
{
|
|
472
|
+
"type": 0,
|
|
473
|
+
"value": "Dies ist ein Geschenk."
|
|
474
|
+
}
|
|
475
|
+
],
|
|
476
|
+
"cart_secondary_button_group.link_learn_more": [
|
|
477
|
+
{
|
|
478
|
+
"type": 0,
|
|
479
|
+
"value": "Mehr erfahren"
|
|
480
|
+
}
|
|
481
|
+
],
|
|
482
|
+
"cart_skeleton.heading.order_summary": [
|
|
483
|
+
{
|
|
484
|
+
"type": 0,
|
|
485
|
+
"value": "Bestellungsübersicht"
|
|
486
|
+
}
|
|
487
|
+
],
|
|
488
|
+
"cart_skeleton.title.cart": [
|
|
489
|
+
{
|
|
490
|
+
"type": 0,
|
|
491
|
+
"value": "Warenkorb"
|
|
492
|
+
}
|
|
493
|
+
],
|
|
494
|
+
"cart_title.title.cart_num_of_items": [
|
|
495
|
+
{
|
|
496
|
+
"type": 0,
|
|
497
|
+
"value": "Warenkorb ("
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"offset": 0,
|
|
501
|
+
"options": {
|
|
502
|
+
"=0": {
|
|
503
|
+
"value": [
|
|
504
|
+
{
|
|
505
|
+
"type": 0,
|
|
506
|
+
"value": "0 Artikel"
|
|
507
|
+
}
|
|
508
|
+
]
|
|
509
|
+
},
|
|
510
|
+
"one": {
|
|
511
|
+
"value": [
|
|
512
|
+
{
|
|
513
|
+
"type": 7
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"type": 0,
|
|
517
|
+
"value": " Artikel"
|
|
518
|
+
}
|
|
519
|
+
]
|
|
520
|
+
},
|
|
521
|
+
"other": {
|
|
522
|
+
"value": [
|
|
523
|
+
{
|
|
524
|
+
"type": 7
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"type": 0,
|
|
528
|
+
"value": " Artikel"
|
|
529
|
+
}
|
|
530
|
+
]
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
"pluralType": "cardinal",
|
|
534
|
+
"type": 6,
|
|
535
|
+
"value": "itemCount"
|
|
536
|
+
},
|
|
537
|
+
{
|
|
538
|
+
"type": 0,
|
|
539
|
+
"value": ")"
|
|
540
|
+
}
|
|
541
|
+
],
|
|
542
|
+
"cc_radio_group.action.remove": [
|
|
543
|
+
{
|
|
544
|
+
"type": 0,
|
|
545
|
+
"value": "Entfernen"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"cc_radio_group.button.add_new_card": [
|
|
549
|
+
{
|
|
550
|
+
"type": 0,
|
|
551
|
+
"value": "Neue Karte hinzufügen"
|
|
552
|
+
}
|
|
553
|
+
],
|
|
554
|
+
"checkout.button.place_order": [
|
|
555
|
+
{
|
|
556
|
+
"type": 0,
|
|
557
|
+
"value": "Bestellen"
|
|
558
|
+
}
|
|
559
|
+
],
|
|
560
|
+
"checkout.message.generic_error": [
|
|
561
|
+
{
|
|
562
|
+
"type": 0,
|
|
563
|
+
"value": "Es ist ein unerwarteter Fehler beim Checkout aufgetreten."
|
|
564
|
+
}
|
|
565
|
+
],
|
|
566
|
+
"checkout_confirmation.button.create_account": [
|
|
567
|
+
{
|
|
568
|
+
"type": 0,
|
|
569
|
+
"value": "Konto erstellen"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"checkout_confirmation.heading.billing_address": [
|
|
573
|
+
{
|
|
574
|
+
"type": 0,
|
|
575
|
+
"value": "Rechnungsadresse"
|
|
576
|
+
}
|
|
577
|
+
],
|
|
578
|
+
"checkout_confirmation.heading.create_account": [
|
|
579
|
+
{
|
|
580
|
+
"type": 0,
|
|
581
|
+
"value": "Für schnellere Kaufabwicklung ein Konto erstellen"
|
|
582
|
+
}
|
|
583
|
+
],
|
|
584
|
+
"checkout_confirmation.heading.credit_card": [
|
|
585
|
+
{
|
|
586
|
+
"type": 0,
|
|
587
|
+
"value": "Kreditkarte"
|
|
588
|
+
}
|
|
589
|
+
],
|
|
590
|
+
"checkout_confirmation.heading.delivery_details": [
|
|
591
|
+
{
|
|
592
|
+
"type": 0,
|
|
593
|
+
"value": "Lieferdetails"
|
|
594
|
+
}
|
|
595
|
+
],
|
|
596
|
+
"checkout_confirmation.heading.order_summary": [
|
|
597
|
+
{
|
|
598
|
+
"type": 0,
|
|
599
|
+
"value": "Bestellungsübersicht"
|
|
600
|
+
}
|
|
601
|
+
],
|
|
602
|
+
"checkout_confirmation.heading.payment_details": [
|
|
603
|
+
{
|
|
604
|
+
"type": 0,
|
|
605
|
+
"value": "Zahlungsdetails"
|
|
606
|
+
}
|
|
607
|
+
],
|
|
608
|
+
"checkout_confirmation.heading.shipping_address": [
|
|
609
|
+
{
|
|
610
|
+
"type": 0,
|
|
611
|
+
"value": "Lieferadresse"
|
|
612
|
+
}
|
|
613
|
+
],
|
|
614
|
+
"checkout_confirmation.heading.shipping_method": [
|
|
615
|
+
{
|
|
616
|
+
"type": 0,
|
|
617
|
+
"value": "Versandmethode"
|
|
618
|
+
}
|
|
619
|
+
],
|
|
620
|
+
"checkout_confirmation.heading.thank_you_for_order": [
|
|
621
|
+
{
|
|
622
|
+
"type": 0,
|
|
623
|
+
"value": "Vielen Dank für Ihre Bestellung!"
|
|
624
|
+
}
|
|
625
|
+
],
|
|
626
|
+
"checkout_confirmation.label.free": [
|
|
627
|
+
{
|
|
628
|
+
"type": 0,
|
|
629
|
+
"value": "Gratis"
|
|
630
|
+
}
|
|
631
|
+
],
|
|
632
|
+
"checkout_confirmation.label.order_number": [
|
|
633
|
+
{
|
|
634
|
+
"type": 0,
|
|
635
|
+
"value": "Bestellungsnummer"
|
|
636
|
+
}
|
|
637
|
+
],
|
|
638
|
+
"checkout_confirmation.label.order_total": [
|
|
639
|
+
{
|
|
640
|
+
"type": 0,
|
|
641
|
+
"value": "Gesamtwert"
|
|
642
|
+
}
|
|
643
|
+
],
|
|
644
|
+
"checkout_confirmation.label.promo_applied": [
|
|
645
|
+
{
|
|
646
|
+
"type": 0,
|
|
647
|
+
"value": "Werbeaktion angewendet"
|
|
648
|
+
}
|
|
649
|
+
],
|
|
650
|
+
"checkout_confirmation.label.shipping": [
|
|
651
|
+
{
|
|
652
|
+
"type": 0,
|
|
653
|
+
"value": "Versand"
|
|
654
|
+
}
|
|
655
|
+
],
|
|
656
|
+
"checkout_confirmation.label.subtotal": [
|
|
657
|
+
{
|
|
658
|
+
"type": 0,
|
|
659
|
+
"value": "Zwischensumme"
|
|
660
|
+
}
|
|
661
|
+
],
|
|
662
|
+
"checkout_confirmation.label.tax": [
|
|
663
|
+
{
|
|
664
|
+
"type": 0,
|
|
665
|
+
"value": "Steuern"
|
|
666
|
+
}
|
|
667
|
+
],
|
|
668
|
+
"checkout_confirmation.link.continue_shopping": [
|
|
669
|
+
{
|
|
670
|
+
"type": 0,
|
|
671
|
+
"value": "Weiter einkaufen"
|
|
672
|
+
}
|
|
673
|
+
],
|
|
674
|
+
"checkout_confirmation.link.login": [
|
|
675
|
+
{
|
|
676
|
+
"type": 0,
|
|
677
|
+
"value": "Hier einloggen"
|
|
678
|
+
}
|
|
679
|
+
],
|
|
680
|
+
"checkout_confirmation.message.already_has_account": [
|
|
681
|
+
{
|
|
682
|
+
"type": 0,
|
|
683
|
+
"value": "Diese E-Mail-Adresse ist bereits mit einem Konto verknüpft."
|
|
684
|
+
}
|
|
685
|
+
],
|
|
686
|
+
"checkout_confirmation.message.num_of_items_in_order": [
|
|
687
|
+
{
|
|
688
|
+
"offset": 0,
|
|
689
|
+
"options": {
|
|
690
|
+
"=0": {
|
|
691
|
+
"value": [
|
|
692
|
+
{
|
|
693
|
+
"type": 0,
|
|
694
|
+
"value": "0 Artikel"
|
|
695
|
+
}
|
|
696
|
+
]
|
|
697
|
+
},
|
|
698
|
+
"one": {
|
|
699
|
+
"value": [
|
|
700
|
+
{
|
|
701
|
+
"type": 7
|
|
702
|
+
},
|
|
703
|
+
{
|
|
704
|
+
"type": 0,
|
|
705
|
+
"value": " Artikel"
|
|
706
|
+
}
|
|
707
|
+
]
|
|
708
|
+
},
|
|
709
|
+
"other": {
|
|
710
|
+
"value": [
|
|
711
|
+
{
|
|
712
|
+
"type": 7
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"type": 0,
|
|
716
|
+
"value": " Artikel"
|
|
717
|
+
}
|
|
718
|
+
]
|
|
719
|
+
}
|
|
720
|
+
},
|
|
721
|
+
"pluralType": "cardinal",
|
|
722
|
+
"type": 6,
|
|
723
|
+
"value": "itemCount"
|
|
724
|
+
}
|
|
725
|
+
],
|
|
726
|
+
"checkout_confirmation.message.will_email_shortly": [
|
|
727
|
+
{
|
|
728
|
+
"type": 0,
|
|
729
|
+
"value": "Wir senden in Kürze eine E-Mail mit Ihrer Bestätigungsnummer und Ihrem Beleg an "
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"children": [
|
|
733
|
+
{
|
|
734
|
+
"type": 1,
|
|
735
|
+
"value": "email"
|
|
736
|
+
}
|
|
737
|
+
],
|
|
738
|
+
"type": 8,
|
|
739
|
+
"value": "b"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"type": 0,
|
|
743
|
+
"value": "."
|
|
744
|
+
}
|
|
745
|
+
],
|
|
746
|
+
"checkout_footer.link.privacy_policy": [
|
|
747
|
+
{
|
|
748
|
+
"type": 0,
|
|
749
|
+
"value": "Datenschutzrichtlinie"
|
|
750
|
+
}
|
|
751
|
+
],
|
|
752
|
+
"checkout_footer.link.returns_exchanges": [
|
|
753
|
+
{
|
|
754
|
+
"type": 0,
|
|
755
|
+
"value": "Retouren und Umtausch"
|
|
756
|
+
}
|
|
757
|
+
],
|
|
758
|
+
"checkout_footer.link.shipping": [
|
|
759
|
+
{
|
|
760
|
+
"type": 0,
|
|
761
|
+
"value": "Versand"
|
|
762
|
+
}
|
|
763
|
+
],
|
|
764
|
+
"checkout_footer.link.site_map": [
|
|
765
|
+
{
|
|
766
|
+
"type": 0,
|
|
767
|
+
"value": "Sitemap"
|
|
768
|
+
}
|
|
769
|
+
],
|
|
770
|
+
"checkout_footer.link.terms_conditions": [
|
|
771
|
+
{
|
|
772
|
+
"type": 0,
|
|
773
|
+
"value": "Allgemeine Geschäftsbedingungen"
|
|
774
|
+
}
|
|
775
|
+
],
|
|
776
|
+
"checkout_footer.message.copyright": [
|
|
777
|
+
{
|
|
778
|
+
"type": 0,
|
|
779
|
+
"value": "Salesforce oder dessen Geschäftspartner. Alle Rechte vorbehalten. Dies ist lediglich ein Geschäft zu Demonstrationszwecken. Aufgegebene Bestellungen WERDEN NICHT bearbeitet."
|
|
780
|
+
}
|
|
781
|
+
],
|
|
782
|
+
"checkout_header.link.cart": [
|
|
783
|
+
{
|
|
784
|
+
"type": 0,
|
|
785
|
+
"value": "Zurück zum Warenkorb"
|
|
786
|
+
}
|
|
787
|
+
],
|
|
788
|
+
"checkout_payment.action.remove": [
|
|
789
|
+
{
|
|
790
|
+
"type": 0,
|
|
791
|
+
"value": "Entfernen"
|
|
792
|
+
}
|
|
793
|
+
],
|
|
794
|
+
"checkout_payment.button.review_order": [
|
|
795
|
+
{
|
|
796
|
+
"type": 0,
|
|
797
|
+
"value": "Bestellung überprüfen"
|
|
798
|
+
}
|
|
799
|
+
],
|
|
800
|
+
"checkout_payment.heading.billing_address": [
|
|
801
|
+
{
|
|
802
|
+
"type": 0,
|
|
803
|
+
"value": "Rechnungsadresse"
|
|
804
|
+
}
|
|
805
|
+
],
|
|
806
|
+
"checkout_payment.heading.credit_card": [
|
|
807
|
+
{
|
|
808
|
+
"type": 0,
|
|
809
|
+
"value": "Kreditkarte"
|
|
810
|
+
}
|
|
811
|
+
],
|
|
812
|
+
"checkout_payment.label.same_as_shipping": [
|
|
813
|
+
{
|
|
814
|
+
"type": 0,
|
|
815
|
+
"value": "Entspricht der Lieferadresse"
|
|
816
|
+
}
|
|
817
|
+
],
|
|
818
|
+
"checkout_payment.title.payment": [
|
|
819
|
+
{
|
|
820
|
+
"type": 0,
|
|
821
|
+
"value": "Zahlung"
|
|
822
|
+
}
|
|
823
|
+
],
|
|
824
|
+
"confirmation_modal.default.action.no": [
|
|
825
|
+
{
|
|
826
|
+
"type": 0,
|
|
827
|
+
"value": "Nein"
|
|
828
|
+
}
|
|
829
|
+
],
|
|
830
|
+
"confirmation_modal.default.action.yes": [
|
|
831
|
+
{
|
|
832
|
+
"type": 0,
|
|
833
|
+
"value": "Ja"
|
|
834
|
+
}
|
|
835
|
+
],
|
|
836
|
+
"confirmation_modal.default.message.you_want_to_continue": [
|
|
837
|
+
{
|
|
838
|
+
"type": 0,
|
|
839
|
+
"value": "Möchten Sie wirklich fortfahren?"
|
|
840
|
+
}
|
|
841
|
+
],
|
|
842
|
+
"confirmation_modal.default.title.confirm_action": [
|
|
843
|
+
{
|
|
844
|
+
"type": 0,
|
|
845
|
+
"value": "Aktion bestätigen"
|
|
846
|
+
}
|
|
847
|
+
],
|
|
848
|
+
"confirmation_modal.remove_cart_item.action.no": [
|
|
849
|
+
{
|
|
850
|
+
"type": 0,
|
|
851
|
+
"value": "Nein, Artikel beibehalten"
|
|
852
|
+
}
|
|
853
|
+
],
|
|
854
|
+
"confirmation_modal.remove_cart_item.action.yes": [
|
|
855
|
+
{
|
|
856
|
+
"type": 0,
|
|
857
|
+
"value": "Ja, Artikel entfernen"
|
|
858
|
+
}
|
|
859
|
+
],
|
|
860
|
+
"confirmation_modal.remove_cart_item.message.sure_to_remove": [
|
|
861
|
+
{
|
|
862
|
+
"type": 0,
|
|
863
|
+
"value": "Möchten Sie diesen Artikel wirklich aus Ihrem Warenkorb löschen?"
|
|
864
|
+
}
|
|
865
|
+
],
|
|
866
|
+
"confirmation_modal.remove_cart_item.title.confirm_remove": [
|
|
867
|
+
{
|
|
868
|
+
"type": 0,
|
|
869
|
+
"value": "Entfernung des Artikels bestätigen"
|
|
870
|
+
}
|
|
871
|
+
],
|
|
872
|
+
"confirmation_modal.remove_wishlist_item.action.no": [
|
|
873
|
+
{
|
|
874
|
+
"type": 0,
|
|
875
|
+
"value": "Nein, Artikel beibehalten"
|
|
876
|
+
}
|
|
877
|
+
],
|
|
878
|
+
"confirmation_modal.remove_wishlist_item.action.yes": [
|
|
879
|
+
{
|
|
880
|
+
"type": 0,
|
|
881
|
+
"value": "Ja, Artikel entfernen"
|
|
882
|
+
}
|
|
883
|
+
],
|
|
884
|
+
"confirmation_modal.remove_wishlist_item.message.sure_to_remove": [
|
|
885
|
+
{
|
|
886
|
+
"type": 0,
|
|
887
|
+
"value": "Möchten Sie diesen Artikel wirklich aus Ihrer Wunschliste entfernen?"
|
|
888
|
+
}
|
|
889
|
+
],
|
|
890
|
+
"confirmation_modal.remove_wishlist_item.title.confirm_remove": [
|
|
891
|
+
{
|
|
892
|
+
"type": 0,
|
|
893
|
+
"value": "Entfernung des Artikels bestätigen"
|
|
894
|
+
}
|
|
895
|
+
],
|
|
896
|
+
"contact_info.action.sign_out": [
|
|
897
|
+
{
|
|
898
|
+
"type": 0,
|
|
899
|
+
"value": "Abmelden"
|
|
900
|
+
}
|
|
901
|
+
],
|
|
902
|
+
"contact_info.button.already_have_account": [
|
|
903
|
+
{
|
|
904
|
+
"type": 0,
|
|
905
|
+
"value": "Sie haben bereits ein Konto? Einloggen"
|
|
906
|
+
}
|
|
907
|
+
],
|
|
908
|
+
"contact_info.button.checkout_as_guest": [
|
|
909
|
+
{
|
|
910
|
+
"type": 0,
|
|
911
|
+
"value": "Als Gast bezahlen"
|
|
912
|
+
}
|
|
913
|
+
],
|
|
914
|
+
"contact_info.button.login": [
|
|
915
|
+
{
|
|
916
|
+
"type": 0,
|
|
917
|
+
"value": "Einloggen"
|
|
918
|
+
}
|
|
919
|
+
],
|
|
920
|
+
"contact_info.error.incorrect_username_or_password": [
|
|
921
|
+
{
|
|
922
|
+
"type": 0,
|
|
923
|
+
"value": "Benutzername oder Passwort falsch, bitte erneut versuchen."
|
|
924
|
+
}
|
|
925
|
+
],
|
|
926
|
+
"contact_info.link.forgot_password": [
|
|
927
|
+
{
|
|
928
|
+
"type": 0,
|
|
929
|
+
"value": "Passwort vergessen?"
|
|
930
|
+
}
|
|
931
|
+
],
|
|
932
|
+
"contact_info.title.contact_info": [
|
|
933
|
+
{
|
|
934
|
+
"type": 0,
|
|
935
|
+
"value": "Kontaktinfo"
|
|
936
|
+
}
|
|
937
|
+
],
|
|
938
|
+
"credit_card_fields.tool_tip.security_code": [
|
|
939
|
+
{
|
|
940
|
+
"type": 0,
|
|
941
|
+
"value": "Dieser 3-stellige Code befindet sich auf der Rückseite Ihrer Karte."
|
|
942
|
+
}
|
|
943
|
+
],
|
|
944
|
+
"credit_card_fields.tool_tip.security_code.american_express": [
|
|
945
|
+
{
|
|
946
|
+
"type": 0,
|
|
947
|
+
"value": "Dieser 4-stellige Code befindet sich auf der Vorderseite Ihrer Karte."
|
|
948
|
+
}
|
|
949
|
+
],
|
|
950
|
+
"drawer_menu.button.account_details": [
|
|
951
|
+
{
|
|
952
|
+
"type": 0,
|
|
953
|
+
"value": "Kontodetails"
|
|
954
|
+
}
|
|
955
|
+
],
|
|
956
|
+
"drawer_menu.button.addresses": [
|
|
957
|
+
{
|
|
958
|
+
"type": 0,
|
|
959
|
+
"value": "Adressen"
|
|
960
|
+
}
|
|
961
|
+
],
|
|
962
|
+
"drawer_menu.button.log_out": [
|
|
963
|
+
{
|
|
964
|
+
"type": 0,
|
|
965
|
+
"value": "Ausloggen"
|
|
966
|
+
}
|
|
967
|
+
],
|
|
968
|
+
"drawer_menu.button.my_account": [
|
|
969
|
+
{
|
|
970
|
+
"type": 0,
|
|
971
|
+
"value": "Mein Konto"
|
|
972
|
+
}
|
|
973
|
+
],
|
|
974
|
+
"drawer_menu.button.order_history": [
|
|
975
|
+
{
|
|
976
|
+
"type": 0,
|
|
977
|
+
"value": "Bestellverlauf"
|
|
978
|
+
}
|
|
979
|
+
],
|
|
980
|
+
"drawer_menu.button.payment_methods": [
|
|
981
|
+
{
|
|
982
|
+
"type": 0,
|
|
983
|
+
"value": "Zahlungsmethoden"
|
|
984
|
+
}
|
|
985
|
+
],
|
|
986
|
+
"drawer_menu.link.about_us": [
|
|
987
|
+
{
|
|
988
|
+
"type": 0,
|
|
989
|
+
"value": "Über uns"
|
|
990
|
+
}
|
|
991
|
+
],
|
|
992
|
+
"drawer_menu.link.customer_support": [
|
|
993
|
+
{
|
|
994
|
+
"type": 0,
|
|
995
|
+
"value": "Kundenservice"
|
|
996
|
+
}
|
|
997
|
+
],
|
|
998
|
+
"drawer_menu.link.customer_support.contact_us": [
|
|
999
|
+
{
|
|
1000
|
+
"type": 0,
|
|
1001
|
+
"value": "Kontakt"
|
|
1002
|
+
}
|
|
1003
|
+
],
|
|
1004
|
+
"drawer_menu.link.customer_support.shipping_and_returns": [
|
|
1005
|
+
{
|
|
1006
|
+
"type": 0,
|
|
1007
|
+
"value": "Versand und Retouren"
|
|
1008
|
+
}
|
|
1009
|
+
],
|
|
1010
|
+
"drawer_menu.link.our_company": [
|
|
1011
|
+
{
|
|
1012
|
+
"type": 0,
|
|
1013
|
+
"value": "Unser Unternehmen"
|
|
1014
|
+
}
|
|
1015
|
+
],
|
|
1016
|
+
"drawer_menu.link.privacy_and_security": [
|
|
1017
|
+
{
|
|
1018
|
+
"type": 0,
|
|
1019
|
+
"value": "Datenschutz und Sicherheit"
|
|
1020
|
+
}
|
|
1021
|
+
],
|
|
1022
|
+
"drawer_menu.link.privacy_policy": [
|
|
1023
|
+
{
|
|
1024
|
+
"type": 0,
|
|
1025
|
+
"value": "Datenschutzrichtlinie"
|
|
1026
|
+
}
|
|
1027
|
+
],
|
|
1028
|
+
"drawer_menu.link.shop_all": [
|
|
1029
|
+
{
|
|
1030
|
+
"type": 0,
|
|
1031
|
+
"value": "Alle durchstöbern"
|
|
1032
|
+
}
|
|
1033
|
+
],
|
|
1034
|
+
"drawer_menu.link.sign_in": [
|
|
1035
|
+
{
|
|
1036
|
+
"type": 0,
|
|
1037
|
+
"value": "Anmelden"
|
|
1038
|
+
}
|
|
1039
|
+
],
|
|
1040
|
+
"drawer_menu.link.site_map": [
|
|
1041
|
+
{
|
|
1042
|
+
"type": 0,
|
|
1043
|
+
"value": "Sitemap"
|
|
1044
|
+
}
|
|
1045
|
+
],
|
|
1046
|
+
"drawer_menu.link.store_locator": [
|
|
1047
|
+
{
|
|
1048
|
+
"type": 0,
|
|
1049
|
+
"value": "Shop-Finder"
|
|
1050
|
+
}
|
|
1051
|
+
],
|
|
1052
|
+
"drawer_menu.link.terms_and_conditions": [
|
|
1053
|
+
{
|
|
1054
|
+
"type": 0,
|
|
1055
|
+
"value": "Allgemeine Geschäftsbedingungen"
|
|
1056
|
+
}
|
|
1057
|
+
],
|
|
1058
|
+
"empty_cart.description.empty_cart": [
|
|
1059
|
+
{
|
|
1060
|
+
"type": 0,
|
|
1061
|
+
"value": "Ihr Warenkorb ist leer."
|
|
1062
|
+
}
|
|
1063
|
+
],
|
|
1064
|
+
"empty_cart.link.continue_shopping": [
|
|
1065
|
+
{
|
|
1066
|
+
"type": 0,
|
|
1067
|
+
"value": "Weiter einkaufen"
|
|
1068
|
+
}
|
|
1069
|
+
],
|
|
1070
|
+
"empty_cart.link.sign_in": [
|
|
1071
|
+
{
|
|
1072
|
+
"type": 0,
|
|
1073
|
+
"value": "Anmelden"
|
|
1074
|
+
}
|
|
1075
|
+
],
|
|
1076
|
+
"empty_cart.message.continue_shopping": [
|
|
1077
|
+
{
|
|
1078
|
+
"type": 0,
|
|
1079
|
+
"value": "Setzen Sie Ihren Einkauf fort, um Ihrem Warenkorb Artikel hinzuzufügen."
|
|
1080
|
+
}
|
|
1081
|
+
],
|
|
1082
|
+
"empty_cart.message.sign_in_or_continue_shopping": [
|
|
1083
|
+
{
|
|
1084
|
+
"type": 0,
|
|
1085
|
+
"value": "Melden Sie sich an, um Ihre gespeicherten Artikel abzurufen oder mit dem Einkauf fortzufahren."
|
|
1086
|
+
}
|
|
1087
|
+
],
|
|
1088
|
+
"empty_search_results.info.cant_find_anything_for_category": [
|
|
1089
|
+
{
|
|
1090
|
+
"type": 0,
|
|
1091
|
+
"value": "Wir konnten in der Kategorie \""
|
|
1092
|
+
},
|
|
1093
|
+
{
|
|
1094
|
+
"type": 1,
|
|
1095
|
+
"value": "category"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"type": 0,
|
|
1099
|
+
"value": "\" nichts finden. Suchen Sie nach einem Produkt oder "
|
|
1100
|
+
},
|
|
1101
|
+
{
|
|
1102
|
+
"type": 1,
|
|
1103
|
+
"value": "link"
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
"type": 0,
|
|
1107
|
+
"value": "."
|
|
1108
|
+
}
|
|
1109
|
+
],
|
|
1110
|
+
"empty_search_results.info.cant_find_anything_for_query": [
|
|
1111
|
+
{
|
|
1112
|
+
"type": 0,
|
|
1113
|
+
"value": "Wir konnten für die Anfrage \""
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"type": 1,
|
|
1117
|
+
"value": "searchQuery"
|
|
1118
|
+
},
|
|
1119
|
+
{
|
|
1120
|
+
"type": 0,
|
|
1121
|
+
"value": "\" nichts finden."
|
|
1122
|
+
}
|
|
1123
|
+
],
|
|
1124
|
+
"empty_search_results.info.double_check_spelling": [
|
|
1125
|
+
{
|
|
1126
|
+
"type": 0,
|
|
1127
|
+
"value": "Überprüfen Sie Ihre Schreibweise und versuchen Sie es erneut oder "
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"type": 1,
|
|
1131
|
+
"value": "link"
|
|
1132
|
+
},
|
|
1133
|
+
{
|
|
1134
|
+
"type": 0,
|
|
1135
|
+
"value": "."
|
|
1136
|
+
}
|
|
1137
|
+
],
|
|
1138
|
+
"empty_search_results.link.contact_us": [
|
|
1139
|
+
{
|
|
1140
|
+
"type": 0,
|
|
1141
|
+
"value": "klicken Sie auf \"Kontakt\""
|
|
1142
|
+
}
|
|
1143
|
+
],
|
|
1144
|
+
"empty_search_results.recommended_products.title.most_viewed": [
|
|
1145
|
+
{
|
|
1146
|
+
"type": 0,
|
|
1147
|
+
"value": "Meistgesehen"
|
|
1148
|
+
}
|
|
1149
|
+
],
|
|
1150
|
+
"empty_search_results.recommended_products.title.top_sellers": [
|
|
1151
|
+
{
|
|
1152
|
+
"type": 0,
|
|
1153
|
+
"value": "Verkaufshits"
|
|
1154
|
+
}
|
|
1155
|
+
],
|
|
1156
|
+
"footer.column.account": [
|
|
1157
|
+
{
|
|
1158
|
+
"type": 0,
|
|
1159
|
+
"value": "Konto"
|
|
1160
|
+
}
|
|
1161
|
+
],
|
|
1162
|
+
"footer.column.customer_support": [
|
|
1163
|
+
{
|
|
1164
|
+
"type": 0,
|
|
1165
|
+
"value": "Kundenservice"
|
|
1166
|
+
}
|
|
1167
|
+
],
|
|
1168
|
+
"footer.column.our_company": [
|
|
1169
|
+
{
|
|
1170
|
+
"type": 0,
|
|
1171
|
+
"value": "Unser Unternehmen"
|
|
1172
|
+
}
|
|
1173
|
+
],
|
|
1174
|
+
"footer.link.about_us": [
|
|
1175
|
+
{
|
|
1176
|
+
"type": 0,
|
|
1177
|
+
"value": "Über uns"
|
|
1178
|
+
}
|
|
1179
|
+
],
|
|
1180
|
+
"footer.link.contact_us": [
|
|
1181
|
+
{
|
|
1182
|
+
"type": 0,
|
|
1183
|
+
"value": "Kontakt"
|
|
1184
|
+
}
|
|
1185
|
+
],
|
|
1186
|
+
"footer.link.order_status": [
|
|
1187
|
+
{
|
|
1188
|
+
"type": 0,
|
|
1189
|
+
"value": "Bestellstatus"
|
|
1190
|
+
}
|
|
1191
|
+
],
|
|
1192
|
+
"footer.link.privacy_policy": [
|
|
1193
|
+
{
|
|
1194
|
+
"type": 0,
|
|
1195
|
+
"value": "Datenschutzrichtlinie"
|
|
1196
|
+
}
|
|
1197
|
+
],
|
|
1198
|
+
"footer.link.shipping": [
|
|
1199
|
+
{
|
|
1200
|
+
"type": 0,
|
|
1201
|
+
"value": "Versand"
|
|
1202
|
+
}
|
|
1203
|
+
],
|
|
1204
|
+
"footer.link.signin_create_account": [
|
|
1205
|
+
{
|
|
1206
|
+
"type": 0,
|
|
1207
|
+
"value": "Anmelden oder Konto erstellen"
|
|
1208
|
+
}
|
|
1209
|
+
],
|
|
1210
|
+
"footer.link.site_map": [
|
|
1211
|
+
{
|
|
1212
|
+
"type": 0,
|
|
1213
|
+
"value": "Sitemap"
|
|
1214
|
+
}
|
|
1215
|
+
],
|
|
1216
|
+
"footer.link.store_locator": [
|
|
1217
|
+
{
|
|
1218
|
+
"type": 0,
|
|
1219
|
+
"value": "Shop-Finder"
|
|
1220
|
+
}
|
|
1221
|
+
],
|
|
1222
|
+
"footer.link.terms_conditions": [
|
|
1223
|
+
{
|
|
1224
|
+
"type": 0,
|
|
1225
|
+
"value": "Allgemeine Geschäftsbedingungen"
|
|
1226
|
+
}
|
|
1227
|
+
],
|
|
1228
|
+
"footer.message.copyright": [
|
|
1229
|
+
{
|
|
1230
|
+
"type": 0,
|
|
1231
|
+
"value": "Salesforce oder dessen Geschäftspartner. Alle Rechte vorbehalten. Dies ist lediglich ein Geschäft zu Demonstrationszwecken. Aufgegebene Bestellungen WERDEN NICHT bearbeitet."
|
|
1232
|
+
}
|
|
1233
|
+
],
|
|
1234
|
+
"footer.subscribe.button.sign_up": [
|
|
1235
|
+
{
|
|
1236
|
+
"type": 0,
|
|
1237
|
+
"value": "Registrieren"
|
|
1238
|
+
}
|
|
1239
|
+
],
|
|
1240
|
+
"footer.subscribe.description.sign_up": [
|
|
1241
|
+
{
|
|
1242
|
+
"type": 0,
|
|
1243
|
+
"value": "Melden Sie sich an, um stets die neuesten Angebote zu erhalten"
|
|
1244
|
+
}
|
|
1245
|
+
],
|
|
1246
|
+
"footer.subscribe.heading.first_to_know": [
|
|
1247
|
+
{
|
|
1248
|
+
"type": 0,
|
|
1249
|
+
"value": "Aktuelle Infos für Sie"
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
1252
|
+
"form_action_buttons.button.cancel": [
|
|
1253
|
+
{
|
|
1254
|
+
"type": 0,
|
|
1255
|
+
"value": "Abbrechen"
|
|
1256
|
+
}
|
|
1257
|
+
],
|
|
1258
|
+
"form_action_buttons.button.save": [
|
|
1259
|
+
{
|
|
1260
|
+
"type": 0,
|
|
1261
|
+
"value": "Speichern"
|
|
1262
|
+
}
|
|
1263
|
+
],
|
|
1264
|
+
"global.account.link.account_details": [
|
|
1265
|
+
{
|
|
1266
|
+
"type": 0,
|
|
1267
|
+
"value": "Kontodetails"
|
|
1268
|
+
}
|
|
1269
|
+
],
|
|
1270
|
+
"global.account.link.addresses": [
|
|
1271
|
+
{
|
|
1272
|
+
"type": 0,
|
|
1273
|
+
"value": "Adressen"
|
|
1274
|
+
}
|
|
1275
|
+
],
|
|
1276
|
+
"global.account.link.order_history": [
|
|
1277
|
+
{
|
|
1278
|
+
"type": 0,
|
|
1279
|
+
"value": "Bestellverlauf"
|
|
1280
|
+
}
|
|
1281
|
+
],
|
|
1282
|
+
"global.account.link.payment_methods": [
|
|
1283
|
+
{
|
|
1284
|
+
"type": 0,
|
|
1285
|
+
"value": "Zahlungsmethoden"
|
|
1286
|
+
}
|
|
1287
|
+
],
|
|
1288
|
+
"global.account.link.wishlist": [
|
|
1289
|
+
{
|
|
1290
|
+
"type": 0,
|
|
1291
|
+
"value": "Wunschliste"
|
|
1292
|
+
}
|
|
1293
|
+
],
|
|
1294
|
+
"global.error.something_went_wrong": [
|
|
1295
|
+
{
|
|
1296
|
+
"type": 0,
|
|
1297
|
+
"value": "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut."
|
|
1298
|
+
}
|
|
1299
|
+
],
|
|
1300
|
+
"global.info.added_to_wishlist": [
|
|
1301
|
+
{
|
|
1302
|
+
"type": 1,
|
|
1303
|
+
"value": "quantity"
|
|
1304
|
+
},
|
|
1305
|
+
{
|
|
1306
|
+
"type": 0,
|
|
1307
|
+
"value": " "
|
|
1308
|
+
},
|
|
1309
|
+
{
|
|
1310
|
+
"offset": 0,
|
|
1311
|
+
"options": {
|
|
1312
|
+
"one": {
|
|
1313
|
+
"value": [
|
|
1314
|
+
{
|
|
1315
|
+
"type": 0,
|
|
1316
|
+
"value": "Artikel"
|
|
1317
|
+
}
|
|
1318
|
+
]
|
|
1319
|
+
},
|
|
1320
|
+
"other": {
|
|
1321
|
+
"value": [
|
|
1322
|
+
{
|
|
1323
|
+
"type": 0,
|
|
1324
|
+
"value": "Artikel"
|
|
1325
|
+
}
|
|
1326
|
+
]
|
|
1327
|
+
}
|
|
1328
|
+
},
|
|
1329
|
+
"pluralType": "cardinal",
|
|
1330
|
+
"type": 6,
|
|
1331
|
+
"value": "quantity"
|
|
1332
|
+
},
|
|
1333
|
+
{
|
|
1334
|
+
"type": 0,
|
|
1335
|
+
"value": " zur Wunschliste hinzugefügt"
|
|
1336
|
+
}
|
|
1337
|
+
],
|
|
1338
|
+
"global.info.removed_from_wishlist": [
|
|
1339
|
+
{
|
|
1340
|
+
"type": 0,
|
|
1341
|
+
"value": "Artikel aus der Wunschliste entfernt"
|
|
1342
|
+
}
|
|
1343
|
+
],
|
|
1344
|
+
"global.link.added_to_wishlist.view_wishlist": [
|
|
1345
|
+
{
|
|
1346
|
+
"type": 0,
|
|
1347
|
+
"value": "Anzeigen"
|
|
1348
|
+
}
|
|
1349
|
+
],
|
|
1350
|
+
"header.button.assistive_msg.logo": [
|
|
1351
|
+
{
|
|
1352
|
+
"type": 0,
|
|
1353
|
+
"value": "Logo"
|
|
1354
|
+
}
|
|
1355
|
+
],
|
|
1356
|
+
"header.button.assistive_msg.menu": [
|
|
1357
|
+
{
|
|
1358
|
+
"type": 0,
|
|
1359
|
+
"value": "Menü"
|
|
1360
|
+
}
|
|
1361
|
+
],
|
|
1362
|
+
"header.button.assistive_msg.my_account": [
|
|
1363
|
+
{
|
|
1364
|
+
"type": 0,
|
|
1365
|
+
"value": "Mein Konto"
|
|
1366
|
+
}
|
|
1367
|
+
],
|
|
1368
|
+
"header.button.assistive_msg.my_cart": [
|
|
1369
|
+
{
|
|
1370
|
+
"type": 0,
|
|
1371
|
+
"value": "Mein Warenkorb"
|
|
1372
|
+
}
|
|
1373
|
+
],
|
|
1374
|
+
"header.button.assistive_msg.wishlist": [
|
|
1375
|
+
{
|
|
1376
|
+
"type": 0,
|
|
1377
|
+
"value": "Wunschliste"
|
|
1378
|
+
}
|
|
1379
|
+
],
|
|
1380
|
+
"header.field.placeholder.search_for_products": [
|
|
1381
|
+
{
|
|
1382
|
+
"type": 0,
|
|
1383
|
+
"value": "Nach Produkten suchen …"
|
|
1384
|
+
}
|
|
1385
|
+
],
|
|
1386
|
+
"header.popover.action.log_out": [
|
|
1387
|
+
{
|
|
1388
|
+
"type": 0,
|
|
1389
|
+
"value": "Ausloggen"
|
|
1390
|
+
}
|
|
1391
|
+
],
|
|
1392
|
+
"header.popover.title.my_account": [
|
|
1393
|
+
{
|
|
1394
|
+
"type": 0,
|
|
1395
|
+
"value": "Mein Konto"
|
|
1396
|
+
}
|
|
1397
|
+
],
|
|
1398
|
+
"home.description.features": [
|
|
1399
|
+
{
|
|
1400
|
+
"type": 0,
|
|
1401
|
+
"value": "Vorkonfigurierte Funktionalitäten, damit Sie sich voll und ganz auf das Hinzufügen von Erweiterungen konzentrieren können."
|
|
1402
|
+
}
|
|
1403
|
+
],
|
|
1404
|
+
"home.description.here_to_help": [
|
|
1405
|
+
{
|
|
1406
|
+
"type": 0,
|
|
1407
|
+
"value": "Wenden Sie sich an unser Support-Team."
|
|
1408
|
+
}
|
|
1409
|
+
],
|
|
1410
|
+
"home.description.here_to_help_line_2": [
|
|
1411
|
+
{
|
|
1412
|
+
"type": 0,
|
|
1413
|
+
"value": "Sie werden Sie an die richtige Stelle weiterleiten."
|
|
1414
|
+
}
|
|
1415
|
+
],
|
|
1416
|
+
"home.description.shop_products": [
|
|
1417
|
+
{
|
|
1418
|
+
"type": 0,
|
|
1419
|
+
"value": "Dieser Abschnitt enthält Content vom Katalog. Hier erfahren Sie, wie dieser ersetzt werden kann: "
|
|
1420
|
+
},
|
|
1421
|
+
{
|
|
1422
|
+
"type": 1,
|
|
1423
|
+
"value": "docLink"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"type": 0,
|
|
1427
|
+
"value": "."
|
|
1428
|
+
}
|
|
1429
|
+
],
|
|
1430
|
+
"home.features.description.cart_checkout": [
|
|
1431
|
+
{
|
|
1432
|
+
"type": 0,
|
|
1433
|
+
"value": "E-Commerce Best Practice für den Warenkorb eines Käufers und das Checkout-Erlebnis."
|
|
1434
|
+
}
|
|
1435
|
+
],
|
|
1436
|
+
"home.features.description.components": [
|
|
1437
|
+
{
|
|
1438
|
+
"type": 0,
|
|
1439
|
+
"value": "Eine unter Verwendung der Chakra UI entwickelte, einfache, modulare und zugängliche React Komponentenbibliothek."
|
|
1440
|
+
}
|
|
1441
|
+
],
|
|
1442
|
+
"home.features.description.einstein_recommendations": [
|
|
1443
|
+
{
|
|
1444
|
+
"type": 0,
|
|
1445
|
+
"value": "Liefern Sie das nächstbeste Produkt oder bieten Sie es allen Käufern über Produktempfehlungen an."
|
|
1446
|
+
}
|
|
1447
|
+
],
|
|
1448
|
+
"home.features.description.my_account": [
|
|
1449
|
+
{
|
|
1450
|
+
"type": 0,
|
|
1451
|
+
"value": "Käufer können Kontoinformationen wie ihr Profil, Adressen, Zahlungen und Bestellungen verwalten."
|
|
1452
|
+
}
|
|
1453
|
+
],
|
|
1454
|
+
"home.features.description.shopper_login": [
|
|
1455
|
+
{
|
|
1456
|
+
"type": 0,
|
|
1457
|
+
"value": "Ermöglichen Sie es Käufern, sich mit einem personalisierten Kauferlebnis einzuloggen."
|
|
1458
|
+
}
|
|
1459
|
+
],
|
|
1460
|
+
"home.features.description.wishlist": [
|
|
1461
|
+
{
|
|
1462
|
+
"type": 0,
|
|
1463
|
+
"value": "Registrierte Käufer können Produktartikel zu ihrer Wunschliste hinzufügen, um diese später zu kaufen."
|
|
1464
|
+
}
|
|
1465
|
+
],
|
|
1466
|
+
"home.features.heading.cart_checkout": [
|
|
1467
|
+
{
|
|
1468
|
+
"type": 0,
|
|
1469
|
+
"value": "Warenkorb und Kaufabwicklung"
|
|
1470
|
+
}
|
|
1471
|
+
],
|
|
1472
|
+
"home.features.heading.components": [
|
|
1473
|
+
{
|
|
1474
|
+
"type": 0,
|
|
1475
|
+
"value": "Komponenten und Design-Kit"
|
|
1476
|
+
}
|
|
1477
|
+
],
|
|
1478
|
+
"home.features.heading.einstein_recommendations": [
|
|
1479
|
+
{
|
|
1480
|
+
"type": 0,
|
|
1481
|
+
"value": "Einstein Empfehlungen"
|
|
1482
|
+
}
|
|
1483
|
+
],
|
|
1484
|
+
"home.features.heading.my_account": [
|
|
1485
|
+
{
|
|
1486
|
+
"type": 0,
|
|
1487
|
+
"value": "Mein Konto"
|
|
1488
|
+
}
|
|
1489
|
+
],
|
|
1490
|
+
"home.features.heading.shopper_login": [
|
|
1491
|
+
{
|
|
1492
|
+
"type": 0,
|
|
1493
|
+
"value": "Shopper Login and API Access Service (SLAS)"
|
|
1494
|
+
}
|
|
1495
|
+
],
|
|
1496
|
+
"home.features.heading.wishlist": [
|
|
1497
|
+
{
|
|
1498
|
+
"type": 0,
|
|
1499
|
+
"value": "Wunschliste"
|
|
1500
|
+
}
|
|
1501
|
+
],
|
|
1502
|
+
"home.heading.features": [
|
|
1503
|
+
{
|
|
1504
|
+
"type": 0,
|
|
1505
|
+
"value": "Funktionalitäten"
|
|
1506
|
+
}
|
|
1507
|
+
],
|
|
1508
|
+
"home.heading.here_to_help": [
|
|
1509
|
+
{
|
|
1510
|
+
"type": 0,
|
|
1511
|
+
"value": "Wir sind für Sie da"
|
|
1512
|
+
}
|
|
1513
|
+
],
|
|
1514
|
+
"home.heading.shop_products": [
|
|
1515
|
+
{
|
|
1516
|
+
"type": 0,
|
|
1517
|
+
"value": "Produkte durchstöbern"
|
|
1518
|
+
}
|
|
1519
|
+
],
|
|
1520
|
+
"home.hero_features.link.design_kit": [
|
|
1521
|
+
{
|
|
1522
|
+
"type": 0,
|
|
1523
|
+
"value": "Mit dem Figma PWA Design Kit arbeiten"
|
|
1524
|
+
}
|
|
1525
|
+
],
|
|
1526
|
+
"home.hero_features.link.on_github": [
|
|
1527
|
+
{
|
|
1528
|
+
"type": 0,
|
|
1529
|
+
"value": "Auf Github herunterladen"
|
|
1530
|
+
}
|
|
1531
|
+
],
|
|
1532
|
+
"home.hero_features.link.on_managed_runtime": [
|
|
1533
|
+
{
|
|
1534
|
+
"type": 0,
|
|
1535
|
+
"value": "Auf Managed Runtime bereitstellen"
|
|
1536
|
+
}
|
|
1537
|
+
],
|
|
1538
|
+
"home.link.contact_us": [
|
|
1539
|
+
{
|
|
1540
|
+
"type": 0,
|
|
1541
|
+
"value": "Kontakt"
|
|
1542
|
+
}
|
|
1543
|
+
],
|
|
1544
|
+
"home.link.get_started": [
|
|
1545
|
+
{
|
|
1546
|
+
"type": 0,
|
|
1547
|
+
"value": "Erste Schritte"
|
|
1548
|
+
}
|
|
1549
|
+
],
|
|
1550
|
+
"home.link.read_docs": [
|
|
1551
|
+
{
|
|
1552
|
+
"type": 0,
|
|
1553
|
+
"value": "Dokumente lesen"
|
|
1554
|
+
}
|
|
1555
|
+
],
|
|
1556
|
+
"home.title.react_starter_store": [
|
|
1557
|
+
{
|
|
1558
|
+
"type": 0,
|
|
1559
|
+
"value": "React PWA Starter Store für den Einzelhandel"
|
|
1560
|
+
}
|
|
1561
|
+
],
|
|
1562
|
+
"item_attributes.label.promotions": [
|
|
1563
|
+
{
|
|
1564
|
+
"type": 0,
|
|
1565
|
+
"value": "Werbeaktionen"
|
|
1566
|
+
}
|
|
1567
|
+
],
|
|
1568
|
+
"item_attributes.label.quantity": [
|
|
1569
|
+
{
|
|
1570
|
+
"type": 0,
|
|
1571
|
+
"value": "Menge: "
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
"type": 1,
|
|
1575
|
+
"value": "quantity"
|
|
1576
|
+
}
|
|
1577
|
+
],
|
|
1578
|
+
"item_image.label.sale": [
|
|
1579
|
+
{
|
|
1580
|
+
"type": 0,
|
|
1581
|
+
"value": "Sonderangebot"
|
|
1582
|
+
}
|
|
1583
|
+
],
|
|
1584
|
+
"lCPCxk": [
|
|
1585
|
+
{
|
|
1586
|
+
"type": 0,
|
|
1587
|
+
"value": "Bitte wählen Sie oben all Ihre Optionen aus"
|
|
1588
|
+
}
|
|
1589
|
+
],
|
|
1590
|
+
"locale_text.message.ar-SA": [
|
|
1591
|
+
{
|
|
1592
|
+
"type": 0,
|
|
1593
|
+
"value": "Arabisch (Saudi-Arabien)"
|
|
1594
|
+
}
|
|
1595
|
+
],
|
|
1596
|
+
"locale_text.message.bn-BD": [
|
|
1597
|
+
{
|
|
1598
|
+
"type": 0,
|
|
1599
|
+
"value": "Bangla (Bangladesch)"
|
|
1600
|
+
}
|
|
1601
|
+
],
|
|
1602
|
+
"locale_text.message.bn-IN": [
|
|
1603
|
+
{
|
|
1604
|
+
"type": 0,
|
|
1605
|
+
"value": "Bangla (Indien)"
|
|
1606
|
+
}
|
|
1607
|
+
],
|
|
1608
|
+
"locale_text.message.cs-CZ": [
|
|
1609
|
+
{
|
|
1610
|
+
"type": 0,
|
|
1611
|
+
"value": "Tschechisch (Tschechische Republik)"
|
|
1612
|
+
}
|
|
1613
|
+
],
|
|
1614
|
+
"locale_text.message.da-DK": [
|
|
1615
|
+
{
|
|
1616
|
+
"type": 0,
|
|
1617
|
+
"value": "Dänisch (Dänemark)"
|
|
1618
|
+
}
|
|
1619
|
+
],
|
|
1620
|
+
"locale_text.message.de-AT": [
|
|
1621
|
+
{
|
|
1622
|
+
"type": 0,
|
|
1623
|
+
"value": "Deutsch (Österreich)"
|
|
1624
|
+
}
|
|
1625
|
+
],
|
|
1626
|
+
"locale_text.message.de-CH": [
|
|
1627
|
+
{
|
|
1628
|
+
"type": 0,
|
|
1629
|
+
"value": "Deutsch (Schweiz)"
|
|
1630
|
+
}
|
|
1631
|
+
],
|
|
1632
|
+
"locale_text.message.de-DE": [
|
|
1633
|
+
{
|
|
1634
|
+
"type": 0,
|
|
1635
|
+
"value": "Deutsch (Deutschland)"
|
|
1636
|
+
}
|
|
1637
|
+
],
|
|
1638
|
+
"locale_text.message.el-GR": [
|
|
1639
|
+
{
|
|
1640
|
+
"type": 0,
|
|
1641
|
+
"value": "Griechisch (Griechenland)"
|
|
1642
|
+
}
|
|
1643
|
+
],
|
|
1644
|
+
"locale_text.message.en-AU": [
|
|
1645
|
+
{
|
|
1646
|
+
"type": 0,
|
|
1647
|
+
"value": "Englisch (Australien)"
|
|
1648
|
+
}
|
|
1649
|
+
],
|
|
1650
|
+
"locale_text.message.en-CA": [
|
|
1651
|
+
{
|
|
1652
|
+
"type": 0,
|
|
1653
|
+
"value": "Englisch (Kanada)"
|
|
1654
|
+
}
|
|
1655
|
+
],
|
|
1656
|
+
"locale_text.message.en-GB": [
|
|
1657
|
+
{
|
|
1658
|
+
"type": 0,
|
|
1659
|
+
"value": "Englisch (Vereinigtes Königreich)"
|
|
1660
|
+
}
|
|
1661
|
+
],
|
|
1662
|
+
"locale_text.message.en-IE": [
|
|
1663
|
+
{
|
|
1664
|
+
"type": 0,
|
|
1665
|
+
"value": "Englisch (Irland)"
|
|
1666
|
+
}
|
|
1667
|
+
],
|
|
1668
|
+
"locale_text.message.en-IN": [
|
|
1669
|
+
{
|
|
1670
|
+
"type": 0,
|
|
1671
|
+
"value": "Englisch (Indien)"
|
|
1672
|
+
}
|
|
1673
|
+
],
|
|
1674
|
+
"locale_text.message.en-NZ": [
|
|
1675
|
+
{
|
|
1676
|
+
"type": 0,
|
|
1677
|
+
"value": "Englisch (Neuseeland)"
|
|
1678
|
+
}
|
|
1679
|
+
],
|
|
1680
|
+
"locale_text.message.en-US": [
|
|
1681
|
+
{
|
|
1682
|
+
"type": 0,
|
|
1683
|
+
"value": "Englisch (USA)"
|
|
1684
|
+
}
|
|
1685
|
+
],
|
|
1686
|
+
"locale_text.message.en-ZA": [
|
|
1687
|
+
{
|
|
1688
|
+
"type": 0,
|
|
1689
|
+
"value": "Englisch (Südafrika)"
|
|
1690
|
+
}
|
|
1691
|
+
],
|
|
1692
|
+
"locale_text.message.es-AR": [
|
|
1693
|
+
{
|
|
1694
|
+
"type": 0,
|
|
1695
|
+
"value": "Spanisch (Argentinien)"
|
|
1696
|
+
}
|
|
1697
|
+
],
|
|
1698
|
+
"locale_text.message.es-CL": [
|
|
1699
|
+
{
|
|
1700
|
+
"type": 0,
|
|
1701
|
+
"value": "Spanisch (Chile)"
|
|
1702
|
+
}
|
|
1703
|
+
],
|
|
1704
|
+
"locale_text.message.es-CO": [
|
|
1705
|
+
{
|
|
1706
|
+
"type": 0,
|
|
1707
|
+
"value": "Spanisch (Kolumbien)"
|
|
1708
|
+
}
|
|
1709
|
+
],
|
|
1710
|
+
"locale_text.message.es-ES": [
|
|
1711
|
+
{
|
|
1712
|
+
"type": 0,
|
|
1713
|
+
"value": "Spanisch (Spanien)"
|
|
1714
|
+
}
|
|
1715
|
+
],
|
|
1716
|
+
"locale_text.message.es-MX": [
|
|
1717
|
+
{
|
|
1718
|
+
"type": 0,
|
|
1719
|
+
"value": "Spanisch (Mexiko)"
|
|
1720
|
+
}
|
|
1721
|
+
],
|
|
1722
|
+
"locale_text.message.es-US": [
|
|
1723
|
+
{
|
|
1724
|
+
"type": 0,
|
|
1725
|
+
"value": "Spanisch (USA)"
|
|
1726
|
+
}
|
|
1727
|
+
],
|
|
1728
|
+
"locale_text.message.fi-FI": [
|
|
1729
|
+
{
|
|
1730
|
+
"type": 0,
|
|
1731
|
+
"value": "Finnisch (Finnland)"
|
|
1732
|
+
}
|
|
1733
|
+
],
|
|
1734
|
+
"locale_text.message.fr-BE": [
|
|
1735
|
+
{
|
|
1736
|
+
"type": 0,
|
|
1737
|
+
"value": "Französisch (Belgien)"
|
|
1738
|
+
}
|
|
1739
|
+
],
|
|
1740
|
+
"locale_text.message.fr-CA": [
|
|
1741
|
+
{
|
|
1742
|
+
"type": 0,
|
|
1743
|
+
"value": "Französisch (Kanada)"
|
|
1744
|
+
}
|
|
1745
|
+
],
|
|
1746
|
+
"locale_text.message.fr-CH": [
|
|
1747
|
+
{
|
|
1748
|
+
"type": 0,
|
|
1749
|
+
"value": "Französisch (Schweiz)"
|
|
1750
|
+
}
|
|
1751
|
+
],
|
|
1752
|
+
"locale_text.message.fr-FR": [
|
|
1753
|
+
{
|
|
1754
|
+
"type": 0,
|
|
1755
|
+
"value": "Französisch (Frankreich)"
|
|
1756
|
+
}
|
|
1757
|
+
],
|
|
1758
|
+
"locale_text.message.he-IL": [
|
|
1759
|
+
{
|
|
1760
|
+
"type": 0,
|
|
1761
|
+
"value": "Hebräisch (Israel)"
|
|
1762
|
+
}
|
|
1763
|
+
],
|
|
1764
|
+
"locale_text.message.hi-IN": [
|
|
1765
|
+
{
|
|
1766
|
+
"type": 0,
|
|
1767
|
+
"value": "Hindi (Indien)"
|
|
1768
|
+
}
|
|
1769
|
+
],
|
|
1770
|
+
"locale_text.message.hu-HU": [
|
|
1771
|
+
{
|
|
1772
|
+
"type": 0,
|
|
1773
|
+
"value": "Ungarisch (Ungarn)"
|
|
1774
|
+
}
|
|
1775
|
+
],
|
|
1776
|
+
"locale_text.message.id-ID": [
|
|
1777
|
+
{
|
|
1778
|
+
"type": 0,
|
|
1779
|
+
"value": "Indonesisch (Indonesien)"
|
|
1780
|
+
}
|
|
1781
|
+
],
|
|
1782
|
+
"locale_text.message.it-CH": [
|
|
1783
|
+
{
|
|
1784
|
+
"type": 0,
|
|
1785
|
+
"value": "Italienisch (Schweiz)"
|
|
1786
|
+
}
|
|
1787
|
+
],
|
|
1788
|
+
"locale_text.message.it-IT": [
|
|
1789
|
+
{
|
|
1790
|
+
"type": 0,
|
|
1791
|
+
"value": "Italienisch (Italien)"
|
|
1792
|
+
}
|
|
1793
|
+
],
|
|
1794
|
+
"locale_text.message.ja-JP": [
|
|
1795
|
+
{
|
|
1796
|
+
"type": 0,
|
|
1797
|
+
"value": "Japanisch (Japan)"
|
|
1798
|
+
}
|
|
1799
|
+
],
|
|
1800
|
+
"locale_text.message.ko-KR": [
|
|
1801
|
+
{
|
|
1802
|
+
"type": 0,
|
|
1803
|
+
"value": "Koreanisch (Republik Korea)"
|
|
1804
|
+
}
|
|
1805
|
+
],
|
|
1806
|
+
"locale_text.message.nl-BE": [
|
|
1807
|
+
{
|
|
1808
|
+
"type": 0,
|
|
1809
|
+
"value": "Niederländisch (Belgien)"
|
|
1810
|
+
}
|
|
1811
|
+
],
|
|
1812
|
+
"locale_text.message.nl-NL": [
|
|
1813
|
+
{
|
|
1814
|
+
"type": 0,
|
|
1815
|
+
"value": "Niederländisch (Niederlande)"
|
|
1816
|
+
}
|
|
1817
|
+
],
|
|
1818
|
+
"locale_text.message.no-NO": [
|
|
1819
|
+
{
|
|
1820
|
+
"type": 0,
|
|
1821
|
+
"value": "Norwegisch (Norwegen)"
|
|
1822
|
+
}
|
|
1823
|
+
],
|
|
1824
|
+
"locale_text.message.pl-PL": [
|
|
1825
|
+
{
|
|
1826
|
+
"type": 0,
|
|
1827
|
+
"value": "Polnisch (Polen)"
|
|
1828
|
+
}
|
|
1829
|
+
],
|
|
1830
|
+
"locale_text.message.pt-BR": [
|
|
1831
|
+
{
|
|
1832
|
+
"type": 0,
|
|
1833
|
+
"value": "Portugiesisch (Brasilien)"
|
|
1834
|
+
}
|
|
1835
|
+
],
|
|
1836
|
+
"locale_text.message.pt-PT": [
|
|
1837
|
+
{
|
|
1838
|
+
"type": 0,
|
|
1839
|
+
"value": "Portugiesisch (Portugal)"
|
|
1840
|
+
}
|
|
1841
|
+
],
|
|
1842
|
+
"locale_text.message.ro-RO": [
|
|
1843
|
+
{
|
|
1844
|
+
"type": 0,
|
|
1845
|
+
"value": "Rumänisch (Rumänien)"
|
|
1846
|
+
}
|
|
1847
|
+
],
|
|
1848
|
+
"locale_text.message.ru-RU": [
|
|
1849
|
+
{
|
|
1850
|
+
"type": 0,
|
|
1851
|
+
"value": "Russisch (Russische Föderation)"
|
|
1852
|
+
}
|
|
1853
|
+
],
|
|
1854
|
+
"locale_text.message.sk-SK": [
|
|
1855
|
+
{
|
|
1856
|
+
"type": 0,
|
|
1857
|
+
"value": "Slowakisch (Slowakei)"
|
|
1858
|
+
}
|
|
1859
|
+
],
|
|
1860
|
+
"locale_text.message.sv-SE": [
|
|
1861
|
+
{
|
|
1862
|
+
"type": 0,
|
|
1863
|
+
"value": "Schwedisch (Schweden)"
|
|
1864
|
+
}
|
|
1865
|
+
],
|
|
1866
|
+
"locale_text.message.ta-IN": [
|
|
1867
|
+
{
|
|
1868
|
+
"type": 0,
|
|
1869
|
+
"value": "Tamil (Indien)"
|
|
1870
|
+
}
|
|
1871
|
+
],
|
|
1872
|
+
"locale_text.message.ta-LK": [
|
|
1873
|
+
{
|
|
1874
|
+
"type": 0,
|
|
1875
|
+
"value": "Tamil (Sri Lanka)"
|
|
1876
|
+
}
|
|
1877
|
+
],
|
|
1878
|
+
"locale_text.message.th-TH": [
|
|
1879
|
+
{
|
|
1880
|
+
"type": 0,
|
|
1881
|
+
"value": "Thai (Thailand)"
|
|
1882
|
+
}
|
|
1883
|
+
],
|
|
1884
|
+
"locale_text.message.tr-TR": [
|
|
1885
|
+
{
|
|
1886
|
+
"type": 0,
|
|
1887
|
+
"value": "Türkisch (Türkei)"
|
|
1888
|
+
}
|
|
1889
|
+
],
|
|
1890
|
+
"locale_text.message.zh-CN": [
|
|
1891
|
+
{
|
|
1892
|
+
"type": 0,
|
|
1893
|
+
"value": "Chinesisch (China)"
|
|
1894
|
+
}
|
|
1895
|
+
],
|
|
1896
|
+
"locale_text.message.zh-HK": [
|
|
1897
|
+
{
|
|
1898
|
+
"type": 0,
|
|
1899
|
+
"value": "Chinesisch (Hongkong)"
|
|
1900
|
+
}
|
|
1901
|
+
],
|
|
1902
|
+
"locale_text.message.zh-TW": [
|
|
1903
|
+
{
|
|
1904
|
+
"type": 0,
|
|
1905
|
+
"value": "Chinesisch (Taiwan)"
|
|
1906
|
+
}
|
|
1907
|
+
],
|
|
1908
|
+
"login_form.action.create_account": [
|
|
1909
|
+
{
|
|
1910
|
+
"type": 0,
|
|
1911
|
+
"value": "Konto erstellen"
|
|
1912
|
+
}
|
|
1913
|
+
],
|
|
1914
|
+
"login_form.button.sign_in": [
|
|
1915
|
+
{
|
|
1916
|
+
"type": 0,
|
|
1917
|
+
"value": "Anmelden"
|
|
1918
|
+
}
|
|
1919
|
+
],
|
|
1920
|
+
"login_form.link.forgot_password": [
|
|
1921
|
+
{
|
|
1922
|
+
"type": 0,
|
|
1923
|
+
"value": "Passwort vergessen?"
|
|
1924
|
+
}
|
|
1925
|
+
],
|
|
1926
|
+
"login_form.message.dont_have_account": [
|
|
1927
|
+
{
|
|
1928
|
+
"type": 0,
|
|
1929
|
+
"value": "Sie haben noch kein Konto?"
|
|
1930
|
+
}
|
|
1931
|
+
],
|
|
1932
|
+
"login_form.message.welcome_back": [
|
|
1933
|
+
{
|
|
1934
|
+
"type": 0,
|
|
1935
|
+
"value": "Willkommen zurück"
|
|
1936
|
+
}
|
|
1937
|
+
],
|
|
1938
|
+
"login_page.error.incorrect_username_or_password": [
|
|
1939
|
+
{
|
|
1940
|
+
"type": 0,
|
|
1941
|
+
"value": "Benutzername oder Passwort falsch, bitte erneut versuchen."
|
|
1942
|
+
}
|
|
1943
|
+
],
|
|
1944
|
+
"offline_banner.description.browsing_offline_mode": [
|
|
1945
|
+
{
|
|
1946
|
+
"type": 0,
|
|
1947
|
+
"value": "Sie browsen derzeit im Offline-Modus."
|
|
1948
|
+
}
|
|
1949
|
+
],
|
|
1950
|
+
"order_summary.action.remove_promo": [
|
|
1951
|
+
{
|
|
1952
|
+
"type": 0,
|
|
1953
|
+
"value": "Entfernen"
|
|
1954
|
+
}
|
|
1955
|
+
],
|
|
1956
|
+
"order_summary.cart_items.action.num_of_items_in_cart": [
|
|
1957
|
+
{
|
|
1958
|
+
"offset": 0,
|
|
1959
|
+
"options": {
|
|
1960
|
+
"=0": {
|
|
1961
|
+
"value": [
|
|
1962
|
+
{
|
|
1963
|
+
"type": 0,
|
|
1964
|
+
"value": "0 Artikel"
|
|
1965
|
+
}
|
|
1966
|
+
]
|
|
1967
|
+
},
|
|
1968
|
+
"one": {
|
|
1969
|
+
"value": [
|
|
1970
|
+
{
|
|
1971
|
+
"type": 7
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
"type": 0,
|
|
1975
|
+
"value": " Artikel"
|
|
1976
|
+
}
|
|
1977
|
+
]
|
|
1978
|
+
},
|
|
1979
|
+
"other": {
|
|
1980
|
+
"value": [
|
|
1981
|
+
{
|
|
1982
|
+
"type": 7
|
|
1983
|
+
},
|
|
1984
|
+
{
|
|
1985
|
+
"type": 0,
|
|
1986
|
+
"value": " Artikel"
|
|
1987
|
+
}
|
|
1988
|
+
]
|
|
1989
|
+
}
|
|
1990
|
+
},
|
|
1991
|
+
"pluralType": "cardinal",
|
|
1992
|
+
"type": 6,
|
|
1993
|
+
"value": "itemCount"
|
|
1994
|
+
},
|
|
1995
|
+
{
|
|
1996
|
+
"type": 0,
|
|
1997
|
+
"value": " im Warenkorb"
|
|
1998
|
+
}
|
|
1999
|
+
],
|
|
2000
|
+
"order_summary.cart_items.link.edit_cart": [
|
|
2001
|
+
{
|
|
2002
|
+
"type": 0,
|
|
2003
|
+
"value": "Warenkorb bearbeiten"
|
|
2004
|
+
}
|
|
2005
|
+
],
|
|
2006
|
+
"order_summary.heading.order_summary": [
|
|
2007
|
+
{
|
|
2008
|
+
"type": 0,
|
|
2009
|
+
"value": "Bestellungsübersicht"
|
|
2010
|
+
}
|
|
2011
|
+
],
|
|
2012
|
+
"order_summary.label.estimated_total": [
|
|
2013
|
+
{
|
|
2014
|
+
"type": 0,
|
|
2015
|
+
"value": "Geschätzter Gesamtbetrag"
|
|
2016
|
+
}
|
|
2017
|
+
],
|
|
2018
|
+
"order_summary.label.free": [
|
|
2019
|
+
{
|
|
2020
|
+
"type": 0,
|
|
2021
|
+
"value": "Gratis"
|
|
2022
|
+
}
|
|
2023
|
+
],
|
|
2024
|
+
"order_summary.label.order_total": [
|
|
2025
|
+
{
|
|
2026
|
+
"type": 0,
|
|
2027
|
+
"value": "Gesamtwert"
|
|
2028
|
+
}
|
|
2029
|
+
],
|
|
2030
|
+
"order_summary.label.promo_applied": [
|
|
2031
|
+
{
|
|
2032
|
+
"type": 0,
|
|
2033
|
+
"value": "Werbeaktion angewendet"
|
|
2034
|
+
}
|
|
2035
|
+
],
|
|
2036
|
+
"order_summary.label.promotions_applied": [
|
|
2037
|
+
{
|
|
2038
|
+
"type": 0,
|
|
2039
|
+
"value": "Werbeaktionen angewendet"
|
|
2040
|
+
}
|
|
2041
|
+
],
|
|
2042
|
+
"order_summary.label.shipping": [
|
|
2043
|
+
{
|
|
2044
|
+
"type": 0,
|
|
2045
|
+
"value": "Versand"
|
|
2046
|
+
}
|
|
2047
|
+
],
|
|
2048
|
+
"order_summary.label.subtotal": [
|
|
2049
|
+
{
|
|
2050
|
+
"type": 0,
|
|
2051
|
+
"value": "Zwischensumme"
|
|
2052
|
+
}
|
|
2053
|
+
],
|
|
2054
|
+
"order_summary.label.tax": [
|
|
2055
|
+
{
|
|
2056
|
+
"type": 0,
|
|
2057
|
+
"value": "Steuern"
|
|
2058
|
+
}
|
|
2059
|
+
],
|
|
2060
|
+
"page_not_found.action.go_back": [
|
|
2061
|
+
{
|
|
2062
|
+
"type": 0,
|
|
2063
|
+
"value": "Zurück zur vorherigen Seite"
|
|
2064
|
+
}
|
|
2065
|
+
],
|
|
2066
|
+
"page_not_found.link.homepage": [
|
|
2067
|
+
{
|
|
2068
|
+
"type": 0,
|
|
2069
|
+
"value": "Zur Startseite"
|
|
2070
|
+
}
|
|
2071
|
+
],
|
|
2072
|
+
"page_not_found.message.suggestion_to_try": [
|
|
2073
|
+
{
|
|
2074
|
+
"type": 0,
|
|
2075
|
+
"value": "Bitte geben Sie die Adresse erneut ein, kehren Sie zur vorherigen Seite zurück oder navigieren Sie zur Startseite."
|
|
2076
|
+
}
|
|
2077
|
+
],
|
|
2078
|
+
"page_not_found.title.page_cant_be_found": [
|
|
2079
|
+
{
|
|
2080
|
+
"type": 0,
|
|
2081
|
+
"value": "Die von Ihnen gesuchte Seite kann nicht gefunden werden."
|
|
2082
|
+
}
|
|
2083
|
+
],
|
|
2084
|
+
"pagination.field.num_of_pages": [
|
|
2085
|
+
{
|
|
2086
|
+
"type": 0,
|
|
2087
|
+
"value": "von "
|
|
2088
|
+
},
|
|
2089
|
+
{
|
|
2090
|
+
"type": 1,
|
|
2091
|
+
"value": "numOfPages"
|
|
2092
|
+
}
|
|
2093
|
+
],
|
|
2094
|
+
"pagination.link.next": [
|
|
2095
|
+
{
|
|
2096
|
+
"type": 0,
|
|
2097
|
+
"value": "Weiter"
|
|
2098
|
+
}
|
|
2099
|
+
],
|
|
2100
|
+
"pagination.link.prev": [
|
|
2101
|
+
{
|
|
2102
|
+
"type": 0,
|
|
2103
|
+
"value": "Zurück"
|
|
2104
|
+
}
|
|
2105
|
+
],
|
|
2106
|
+
"password_card.info.password_updated": [
|
|
2107
|
+
{
|
|
2108
|
+
"type": 0,
|
|
2109
|
+
"value": "Passwort aktualisiert"
|
|
2110
|
+
}
|
|
2111
|
+
],
|
|
2112
|
+
"password_card.label.password": [
|
|
2113
|
+
{
|
|
2114
|
+
"type": 0,
|
|
2115
|
+
"value": "Passwort"
|
|
2116
|
+
}
|
|
2117
|
+
],
|
|
2118
|
+
"password_card.title.password": [
|
|
2119
|
+
{
|
|
2120
|
+
"type": 0,
|
|
2121
|
+
"value": "Passwort"
|
|
2122
|
+
}
|
|
2123
|
+
],
|
|
2124
|
+
"password_requirements.error.eight_letter_minimum": [
|
|
2125
|
+
{
|
|
2126
|
+
"type": 0,
|
|
2127
|
+
"value": "mindestens 8 Zeichen"
|
|
2128
|
+
}
|
|
2129
|
+
],
|
|
2130
|
+
"password_requirements.error.one_lowercase_letter": [
|
|
2131
|
+
{
|
|
2132
|
+
"type": 0,
|
|
2133
|
+
"value": "1 Kleinbuchstabe"
|
|
2134
|
+
}
|
|
2135
|
+
],
|
|
2136
|
+
"password_requirements.error.one_number": [
|
|
2137
|
+
{
|
|
2138
|
+
"type": 0,
|
|
2139
|
+
"value": "1 Ziffer"
|
|
2140
|
+
}
|
|
2141
|
+
],
|
|
2142
|
+
"password_requirements.error.one_special_character": [
|
|
2143
|
+
{
|
|
2144
|
+
"type": 0,
|
|
2145
|
+
"value": "1 Sonderzeichen (Beispiel: , S ! % #)"
|
|
2146
|
+
}
|
|
2147
|
+
],
|
|
2148
|
+
"password_requirements.error.one_uppercase_letter": [
|
|
2149
|
+
{
|
|
2150
|
+
"type": 0,
|
|
2151
|
+
"value": "1 Großbuchstabe"
|
|
2152
|
+
}
|
|
2153
|
+
],
|
|
2154
|
+
"payment_selection.button.save_and_continue": [
|
|
2155
|
+
{
|
|
2156
|
+
"type": 0,
|
|
2157
|
+
"value": "Speichern und fortfahren"
|
|
2158
|
+
}
|
|
2159
|
+
],
|
|
2160
|
+
"payment_selection.heading.add_new_card": [
|
|
2161
|
+
{
|
|
2162
|
+
"type": 0,
|
|
2163
|
+
"value": "Neue Karte hinzufügen"
|
|
2164
|
+
}
|
|
2165
|
+
],
|
|
2166
|
+
"payment_selection.heading.credit_card": [
|
|
2167
|
+
{
|
|
2168
|
+
"type": 0,
|
|
2169
|
+
"value": "Kreditkarte"
|
|
2170
|
+
}
|
|
2171
|
+
],
|
|
2172
|
+
"payment_selection.message.select_payment_method": [
|
|
2173
|
+
{
|
|
2174
|
+
"type": 0,
|
|
2175
|
+
"value": "Bitte wählen Sie eine Zahlungsmethode aus."
|
|
2176
|
+
}
|
|
2177
|
+
],
|
|
2178
|
+
"payment_selection.tooltip.secure_payment": [
|
|
2179
|
+
{
|
|
2180
|
+
"type": 0,
|
|
2181
|
+
"value": "Hierbei handelt es sich um eine sichere SSL-verschlüsselte Zahlung."
|
|
2182
|
+
}
|
|
2183
|
+
],
|
|
2184
|
+
"price_per_item.label.each": [
|
|
2185
|
+
{
|
|
2186
|
+
"type": 0,
|
|
2187
|
+
"value": "Stk."
|
|
2188
|
+
}
|
|
2189
|
+
],
|
|
2190
|
+
"product_detail.accordion.button.product_detail": [
|
|
2191
|
+
{
|
|
2192
|
+
"type": 0,
|
|
2193
|
+
"value": "Produktdetails"
|
|
2194
|
+
}
|
|
2195
|
+
],
|
|
2196
|
+
"product_detail.accordion.button.questions": [
|
|
2197
|
+
{
|
|
2198
|
+
"type": 0,
|
|
2199
|
+
"value": "Fragen"
|
|
2200
|
+
}
|
|
2201
|
+
],
|
|
2202
|
+
"product_detail.accordion.button.reviews": [
|
|
2203
|
+
{
|
|
2204
|
+
"type": 0,
|
|
2205
|
+
"value": "Rezensionen"
|
|
2206
|
+
}
|
|
2207
|
+
],
|
|
2208
|
+
"product_detail.accordion.button.size_fit": [
|
|
2209
|
+
{
|
|
2210
|
+
"type": 0,
|
|
2211
|
+
"value": "Größe und Passform"
|
|
2212
|
+
}
|
|
2213
|
+
],
|
|
2214
|
+
"product_detail.accordion.message.coming_soon": [
|
|
2215
|
+
{
|
|
2216
|
+
"type": 0,
|
|
2217
|
+
"value": "bald verfügbar"
|
|
2218
|
+
}
|
|
2219
|
+
],
|
|
2220
|
+
"product_detail.recommended_products.title.complete_set": [
|
|
2221
|
+
{
|
|
2222
|
+
"type": 0,
|
|
2223
|
+
"value": "Set vervollständigen"
|
|
2224
|
+
}
|
|
2225
|
+
],
|
|
2226
|
+
"product_detail.recommended_products.title.might_also_like": [
|
|
2227
|
+
{
|
|
2228
|
+
"type": 0,
|
|
2229
|
+
"value": "Das könnte Ihnen auch gefallen"
|
|
2230
|
+
}
|
|
2231
|
+
],
|
|
2232
|
+
"product_detail.recommended_products.title.recently_viewed": [
|
|
2233
|
+
{
|
|
2234
|
+
"type": 0,
|
|
2235
|
+
"value": "Zuletzt angesehen"
|
|
2236
|
+
}
|
|
2237
|
+
],
|
|
2238
|
+
"product_item.label.quantity": [
|
|
2239
|
+
{
|
|
2240
|
+
"type": 0,
|
|
2241
|
+
"value": "Menge:"
|
|
2242
|
+
}
|
|
2243
|
+
],
|
|
2244
|
+
"product_list.button.filter": [
|
|
2245
|
+
{
|
|
2246
|
+
"type": 0,
|
|
2247
|
+
"value": "Filtern"
|
|
2248
|
+
}
|
|
2249
|
+
],
|
|
2250
|
+
"product_list.button.sort_by": [
|
|
2251
|
+
{
|
|
2252
|
+
"type": 0,
|
|
2253
|
+
"value": "Sortieren nach: "
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
"type": 1,
|
|
2257
|
+
"value": "sortOption"
|
|
2258
|
+
}
|
|
2259
|
+
],
|
|
2260
|
+
"product_list.drawer.title.sort_by": [
|
|
2261
|
+
{
|
|
2262
|
+
"type": 0,
|
|
2263
|
+
"value": "Sortieren nach"
|
|
2264
|
+
}
|
|
2265
|
+
],
|
|
2266
|
+
"product_list.modal.button.clear_filters": [
|
|
2267
|
+
{
|
|
2268
|
+
"type": 0,
|
|
2269
|
+
"value": "Filter löschen"
|
|
2270
|
+
}
|
|
2271
|
+
],
|
|
2272
|
+
"product_list.modal.button.view_items": [
|
|
2273
|
+
{
|
|
2274
|
+
"type": 1,
|
|
2275
|
+
"value": "prroductCount"
|
|
2276
|
+
},
|
|
2277
|
+
{
|
|
2278
|
+
"type": 0,
|
|
2279
|
+
"value": " Artikel anzeigen"
|
|
2280
|
+
}
|
|
2281
|
+
],
|
|
2282
|
+
"product_list.modal.title.filter": [
|
|
2283
|
+
{
|
|
2284
|
+
"type": 0,
|
|
2285
|
+
"value": "Filtern"
|
|
2286
|
+
}
|
|
2287
|
+
],
|
|
2288
|
+
"product_list.select.sort_by": [
|
|
2289
|
+
{
|
|
2290
|
+
"type": 0,
|
|
2291
|
+
"value": "Sortieren nach: "
|
|
2292
|
+
},
|
|
2293
|
+
{
|
|
2294
|
+
"type": 1,
|
|
2295
|
+
"value": "sortOption"
|
|
2296
|
+
}
|
|
2297
|
+
],
|
|
2298
|
+
"product_tile.assistive_msg.wishlist": [
|
|
2299
|
+
{
|
|
2300
|
+
"type": 0,
|
|
2301
|
+
"value": "Wunschliste"
|
|
2302
|
+
}
|
|
2303
|
+
],
|
|
2304
|
+
"product_view.button.add_to_cart": [
|
|
2305
|
+
{
|
|
2306
|
+
"type": 0,
|
|
2307
|
+
"value": "In den Warenkorb"
|
|
2308
|
+
}
|
|
2309
|
+
],
|
|
2310
|
+
"product_view.button.add_to_wishlist": [
|
|
2311
|
+
{
|
|
2312
|
+
"type": 0,
|
|
2313
|
+
"value": "Zur Wunschliste hinzufügen"
|
|
2314
|
+
}
|
|
2315
|
+
],
|
|
2316
|
+
"product_view.button.update": [
|
|
2317
|
+
{
|
|
2318
|
+
"type": 0,
|
|
2319
|
+
"value": "Aktualisieren"
|
|
2320
|
+
}
|
|
2321
|
+
],
|
|
2322
|
+
"product_view.label.quantity": [
|
|
2323
|
+
{
|
|
2324
|
+
"type": 0,
|
|
2325
|
+
"value": "Menge"
|
|
2326
|
+
}
|
|
2327
|
+
],
|
|
2328
|
+
"product_view.link.full_details": [
|
|
2329
|
+
{
|
|
2330
|
+
"type": 0,
|
|
2331
|
+
"value": "Alle Details anzeigen"
|
|
2332
|
+
}
|
|
2333
|
+
],
|
|
2334
|
+
"profile_card.info.profile_updated": [
|
|
2335
|
+
{
|
|
2336
|
+
"type": 0,
|
|
2337
|
+
"value": "Profil aktualisiert"
|
|
2338
|
+
}
|
|
2339
|
+
],
|
|
2340
|
+
"profile_card.label.email": [
|
|
2341
|
+
{
|
|
2342
|
+
"type": 0,
|
|
2343
|
+
"value": "E-Mail"
|
|
2344
|
+
}
|
|
2345
|
+
],
|
|
2346
|
+
"profile_card.label.full_name": [
|
|
2347
|
+
{
|
|
2348
|
+
"type": 0,
|
|
2349
|
+
"value": "Vollständiger Name"
|
|
2350
|
+
}
|
|
2351
|
+
],
|
|
2352
|
+
"profile_card.label.phone": [
|
|
2353
|
+
{
|
|
2354
|
+
"type": 0,
|
|
2355
|
+
"value": "Telefonnummer"
|
|
2356
|
+
}
|
|
2357
|
+
],
|
|
2358
|
+
"profile_card.message.not_provided": [
|
|
2359
|
+
{
|
|
2360
|
+
"type": 0,
|
|
2361
|
+
"value": "Nicht angegeben"
|
|
2362
|
+
}
|
|
2363
|
+
],
|
|
2364
|
+
"profile_card.title.my_profile": [
|
|
2365
|
+
{
|
|
2366
|
+
"type": 0,
|
|
2367
|
+
"value": "Mein Profil"
|
|
2368
|
+
}
|
|
2369
|
+
],
|
|
2370
|
+
"promo_code_fields.button.apply": [
|
|
2371
|
+
{
|
|
2372
|
+
"type": 0,
|
|
2373
|
+
"value": "Anwenden"
|
|
2374
|
+
}
|
|
2375
|
+
],
|
|
2376
|
+
"promo_popover.heading.promo_applied": [
|
|
2377
|
+
{
|
|
2378
|
+
"type": 0,
|
|
2379
|
+
"value": "Werbeaktionen angewendet"
|
|
2380
|
+
}
|
|
2381
|
+
],
|
|
2382
|
+
"promocode.accordion.button.have_promocode": [
|
|
2383
|
+
{
|
|
2384
|
+
"type": 0,
|
|
2385
|
+
"value": "Haben Sie einen Aktionscode?"
|
|
2386
|
+
}
|
|
2387
|
+
],
|
|
2388
|
+
"recent_searches.action.clear_searches": [
|
|
2389
|
+
{
|
|
2390
|
+
"type": 0,
|
|
2391
|
+
"value": "Letzte Suchabfragen löschen"
|
|
2392
|
+
}
|
|
2393
|
+
],
|
|
2394
|
+
"recent_searches.heading.recent_searches": [
|
|
2395
|
+
{
|
|
2396
|
+
"type": 0,
|
|
2397
|
+
"value": "Letzte Suchabfragen"
|
|
2398
|
+
}
|
|
2399
|
+
],
|
|
2400
|
+
"register_form.action.sign_in": [
|
|
2401
|
+
{
|
|
2402
|
+
"type": 0,
|
|
2403
|
+
"value": "Anmelden"
|
|
2404
|
+
}
|
|
2405
|
+
],
|
|
2406
|
+
"register_form.button.create_account": [
|
|
2407
|
+
{
|
|
2408
|
+
"type": 0,
|
|
2409
|
+
"value": "Konto erstellen"
|
|
2410
|
+
}
|
|
2411
|
+
],
|
|
2412
|
+
"register_form.heading.lets_get_started": [
|
|
2413
|
+
{
|
|
2414
|
+
"type": 0,
|
|
2415
|
+
"value": "Es kann losgehen!"
|
|
2416
|
+
}
|
|
2417
|
+
],
|
|
2418
|
+
"register_form.message.agree_to_policy_terms": [
|
|
2419
|
+
{
|
|
2420
|
+
"type": 0,
|
|
2421
|
+
"value": "Durch das Erstellen eines Kontos stimmen Sie der "
|
|
2422
|
+
},
|
|
2423
|
+
{
|
|
2424
|
+
"children": [
|
|
2425
|
+
{
|
|
2426
|
+
"type": 0,
|
|
2427
|
+
"value": "Datenschutzerklärung"
|
|
2428
|
+
}
|
|
2429
|
+
],
|
|
2430
|
+
"type": 8,
|
|
2431
|
+
"value": "policy"
|
|
2432
|
+
},
|
|
2433
|
+
{
|
|
2434
|
+
"type": 0,
|
|
2435
|
+
"value": " und den "
|
|
2436
|
+
},
|
|
2437
|
+
{
|
|
2438
|
+
"children": [
|
|
2439
|
+
{
|
|
2440
|
+
"type": 0,
|
|
2441
|
+
"value": "allgemeinen Geschäftsbedingungen"
|
|
2442
|
+
}
|
|
2443
|
+
],
|
|
2444
|
+
"type": 8,
|
|
2445
|
+
"value": "terms"
|
|
2446
|
+
},
|
|
2447
|
+
{
|
|
2448
|
+
"type": 0,
|
|
2449
|
+
"value": " von Salesforce zu."
|
|
2450
|
+
}
|
|
2451
|
+
],
|
|
2452
|
+
"register_form.message.already_have_account": [
|
|
2453
|
+
{
|
|
2454
|
+
"type": 0,
|
|
2455
|
+
"value": "Sie haben bereits ein Konto?"
|
|
2456
|
+
}
|
|
2457
|
+
],
|
|
2458
|
+
"register_form.message.create_an_account": [
|
|
2459
|
+
{
|
|
2460
|
+
"type": 0,
|
|
2461
|
+
"value": "Erstellen Sie ein Konto und Sie erhalten als Erstes Zugang zu den besten Produkten und Inspirationen sowie zur Community."
|
|
2462
|
+
}
|
|
2463
|
+
],
|
|
2464
|
+
"reset_password.button.back_to_sign_in": [
|
|
2465
|
+
{
|
|
2466
|
+
"type": 0,
|
|
2467
|
+
"value": "Zurück zur Anmeldung"
|
|
2468
|
+
}
|
|
2469
|
+
],
|
|
2470
|
+
"reset_password.info.receive_email_shortly": [
|
|
2471
|
+
{
|
|
2472
|
+
"type": 0,
|
|
2473
|
+
"value": "Sie erhalten in Kürze eine E-Mail an "
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"children": [
|
|
2477
|
+
{
|
|
2478
|
+
"type": 1,
|
|
2479
|
+
"value": "email"
|
|
2480
|
+
}
|
|
2481
|
+
],
|
|
2482
|
+
"type": 8,
|
|
2483
|
+
"value": "b"
|
|
2484
|
+
},
|
|
2485
|
+
{
|
|
2486
|
+
"type": 0,
|
|
2487
|
+
"value": " mit einem Link zum Zurücksetzen Ihres Passworts."
|
|
2488
|
+
}
|
|
2489
|
+
],
|
|
2490
|
+
"reset_password.title.password_reset": [
|
|
2491
|
+
{
|
|
2492
|
+
"type": 0,
|
|
2493
|
+
"value": "Zurücksetzen des Passworts"
|
|
2494
|
+
}
|
|
2495
|
+
],
|
|
2496
|
+
"reset_password_form.action.sign_in": [
|
|
2497
|
+
{
|
|
2498
|
+
"type": 0,
|
|
2499
|
+
"value": "Anmelden"
|
|
2500
|
+
}
|
|
2501
|
+
],
|
|
2502
|
+
"reset_password_form.button.reset_password": [
|
|
2503
|
+
{
|
|
2504
|
+
"type": 0,
|
|
2505
|
+
"value": "Passwort zurücksetzen"
|
|
2506
|
+
}
|
|
2507
|
+
],
|
|
2508
|
+
"reset_password_form.message.enter_your_email": [
|
|
2509
|
+
{
|
|
2510
|
+
"type": 0,
|
|
2511
|
+
"value": "Geben Sie bitte Ihre E-Mail-Adresse ein, um Anweisungen zum Zurücksetzen Ihres Passworts zu erhalten."
|
|
2512
|
+
}
|
|
2513
|
+
],
|
|
2514
|
+
"reset_password_form.message.return_to_sign_in": [
|
|
2515
|
+
{
|
|
2516
|
+
"type": 0,
|
|
2517
|
+
"value": "Oder zurück zu"
|
|
2518
|
+
}
|
|
2519
|
+
],
|
|
2520
|
+
"reset_password_form.title.reset_password": [
|
|
2521
|
+
{
|
|
2522
|
+
"type": 0,
|
|
2523
|
+
"value": "Passwort zurücksetzen"
|
|
2524
|
+
}
|
|
2525
|
+
],
|
|
2526
|
+
"search.action.cancel": [
|
|
2527
|
+
{
|
|
2528
|
+
"type": 0,
|
|
2529
|
+
"value": "Abbrechen"
|
|
2530
|
+
}
|
|
2531
|
+
],
|
|
2532
|
+
"selected_refinements.action.clear_all": [
|
|
2533
|
+
{
|
|
2534
|
+
"type": 0,
|
|
2535
|
+
"value": "Auswahl aufheben"
|
|
2536
|
+
}
|
|
2537
|
+
],
|
|
2538
|
+
"shipping_address.button.continue_to_shipping": [
|
|
2539
|
+
{
|
|
2540
|
+
"type": 0,
|
|
2541
|
+
"value": "Weiter zur Versandmethode"
|
|
2542
|
+
}
|
|
2543
|
+
],
|
|
2544
|
+
"shipping_address.title.shipping_address": [
|
|
2545
|
+
{
|
|
2546
|
+
"type": 0,
|
|
2547
|
+
"value": "Lieferadresse"
|
|
2548
|
+
}
|
|
2549
|
+
],
|
|
2550
|
+
"shipping_address_edit_form.button.save_and_continue": [
|
|
2551
|
+
{
|
|
2552
|
+
"type": 0,
|
|
2553
|
+
"value": "Speichern und mit Versandmethode fortfahren"
|
|
2554
|
+
}
|
|
2555
|
+
],
|
|
2556
|
+
"shipping_address_form.heading.edit_address": [
|
|
2557
|
+
{
|
|
2558
|
+
"type": 0,
|
|
2559
|
+
"value": "Adresse bearbeiten"
|
|
2560
|
+
}
|
|
2561
|
+
],
|
|
2562
|
+
"shipping_address_form.heading.new_address": [
|
|
2563
|
+
{
|
|
2564
|
+
"type": 0,
|
|
2565
|
+
"value": "Neue Adresse hinzufügen"
|
|
2566
|
+
}
|
|
2567
|
+
],
|
|
2568
|
+
"shipping_address_selection.button.add_address": [
|
|
2569
|
+
{
|
|
2570
|
+
"type": 0,
|
|
2571
|
+
"value": "Neue Adresse hinzufügen"
|
|
2572
|
+
}
|
|
2573
|
+
],
|
|
2574
|
+
"shipping_address_selection.button.submit": [
|
|
2575
|
+
{
|
|
2576
|
+
"type": 0,
|
|
2577
|
+
"value": "Senden"
|
|
2578
|
+
}
|
|
2579
|
+
],
|
|
2580
|
+
"shipping_address_selection.title.add_address": [
|
|
2581
|
+
{
|
|
2582
|
+
"type": 0,
|
|
2583
|
+
"value": "Neue Adresse hinzufügen"
|
|
2584
|
+
}
|
|
2585
|
+
],
|
|
2586
|
+
"shipping_address_selection.title.edit_shipping": [
|
|
2587
|
+
{
|
|
2588
|
+
"type": 0,
|
|
2589
|
+
"value": "Lieferadresse bearbeiten"
|
|
2590
|
+
}
|
|
2591
|
+
],
|
|
2592
|
+
"shipping_options.action.send_as_a_gift": [
|
|
2593
|
+
{
|
|
2594
|
+
"type": 0,
|
|
2595
|
+
"value": "Möchten Sie die Bestellung als Geschenk versenden?"
|
|
2596
|
+
}
|
|
2597
|
+
],
|
|
2598
|
+
"shipping_options.button.continue_to_payment": [
|
|
2599
|
+
{
|
|
2600
|
+
"type": 0,
|
|
2601
|
+
"value": "Weiter zur Zahlung"
|
|
2602
|
+
}
|
|
2603
|
+
],
|
|
2604
|
+
"shipping_options.title.shipping_gift_options": [
|
|
2605
|
+
{
|
|
2606
|
+
"type": 0,
|
|
2607
|
+
"value": "Versand und Geschenkoptionen"
|
|
2608
|
+
}
|
|
2609
|
+
],
|
|
2610
|
+
"signout_confirmation_dialog.button.cancel": [
|
|
2611
|
+
{
|
|
2612
|
+
"type": 0,
|
|
2613
|
+
"value": "Abbrechen"
|
|
2614
|
+
}
|
|
2615
|
+
],
|
|
2616
|
+
"signout_confirmation_dialog.button.sign_out": [
|
|
2617
|
+
{
|
|
2618
|
+
"type": 0,
|
|
2619
|
+
"value": "Abmelden"
|
|
2620
|
+
}
|
|
2621
|
+
],
|
|
2622
|
+
"signout_confirmation_dialog.heading.sign_out": [
|
|
2623
|
+
{
|
|
2624
|
+
"type": 0,
|
|
2625
|
+
"value": "Abmelden"
|
|
2626
|
+
}
|
|
2627
|
+
],
|
|
2628
|
+
"signout_confirmation_dialog.message.sure_to_sign_out": [
|
|
2629
|
+
{
|
|
2630
|
+
"type": 0,
|
|
2631
|
+
"value": "Möchten Sie sich wirklich abmelden? Sie müssen sich wieder anmelden, um mit Ihrer aktuellen Bestellung fortzufahren."
|
|
2632
|
+
}
|
|
2633
|
+
],
|
|
2634
|
+
"toggle_card.action.edit": [
|
|
2635
|
+
{
|
|
2636
|
+
"type": 0,
|
|
2637
|
+
"value": "Bearbeiten"
|
|
2638
|
+
}
|
|
2639
|
+
],
|
|
2640
|
+
"update_password_fields.button.forgot_password": [
|
|
2641
|
+
{
|
|
2642
|
+
"type": 0,
|
|
2643
|
+
"value": "Passwort vergessen?"
|
|
2644
|
+
}
|
|
2645
|
+
],
|
|
2646
|
+
"use_address_fields.error.please_enter_first_name": [
|
|
2647
|
+
{
|
|
2648
|
+
"type": 0,
|
|
2649
|
+
"value": "Bitte geben Sie Ihren Vornamen ein."
|
|
2650
|
+
}
|
|
2651
|
+
],
|
|
2652
|
+
"use_address_fields.error.please_enter_last_name": [
|
|
2653
|
+
{
|
|
2654
|
+
"type": 0,
|
|
2655
|
+
"value": "Bitte geben Sie Ihren Nachnamen ein."
|
|
2656
|
+
}
|
|
2657
|
+
],
|
|
2658
|
+
"use_address_fields.error.please_enter_phone_number": [
|
|
2659
|
+
{
|
|
2660
|
+
"type": 0,
|
|
2661
|
+
"value": "Bitte geben Sie Ihre Telefonnummer ein."
|
|
2662
|
+
}
|
|
2663
|
+
],
|
|
2664
|
+
"use_address_fields.error.please_enter_your_postal_or_zip": [
|
|
2665
|
+
{
|
|
2666
|
+
"type": 0,
|
|
2667
|
+
"value": "Bitte geben Sie Ihre "
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"type": 1,
|
|
2671
|
+
"value": "postalOrZip"
|
|
2672
|
+
},
|
|
2673
|
+
{
|
|
2674
|
+
"type": 0,
|
|
2675
|
+
"value": " ein."
|
|
2676
|
+
}
|
|
2677
|
+
],
|
|
2678
|
+
"use_address_fields.error.please_select_your_address": [
|
|
2679
|
+
{
|
|
2680
|
+
"type": 0,
|
|
2681
|
+
"value": "Bitte geben Sie Ihre Adresse ein."
|
|
2682
|
+
}
|
|
2683
|
+
],
|
|
2684
|
+
"use_address_fields.error.please_select_your_city": [
|
|
2685
|
+
{
|
|
2686
|
+
"type": 0,
|
|
2687
|
+
"value": "Bitte geben Sie Ihren Wohnort ein."
|
|
2688
|
+
}
|
|
2689
|
+
],
|
|
2690
|
+
"use_address_fields.error.please_select_your_country": [
|
|
2691
|
+
{
|
|
2692
|
+
"type": 0,
|
|
2693
|
+
"value": "Bitte wählen Sie Ihr Land aus."
|
|
2694
|
+
}
|
|
2695
|
+
],
|
|
2696
|
+
"use_address_fields.error.please_select_your_state_or_province": [
|
|
2697
|
+
{
|
|
2698
|
+
"type": 0,
|
|
2699
|
+
"value": "Bitte wählen Sie Ihr(en) "
|
|
2700
|
+
},
|
|
2701
|
+
{
|
|
2702
|
+
"type": 1,
|
|
2703
|
+
"value": "stateOrProvince"
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"type": 0,
|
|
2707
|
+
"value": " aus."
|
|
2708
|
+
}
|
|
2709
|
+
],
|
|
2710
|
+
"use_address_fields.error.required": [
|
|
2711
|
+
{
|
|
2712
|
+
"type": 0,
|
|
2713
|
+
"value": "Erforderlich"
|
|
2714
|
+
}
|
|
2715
|
+
],
|
|
2716
|
+
"use_address_fields.error.state_code_invalid": [
|
|
2717
|
+
{
|
|
2718
|
+
"type": 0,
|
|
2719
|
+
"value": "Bitte geben Sie Bundesland/Kanton in Form von zwei Buchstaben ein."
|
|
2720
|
+
}
|
|
2721
|
+
],
|
|
2722
|
+
"use_address_fields.label.address": [
|
|
2723
|
+
{
|
|
2724
|
+
"type": 0,
|
|
2725
|
+
"value": "Adresse"
|
|
2726
|
+
}
|
|
2727
|
+
],
|
|
2728
|
+
"use_address_fields.label.city": [
|
|
2729
|
+
{
|
|
2730
|
+
"type": 0,
|
|
2731
|
+
"value": "Stadt"
|
|
2732
|
+
}
|
|
2733
|
+
],
|
|
2734
|
+
"use_address_fields.label.country": [
|
|
2735
|
+
{
|
|
2736
|
+
"type": 0,
|
|
2737
|
+
"value": "Land"
|
|
2738
|
+
}
|
|
2739
|
+
],
|
|
2740
|
+
"use_address_fields.label.first_name": [
|
|
2741
|
+
{
|
|
2742
|
+
"type": 0,
|
|
2743
|
+
"value": "Vorname"
|
|
2744
|
+
}
|
|
2745
|
+
],
|
|
2746
|
+
"use_address_fields.label.last_name": [
|
|
2747
|
+
{
|
|
2748
|
+
"type": 0,
|
|
2749
|
+
"value": "Nachname"
|
|
2750
|
+
}
|
|
2751
|
+
],
|
|
2752
|
+
"use_address_fields.label.phone": [
|
|
2753
|
+
{
|
|
2754
|
+
"type": 0,
|
|
2755
|
+
"value": "Telefon"
|
|
2756
|
+
}
|
|
2757
|
+
],
|
|
2758
|
+
"use_address_fields.label.postal_code": [
|
|
2759
|
+
{
|
|
2760
|
+
"type": 0,
|
|
2761
|
+
"value": "Postleitzahl"
|
|
2762
|
+
}
|
|
2763
|
+
],
|
|
2764
|
+
"use_address_fields.label.preferred": [
|
|
2765
|
+
{
|
|
2766
|
+
"type": 0,
|
|
2767
|
+
"value": "Als Standard festlegen"
|
|
2768
|
+
}
|
|
2769
|
+
],
|
|
2770
|
+
"use_address_fields.label.province": [
|
|
2771
|
+
{
|
|
2772
|
+
"type": 0,
|
|
2773
|
+
"value": "Kanton"
|
|
2774
|
+
}
|
|
2775
|
+
],
|
|
2776
|
+
"use_address_fields.label.state": [
|
|
2777
|
+
{
|
|
2778
|
+
"type": 0,
|
|
2779
|
+
"value": "Bundesland"
|
|
2780
|
+
}
|
|
2781
|
+
],
|
|
2782
|
+
"use_address_fields.label.zipCode": [
|
|
2783
|
+
{
|
|
2784
|
+
"type": 0,
|
|
2785
|
+
"value": "Postleitzahl"
|
|
2786
|
+
}
|
|
2787
|
+
],
|
|
2788
|
+
"use_credit_card_fields.error.required": [
|
|
2789
|
+
{
|
|
2790
|
+
"type": 0,
|
|
2791
|
+
"value": "Erforderlich"
|
|
2792
|
+
}
|
|
2793
|
+
],
|
|
2794
|
+
"use_credit_card_fields.error.required_card_number": [
|
|
2795
|
+
{
|
|
2796
|
+
"type": 0,
|
|
2797
|
+
"value": "Bitte geben Sie Ihre Kartennummer ein."
|
|
2798
|
+
}
|
|
2799
|
+
],
|
|
2800
|
+
"use_credit_card_fields.error.required_expiry": [
|
|
2801
|
+
{
|
|
2802
|
+
"type": 0,
|
|
2803
|
+
"value": "Bitte geben Sie Ihr Ablaufdatum ein."
|
|
2804
|
+
}
|
|
2805
|
+
],
|
|
2806
|
+
"use_credit_card_fields.error.required_name": [
|
|
2807
|
+
{
|
|
2808
|
+
"type": 0,
|
|
2809
|
+
"value": "Bitte geben Sie Ihren Namen so ein, wie er auf Ihrer Karte erscheint."
|
|
2810
|
+
}
|
|
2811
|
+
],
|
|
2812
|
+
"use_credit_card_fields.error.required_security_code": [
|
|
2813
|
+
{
|
|
2814
|
+
"type": 0,
|
|
2815
|
+
"value": "Bitte geben Sie Ihren Sicherheitscode ein."
|
|
2816
|
+
}
|
|
2817
|
+
],
|
|
2818
|
+
"use_credit_card_fields.error.valid_card_number": [
|
|
2819
|
+
{
|
|
2820
|
+
"type": 0,
|
|
2821
|
+
"value": "Bitte geben Sie eine gültige Kartennummer ein."
|
|
2822
|
+
}
|
|
2823
|
+
],
|
|
2824
|
+
"use_credit_card_fields.error.valid_date": [
|
|
2825
|
+
{
|
|
2826
|
+
"type": 0,
|
|
2827
|
+
"value": "Bitte geben Sie ein gültiges Datum ein."
|
|
2828
|
+
}
|
|
2829
|
+
],
|
|
2830
|
+
"use_credit_card_fields.error.valid_name": [
|
|
2831
|
+
{
|
|
2832
|
+
"type": 0,
|
|
2833
|
+
"value": "Bitte geben Sie einen gültigen Namen ein."
|
|
2834
|
+
}
|
|
2835
|
+
],
|
|
2836
|
+
"use_credit_card_fields.error.valid_security_code": [
|
|
2837
|
+
{
|
|
2838
|
+
"type": 0,
|
|
2839
|
+
"value": "Bitte geben Sie einen gültigen Sicherheitscode ein."
|
|
2840
|
+
}
|
|
2841
|
+
],
|
|
2842
|
+
"use_credit_card_fields.label.card_number": [
|
|
2843
|
+
{
|
|
2844
|
+
"type": 0,
|
|
2845
|
+
"value": "Kartennummer"
|
|
2846
|
+
}
|
|
2847
|
+
],
|
|
2848
|
+
"use_credit_card_fields.label.card_type": [
|
|
2849
|
+
{
|
|
2850
|
+
"type": 0,
|
|
2851
|
+
"value": "Kartentyp"
|
|
2852
|
+
}
|
|
2853
|
+
],
|
|
2854
|
+
"use_credit_card_fields.label.expiry": [
|
|
2855
|
+
{
|
|
2856
|
+
"type": 0,
|
|
2857
|
+
"value": "Ablaufdatum"
|
|
2858
|
+
}
|
|
2859
|
+
],
|
|
2860
|
+
"use_credit_card_fields.label.name": [
|
|
2861
|
+
{
|
|
2862
|
+
"type": 0,
|
|
2863
|
+
"value": "Name auf der Karte"
|
|
2864
|
+
}
|
|
2865
|
+
],
|
|
2866
|
+
"use_credit_card_fields.label.security_code": [
|
|
2867
|
+
{
|
|
2868
|
+
"type": 0,
|
|
2869
|
+
"value": "Sicherheitscode"
|
|
2870
|
+
}
|
|
2871
|
+
],
|
|
2872
|
+
"use_login_fields.error.required_email": [
|
|
2873
|
+
{
|
|
2874
|
+
"type": 0,
|
|
2875
|
+
"value": "Bitte geben Sie Ihre E-Mail-Adresse ein."
|
|
2876
|
+
}
|
|
2877
|
+
],
|
|
2878
|
+
"use_login_fields.error.required_password": [
|
|
2879
|
+
{
|
|
2880
|
+
"type": 0,
|
|
2881
|
+
"value": "Bitte geben Sie Ihr Passwort ein."
|
|
2882
|
+
}
|
|
2883
|
+
],
|
|
2884
|
+
"use_login_fields.label.email": [
|
|
2885
|
+
{
|
|
2886
|
+
"type": 0,
|
|
2887
|
+
"value": "E-Mail"
|
|
2888
|
+
}
|
|
2889
|
+
],
|
|
2890
|
+
"use_login_fields.label.password": [
|
|
2891
|
+
{
|
|
2892
|
+
"type": 0,
|
|
2893
|
+
"value": "Passwort"
|
|
2894
|
+
}
|
|
2895
|
+
],
|
|
2896
|
+
"use_product.message.inventory_remaining": [
|
|
2897
|
+
{
|
|
2898
|
+
"type": 0,
|
|
2899
|
+
"value": "Nur noch "
|
|
2900
|
+
},
|
|
2901
|
+
{
|
|
2902
|
+
"type": 1,
|
|
2903
|
+
"value": "stockLevel"
|
|
2904
|
+
},
|
|
2905
|
+
{
|
|
2906
|
+
"type": 0,
|
|
2907
|
+
"value": " vorhanden!"
|
|
2908
|
+
}
|
|
2909
|
+
],
|
|
2910
|
+
"use_product.message.out_of_stock": [
|
|
2911
|
+
{
|
|
2912
|
+
"type": 0,
|
|
2913
|
+
"value": "Nicht vorrätig"
|
|
2914
|
+
}
|
|
2915
|
+
],
|
|
2916
|
+
"use_profile_fields.error.required_email": [
|
|
2917
|
+
{
|
|
2918
|
+
"type": 0,
|
|
2919
|
+
"value": "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
|
2920
|
+
}
|
|
2921
|
+
],
|
|
2922
|
+
"use_profile_fields.error.required_first_name": [
|
|
2923
|
+
{
|
|
2924
|
+
"type": 0,
|
|
2925
|
+
"value": "Bitte geben Sie Ihren Vornamen ein."
|
|
2926
|
+
}
|
|
2927
|
+
],
|
|
2928
|
+
"use_profile_fields.error.required_last_name": [
|
|
2929
|
+
{
|
|
2930
|
+
"type": 0,
|
|
2931
|
+
"value": "Bitte geben Sie Ihren Nachnamen ein."
|
|
2932
|
+
}
|
|
2933
|
+
],
|
|
2934
|
+
"use_profile_fields.error.required_phone": [
|
|
2935
|
+
{
|
|
2936
|
+
"type": 0,
|
|
2937
|
+
"value": "Bitte geben Sie Ihre Telefonnummer ein."
|
|
2938
|
+
}
|
|
2939
|
+
],
|
|
2940
|
+
"use_profile_fields.label.email": [
|
|
2941
|
+
{
|
|
2942
|
+
"type": 0,
|
|
2943
|
+
"value": "E-Mail"
|
|
2944
|
+
}
|
|
2945
|
+
],
|
|
2946
|
+
"use_profile_fields.label.first_name": [
|
|
2947
|
+
{
|
|
2948
|
+
"type": 0,
|
|
2949
|
+
"value": "Vorname"
|
|
2950
|
+
}
|
|
2951
|
+
],
|
|
2952
|
+
"use_profile_fields.label.last_name": [
|
|
2953
|
+
{
|
|
2954
|
+
"type": 0,
|
|
2955
|
+
"value": "Nachname"
|
|
2956
|
+
}
|
|
2957
|
+
],
|
|
2958
|
+
"use_profile_fields.label.phone": [
|
|
2959
|
+
{
|
|
2960
|
+
"type": 0,
|
|
2961
|
+
"value": "Telefonnummer"
|
|
2962
|
+
}
|
|
2963
|
+
],
|
|
2964
|
+
"use_promo_code_fields.error.required_promo_code": [
|
|
2965
|
+
{
|
|
2966
|
+
"type": 0,
|
|
2967
|
+
"value": "Bitte geben Sie einen gültigen Aktionscode an."
|
|
2968
|
+
}
|
|
2969
|
+
],
|
|
2970
|
+
"use_promo_code_fields.label.promo_code": [
|
|
2971
|
+
{
|
|
2972
|
+
"type": 0,
|
|
2973
|
+
"value": "Aktionscode"
|
|
2974
|
+
}
|
|
2975
|
+
],
|
|
2976
|
+
"use_promocode.error.check_the_code": [
|
|
2977
|
+
{
|
|
2978
|
+
"type": 0,
|
|
2979
|
+
"value": "Überprüfen Sie den Code und versuchen Sie es erneut. Er wurde eventuell schon angewendet oder die Werbeaktion ist abgelaufen."
|
|
2980
|
+
}
|
|
2981
|
+
],
|
|
2982
|
+
"use_promocode.info.promo_applied": [
|
|
2983
|
+
{
|
|
2984
|
+
"type": 0,
|
|
2985
|
+
"value": "Werbeaktion angewendet"
|
|
2986
|
+
}
|
|
2987
|
+
],
|
|
2988
|
+
"use_promocode.info.promo_removed": [
|
|
2989
|
+
{
|
|
2990
|
+
"type": 0,
|
|
2991
|
+
"value": "Werbeaktion entfernt"
|
|
2992
|
+
}
|
|
2993
|
+
],
|
|
2994
|
+
"use_registration_fields.error.contain_number": [
|
|
2995
|
+
{
|
|
2996
|
+
"type": 0,
|
|
2997
|
+
"value": "Das Passwort muss mindestens eine Ziffer enthalten."
|
|
2998
|
+
}
|
|
2999
|
+
],
|
|
3000
|
+
"use_registration_fields.error.lowercase_letter": [
|
|
3001
|
+
{
|
|
3002
|
+
"type": 0,
|
|
3003
|
+
"value": "Das Passwort muss mindestens einen Kleinbuchstaben enthalten."
|
|
3004
|
+
}
|
|
3005
|
+
],
|
|
3006
|
+
"use_registration_fields.error.minimum_characters": [
|
|
3007
|
+
{
|
|
3008
|
+
"type": 0,
|
|
3009
|
+
"value": "Das Passwort muss mindestens 8 Zeichen enthalten."
|
|
3010
|
+
}
|
|
3011
|
+
],
|
|
3012
|
+
"use_registration_fields.error.required_email": [
|
|
3013
|
+
{
|
|
3014
|
+
"type": 0,
|
|
3015
|
+
"value": "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
|
3016
|
+
}
|
|
3017
|
+
],
|
|
3018
|
+
"use_registration_fields.error.required_first_name": [
|
|
3019
|
+
{
|
|
3020
|
+
"type": 0,
|
|
3021
|
+
"value": "Bitte geben Sie Ihren Vornamen ein."
|
|
3022
|
+
}
|
|
3023
|
+
],
|
|
3024
|
+
"use_registration_fields.error.required_last_name": [
|
|
3025
|
+
{
|
|
3026
|
+
"type": 0,
|
|
3027
|
+
"value": "Bitte geben Sie Ihren Nachnamen ein."
|
|
3028
|
+
}
|
|
3029
|
+
],
|
|
3030
|
+
"use_registration_fields.error.required_password": [
|
|
3031
|
+
{
|
|
3032
|
+
"type": 0,
|
|
3033
|
+
"value": "Bitte erstellen Sie ein Passwort."
|
|
3034
|
+
}
|
|
3035
|
+
],
|
|
3036
|
+
"use_registration_fields.error.special_character": [
|
|
3037
|
+
{
|
|
3038
|
+
"type": 0,
|
|
3039
|
+
"value": "Das Passwort muss mindestens ein Sonderzeichen enthalten."
|
|
3040
|
+
}
|
|
3041
|
+
],
|
|
3042
|
+
"use_registration_fields.error.uppercase_letter": [
|
|
3043
|
+
{
|
|
3044
|
+
"type": 0,
|
|
3045
|
+
"value": "Das Passwort muss mindestens einen Großbuchstaben enthalten."
|
|
3046
|
+
}
|
|
3047
|
+
],
|
|
3048
|
+
"use_registration_fields.label.email": [
|
|
3049
|
+
{
|
|
3050
|
+
"type": 0,
|
|
3051
|
+
"value": "E-Mail"
|
|
3052
|
+
}
|
|
3053
|
+
],
|
|
3054
|
+
"use_registration_fields.label.first_name": [
|
|
3055
|
+
{
|
|
3056
|
+
"type": 0,
|
|
3057
|
+
"value": "Vorname"
|
|
3058
|
+
}
|
|
3059
|
+
],
|
|
3060
|
+
"use_registration_fields.label.last_name": [
|
|
3061
|
+
{
|
|
3062
|
+
"type": 0,
|
|
3063
|
+
"value": "Nachname"
|
|
3064
|
+
}
|
|
3065
|
+
],
|
|
3066
|
+
"use_registration_fields.label.password": [
|
|
3067
|
+
{
|
|
3068
|
+
"type": 0,
|
|
3069
|
+
"value": "Passwort"
|
|
3070
|
+
}
|
|
3071
|
+
],
|
|
3072
|
+
"use_registration_fields.label.sign_up_to_emails": [
|
|
3073
|
+
{
|
|
3074
|
+
"type": 0,
|
|
3075
|
+
"value": "Ich möchte E-Mails von Salesforce abonnieren (Sie können Ihr Abonnement jederzeit wieder abbestellen)."
|
|
3076
|
+
}
|
|
3077
|
+
],
|
|
3078
|
+
"use_reset_password_fields.error.required_email": [
|
|
3079
|
+
{
|
|
3080
|
+
"type": 0,
|
|
3081
|
+
"value": "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
|
3082
|
+
}
|
|
3083
|
+
],
|
|
3084
|
+
"use_reset_password_fields.label.email": [
|
|
3085
|
+
{
|
|
3086
|
+
"type": 0,
|
|
3087
|
+
"value": "E-Mail"
|
|
3088
|
+
}
|
|
3089
|
+
],
|
|
3090
|
+
"use_update_password_fields.error.contain_number": [
|
|
3091
|
+
{
|
|
3092
|
+
"type": 0,
|
|
3093
|
+
"value": "Das Passwort muss mindestens eine Ziffer enthalten."
|
|
3094
|
+
}
|
|
3095
|
+
],
|
|
3096
|
+
"use_update_password_fields.error.lowercase_letter": [
|
|
3097
|
+
{
|
|
3098
|
+
"type": 0,
|
|
3099
|
+
"value": "Das Passwort muss mindestens einen Kleinbuchstaben enthalten."
|
|
3100
|
+
}
|
|
3101
|
+
],
|
|
3102
|
+
"use_update_password_fields.error.minimum_characters": [
|
|
3103
|
+
{
|
|
3104
|
+
"type": 0,
|
|
3105
|
+
"value": "Das Passwort muss mindestens 8 Zeichen enthalten."
|
|
3106
|
+
}
|
|
3107
|
+
],
|
|
3108
|
+
"use_update_password_fields.error.required_new_password": [
|
|
3109
|
+
{
|
|
3110
|
+
"type": 0,
|
|
3111
|
+
"value": "Bitte geben Sie ein neues Passwort ein."
|
|
3112
|
+
}
|
|
3113
|
+
],
|
|
3114
|
+
"use_update_password_fields.error.required_password": [
|
|
3115
|
+
{
|
|
3116
|
+
"type": 0,
|
|
3117
|
+
"value": "Bitte geben Sie Ihr Passwort ein."
|
|
3118
|
+
}
|
|
3119
|
+
],
|
|
3120
|
+
"use_update_password_fields.error.special_character": [
|
|
3121
|
+
{
|
|
3122
|
+
"type": 0,
|
|
3123
|
+
"value": "Das Passwort muss mindestens ein Sonderzeichen enthalten."
|
|
3124
|
+
}
|
|
3125
|
+
],
|
|
3126
|
+
"use_update_password_fields.error.uppercase_letter": [
|
|
3127
|
+
{
|
|
3128
|
+
"type": 0,
|
|
3129
|
+
"value": "Das Passwort muss mindestens einen Großbuchstaben enthalten."
|
|
3130
|
+
}
|
|
3131
|
+
],
|
|
3132
|
+
"use_update_password_fields.label.current_password": [
|
|
3133
|
+
{
|
|
3134
|
+
"type": 0,
|
|
3135
|
+
"value": "Aktuelles Passwort"
|
|
3136
|
+
}
|
|
3137
|
+
],
|
|
3138
|
+
"use_update_password_fields.label.new_password": [
|
|
3139
|
+
{
|
|
3140
|
+
"type": 0,
|
|
3141
|
+
"value": "Neues Passwort"
|
|
3142
|
+
}
|
|
3143
|
+
],
|
|
3144
|
+
"wishlist_primary_action.button.add_to_cart": [
|
|
3145
|
+
{
|
|
3146
|
+
"type": 0,
|
|
3147
|
+
"value": "In den Warenkorb"
|
|
3148
|
+
}
|
|
3149
|
+
],
|
|
3150
|
+
"wishlist_primary_action.button.select_options": [
|
|
3151
|
+
{
|
|
3152
|
+
"type": 0,
|
|
3153
|
+
"value": "Optionen auswählen"
|
|
3154
|
+
}
|
|
3155
|
+
],
|
|
3156
|
+
"wishlist_primary_action.info.added_to_cart": [
|
|
3157
|
+
{
|
|
3158
|
+
"type": 1,
|
|
3159
|
+
"value": "quantity"
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"type": 0,
|
|
3163
|
+
"value": " "
|
|
3164
|
+
},
|
|
3165
|
+
{
|
|
3166
|
+
"offset": 0,
|
|
3167
|
+
"options": {
|
|
3168
|
+
"one": {
|
|
3169
|
+
"value": [
|
|
3170
|
+
{
|
|
3171
|
+
"type": 0,
|
|
3172
|
+
"value": "Artikel"
|
|
3173
|
+
}
|
|
3174
|
+
]
|
|
3175
|
+
},
|
|
3176
|
+
"other": {
|
|
3177
|
+
"value": [
|
|
3178
|
+
{
|
|
3179
|
+
"type": 0,
|
|
3180
|
+
"value": "Artikel"
|
|
3181
|
+
}
|
|
3182
|
+
]
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
"pluralType": "cardinal",
|
|
3186
|
+
"type": 6,
|
|
3187
|
+
"value": "quantity"
|
|
3188
|
+
},
|
|
3189
|
+
{
|
|
3190
|
+
"type": 0,
|
|
3191
|
+
"value": " zum Warenkorb hinzugefügt"
|
|
3192
|
+
}
|
|
3193
|
+
],
|
|
3194
|
+
"wishlist_secondary_button_group.action.remove": [
|
|
3195
|
+
{
|
|
3196
|
+
"type": 0,
|
|
3197
|
+
"value": "Entfernen"
|
|
3198
|
+
}
|
|
3199
|
+
],
|
|
3200
|
+
"wishlist_secondary_button_group.info.item_removed": [
|
|
3201
|
+
{
|
|
3202
|
+
"type": 0,
|
|
3203
|
+
"value": "Artikel aus der Wunschliste entfernt"
|
|
3204
|
+
}
|
|
3205
|
+
],
|
|
3206
|
+
"with_registration.info.please_sign_in": [
|
|
3207
|
+
{
|
|
3208
|
+
"type": 0,
|
|
3209
|
+
"value": "Bitte melden Sie sich an, um fortzufahren."
|
|
3210
|
+
}
|
|
3211
|
+
]
|
|
3212
|
+
}
|