@revenexx/cover 0.1.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/LICENSE +21 -0
- package/README.md +39 -0
- package/app/api/account.ts +8 -0
- package/app/api/categories.ts +3 -0
- package/app/api/checkout.ts +6 -0
- package/app/api/images.ts +4 -0
- package/app/api/markets.ts +3 -0
- package/app/api/product.ts +3 -0
- package/app/api/products.ts +4 -0
- package/app/api/search.ts +4 -0
- package/app/app.config.ts +29 -0
- package/app/assets/css/cover.css +25 -0
- package/app/components/account/AccountMenu.vue +30 -0
- package/app/components/account/AccountShell.vue +18 -0
- package/app/components/account/AccountSidebar.vue +90 -0
- package/app/components/account/address/AccountAddressCard.vue +287 -0
- package/app/components/account/carts/AccountCartsTable.vue +284 -0
- package/app/components/account/dashboard/AccountDashboard.vue +351 -0
- package/app/components/account/directorder/AccountDirectOrder.vue +512 -0
- package/app/components/account/governance/AccountApprovalLimitsTable.vue +221 -0
- package/app/components/account/governance/AccountCostCenterDetail.vue +276 -0
- package/app/components/account/governance/AccountCostCentersTable.vue +252 -0
- package/app/components/account/governance/AccountRequisitionDetail.vue +295 -0
- package/app/components/account/governance/AccountRequisitionsTable.vue +255 -0
- package/app/components/account/governance/AccountWorkflowDetail.vue +215 -0
- package/app/components/account/governance/AccountWorkflowsTable.vue +168 -0
- package/app/components/account/governance/GovernanceApprovalLimitModal.vue +183 -0
- package/app/components/account/governance/GovernanceCostCenterModal.vue +188 -0
- package/app/components/account/governance/GovernanceWorkflowModal.vue +191 -0
- package/app/components/account/orderlists/AccountOrderListDetail.vue +349 -0
- package/app/components/account/orderlists/AccountOrderListsTable.vue +352 -0
- package/app/components/account/orders/AccountOrderDetail.vue +376 -0
- package/app/components/account/orders/AccountOrdersTable.vue +281 -0
- package/app/components/account/preferences/AccountPreferences.vue +50 -0
- package/app/components/auth/AuthForgotPasswordPanel.vue +88 -0
- package/app/components/auth/AuthLoginPanel.vue +103 -0
- package/app/components/auth/AuthLoginTeaser.vue +24 -0
- package/app/components/auth/AuthPageHeader.vue +21 -0
- package/app/components/auth/AuthRegisterPanel.vue +431 -0
- package/app/components/auth/AuthRegisterTeaser.vue +24 -0
- package/app/components/auth/AuthResetPasswordPanel.vue +115 -0
- package/app/components/cart/CartButton.vue +42 -0
- package/app/components/cart/actions/CartCostCenterModal.vue +110 -0
- package/app/components/cart/actions/CartExportModal.vue +82 -0
- package/app/components/cart/actions/CartPositionTextsModal.vue +92 -0
- package/app/components/cart/actions/CartSaveToListModal.vue +177 -0
- package/app/components/cart/actions/CartWorkflowPickerModal.vue +64 -0
- package/app/components/cart/drawer/CartDrawer.vue +49 -0
- package/app/components/cart/item/CartItem.vue +318 -0
- package/app/components/cart/manage/CartNameModal.vue +68 -0
- package/app/components/cart/position/CartPosition.vue +369 -0
- package/app/components/cart/quickadd/CartQuickAdd.vue +145 -0
- package/app/components/cart/recommend/CartCrossSell.vue +102 -0
- package/app/components/cart/recommend/CartRecommendCard.vue +59 -0
- package/app/components/cart/recommend/CartReorderStrip.vue +108 -0
- package/app/components/cart/requisition/CartRequisitionGroup.vue +74 -0
- package/app/components/cart/skeleton/CartSkeleton.vue +18 -0
- package/app/components/cart/summary/CartSummary.vue +25 -0
- package/app/components/cart/summary/CartSummaryBreakdown.vue +35 -0
- package/app/components/cart/switcher/CartSwitcher.vue +147 -0
- package/app/components/cart/target/CartTargetModal.vue +129 -0
- package/app/components/cart/view/CartApprovalsPanel.vue +89 -0
- package/app/components/cart/view/CartListHeader.vue +86 -0
- package/app/components/cart/view/CartPositionList.vue +94 -0
- package/app/components/cart/view/CartSummaryPanel.vue +254 -0
- package/app/components/cart/view/CartView.vue +310 -0
- package/app/components/category/info/CategoryPrice.vue +47 -0
- package/app/components/category/info/CategorySku.vue +15 -0
- package/app/components/category/info/CategoryStock.vue +25 -0
- package/app/components/category/list/CategoryItemCount.vue +27 -0
- package/app/components/category/list/CategoryListPagination.vue +81 -0
- package/app/components/category/skeleton/CategoryDetailSkeleton.vue +12 -0
- package/app/components/category/skeleton/CategoryListSkeleton.vue +65 -0
- package/app/components/category/view/CategoryViewToggle.vue +33 -0
- package/app/components/category/view/GridView.vue +78 -0
- package/app/components/category/view/ListView.vue +80 -0
- package/app/components/checkout/confirmation/CheckoutConfirmationView.vue +289 -0
- package/app/components/checkout/form/CheckoutSchemaForm.vue +72 -0
- package/app/components/checkout/onepage/CheckoutAddressPickerModal.vue +260 -0
- package/app/components/checkout/onepage/CheckoutAddressSection.vue +186 -0
- package/app/components/checkout/onepage/CheckoutDeliverySection.vue +158 -0
- package/app/components/checkout/onepage/CheckoutGate.vue +67 -0
- package/app/components/checkout/onepage/CheckoutGuestDetailsSection.vue +154 -0
- package/app/components/checkout/onepage/CheckoutNotesSection.vue +62 -0
- package/app/components/checkout/onepage/CheckoutOnePageView.vue +77 -0
- package/app/components/checkout/onepage/CheckoutPaymentSection.vue +181 -0
- package/app/components/checkout/onepage/CheckoutSectionTitle.vue +18 -0
- package/app/components/checkout/onepage/CheckoutSummarySection.vue +211 -0
- package/app/components/checkout/onepage/CheckoutWorkflowPanel.vue +38 -0
- package/app/components/layout/AppLogo.vue +21 -0
- package/app/components/layout/footer/Footer.vue +148 -0
- package/app/components/layout/header/AppBar.vue +75 -0
- package/app/components/layout/header/CategoryNav.vue +93 -0
- package/app/components/layout/header/HeaderActionItem.vue +81 -0
- package/app/components/layout/header/LocaleSwitcher.vue +123 -0
- package/app/components/layout/header/MainNav.vue +61 -0
- package/app/components/layout/header/MobileMenu.vue +81 -0
- package/app/components/layout/header/TopBar.vue +63 -0
- package/app/components/listing/ListingView.vue +227 -0
- package/app/components/product/detail/ProductDetailAddToCart.vue +188 -0
- package/app/components/product/detail/ProductDetailDescription.vue +20 -0
- package/app/components/product/detail/ProductDetailImageGallery.vue +58 -0
- package/app/components/product/detail/ProductDetailPricing.vue +108 -0
- package/app/components/product/detail/ProductDetailSaveToList.vue +291 -0
- package/app/components/product/detail/ProductDetailSpecifications.vue +33 -0
- package/app/components/product/detail/ProductDetailStock.vue +36 -0
- package/app/components/search/filter/SearchFacets.vue +256 -0
- package/app/components/search/filter/SearchFacetsDrawer.vue +58 -0
- package/app/components/ui/AppShell.vue +7 -0
- package/app/components/ui/debug/PiniaStateCard.vue +106 -0
- package/app/components/ui/feedback/EmptyState.vue +30 -0
- package/app/components/ui/feedback/ErrorBoundary.vue +44 -0
- package/app/components/ui/feedback/NotFound.vue +34 -0
- package/app/components/ui/forms/CountrySelection.vue +14 -0
- package/app/components/ui/forms/FormKitDatePicker.vue +124 -0
- package/app/components/ui/forms/PasswordInput.vue +136 -0
- package/app/components/ui/forms/SearchInput.vue +213 -0
- package/app/components/ui/table/TableSortButton.vue +51 -0
- package/app/components/ui/table/TableToolbar.vue +66 -0
- package/app/composables/useAccount.ts +27 -0
- package/app/composables/useAccountAddresses.ts +116 -0
- package/app/composables/useAccountOrders.ts +18 -0
- package/app/composables/useAppUrl.ts +38 -0
- package/app/composables/useAuthStore.ts +202 -0
- package/app/composables/useB2BContext.ts +23 -0
- package/app/composables/useCartActions.ts +25 -0
- package/app/composables/useCartCalculation.ts +90 -0
- package/app/composables/useCartSelection.ts +46 -0
- package/app/composables/useCartStore.ts +837 -0
- package/app/composables/useCartSummaryFormatting.ts +28 -0
- package/app/composables/useCategories.ts +29 -0
- package/app/composables/useCheckoutOnePage.ts +438 -0
- package/app/composables/useCheckoutProfileSource.ts +8 -0
- package/app/composables/useCheckoutSchema.ts +28 -0
- package/app/composables/useDataTable.ts +14 -0
- package/app/composables/useFormValidation.ts +29 -0
- package/app/composables/useIcons.ts +17 -0
- package/app/composables/useLocalePreferences.ts +45 -0
- package/app/composables/useMarkets.ts +15 -0
- package/app/composables/useProduct.ts +89 -0
- package/app/composables/useProductCard.ts +8 -0
- package/app/composables/useProductCardActions.ts +106 -0
- package/app/composables/useProductImage.ts +12 -0
- package/app/composables/useProductListing.ts +210 -0
- package/app/composables/useProductUrl.ts +17 -0
- package/app/composables/useProducts.ts +130 -0
- package/app/composables/useSearch.ts +12 -0
- package/app/composables/useThemeStore.ts +81 -0
- package/app/composables/useViewMode.ts +18 -0
- package/app/config/countries.ts +74 -0
- package/app/config/icons.ts +283 -0
- package/app/config/navigation.ts +191 -0
- package/app/config/palette.ts +13 -0
- package/app/config/themes.ts +20 -0
- package/app/formkit.config.ts +50 -0
- package/app/interfaces/account/address-list.ts +34 -0
- package/app/interfaces/account/order-list.ts +47 -0
- package/app/interfaces/account/order-lists.ts +35 -0
- package/app/interfaces/account/profile.ts +17 -0
- package/app/interfaces/account.ts +3 -0
- package/app/interfaces/address.ts +9 -0
- package/app/interfaces/auth.ts +104 -0
- package/app/interfaces/b2b.ts +234 -0
- package/app/interfaces/cart-calculation.ts +131 -0
- package/app/interfaces/cart-item.ts +45 -0
- package/app/interfaces/checkout-draft.ts +4 -0
- package/app/interfaces/checkout.ts +43 -0
- package/app/interfaces/delivery.ts +13 -0
- package/app/interfaces/market.ts +24 -0
- package/app/interfaces/payment.ts +19 -0
- package/app/interfaces/persisted-cart.ts +10 -0
- package/app/interfaces/product-detail.ts +54 -0
- package/app/interfaces/product-list.ts +33 -0
- package/app/interfaces/search-facets.ts +14 -0
- package/app/interfaces/validation.ts +14 -0
- package/app/layouts/default.vue +78 -0
- package/app/layouts/focus.vue +80 -0
- package/app/plugins/formkit-locale.client.ts +23 -0
- package/app/shared/constants.ts +1 -0
- package/app/validations/companyName.ts +18 -0
- package/app/validations/emailFormat.ts +10 -0
- package/app/validations/formValidationConfig.ts +50 -0
- package/app/validations/maxLength.ts +12 -0
- package/app/validations/minLength.ts +9 -0
- package/app/validations/optionalCompanyName.ts +23 -0
- package/app/validations/passwordsMatch.ts +5 -0
- package/app/validations/phoneNumber.ts +19 -0
- package/app/validations/required.ts +11 -0
- package/app/validations/termsRequired.ts +4 -0
- package/app/validations/types.ts +10 -0
- package/app/validations/zipCode.ts +15 -0
- package/i18n/locales/de/account.json +458 -0
- package/i18n/locales/de/auth.json +155 -0
- package/i18n/locales/de/cart.json +263 -0
- package/i18n/locales/de/checkout.json +217 -0
- package/i18n/locales/de/common.json +80 -0
- package/i18n/locales/de/cover.json +33 -0
- package/i18n/locales/de/order.json +1 -0
- package/i18n/locales/de/product.json +71 -0
- package/i18n/locales/de/search.json +54 -0
- package/i18n/locales/de/validation.json +12 -0
- package/i18n/locales/en/account.json +458 -0
- package/i18n/locales/en/auth.json +155 -0
- package/i18n/locales/en/cart.json +263 -0
- package/i18n/locales/en/checkout.json +217 -0
- package/i18n/locales/en/common.json +80 -0
- package/i18n/locales/en/cover.json +33 -0
- package/i18n/locales/en/order.json +1 -0
- package/i18n/locales/en/product.json +71 -0
- package/i18n/locales/en/search.json +54 -0
- package/i18n/locales/en/validation.json +12 -0
- package/nuxt.config.ts +109 -0
- package/package.json +65 -0
- package/public/img/product-placeholder.svg +8 -0
- package/public/templates/direct-order-template.csv +3 -0
- package/public/templates/direct-order-template.xlsx +0 -0
- package/server/api/account/address/[id].delete.ts +51 -0
- package/server/api/account/address/[id].put.ts +83 -0
- package/server/api/account/address/index.post.ts +60 -0
- package/server/api/account/addresses.get.ts +25 -0
- package/server/api/account/context.get.ts +16 -0
- package/server/api/account/governance/[domain]/[id].put.ts +57 -0
- package/server/api/account/governance/[domain].post.ts +111 -0
- package/server/api/account/order-lists/[id].delete.ts +22 -0
- package/server/api/account/order-lists/[id].get.ts +17 -0
- package/server/api/account/order-lists/[id].put.ts +46 -0
- package/server/api/account/order-lists/index.get.ts +14 -0
- package/server/api/account/order-lists/index.post.ts +38 -0
- package/server/api/account/orders/[id].get.ts +35 -0
- package/server/api/account/orders.get.ts +35 -0
- package/server/api/account/profile.get.ts +56 -0
- package/server/api/account/profile.put.ts +128 -0
- package/server/api/account/requisitions/[id].get.ts +15 -0
- package/server/api/account/requisitions.get.ts +23 -0
- package/server/api/auth/login.post.ts +37 -0
- package/server/api/auth/logout.post.ts +4 -0
- package/server/api/auth/me.get.ts +3 -0
- package/server/api/auth/personas.get.ts +7 -0
- package/server/api/auth/recovery.post.ts +32 -0
- package/server/api/auth/recovery.put.ts +37 -0
- package/server/api/auth/register.post.ts +126 -0
- package/server/api/cart/calculate.post.ts +25 -0
- package/server/api/cart/export.post.ts +81 -0
- package/server/api/cart/index.delete.ts +10 -0
- package/server/api/cart/index.get.ts +10 -0
- package/server/api/cart/sync.post.ts +14 -0
- package/server/api/carts/[id]/activate.post.ts +18 -0
- package/server/api/carts/[id]/index.delete.ts +18 -0
- package/server/api/carts/[id]/index.put.ts +19 -0
- package/server/api/carts/[id]/items.post.ts +21 -0
- package/server/api/carts/index.get.ts +14 -0
- package/server/api/carts/index.post.ts +14 -0
- package/server/api/categories/[slug].get.ts +22 -0
- package/server/api/categories/index.get.ts +11 -0
- package/server/api/checkout/profile.get.ts +21 -0
- package/server/api/checkout/schema/[key].get.ts +19 -0
- package/server/api/checkout/session.post.ts +8 -0
- package/server/api/images/detail/[filename].get.ts +18 -0
- package/server/api/images/list/[filename].get.ts +17 -0
- package/server/api/markets.get.ts +9 -0
- package/server/api/orders/index.post.ts +376 -0
- package/server/api/payment/methods.post.ts +65 -0
- package/server/api/product/[id].get.ts +29 -0
- package/server/api/products/[id].get.ts +30 -0
- package/server/api/products/index.get.ts +21 -0
- package/server/api/requisitions/index.post.ts +67 -0
- package/server/api/shipping/rates.post.ts +70 -0
- package/server/api/themes/index.get.ts +9 -0
- package/server/api/typesense/drop.get.ts +22 -0
- package/server/api/typesense/health.get.ts +9 -0
- package/server/api/typesense/search.post.ts +199 -0
- package/server/api/typesense/seed.get.ts +112 -0
- package/server/api/typesense/suggest.post.ts +69 -0
- package/server/config/account/organization.json +146 -0
- package/server/config/account/personas.json +169 -0
- package/server/config/account/user.json +8 -0
- package/server/config/account/workflows.json +19 -0
- package/server/data/account/address-list.json +103 -0
- package/server/data/account/order-list.json +491 -0
- package/server/data/account/order-lists.json +149 -0
- package/server/data/account/profile.json +9 -0
- package/server/data/account/registration-requests.json +3 -0
- package/server/data/account/requisitions.json +686 -0
- package/server/data/categories.json +186 -0
- package/server/data/forms/checkout/add-address.json +24 -0
- package/server/data/list/5137-1.png +0 -0
- package/server/data/list/5498-1.png +0 -0
- package/server/data/list/5498-2.png +0 -0
- package/server/data/list/5498-3.png +0 -0
- package/server/data/list/5498-4.png +0 -0
- package/server/data/list/5498-5.png +0 -0
- package/server/data/list/5498-6.png +0 -0
- package/server/data/list/5519-1.png +0 -0
- package/server/data/list/5713-1.png +0 -0
- package/server/data/list/5789-1.png +0 -0
- package/server/data/list/5930-1.png +0 -0
- package/server/data/list/6127-1.png +0 -0
- package/server/data/list/6234-1.png +0 -0
- package/server/data/list/6238-1.png +0 -0
- package/server/data/list/6246-1.png +0 -0
- package/server/data/list/6270-1.png +0 -0
- package/server/data/list/6330-1.png +0 -0
- package/server/data/list/6336-1.png +0 -0
- package/server/data/list/6360-1.png +0 -0
- package/server/data/list/6363-1.png +0 -0
- package/server/data/list/6375-1.png +0 -0
- package/server/data/list/6385-1.png +0 -0
- package/server/data/list/6413-1.png +0 -0
- package/server/data/list/6418-1.png +0 -0
- package/server/data/list/6465-1.png +0 -0
- package/server/data/list/6477-1.png +0 -0
- package/server/data/list/6509-1.png +0 -0
- package/server/data/list/6545-1.png +0 -0
- package/server/data/list/6548-1.png +0 -0
- package/server/data/list/6566-1.png +0 -0
- package/server/data/list/6581-1.png +0 -0
- package/server/data/list/6609-1.png +0 -0
- package/server/data/list/6611-1.png +0 -0
- package/server/data/list/6641-1.png +0 -0
- package/server/data/list/6659-1.png +0 -0
- package/server/data/list/6662-1.png +0 -0
- package/server/data/list/6689-1.png +0 -0
- package/server/data/list/6698-1.png +0 -0
- package/server/data/list/6701-1.png +0 -0
- package/server/data/list/6752-1.png +0 -0
- package/server/data/list/6755-1.png +0 -0
- package/server/data/list/6837-1.png +0 -0
- package/server/data/list/6841-1.png +0 -0
- package/server/data/list/6844-1.png +0 -0
- package/server/data/list/6846-1.png +0 -0
- package/server/data/list/6886-1.png +0 -0
- package/server/data/list/6895-1.png +0 -0
- package/server/data/list/6897-1.png +0 -0
- package/server/data/list/6919-1.png +0 -0
- package/server/data/list/6977-1.png +0 -0
- package/server/data/list/6983-1.png +0 -0
- package/server/data/list/6984-1.png +0 -0
- package/server/data/list/6985-1.png +0 -0
- package/server/data/list/6986-1.png +0 -0
- package/server/data/list/6989-1.png +0 -0
- package/server/data/list/6995-1.png +0 -0
- package/server/data/list/6998-1.png +0 -0
- package/server/data/markets.json +24 -0
- package/server/data/product-detail.json +2450 -0
- package/server/data/product-list.json +2450 -0
- package/server/data/themes.json +8 -0
- package/server/interfaces/account.ts +20 -0
- package/server/interfaces/auth.ts +32 -0
- package/server/interfaces/b2bContext.ts +23 -0
- package/server/interfaces/cart.ts +46 -0
- package/server/interfaces/cartCalculation.ts +17 -0
- package/server/interfaces/category.ts +12 -0
- package/server/interfaces/checkoutProfile.ts +5 -0
- package/server/interfaces/log.ts +3 -0
- package/server/interfaces/market.ts +10 -0
- package/server/interfaces/product.ts +21 -0
- package/server/interfaces/schema.ts +20 -0
- package/server/interfaces/theme.ts +10 -0
- package/server/services/ApiAuthService.ts +138 -0
- package/server/services/ApiCartService.ts +254 -0
- package/server/services/ApiCategoryService.ts +25 -0
- package/server/services/ApiMarketService.ts +71 -0
- package/server/services/ApiProductService.ts +53 -0
- package/server/services/LocalFileCategoryService.ts +23 -0
- package/server/services/LocalFileCheckoutProfileService.ts +117 -0
- package/server/services/LocalFileProductService.ts +128 -0
- package/server/services/LocalFileSchemaService.ts +70 -0
- package/server/services/LocalFileThemeService.ts +18 -0
- package/server/services/LogService.ts +28 -0
- package/server/services/MockAccountService.ts +58 -0
- package/server/services/MockAuthService.ts +105 -0
- package/server/services/MockB2BContextService.ts +149 -0
- package/server/services/MockCartCalculationService.ts +395 -0
- package/server/services/MockMarketService.ts +18 -0
- package/server/services/SdkAccountService.ts +56 -0
- package/server/services/SdkAuthService.ts +83 -0
- package/server/services/SessionCartService.ts +31 -0
- package/server/utils/accountService.ts +30 -0
- package/server/utils/authCookie.ts +13 -0
- package/server/utils/authService.ts +43 -0
- package/server/utils/b2bService.ts +49 -0
- package/server/utils/cartService.ts +59 -0
- package/server/utils/categoryService.ts +19 -0
- package/server/utils/checkoutProfileService.ts +9 -0
- package/server/utils/checkoutSession.ts +38 -0
- package/server/utils/coverData.ts +84 -0
- package/server/utils/governanceStore.ts +38 -0
- package/server/utils/i18n.ts +76 -0
- package/server/utils/inventoryService.ts +14 -0
- package/server/utils/liveCatalog.ts +234 -0
- package/server/utils/liveInventories.ts +76 -0
- package/server/utils/liveOrders.ts +139 -0
- package/server/utils/livePrices.ts +93 -0
- package/server/utils/locale.ts +39 -0
- package/server/utils/logService.ts +19 -0
- package/server/utils/marketService.ts +24 -0
- package/server/utils/orderService.ts +14 -0
- package/server/utils/paymentService.ts +14 -0
- package/server/utils/priceService.ts +14 -0
- package/server/utils/productService.ts +28 -0
- package/server/utils/productsSchema.ts +30 -0
- package/server/utils/revenexxApi.ts +136 -0
- package/server/utils/schemaService.ts +25 -0
- package/server/utils/serviceMode.ts +70 -0
- package/server/utils/shippingService.ts +14 -0
- package/server/utils/shopSdk.ts +88 -0
- package/server/utils/themeService.ts +16 -0
- package/server/utils/typesense.ts +27 -0
|
@@ -0,0 +1,263 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cart": {
|
|
3
|
+
"page": {
|
|
4
|
+
"title": "Cart",
|
|
5
|
+
"itemCount": "{count} article in cart | {count} articles in cart",
|
|
6
|
+
"itemsTitle": "Items",
|
|
7
|
+
"summaryTitle": "Order summary",
|
|
8
|
+
"steps": {
|
|
9
|
+
"cart": "Cart",
|
|
10
|
+
"personalData": "Personal Data",
|
|
11
|
+
"payment": "Payment",
|
|
12
|
+
"overview": "Overview",
|
|
13
|
+
"success": "Thank you"
|
|
14
|
+
},
|
|
15
|
+
"voucher": {
|
|
16
|
+
"title": "Enter Voucher",
|
|
17
|
+
"codeLabel": "Voucher code",
|
|
18
|
+
"placeholder": "Enter code",
|
|
19
|
+
"redeem": "Redeem",
|
|
20
|
+
"invalidTitle": "Voucher not valid"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"emptyState": {
|
|
24
|
+
"title": "Your cart is empty",
|
|
25
|
+
"description": "Add products from the shop to get started.",
|
|
26
|
+
"goToShop": "Go to shop",
|
|
27
|
+
"browseHint": "Or browse the catalog and add articles straight to the cart.",
|
|
28
|
+
"directOrder": "Go to direct order",
|
|
29
|
+
"orderLists": "Go to order lists"
|
|
30
|
+
},
|
|
31
|
+
"actions": {
|
|
32
|
+
"proceedToCart": "Go to cart",
|
|
33
|
+
"proceedToCheckout": "Proceed to checkout",
|
|
34
|
+
"print": "Print (PDF)",
|
|
35
|
+
"clear": "Clear cart"
|
|
36
|
+
},
|
|
37
|
+
"item": {
|
|
38
|
+
"removeTitle": "Remove item?",
|
|
39
|
+
"removeConfirm": "{name} will be removed from your cart.",
|
|
40
|
+
"cancel": "Cancel",
|
|
41
|
+
"remove": "Remove",
|
|
42
|
+
"quantityLine": "{name} × {quantity}",
|
|
43
|
+
"maxQuantityExceeded": "Maximum quantity exceeded",
|
|
44
|
+
"ariaQuantityOf": "Quantity of {name}: {quantity}",
|
|
45
|
+
"ariaInputQuantity": "Quantity of {name}",
|
|
46
|
+
"ariaDecreaseQuantity": "Decrease quantity of {name}",
|
|
47
|
+
"ariaIncreaseQuantity": "Increase quantity of {name}",
|
|
48
|
+
"ariaRemoveFromCart": "Remove {name} from cart"
|
|
49
|
+
},
|
|
50
|
+
"selection": {
|
|
51
|
+
"selectAll": "Select all positions",
|
|
52
|
+
"selectPosition": "Select position {name}",
|
|
53
|
+
"count": "{count} position selected | {count} positions selected"
|
|
54
|
+
},
|
|
55
|
+
"bulk": {
|
|
56
|
+
"editCostCenter": "Cost center",
|
|
57
|
+
"editTexts": "Position texts",
|
|
58
|
+
"saveToList": "Save",
|
|
59
|
+
"deletePositions": "Delete"
|
|
60
|
+
},
|
|
61
|
+
"position": {
|
|
62
|
+
"costCenter": "Cost center",
|
|
63
|
+
"customSku": "Own article no.",
|
|
64
|
+
"defaultUnit": "pcs",
|
|
65
|
+
"perUnit": "each {price}",
|
|
66
|
+
"reorder": "Reorder position",
|
|
67
|
+
"addTexts": "Add position texts",
|
|
68
|
+
"editTexts": "Edit position texts",
|
|
69
|
+
"editCostCenter": "Change cost center"
|
|
70
|
+
},
|
|
71
|
+
"availability": {
|
|
72
|
+
"in-stock": "In stock ({count})",
|
|
73
|
+
"partial": "Partially available ({count})",
|
|
74
|
+
"out-of-stock": "Delivery in approx. {days} days"
|
|
75
|
+
},
|
|
76
|
+
"cta": {
|
|
77
|
+
"checkout": "Proceed to checkout",
|
|
78
|
+
"requisition": "Continue with requisition",
|
|
79
|
+
"notOrderable": "The cart cannot be ordered right now — please resolve the notices above."
|
|
80
|
+
},
|
|
81
|
+
"summary": {
|
|
82
|
+
"minOrderHint": "Minimum order value {threshold} — the difference is charged as a surcharge."
|
|
83
|
+
},
|
|
84
|
+
"workflow": {
|
|
85
|
+
"pickTitle": "Select workflow",
|
|
86
|
+
"continue": "Continue",
|
|
87
|
+
"stepSummary": "{steps} steps · orderers: {orderers}",
|
|
88
|
+
"noneTitle": "No workflow assigned",
|
|
89
|
+
"noneDescription": "You are not assigned to any workflow, so you cannot submit a requisition. Please contact the super user in your company.",
|
|
90
|
+
"noneConfirm": "Got it"
|
|
91
|
+
},
|
|
92
|
+
"costCenter": {
|
|
93
|
+
"title": "Edit cost center | Edit cost center for {count} positions",
|
|
94
|
+
"searchPlaceholder": "Search code or name…",
|
|
95
|
+
"none": "No cost center",
|
|
96
|
+
"apply": "Apply cost center",
|
|
97
|
+
"noResults": "No cost center found for “{query}”."
|
|
98
|
+
},
|
|
99
|
+
"positionTexts": {
|
|
100
|
+
"title": "Edit position texts | Edit position texts for {count} positions",
|
|
101
|
+
"customSku": "Own article number",
|
|
102
|
+
"customSkuPlaceholder": "e.g. internal material number",
|
|
103
|
+
"textLabel": "Position text {index}",
|
|
104
|
+
"save": "Save"
|
|
105
|
+
},
|
|
106
|
+
"saveToList": {
|
|
107
|
+
"title": "Save position | Save {count} positions",
|
|
108
|
+
"shoppingList": "Shopping list",
|
|
109
|
+
"labelList": "Label list",
|
|
110
|
+
"existing": "Existing list",
|
|
111
|
+
"new": "New list",
|
|
112
|
+
"selectPlaceholder": "Select a list",
|
|
113
|
+
"namePlaceholder": "Name of the new list",
|
|
114
|
+
"hint": "The complete position is saved: article, quantity, position texts and cost center.",
|
|
115
|
+
"save": "Save",
|
|
116
|
+
"success": "{count} position saved to “{list}” | {count} positions saved to “{list}”"
|
|
117
|
+
},
|
|
118
|
+
"export": {
|
|
119
|
+
"action": "Export",
|
|
120
|
+
"title": "Export cart",
|
|
121
|
+
"description": "The export contains every position with article numbers, quantities, prices, availability, cost centers and position texts.",
|
|
122
|
+
"csv": "Export as CSV",
|
|
123
|
+
"xlsx": "Export as XLSX",
|
|
124
|
+
"xlsxSoon": "XLSX export coming soon",
|
|
125
|
+
"error": "The cart could not be exported."
|
|
126
|
+
},
|
|
127
|
+
"quickAdd": {
|
|
128
|
+
"action": "Quick entry",
|
|
129
|
+
"title": "Quick entry",
|
|
130
|
+
"skuLabel": "Article number or name",
|
|
131
|
+
"skuPlaceholder": "e.g. NK-G42…",
|
|
132
|
+
"quantityLabel": "Quantity",
|
|
133
|
+
"add": "Add",
|
|
134
|
+
"added": "Added {quantity}× {name}"
|
|
135
|
+
},
|
|
136
|
+
"requisition": {
|
|
137
|
+
"title": "Requisition",
|
|
138
|
+
"meta": "Requested by {name} on {date}",
|
|
139
|
+
"shortMeta": "{name} · {count} positions",
|
|
140
|
+
"unload": "Unload",
|
|
141
|
+
"collapse": "Collapse requisition",
|
|
142
|
+
"expand": "Expand requisition",
|
|
143
|
+
"load": "Load into cart",
|
|
144
|
+
"openTitle": "Open requisitions",
|
|
145
|
+
"mergeRejected": "This requisition cannot be added to the cart",
|
|
146
|
+
"mergeRejectedDescription": "Its delivery address differs from the requisitions already loaded."
|
|
147
|
+
},
|
|
148
|
+
"approvals": {
|
|
149
|
+
"title": "Approvals & budgets",
|
|
150
|
+
"exceeded": "Approval required",
|
|
151
|
+
"usage": "{actual} of {threshold}",
|
|
152
|
+
"exceededBy": "{amount} over",
|
|
153
|
+
"approvalRequired": "Approval by {approver} required (time frame: {hours} h)",
|
|
154
|
+
"infoOnly": "No approval required — the responsible person is notified.",
|
|
155
|
+
"unknownApprover": "approver"
|
|
156
|
+
},
|
|
157
|
+
"multi": {
|
|
158
|
+
"switcher": "Switch cart",
|
|
159
|
+
"newCart": "New cart",
|
|
160
|
+
"newCartTitle": "Create cart",
|
|
161
|
+
"renameTitle": "Rename cart",
|
|
162
|
+
"namePlaceholder": "e.g. Project hall 3",
|
|
163
|
+
"nameLabel": "Name",
|
|
164
|
+
"create": "Create",
|
|
165
|
+
"rename": "Rename",
|
|
166
|
+
"delete": "Delete",
|
|
167
|
+
"deleteTitle": "Delete cart?",
|
|
168
|
+
"deleteDescription": "“{name}” and all of its {count} items will be deleted. This cannot be undone.",
|
|
169
|
+
"activate": "Activate",
|
|
170
|
+
"activeBadge": "Active",
|
|
171
|
+
"switched": "Cart “{name}” is now active",
|
|
172
|
+
"created": "Cart “{name}” created",
|
|
173
|
+
"deleted": "Cart deleted",
|
|
174
|
+
"modal": {
|
|
175
|
+
"title": "Which cart should this go to?",
|
|
176
|
+
"description": "“{name}” was added to the active cart. You can also move the item into another cart.",
|
|
177
|
+
"alwaysActive": "Always add to the active cart",
|
|
178
|
+
"alwaysActiveHint": "Stop asking — changeable under Account → Ordering settings.",
|
|
179
|
+
"confirm": "Apply",
|
|
180
|
+
"moved": "Item moved to “{name}”"
|
|
181
|
+
},
|
|
182
|
+
"page": {
|
|
183
|
+
"title": "Carts",
|
|
184
|
+
"description": "All carts you are currently filling — switch, rename or delete them here.",
|
|
185
|
+
"searchPlaceholder": "Search by name…",
|
|
186
|
+
"columns": {
|
|
187
|
+
"name": "Name",
|
|
188
|
+
"positions": "Items",
|
|
189
|
+
"value": "Value",
|
|
190
|
+
"updatedAt": "Last changed",
|
|
191
|
+
"status": "Status"
|
|
192
|
+
},
|
|
193
|
+
"empty": {
|
|
194
|
+
"title": "Only the active cart",
|
|
195
|
+
"description": "Create more carts via “New cart” — e.g. per project or cost center."
|
|
196
|
+
},
|
|
197
|
+
"disabled": "Multiple carts are not enabled for your organization."
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"boost": {
|
|
201
|
+
"missing": "{amount} to go until {label}",
|
|
202
|
+
"reached": "{label} unlocked",
|
|
203
|
+
"reorderTitle": "Recently ordered – reorder fast",
|
|
204
|
+
"crossSellTitle": "Goes well with your order",
|
|
205
|
+
"popularTitle": "Popular in the catalog",
|
|
206
|
+
"add": "Add to cart"
|
|
207
|
+
},
|
|
208
|
+
"trust": {
|
|
209
|
+
"delivery": "Ordered by 4 pm – delivered the next business day",
|
|
210
|
+
"invoice": "Buy on invoice for business customers",
|
|
211
|
+
"support": "Personal service team, weekdays 8 am–5 pm"
|
|
212
|
+
}
|
|
213
|
+
},
|
|
214
|
+
"calc": {
|
|
215
|
+
"totals": {
|
|
216
|
+
"subtotal": "Merchandise value",
|
|
217
|
+
"surcharges": "Item surcharges",
|
|
218
|
+
"minOrderValue": "Minimum order surcharge",
|
|
219
|
+
"discount": "Special discount {percent} %",
|
|
220
|
+
"shipping": "Shipping costs",
|
|
221
|
+
"tax": "VAT {percent} %",
|
|
222
|
+
"rounding": "Rounding difference",
|
|
223
|
+
"total": "Total"
|
|
224
|
+
},
|
|
225
|
+
"recyclingFee": "Recycling fee",
|
|
226
|
+
"priceLabels": {
|
|
227
|
+
"free": "Free",
|
|
228
|
+
"on-request": "On request",
|
|
229
|
+
"by-result": "By result"
|
|
230
|
+
},
|
|
231
|
+
"hints": {
|
|
232
|
+
"quantityAdjusted": "The quantity was adjusted to {quantity} (minimum {min}, packaging unit {step}).",
|
|
233
|
+
"duplicate": "This article appears more than once in the cart.",
|
|
234
|
+
"missingCostCenter": "Please assign a cost center to this position."
|
|
235
|
+
},
|
|
236
|
+
"messages": {
|
|
237
|
+
"costCentersUnassigned": "You have no cost centers assigned — please contact your organization administrator.",
|
|
238
|
+
"costCenterRequired": "Please select a cost center for every position."
|
|
239
|
+
},
|
|
240
|
+
"incentives": {
|
|
241
|
+
"freeShipping": "free shipping",
|
|
242
|
+
"volumeDiscount": "{percent}% volume discount"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"export": {
|
|
246
|
+
"columns": {
|
|
247
|
+
"sku": "Article no.",
|
|
248
|
+
"name": "Name",
|
|
249
|
+
"dimension": "Dimension",
|
|
250
|
+
"quantity": "Quantity",
|
|
251
|
+
"lineTotal": "Net per position",
|
|
252
|
+
"unitPrice": "Net per unit",
|
|
253
|
+
"available": "Available",
|
|
254
|
+
"customSku": "Own article number",
|
|
255
|
+
"costCenterCode": "Cost center",
|
|
256
|
+
"costCenterLabel": "Cost center name",
|
|
257
|
+
"positionText1": "Position text 1",
|
|
258
|
+
"positionText2": "Position text 2",
|
|
259
|
+
"positionText3": "Position text 3",
|
|
260
|
+
"positionText4": "Position text 4"
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
{
|
|
2
|
+
"confirmation": {
|
|
3
|
+
"order": {
|
|
4
|
+
"title": "Order confirmed!",
|
|
5
|
+
"received": "Your order {id} has been placed successfully.",
|
|
6
|
+
"notice": "You will receive an order confirmation by e-mail shortly."
|
|
7
|
+
},
|
|
8
|
+
"approval": {
|
|
9
|
+
"title": "Order submitted — approval pending",
|
|
10
|
+
"received": "Your order {id} has been received and is awaiting approval.",
|
|
11
|
+
"notice": "Once approved, your order will be processed. You will be notified by e-mail.",
|
|
12
|
+
"approvers": "Approval by: {names}"
|
|
13
|
+
},
|
|
14
|
+
"requisition": {
|
|
15
|
+
"title": "Requisition submitted!",
|
|
16
|
+
"received": "Your requisition {id} has entered its workflow.",
|
|
17
|
+
"notice": "The next actor has been notified. Track the status in your account under requisitions."
|
|
18
|
+
},
|
|
19
|
+
"continueShopping": "Continue shopping",
|
|
20
|
+
"thanks": "Thank you!",
|
|
21
|
+
"nextSteps": "What happens next",
|
|
22
|
+
"summaryTitle": "Your items",
|
|
23
|
+
"viewOrder": "View order",
|
|
24
|
+
"viewRequisition": "View requisition",
|
|
25
|
+
"steps": {
|
|
26
|
+
"order": [
|
|
27
|
+
{
|
|
28
|
+
"title": "Order confirmation",
|
|
29
|
+
"text": "You will receive a confirmation with all details by email within a few minutes."
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"title": "Processing",
|
|
33
|
+
"text": "We check availability and prepare your shipment for dispatch."
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"title": "Shipping & tracking",
|
|
37
|
+
"text": "As soon as your order leaves the warehouse, you receive the tracking link."
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"approval": [
|
|
41
|
+
{
|
|
42
|
+
"title": "Approval",
|
|
43
|
+
"text": "Your order is awaiting approval by the responsible approvers."
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"title": "Processing",
|
|
47
|
+
"text": "Once approved, your order is processed automatically."
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"title": "Shipping & tracking",
|
|
51
|
+
"text": "As soon as your order leaves the warehouse, you receive the tracking link."
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"requisition": [
|
|
55
|
+
{
|
|
56
|
+
"title": "Workflow",
|
|
57
|
+
"text": "Your requisition is now traveling through the configured approval steps."
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"title": "Ordering",
|
|
61
|
+
"text": "The responsible orderer places the order or gets in touch with questions."
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"title": "Track status",
|
|
65
|
+
"text": "You can follow the current state in your account under requisitions."
|
|
66
|
+
}
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"paymentMethods": {
|
|
71
|
+
"invoice": "Invoice",
|
|
72
|
+
"po_number": "Purchase Order (PO)",
|
|
73
|
+
"cost_center": "Cost Center"
|
|
74
|
+
},
|
|
75
|
+
"onepage": {
|
|
76
|
+
"title": "Checkout",
|
|
77
|
+
"sections": {
|
|
78
|
+
"address": "Shipping & Billing Address",
|
|
79
|
+
"delivery": "Delivery",
|
|
80
|
+
"payment": "Payment",
|
|
81
|
+
"notes": "Order Notes",
|
|
82
|
+
"summary": "Order Summary",
|
|
83
|
+
"guestDetails": "Your details",
|
|
84
|
+
"orderInfo": "Order information"
|
|
85
|
+
},
|
|
86
|
+
"address": {
|
|
87
|
+
"shipping": "Shipping Address",
|
|
88
|
+
"billing": "Billing Address",
|
|
89
|
+
"billingSameAsShipping": "Same as shipping address",
|
|
90
|
+
"differentBillingLabel": "Use different billing address",
|
|
91
|
+
"addNew": "Add new address",
|
|
92
|
+
"save": "Save Address",
|
|
93
|
+
"cancel": "Cancel",
|
|
94
|
+
"form": {
|
|
95
|
+
"companyName": "Company Name",
|
|
96
|
+
"contactName": "Contact Name",
|
|
97
|
+
"street": "Street and Number",
|
|
98
|
+
"city": "City",
|
|
99
|
+
"postalCode": "Postal Code",
|
|
100
|
+
"country": "Country"
|
|
101
|
+
},
|
|
102
|
+
"change": "Change",
|
|
103
|
+
"noAddress": "No address selected",
|
|
104
|
+
"sameAsShipping": "Billing address same as delivery address",
|
|
105
|
+
"sameAsShippingNote": "Same as the shipping address",
|
|
106
|
+
"searchPlaceholder": "Search by company, name, street or city…",
|
|
107
|
+
"count": "{count} address | {count} addresses",
|
|
108
|
+
"showingOf": "First {shown} of {total} matches — refine your search.",
|
|
109
|
+
"noMatches": "No address found.",
|
|
110
|
+
"saveError": "The address could not be saved."
|
|
111
|
+
},
|
|
112
|
+
"delivery": {
|
|
113
|
+
"method": "Delivery Method",
|
|
114
|
+
"businessDays": "business days",
|
|
115
|
+
"free": "Free",
|
|
116
|
+
"requestedDate": "Requested Delivery Date",
|
|
117
|
+
"deliveryNote": "Delivery Note",
|
|
118
|
+
"deliveryNotePlaceholder": "Special delivery instructions...",
|
|
119
|
+
"change": "Change",
|
|
120
|
+
"noMethod": "No delivery method selected",
|
|
121
|
+
"partialDelivery": "Allow partial delivery",
|
|
122
|
+
"partialDeliveryHint": "Available items ship immediately, the rest follows."
|
|
123
|
+
},
|
|
124
|
+
"payment": {
|
|
125
|
+
"method": "Payment Method",
|
|
126
|
+
"poNumber": "PO Number",
|
|
127
|
+
"poNumberPlaceholder": "Enter PO number...",
|
|
128
|
+
"costCenter": "Cost Center",
|
|
129
|
+
"change": "Change",
|
|
130
|
+
"noMethod": "No payment method selected",
|
|
131
|
+
"confirm": "Confirm",
|
|
132
|
+
"fee": "+ €{fee} surcharge"
|
|
133
|
+
},
|
|
134
|
+
"notes": {
|
|
135
|
+
"orderNote": "Order Note",
|
|
136
|
+
"orderNotePlaceholder": "Additional notes for your order..."
|
|
137
|
+
},
|
|
138
|
+
"summary": {
|
|
139
|
+
"subtotal": "Subtotal",
|
|
140
|
+
"shipping": "Shipping",
|
|
141
|
+
"total": "Total",
|
|
142
|
+
"free": "Free",
|
|
143
|
+
"promoCode": "Promo Code",
|
|
144
|
+
"promoCodePlaceholder": "Promo code",
|
|
145
|
+
"applyPromo": "Apply",
|
|
146
|
+
"placeOrder": "Place Order",
|
|
147
|
+
"backToCart": "Back to Cart",
|
|
148
|
+
"termsText": "I accept the {link}",
|
|
149
|
+
"termsLink": "Terms & Conditions and Privacy Policy",
|
|
150
|
+
"submitRequisition": "Submit requisition"
|
|
151
|
+
},
|
|
152
|
+
"errors": {
|
|
153
|
+
"shippingAddressRequired": "Please select a shipping address.",
|
|
154
|
+
"billingAddressRequired": "Please select a billing address.",
|
|
155
|
+
"paymentMethodRequired": "Please select a payment method.",
|
|
156
|
+
"termsRequired": "Please accept the terms and conditions.",
|
|
157
|
+
"requestedDateInvalid": "Please enter a valid date.",
|
|
158
|
+
"submitError": "Failed to place order. Please try again.",
|
|
159
|
+
"orderNumberRequired": "Please provide your order number.",
|
|
160
|
+
"requestedDatePast": "The requested date must not be in the past.",
|
|
161
|
+
"requestedDateTooFar": "The requested date may be at most {days} days ahead.",
|
|
162
|
+
"requestedDateWeekend": "Please pick a working day as the requested date.",
|
|
163
|
+
"guestEmailInvalid": "Please provide a valid e-mail address."
|
|
164
|
+
},
|
|
165
|
+
"gate": {
|
|
166
|
+
"title": "Checkout",
|
|
167
|
+
"description": "Sign in to order with your saved addresses and terms — or continue as a guest.",
|
|
168
|
+
"guestTitle": "Order as a guest",
|
|
169
|
+
"guestDescription": "Order without an account. Your details are used for this order only.",
|
|
170
|
+
"guestBusiness": "Guest order — business",
|
|
171
|
+
"guestPrivate": "Guest order — private"
|
|
172
|
+
},
|
|
173
|
+
"guest": {
|
|
174
|
+
"email": "E-mail address",
|
|
175
|
+
"phone": "Phone (optional)",
|
|
176
|
+
"companyName": "Company",
|
|
177
|
+
"firstName": "First name",
|
|
178
|
+
"lastName": "Last name",
|
|
179
|
+
"street": "Street and number",
|
|
180
|
+
"postalCode": "Postal code",
|
|
181
|
+
"city": "City",
|
|
182
|
+
"country": "Country",
|
|
183
|
+
"countries": {
|
|
184
|
+
"DE": "Germany",
|
|
185
|
+
"AT": "Austria",
|
|
186
|
+
"CH": "Switzerland"
|
|
187
|
+
}
|
|
188
|
+
},
|
|
189
|
+
"orderInfo": {
|
|
190
|
+
"orderNumber": "Your order number",
|
|
191
|
+
"orderNumberPlaceholder": "e.g. PO-2026-0042",
|
|
192
|
+
"quoteNumber": "Quote number",
|
|
193
|
+
"quoteNumberPlaceholder": "e.g. QUO-2026-017",
|
|
194
|
+
"noConfirmation": "Do not send an order confirmation",
|
|
195
|
+
"noConfirmationHint": "No confirmation e-mail will be sent for this order."
|
|
196
|
+
},
|
|
197
|
+
"workflow": {
|
|
198
|
+
"title": "Requisition in workflow “{name}”",
|
|
199
|
+
"nextActors": "Next actors: {names}"
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
"fields": {
|
|
203
|
+
"companyName": "Company Name",
|
|
204
|
+
"vatId": "VAT ID (optional)",
|
|
205
|
+
"contactName": "Contact Name",
|
|
206
|
+
"street": "Street and Number",
|
|
207
|
+
"city": "City",
|
|
208
|
+
"postalCode": "Postal Code",
|
|
209
|
+
"country": "Country",
|
|
210
|
+
"billingAddressSameAsShipping": "Billing address is the same as shipping address",
|
|
211
|
+
"billingAddress": "Billing Address",
|
|
212
|
+
"paymentMethod": "Payment Method",
|
|
213
|
+
"purchaseOrderNumber": "Purchase Order Number (optional)",
|
|
214
|
+
"costCenter": "Cost Center (optional)",
|
|
215
|
+
"termsAccepted": "I accept the Terms & Conditions and Privacy Policy"
|
|
216
|
+
}
|
|
217
|
+
}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nav": {
|
|
3
|
+
"home": "Home",
|
|
4
|
+
"homeAriaLabel": "Go to homepage",
|
|
5
|
+
"cartButton": "Open cart | Open cart, {count} item | Open cart, {count} items",
|
|
6
|
+
"darkModeToggle": "Toggle dark mode",
|
|
7
|
+
"switchTheme": "Switch theme",
|
|
8
|
+
"products": "Products",
|
|
9
|
+
"spareParts": "Spare parts",
|
|
10
|
+
"services": "Services",
|
|
11
|
+
"knowledge": "Knowledge",
|
|
12
|
+
"mainNavigation": "Main navigation",
|
|
13
|
+
"backToShop": "Back to shop"
|
|
14
|
+
},
|
|
15
|
+
"summary": {
|
|
16
|
+
"subtotal": "Subtotal",
|
|
17
|
+
"tax": {
|
|
18
|
+
"incl": "Incl. VAT",
|
|
19
|
+
"excl": "Excl. VAT",
|
|
20
|
+
"rateLabel": "{label} ({percent})"
|
|
21
|
+
},
|
|
22
|
+
"total": "Total"
|
|
23
|
+
},
|
|
24
|
+
"actions": {
|
|
25
|
+
"back": "Back",
|
|
26
|
+
"continue": "Continue",
|
|
27
|
+
"edit": "Edit"
|
|
28
|
+
},
|
|
29
|
+
"requiredIndicator": "*",
|
|
30
|
+
"appName": "Cover",
|
|
31
|
+
"footer": {
|
|
32
|
+
"tagline": "B2B supply solutions for modern businesses.",
|
|
33
|
+
"copyright": "© {year} Cover Corp — All rights reserved."
|
|
34
|
+
},
|
|
35
|
+
"topbar": {
|
|
36
|
+
"freeShipping": "Free shipping on orders over €100",
|
|
37
|
+
"nextDayDelivery": "Ordered by 4 pm. Delivered the next day.",
|
|
38
|
+
"directOrder": "Direct order",
|
|
39
|
+
"orderStatus": "Order status",
|
|
40
|
+
"localeSelector": "Germany (German) in €",
|
|
41
|
+
"switchLocale": "Choose language and region",
|
|
42
|
+
"contact": "Contact",
|
|
43
|
+
"aboutUs": "About us",
|
|
44
|
+
"locations": "Locations",
|
|
45
|
+
"localePanel": {
|
|
46
|
+
"language": "Language",
|
|
47
|
+
"region": "Country",
|
|
48
|
+
"currency": "Currency",
|
|
49
|
+
"regionPlaceholder": "Search country…",
|
|
50
|
+
"hint": "Currency and catalog follow the selected country."
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"header": {
|
|
54
|
+
"contact": "Get in touch",
|
|
55
|
+
"contactSub": "+49 721 123 456 78",
|
|
56
|
+
"projects": "Projects",
|
|
57
|
+
"projectsSub": "Manage your projects",
|
|
58
|
+
"signIn": "Sign in",
|
|
59
|
+
"signInSub": "or become a customer",
|
|
60
|
+
"account": "Your account",
|
|
61
|
+
"accountSub": "Orders & more",
|
|
62
|
+
"cart": "Cart",
|
|
63
|
+
"cartPositions": "No items | 1 item | {count} items",
|
|
64
|
+
"orderLists": "Order lists",
|
|
65
|
+
"orderListsSub": "Saved lists"
|
|
66
|
+
},
|
|
67
|
+
"table": {
|
|
68
|
+
"filterAll": "All",
|
|
69
|
+
"noResults": {
|
|
70
|
+
"title": "No matches",
|
|
71
|
+
"description": "Adjust your search or filters to see results."
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"formkit": {
|
|
75
|
+
"datepicker": {
|
|
76
|
+
"placeholder": "Pick a date…",
|
|
77
|
+
"clear": "Clear"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"auth": {
|
|
3
|
+
"password": {
|
|
4
|
+
"strength": {
|
|
5
|
+
"enter": "Enter a password",
|
|
6
|
+
"weak": "Weak password",
|
|
7
|
+
"medium": "Medium password",
|
|
8
|
+
"strong": "Strong password",
|
|
9
|
+
"mustContain": "Must contain:",
|
|
10
|
+
"requirementMet": "Requirement met",
|
|
11
|
+
"requirementNotMet": "Requirement not met",
|
|
12
|
+
"requirements": {
|
|
13
|
+
"minLength": "At least 8 characters",
|
|
14
|
+
"number": "At least 1 number",
|
|
15
|
+
"lowercase": "At least 1 lowercase letter",
|
|
16
|
+
"uppercase": "At least 1 uppercase letter"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"show": "Show password",
|
|
20
|
+
"hide": "Hide password"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"error": {
|
|
24
|
+
"title": "Failed to load",
|
|
25
|
+
"description": "The data could not be loaded."
|
|
26
|
+
},
|
|
27
|
+
"notFound": {
|
|
28
|
+
"title": "Page not found"
|
|
29
|
+
},
|
|
30
|
+
"actions": {
|
|
31
|
+
"tryAgain": "Try again"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"product": {
|
|
3
|
+
"sku": "SKU",
|
|
4
|
+
"description": "Description",
|
|
5
|
+
"specifications": "Specifications",
|
|
6
|
+
"pricing": {
|
|
7
|
+
"volumePricing": "Volume Pricing",
|
|
8
|
+
"minQuantity": "Min. Quantity",
|
|
9
|
+
"unitPrice": "Unit Price",
|
|
10
|
+
"totalPrice": "Total Price",
|
|
11
|
+
"fromQuantity": "from {quantity}",
|
|
12
|
+
"yourTier": "Your price",
|
|
13
|
+
"saving": "Savings"
|
|
14
|
+
},
|
|
15
|
+
"stock": {
|
|
16
|
+
"available": "In stock",
|
|
17
|
+
"unavailable": "Not available",
|
|
18
|
+
"unitsAvailable": "{count} units available",
|
|
19
|
+
"maxPerOrder": "Max. {max} per order"
|
|
20
|
+
},
|
|
21
|
+
"price": {
|
|
22
|
+
"from": "from",
|
|
23
|
+
"onRequest": "Price on request"
|
|
24
|
+
},
|
|
25
|
+
"actions": {
|
|
26
|
+
"info": "Info",
|
|
27
|
+
"order": "Order",
|
|
28
|
+
"addToCart": "Add to Cart",
|
|
29
|
+
"addedToCart": "{quantity}× {name} added to cart",
|
|
30
|
+
"maxQuantityReachedTitle": "Maximum quantity reached (already have {count} in cart)",
|
|
31
|
+
"maxQuantityReachedDescription": "You can order at most {max} units of this product.",
|
|
32
|
+
"invalidQuantityTitle": "Invalid quantity",
|
|
33
|
+
"invalidQuantityDescription": "Please enter a quantity of at least 1."
|
|
34
|
+
},
|
|
35
|
+
"detail": {
|
|
36
|
+
"quantity": "Quantity",
|
|
37
|
+
"sku": "Article no.",
|
|
38
|
+
"copySku": "Copy article number",
|
|
39
|
+
"skuCopied": "Article number copied",
|
|
40
|
+
"priceNote": "per unit · excl. VAT"
|
|
41
|
+
},
|
|
42
|
+
"list": {
|
|
43
|
+
"view": {
|
|
44
|
+
"list": "List view",
|
|
45
|
+
"grid": "Grid view"
|
|
46
|
+
},
|
|
47
|
+
"sort": {
|
|
48
|
+
"featured": "Featured",
|
|
49
|
+
"priceAsc": "Price ascending",
|
|
50
|
+
"priceDesc": "Price descending",
|
|
51
|
+
"nameAsc": "Name ascending"
|
|
52
|
+
},
|
|
53
|
+
"count": {
|
|
54
|
+
"single": "Article {total} of {total}",
|
|
55
|
+
"range": "{from} to {to} of {total} articles"
|
|
56
|
+
},
|
|
57
|
+
"pagination": {
|
|
58
|
+
"first": "First page",
|
|
59
|
+
"prev": "Previous page",
|
|
60
|
+
"next": "Next page",
|
|
61
|
+
"last": "Last page",
|
|
62
|
+
"page": "Page {page}"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"incentives": {
|
|
66
|
+
"delivery": "Delivery in 1–3 working days",
|
|
67
|
+
"paymentTerms": "Buy on invoice — 30 days net",
|
|
68
|
+
"volume": "Volume pricing for bulk orders"
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|